Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ opitzconsulting.ansible\_oracle Release Notes

.. contents:: Topics

v4.13.2
=======

Bugfixes
--------

- oradb_manage_db: check if .bashrc exists before trying to disable ocenv
- oraswgi_install: ansible.builtin.yum fails installing cvuqdisk on FIPS-enabled hosts due to missing package digest
- oraswgi_manage_patches: roothas_prepatch.yml and roothas_postpatch.yml check wrong directory to determine if GI is locked/unlocked (oravirt#530)

v4.13.1
=======

Expand Down
2 changes: 1 addition & 1 deletion changelogs/.plugin-cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,4 @@ plugins:
strategy: {}
test: {}
vars: {}
version: 4.13.1
version: 4.13.2
13 changes: 13 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -764,6 +764,19 @@ releases:
- oradb_tzupgrade_pdbs.yml
- release-scripts.yml
release_date: '2025-04-27'
4.13.2:
changes:
bugfixes:
- 'oradb_manage_db: check if .bashrc exists before trying to disable ocenv'
- 'oraswgi_install: ansible.builtin.yum fails installing cvuqdisk on FIPS-enabled
hosts due to missing package digest'
- 'oraswgi_manage_patches: roothas_prepatch.yml and roothas_postpatch.yml check
wrong directory to determine if GI is locked/unlocked (oravirt#530)'
fragments:
- bashrc_check_fix.yml
- cvuqdisk-on-fips.yml
- gi_locked_check.yml
release_date: '2025-10-25'
4.2.0:
changes:
breaking_changes:
Expand Down
3 changes: 0 additions & 3 deletions changelogs/fragments/bashrc_check_fix.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/cvuqdisk-on-fips.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/gi_locked_check.yml

This file was deleted.

2 changes: 1 addition & 1 deletion example/beginner/ansible/requirements.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
collections:
- name: opitzconsulting.ansible_oracle
version: 4.13.1
version: 4.13.2

# following entry is for development only!
# - name: opitzconsulting.ansible_oracle
Expand Down
2 changes: 1 addition & 1 deletion example/beginner_patching/ansible/requirements.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
collections:
- name: opitzconsulting.ansible_oracle
version: 4.13.1
version: 4.13.2

# following entry is for development only!
# - name: opitzconsulting.ansible_oracle
Expand Down
2 changes: 1 addition & 1 deletion example/rac/ansible/requirements.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
collections:
- name: opitzconsulting.ansible_oracle
version: 4.13.1
version: 4.13.2

# following entry is for development only!
# - name: opitzconsulting.ansible_oracle
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace: opitzconsulting
name: ansible_oracle
description: "This is the collection of ansible-oracle from https://github.com/oravirt/ansible-oracle"
version: 4.13.1
version: 4.13.2
repository: https://github.com/oravirt/ansible-oracle.git
readme: README.md
authors:
Expand Down
Loading