summaryrefslogtreecommitdiffstats
path: root/ansible_collections/community/rabbitmq/changelogs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:04:41 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:04:41 +0000
commit975f66f2eebe9dadba04f275774d4ab83f74cf25 (patch)
tree89bd26a93aaae6a25749145b7e4bca4a1e75b2be /ansible_collections/community/rabbitmq/changelogs
parentInitial commit. (diff)
downloadansible-975f66f2eebe9dadba04f275774d4ab83f74cf25.tar.xz
ansible-975f66f2eebe9dadba04f275774d4ab83f74cf25.zip
Adding upstream version 7.7.0+dfsg.upstream/7.7.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/community/rabbitmq/changelogs')
-rw-r--r--ansible_collections/community/rabbitmq/changelogs/changelog.yaml120
-rw-r--r--ansible_collections/community/rabbitmq/changelogs/config.yaml31
2 files changed, 151 insertions, 0 deletions
diff --git a/ansible_collections/community/rabbitmq/changelogs/changelog.yaml b/ansible_collections/community/rabbitmq/changelogs/changelog.yaml
new file mode 100644
index 000000000..ee3c424ba
--- /dev/null
+++ b/ansible_collections/community/rabbitmq/changelogs/changelog.yaml
@@ -0,0 +1,120 @@
+ancestor: null
+releases:
+ 1.0.0:
+ changes:
+ bugfixes:
+ - Refactor RabbitMQ user module to first check the version of the daemon and
+ then, when possible add flags to `rabbitmqctl` so that a machine readable output
+ is returned. Also, depending on the version, parse the output in correctly.
+ Expands tests accordingly. (https://github.com/ansible/ansible/issues/48890)
+ - rabbitmq lookup plugin - Fix for rabbitmq lookups failing when using pika
+ v1.0.0 and newer.
+ - rabbitmq_publish - Fix to ensure the module works correctly for pika v1.0.0
+ and later. (https://github.com/ansible/ansible/pull/61960)
+ minor_changes:
+ - rabbitmq_publish - Support for connecting with SSL certificates.
+ fragments:
+ - 55919-rabbitmq_publish-fix-for-recent-pika-versions.yml
+ - 66876-parse_post_rabbitmq_3.7_output_as_json.yaml
+ - lookup_rabbitmq-is_closing-bug.yml
+ - rabbitmq_publish-certificate-checks.yml
+ release_date: '2020-08-18'
+ 1.1.0:
+ changes:
+ bugfixes:
+ - rabbitmq_policy - The ``_policy_check`` piece of the policy module (``policy_data``)
+ is typically list based on a split of the variable ``policy``. However ``policy``
+ in some cases does not contain data. The fix allows ``tags`` to attempt to
+ load as json first but in the case of failure, assign ``tags`` without using
+ the json loader (https://github.com/ansible-collections/community.rabbitmq/pull/28).
+ release_summary: 'This is the minor release of the ``community.rabbitmq`` collection.
+
+ This changelog contains all changes to the modules and plugins in this collection
+
+ that have been made after release 1.0.3.'
+ fragments:
+ - 1.1.0.yml
+ - 86-fix-tags-json-in-rmq-policy.yml
+ modules:
+ - description: Enables feature flag
+ name: rabbitmq_feature_flag
+ namespace: ''
+ - description: Execute rabbitmq-upgrade commands
+ name: rabbitmq_upgrade
+ namespace: ''
+ - description: Manage RabbitMQ user limits
+ name: rabbitmq_user_limits
+ namespace: ''
+ release_date: '2021-07-29'
+ 1.2.0:
+ changes:
+ bugfixes:
+ - Collection core functions - use vendored version of ``distutils.version``
+ instead of the deprecated Python standard library ``distutils``.
+ minor_changes:
+ - rabbitmq_user - add support for `topic authorization <https://www.rabbitmq.com/access-control.html#topic-authorisation>`_
+ (featured in RabbitMQ 3.7.0) (https://github.com/ansible-collections/community.rabbitmq/pull/73).
+ release_summary: 'This is the minor release of the ``community.rabbitmq`` collection.
+
+ This changelog contains all changes to the modules and plugins in this collection
+
+ that have been made after the 1.1.0 release.'
+ fragments:
+ - 0-copy_ignore_txt.yml
+ - 1.2.0.yml
+ - 115-use_vendored_looseversion.yml
+ - 73-topic-authorization.yml
+ release_date: '2022-05-12'
+ 1.2.1:
+ changes:
+ bugfixes:
+ - Include ``PSF-license.txt`` file for ``plugins/module_utils/_version.py``.
+ release_summary: 'This is the minor release of the ``community.rabbitmq`` collection.
+
+ This changelog contains all changes to the modules and plugins in this collection
+
+ that have been made after the 1.2.0 release.'
+ fragments:
+ - 1.2.1.yml
+ - psf-license.yml
+ release_date: '2022-05-16'
+ 1.2.2:
+ changes:
+ bugfixes:
+ - user module - set supports_check_mode flag to False, as the module does not
+ actually support check mode.
+ release_summary: 'This is the minor release of the ``community.rabbitmq`` collection.
+
+ This changelog contains all changes to the modules and plugins in this collection
+
+ that have been made after the 1.2.1 release.'
+ fragments:
+ - 1.2.2.yml
+ - 107-user_disable_check_support.yml
+ release_date: '2022-07-13'
+ 1.2.3:
+ changes:
+ bugfixes:
+ - rabbitmq_queue - fixing an issue where a special character in the queue name
+ would result in an API error (https://github.com/ansible-collections/community.rabbitmq/issues/114).
+ minor_changes:
+ - rabbitmq_exchange - adding ability to specify exchange types that are enabled
+ via plugins. I(x-random), I(x-consistent-hash) and I(x-recent-history)
+ (https://github.com/ansible-collections/community.rabbitmq/pull/142).
+ - rabbitmq_publish - fixing issue with publishing to exchanges and adding exchange
+ documentation examples. Publishing to an exchange or queue is now mutually
+ exclusive (https://github.com/ansible-collections/community.rabbitmq/pull/140).
+ - Various CI fixes (https://github.com/ansible-collections/community.rabbitmq/pull/139 &
+ https://github.com/ansible-collections/community.rabbitmq/pull/141).
+ release_summary: 'This is the minor release of the ``community.rabbitmq`` collection.
+
+ This changelog contains all changes to the modules and plugins in this collection
+
+ that have been made after the 1.2.1 release.'
+ fragments:
+ - 1.2.3.yml
+ - 114-queue-name-escape.yml
+ - 139_ci_add_stable_214.yml
+ - 140-fixing-publishing-to-exchanges.yaml
+ - 142-new-plugin-exchanges.yml
+ release_date: '2022-11-04'
diff --git a/ansible_collections/community/rabbitmq/changelogs/config.yaml b/ansible_collections/community/rabbitmq/changelogs/config.yaml
new file mode 100644
index 000000000..e47ffd370
--- /dev/null
+++ b/ansible_collections/community/rabbitmq/changelogs/config.yaml
@@ -0,0 +1,31 @@
+changelog_filename_template: ../CHANGELOG.rst
+changelog_filename_version_depth: 0
+changes_file: changelog.yaml
+changes_format: combined
+ignore_other_fragment_extensions: true
+keep_fragments: false
+mention_ancestor: true
+new_plugins_after_name: removed_features
+notesdir: fragments
+prelude_section_name: release_summary
+prelude_section_title: Release Summary
+sections:
+- - major_changes
+ - Major Changes
+- - minor_changes
+ - Minor Changes
+- - breaking_changes
+ - Breaking Changes / Porting Guide
+- - deprecated_features
+ - Deprecated Features
+- - removed_features
+ - Removed Features (previously deprecated)
+- - security_fixes
+ - Security Fixes
+- - bugfixes
+ - Bugfixes
+- - known_issues
+ - Known Issues
+title: Community.Rabbitmq
+trivial_section_name: trivial
+use_fqcn: true