Skip to content

Commit 39c3162

Browse files
committed
Release 4.6.0 - 8th Beta Release of ansible-oracle
1 parent b9cae11 commit 39c3162

16 files changed

+123
-56
lines changed

CHANGELOG.rst

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,57 @@ opitzconsulting.ansible_oracle Release Notes
55
.. contents:: Topics
66

77

8+
v4.6.0
9+
======
10+
11+
Release Summary
12+
---------------
13+
14+
This is the 1st Release of ansible-oracle 4.x with RAC support in expeimental stete.
15+
The fixes from (oravirt#416) are very important for setups with more then 1 database on a host.
16+
Please remove `oracle_db_mem_totalmb` from `oracle_databases` and set `sga_target` in `initparams` as a replacement.
17+
18+
Minor Changes
19+
-------------
20+
21+
- RAC: Reenabled RAC-Support in 4.x (oravirt#418)
22+
- molecule: Added 2nd database to tests (oravirt#417)
23+
- oradb_facts: add attribute oradb_facts_ignore_unreachable to oracle_databases (oravirt#417)
24+
- oradb_manage_db: Ignore errors during create/manage db when oradb_facts_ignore_unreachable=true (oravirt#417)
25+
- oradb_manage_grants: check state from oracledb_facts during execution (oravirt#417)
26+
- oradb_manage_parameters: check state from oracledb_facts during execution (oravirt#417)
27+
- oradb_manage_pdb: check state from oracledb_facts during execution (oravirt#417)
28+
- oradb_manage_profiles: check state from oracledb_facts during execution (oravirt#417)
29+
- oradb_manage_redo: Disable role in RAC environments (oravirt#418)
30+
- oradb_manage_redo: check state from oracledb_facts during execution (oravirt#417)
31+
- oradb_manage_roles: check state from oracledb_facts during execution (oravirt#417)
32+
- oradb_manage_services: check state from oracledb_facts during execution (oravirt#417)
33+
- oradb_manage_statspack: check state from oracledb_facts during execution (oravirt#417)
34+
- oradb_manage_tablespace: check state from oracledb_facts during execution (oravirt#417)
35+
- oradb_manage_users: check state from oracledb_facts during execution (oravirt#417)
36+
- orahost_ssh: Role rewritten with modern ansible modules (oravirt#418)
37+
- orasw_download_patches: Download OPatch for GI/Restart (oravirt#415)
38+
39+
Breaking Changes / Porting Guide
40+
--------------------------------
41+
42+
- oradb_manage_db: move echo for usage of ocenv from .bashrc to .bash_profile (oravirt#418)
43+
- orasw_meta: added assert for oracle_db_mem_totalmb in oracle_databases (oravirt#414)
44+
- orasw_meta: added variable orasw_meta_cluster_hostgroup for RAC (oravirt#418)
45+
- orasw_meta: assert that cdb from oracle_pdbs is in oracle_databases (oravirt#417)
46+
47+
Bugfixes
48+
--------
49+
50+
- global: removed redundant flatten(levels=1) filter on oracle_database/oracle_pdbs (oravirt#416)
51+
- global: replaced `match` filter fith `equalto` to prevent partial matches where not wanted (oravirt#416)
52+
- oradb_facts: Loop gathered facts only for first database from oracle_databases (oravirt#416)
53+
- oradb_facts: Prevent re-using results from previous loop run when ignore_errors set to true (oravirt#416)
54+
- oradb_manage_redo: Loop processed only first database from oracle_databases (oravirt#416)
55+
- oradb_manage_statspack: Loops processed only first database/pdb from oracle_databases/oracle_pdbs (oravirt#416)
56+
- oradb_rman: Loops processed only first database from oracle_databases (oravirt#416)
57+
- orasw_meta_internal: replaced all odb[0]/opdb[0] with _odb_loop_helper/_opdb_loop_helper (oravirt#416)
58+
859
v4.5.0
960
======
1061

changelogs/.plugin-cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,4 @@ plugins:
157157
shell: {}
158158
strategy: {}
159159
vars: {}
160-
version: 4.5.0
160+
version: 4.6.0

changelogs/changelog.yaml

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -731,3 +731,73 @@ releases:
731731
- os_oracle.yml
732732
- role_sparation.yml
733733
release_date: '2024-02-24'
734+
4.6.0:
735+
changes:
736+
breaking_changes:
737+
- 'oradb_manage_db: move echo for usage of ocenv from .bashrc to .bash_profile
738+
(oravirt#418)'
739+
- 'orasw_meta: added assert for oracle_db_mem_totalmb in oracle_databases (oravirt#414)'
740+
- 'orasw_meta: added variable orasw_meta_cluster_hostgroup for RAC (oravirt#418)'
741+
- 'orasw_meta: assert that cdb from oracle_pdbs is in oracle_databases (oravirt#417)'
742+
bugfixes:
743+
- 'global: removed redundant flatten(levels=1) filter on oracle_database/oracle_pdbs
744+
(oravirt#416)'
745+
- 'global: replaced `match` filter fith `equalto` to prevent partial matches
746+
where not wanted (oravirt#416)'
747+
- 'oradb_facts: Loop gathered facts only for first database from oracle_databases
748+
(oravirt#416)'
749+
- 'oradb_facts: Prevent re-using results from previous loop run when ignore_errors
750+
set to true (oravirt#416)'
751+
- 'oradb_manage_redo: Loop processed only first database from oracle_databases
752+
(oravirt#416)'
753+
- 'oradb_manage_statspack: Loops processed only first database/pdb from oracle_databases/oracle_pdbs
754+
(oravirt#416)'
755+
- 'oradb_rman: Loops processed only first database from oracle_databases (oravirt#416)'
756+
- 'orasw_meta_internal: replaced all odb[0]/opdb[0] with _odb_loop_helper/_opdb_loop_helper
757+
(oravirt#416)'
758+
minor_changes:
759+
- 'RAC: Reenabled RAC-Support in 4.x (oravirt#418)'
760+
- 'molecule: Added 2nd database to tests (oravirt#417)'
761+
- 'oradb_facts: add attribute oradb_facts_ignore_unreachable to oracle_databases
762+
(oravirt#417)'
763+
- 'oradb_manage_db: Ignore errors during create/manage db when oradb_facts_ignore_unreachable=true
764+
(oravirt#417)'
765+
- 'oradb_manage_grants: check state from oracledb_facts during execution (oravirt#417)'
766+
- 'oradb_manage_parameters: check state from oracledb_facts during execution
767+
(oravirt#417)'
768+
- 'oradb_manage_pdb: check state from oracledb_facts during execution (oravirt#417)'
769+
- 'oradb_manage_profiles: check state from oracledb_facts during execution (oravirt#417)'
770+
- 'oradb_manage_redo: Disable role in RAC environments (oravirt#418)'
771+
- 'oradb_manage_redo: check state from oracledb_facts during execution (oravirt#417)'
772+
- 'oradb_manage_roles: check state from oracledb_facts during execution (oravirt#417)'
773+
- 'oradb_manage_services: check state from oracledb_facts during execution (oravirt#417)'
774+
- 'oradb_manage_statspack: check state from oracledb_facts during execution
775+
(oravirt#417)'
776+
- 'oradb_manage_tablespace: check state from oracledb_facts during execution
777+
(oravirt#417)'
778+
- 'oradb_manage_users: check state from oracledb_facts during execution (oravirt#417)'
779+
- 'orahost_ssh: Role rewritten with modern ansible modules (oravirt#418)'
780+
- 'orasw_download_patches: Download OPatch for GI/Restart (oravirt#415)'
781+
release_summary: 'This is the 1st Release of ansible-oracle 4.x with RAC support
782+
in expeimental stete.
783+
784+
The fixes from (oravirt#416) are very important for setups with more then
785+
1 database on a host.
786+
787+
Please remove `oracle_db_mem_totalmb` from `oracle_databases` and set `sga_target`
788+
in `initparams` as a replacement.'
789+
fragments:
790+
- assert_pdbs.yml
791+
- fix_loops.yml
792+
- molecule.yml
793+
- ocenv.yml
794+
- oracle_db_mem_totalmb.yml
795+
- oradb_facts.yml
796+
- oradb_facts2.yml
797+
- oradb_facts3.yml
798+
- oradb_manage_redo.yml
799+
- orasw_download.yml
800+
- rac.yml
801+
- release.yml
802+
- ssh.yml
803+
release_date: '2024-03-08'

changelogs/fragments/assert_pdbs.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelogs/fragments/fix_loops.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

changelogs/fragments/molecule.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelogs/fragments/ocenv.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelogs/fragments/oracle_db_mem_totalmb.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelogs/fragments/oradb_facts.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelogs/fragments/oradb_facts2.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)