Skip to content

Commit c56243b

Browse files
committed
Release 3.8.0
1 parent 8630085 commit c56243b

16 files changed

+111
-46
lines changed

CHANGELOG.rst

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

77

8+
v3.8.0
9+
======
10+
11+
Release Summary
12+
---------------
13+
14+
This is ansible-oracle 3.8.0.
15+
The target database server must have Python3 installaed which is automatically done with role `orahost`.
16+
It is mandatory for the module `oracle_db` which is used in `oradb_manage_db`.
17+
18+
19+
Minor Changes
20+
-------------
21+
22+
- Add restart possibility after scope=spfile init parameters change (oravirt#342)
23+
- Add state=restarted to oracle_db (oravirt#342)
24+
- Remove deprecation warnings for community.general 7.x (oravirt#339)
25+
- black: adding black to pre-commit (oravirt#343)
26+
- flake8: adding flake8 to pre-commit (oravirt#343)
27+
- github Actions: adding Action for black and flake8 (oravirt#343)
28+
- ocenv: version 2023-06-06 of ocenv environment script (oravirt#347)
29+
- oracle_db: Refactoring code for flake8 (oravirt#342)
30+
31+
Breaking Changes / Porting Guide
32+
--------------------------------
33+
34+
- cx_Oracle: requires Python3 installed on target system (oravirt#342)
35+
- cx_oracle: Added installation of cx_Oracle for Python3 (oravirt#346)
36+
- oradb_manage_db: requires Python3 installed on target system (oravirt#342)
37+
38+
Deprecated Features
39+
-------------------
40+
41+
- modules: all modules will loose support for Python2 in ansible-oracle 4.0.0 (oravirt#346)
42+
43+
Bugfixes
44+
--------
45+
46+
- common: removed assert for python due to oravirt#346 (oravirt#350)
47+
- orasw_download_patches: added missing assert for oracle_sw_source_local (oravirt#340)
48+
- oraswdb_install: changed oracle_databases to db_homes_installed for installation source of ORACLE_HOMEs (oravirt#348)
49+
- oraswdb_manage_patches: Bugfix for missing opatch or opatchauto in db_homs_config dict (oravirt#349)
50+
- pre-commit: added antsibull-changelog-lint (oravirt#345)
51+
- pre-commit: moved ansible-lint to end of pre-commit hooks (oravirt#344)
52+
53+
Known Issues
54+
------------
55+
56+
- pre-commit: Ignore [WARNING] The 'rev' field of repo 'https://github.com/ansible-community/antsibull-changelog.git'. This will be fixed with next antsibull-changelog release.
57+
858
v3.7.0
959
======
1060

changelogs/.plugin-cache.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,14 @@ plugins:
99
httpapi: {}
1010
inventory: {}
1111
lookup: {}
12-
module: {}
12+
module:
13+
oracle_db:
14+
description: Manage an Oracle database
15+
name: oracle_db
16+
namespace: ''
17+
version_added: 2.4.0
1318
netconf: {}
1419
shell: {}
1520
strategy: {}
1621
vars: {}
17-
version: 3.7.0
22+
version: 3.8.0

changelogs/changelog.yaml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,3 +278,56 @@ releases:
278278
- rman_catalog_register.yml
279279
- sles_os_packages.yml
280280
release_date: '2023-05-07'
281+
3.8.0:
282+
changes:
283+
breaking_changes:
284+
- 'cx_Oracle: requires Python3 installed on target system (oravirt#342)'
285+
- 'cx_oracle: Added installation of cx_Oracle for Python3 (oravirt#346)'
286+
- 'oradb_manage_db: requires Python3 installed on target system (oravirt#342)'
287+
bugfixes:
288+
- 'common: removed assert for python due to oravirt#346 (oravirt#350)'
289+
- 'orasw_download_patches: added missing assert for oracle_sw_source_local (oravirt#340)'
290+
- 'oraswdb_install: changed oracle_databases to db_homes_installed for installation
291+
source of ORACLE_HOMEs (oravirt#348)'
292+
- 'oraswdb_manage_patches: Bugfix for missing opatch or opatchauto in db_homs_config
293+
dict (oravirt#349)'
294+
- 'pre-commit: added antsibull-changelog-lint (oravirt#345)'
295+
- 'pre-commit: moved ansible-lint to end of pre-commit hooks (oravirt#344)'
296+
deprecated_features:
297+
- 'modules: all modules will loose support for Python2 in ansible-oracle 4.0.0 (oravirt#346)'
298+
known_issues:
299+
- 'pre-commit: Ignore [WARNING] The ''rev'' field of repo ''https://github.com/ansible-community/antsibull-changelog.git''.
300+
This will be fixed with next antsibull-changelog release.'
301+
minor_changes:
302+
- Add restart possibility after scope=spfile init parameters change (oravirt#342)
303+
- Add state=restarted to oracle_db (oravirt#342)
304+
- Remove deprecation warnings for community.general 7.x (oravirt#339)
305+
- 'black: adding black to pre-commit (oravirt#343)'
306+
- 'flake8: adding flake8 to pre-commit (oravirt#343)'
307+
- 'github Actions: adding Action for black and flake8 (oravirt#343)'
308+
- 'ocenv: version 2023-06-06 of ocenv environment script (oravirt#347)'
309+
- 'oracle_db: Refactoring code for flake8 (oravirt#342)'
310+
release_summary: 'This is ansible-oracle 3.8.0.
311+
312+
The target database server must have Python3 installaed which is automatically
313+
done with role `orahost`.
314+
315+
It is mandatory for the module `oracle_db` which is used in `oradb_manage_db`.
316+
317+
'
318+
fragments:
319+
- _known_issues.yml
320+
- assert.yml
321+
- communiy_collection.yml
322+
- cx_oracle.yml
323+
- download_patch.yml
324+
- flake8.yml
325+
- ocenv.yml
326+
- opatchauto.yml
327+
- oraswdb_install_curl.yml
328+
- pre-commit.yml
329+
- python-lint.yml
330+
- python2_deprecated.yml
331+
- release.yml
332+
- restart_spfile_parameters.yml
333+
release_date: '2023-07-08'

changelogs/fragments/assert.yml

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

changelogs/fragments/communiy_collection.yml

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

changelogs/fragments/cx_oracle.yml

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

changelogs/fragments/download_patch.yml

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

changelogs/fragments/flake8.yml

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

changelogs/fragments/ocenv.yml

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

changelogs/fragments/opatchauto.yml

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

0 commit comments

Comments
 (0)