Skip to content

Commit cf1e155

Browse files
committed
Add changelog for 1.0.0
1 parent 7ee8b3d commit cf1e155

8 files changed

+71
-23
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
# ansible-test stuff
22
/tests/output/
3+
4+
# antsibull-changelog stuff
5+
/changelogs/.plugin-cache.yaml

CHANGELOG.rst

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
================================
2+
Community.Rabbitmq Release Notes
3+
================================
4+
5+
.. contents:: Topics
6+
7+
8+
v1.0.0
9+
======
10+
11+
Minor Changes
12+
-------------
13+
14+
- rabbitmq_publish - Support for connecting with SSL certificates.
15+
16+
Bugfixes
17+
--------
18+
19+
- 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)
20+
- rabbitmq lookup plugin - Fix for rabbitmq lookups failing when using pika v1.0.0 and newer.
21+
- rabbitmq_publish - Fix to ensure the module works correctly for pika v1.0.0 and later. (https://github.com/ansible/ansible/pull/61960)

changelogs/changelog.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
ancestor: null
2+
releases:
3+
1.0.0:
4+
changes:
5+
bugfixes:
6+
- Refactor RabbitMQ user module to first check the version of the daemon and
7+
then, when possible add flags to `rabbitmqctl` so that a machine readable output
8+
is returned. Also, depending on the version, parse the output in correctly.
9+
Expands tests accordingly. (https://github.com/ansible/ansible/issues/48890)
10+
- rabbitmq lookup plugin - Fix for rabbitmq lookups failing when using pika
11+
v1.0.0 and newer.
12+
- rabbitmq_publish - Fix to ensure the module works correctly for pika v1.0.0
13+
and later. (https://github.com/ansible/ansible/pull/61960)
14+
minor_changes:
15+
- rabbitmq_publish - Support for connecting with SSL certificates.
16+
fragments:
17+
- 55919-rabbitmq_publish-fix-for-recent-pika-versions.yml
18+
- 66876-parse_post_rabbitmq_3.7_output_as_json.yaml
19+
- lookup_rabbitmq-is_closing-bug.yml
20+
- rabbitmq_publish-certificate-checks.yml
21+
release_date: '2020-08-18'

changelogs/config.yaml

+26-14
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,31 @@
1-
---
2-
title: Community RabbitMQ
1+
changelog_filename_template: ../CHANGELOG.rst
2+
changelog_filename_version_depth: 0
33
changes_file: changelog.yaml
44
changes_format: combined
5-
keep_fragments: true
6-
always_refresh: true
7-
mention_ancestor: false
5+
ignore_other_fragment_extensions: true
6+
keep_fragments: false
7+
mention_ancestor: true
8+
new_plugins_after_name: removed_features
89
notesdir: fragments
910
prelude_section_name: release_summary
10-
new_plugins_after_name: removed_features
11+
prelude_section_title: Release Summary
1112
sections:
12-
- ['major_changes', 'Major Changes']
13-
- ['minor_changes', 'Minor Changes']
14-
- ['breaking_changes', 'Breaking Changes / Porting Guide']
15-
- ['deprecated_features', 'Deprecated Features']
16-
- ['removed_features', 'Removed Features (previously deprecated)']
17-
- ['security_fixes', 'Security Fixes']
18-
- ['bugfixes', 'Bugfixes']
19-
- ['known_issues', 'Known Issues']
13+
- - major_changes
14+
- Major Changes
15+
- - minor_changes
16+
- Minor Changes
17+
- - breaking_changes
18+
- Breaking Changes / Porting Guide
19+
- - deprecated_features
20+
- Deprecated Features
21+
- - removed_features
22+
- Removed Features (previously deprecated)
23+
- - security_fixes
24+
- Security Fixes
25+
- - bugfixes
26+
- Bugfixes
27+
- - known_issues
28+
- Known Issues
29+
title: Community.Rabbitmq
30+
trivial_section_name: trivial
31+
use_fqcn: true

changelogs/fragments/55919-rabbitmq_publish-fix-for-recent-pika-versions.yml

-2
This file was deleted.

changelogs/fragments/66876-parse_post_rabbitmq_3.7_output_as_json.yaml

-3
This file was deleted.

changelogs/fragments/lookup_rabbitmq-is_closing-bug.yml

-2
This file was deleted.

changelogs/fragments/rabbitmq_publish-certificate-checks.yml

-2
This file was deleted.

0 commit comments

Comments
 (0)