Skip to content

Commit b93a121

Browse files
authored
Release 1.3.0 commit (ansible-collections#168)
* Release 1.3.0 commit
1 parent 0192969 commit b93a121

File tree

4 files changed

+35
-14
lines changed

4 files changed

+35
-14
lines changed

CHANGELOG.rst

+15-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ Community.Rabbitmq Release Notes
44

55
.. contents:: Topics
66

7+
v1.3.0
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
This is the minor release of the ``community.rabbitmq`` collection.
14+
This changelog contains all changes to the modules and plugins in this collection
15+
that have been made after the 1.2.3 release.
16+
17+
Minor Changes
18+
-------------
19+
20+
- rabbitmq_user - add support to user manipulation through RabbitMQ API (https://github.com/ansible-collections/community.rabbitmq/issues/76)
721

822
v1.2.3
923
======
@@ -15,7 +29,6 @@ This is the minor release of the ``community.rabbitmq`` collection.
1529
This changelog contains all changes to the modules and plugins in this collection
1630
that have been made after the 1.2.2 release.
1731

18-
1932
Minor Changes
2033
-------------
2134

@@ -25,8 +38,8 @@ Minor Changes
2538
Bugfixes
2639
--------
2740

28-
- 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).
2941
- Various CI fixes (https://github.com/ansible-collections/community.rabbitmq/pull/139 & https://github.com/ansible-collections/community.rabbitmq/pull/141).
42+
- 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).
3043

3144
v1.2.2
3245
======

changelogs/changelog.yaml

+18-6
Original file line numberDiff line numberDiff line change
@@ -95,26 +95,38 @@ releases:
9595
1.2.3:
9696
changes:
9797
bugfixes:
98+
- Various CI fixes (https://github.com/ansible-collections/community.rabbitmq/pull/139
99+
& https://github.com/ansible-collections/community.rabbitmq/pull/141).
98100
- rabbitmq_queue - fixing an issue where a special character in the queue name
99101
would result in an API error (https://github.com/ansible-collections/community.rabbitmq/issues/114).
100102
minor_changes:
101103
- rabbitmq_exchange - adding ability to specify exchange types that are enabled
102-
via plugins. I(x-random), I(x-consistent-hash) and I(x-recent-history)
103-
(https://github.com/ansible-collections/community.rabbitmq/pull/142).
104+
via plugins. I(x-random), I(x-consistent-hash) and I(x-recent-history) (https://github.com/ansible-collections/community.rabbitmq/pull/142).
104105
- rabbitmq_publish - fixing issue with publishing to exchanges and adding exchange
105106
documentation examples. Publishing to an exchange or queue is now mutually
106-
exclusive (https://github.com/ansible-collections/community.rabbitmq/pull/140).
107-
- Various CI fixes (https://github.com/ansible-collections/community.rabbitmq/pull/139 &
108-
https://github.com/ansible-collections/community.rabbitmq/pull/141).
107+
exclusive (https://github.com/ansible-collections/community.rabbitmq/pull/140).
109108
release_summary: 'This is the minor release of the ``community.rabbitmq`` collection.
110109
111110
This changelog contains all changes to the modules and plugins in this collection
112111
113-
that have been made after the 1.2.1 release.'
112+
that have been made after the 1.2.2 release.'
114113
fragments:
115114
- 1.2.3.yml
116115
- 114-queue-name-escape.yml
117116
- 139_ci_add_stable_214.yml
118117
- 140-fixing-publishing-to-exchanges.yaml
119118
- 142-new-plugin-exchanges.yml
120119
release_date: '2022-11-04'
120+
1.3.0:
121+
changes:
122+
minor_changes:
123+
- rabbitmq_user - add support to user manipulation through RabbitMQ API (https://github.com/ansible-collections/community.rabbitmq/issues/76)
124+
release_summary: 'This is the minor release of the ``community.rabbitmq`` collection.
125+
126+
This changelog contains all changes to the modules and plugins in this collection
127+
128+
that have been made after the 1.2.3 release.'
129+
fragments:
130+
- 1.3.0.yml
131+
- 120-api-managed-users.yaml
132+
release_date: '2024-03-31'

changelogs/fragments/120-api-managed-users.yaml

-2
This file was deleted.

tests/unit/compat/mock.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ def _iterate_read_data(read_data):
6464
# newline that our naive format() added
6565
data_as_list[-1] = data_as_list[-1][:-1]
6666

67-
for line in data_as_list:
68-
yield line
67+
yield from data_as_list
6968

7069
def mock_open(mock=None, read_data=''):
7170
"""
@@ -93,8 +92,7 @@ def _readline_side_effect():
9392
if handle.readline.return_value is not None:
9493
while True:
9594
yield handle.readline.return_value
96-
for line in _data:
97-
yield line
95+
yield from _data
9896

9997
global file_spec
10098
if file_spec is None:

0 commit comments

Comments
 (0)