Skip to content

Commit f8e1c24

Browse files
authored
Merge pull request #903 from wyardley/wyardley/release_12_0_0
Release 12.0.0
2 parents 02a52ea + 459486e commit f8e1c24

File tree

3 files changed

+57
-2
lines changed

3 files changed

+57
-2
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,36 @@ All notable changes to this project will be documented in this file.
44
Each new release typically also includes the latest modulesync defaults.
55
These should not affect the functionality of the module.
66

7+
## [v12.0.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v12.0.0) (2022-03-28)
8+
9+
[Full Changelog](https://github.com/voxpupuli/puppet-rabbitmq/compare/v11.1.0...v12.0.0)
10+
11+
**Breaking changes:**
12+
13+
- breaking: remove support for debian 8 [\#888](https://github.com/voxpupuli/puppet-rabbitmq/pull/888) ([TheMeier](https://github.com/TheMeier))
14+
- Drop Puppet 5 support; require 6.1.0 / Drop RedHat 6 support [\#878](https://github.com/voxpupuli/puppet-rabbitmq/pull/878) ([bastelfreak](https://github.com/bastelfreak))
15+
16+
**Fixed bugs:**
17+
18+
- change default python version for FreeBSD: 3.8 [\#904](https://github.com/voxpupuli/puppet-rabbitmq/pull/904) ([olevole](https://github.com/olevole))
19+
- RedHat: Fix outdated gpgkey for packagecloud repo [\#901](https://github.com/voxpupuli/puppet-rabbitmq/pull/901) ([kajinamit](https://github.com/kajinamit))
20+
- Fix Bug \#804 'rabbitmqadmin will not be upgraded' [\#897](https://github.com/voxpupuli/puppet-rabbitmq/pull/897) ([s-johansson](https://github.com/s-johansson))
21+
22+
**Closed issues:**
23+
24+
- Reference for log\_levels does not apply [\#894](https://github.com/voxpupuli/puppet-rabbitmq/issues/894)
25+
- Adding rabbitmq-delayed-message-exchange plugin [\#890](https://github.com/voxpupuli/puppet-rabbitmq/issues/890)
26+
- rabbitmqadmin will not be upgraded [\#804](https://github.com/voxpupuli/puppet-rabbitmq/issues/804)
27+
- fix or eliminate remaining "multiple expectations" warnings [\#603](https://github.com/voxpupuli/puppet-rabbitmq/issues/603)
28+
29+
**Merged pull requests:**
30+
31+
- Adjust docu for RabbitMQ log level \#894 [\#896](https://github.com/voxpupuli/puppet-rabbitmq/pull/896) ([s-johansson](https://github.com/s-johansson))
32+
- puppet-lint: fix top\_scope\_facts warnings [\#893](https://github.com/voxpupuli/puppet-rabbitmq/pull/893) ([bastelfreak](https://github.com/bastelfreak))
33+
- Allow archive 6.0.0 [\#892](https://github.com/voxpupuli/puppet-rabbitmq/pull/892) ([smortex](https://github.com/smortex))
34+
- Allow stdlib 8.0.0 [\#891](https://github.com/voxpupuli/puppet-rabbitmq/pull/891) ([smortex](https://github.com/smortex))
35+
- switch from camptocamp/systemd to voxpupuli/systemd [\#889](https://github.com/voxpupuli/puppet-rabbitmq/pull/889) ([bastelfreak](https://github.com/bastelfreak))
36+
737
## [v11.1.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v11.1.0) (2021-05-06)
838

939
[Full Changelog](https://github.com/voxpupuli/puppet-rabbitmq/compare/v11.0.0...v11.1.0)

REFERENCE.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,26 @@ class { 'rabbitmq':
9494
config_variables => {
9595
'hipe_compile' => true,
9696
'frame_max' => 131072,
97-
'log_levels' => "[{connection, info}]"
97+
}
98+
}
99+
```
100+
101+
##### Change RabbitMQ log level in rabbitmq.config for RabbitMQ version < 3.7.x :
102+
103+
```puppet
104+
class { 'rabbitmq':
105+
config_variables => {
106+
'log_levels' => "[{queue, info}]"
107+
}
108+
}
109+
```
110+
111+
##### Change RabbitMQ log level in rabbitmq.config for RabbitMQ version since 3.7.x :
112+
113+
```puppet
114+
class { 'rabbitmq':
115+
config_variables => {
116+
'log' => "[{file, [{level,debug}]},{categories, [{queue, [{level,info},{file,'queue.log'}]}]}]"
98117
}
99118
}
100119
```
@@ -1126,6 +1145,8 @@ Default value: queue
11261145

11271146
binding arguments
11281147

1148+
Default value: {}
1149+
11291150
#### Parameters
11301151

11311152
The following parameters are available in the `rabbitmq_binding` type.
@@ -1353,6 +1374,8 @@ Default value: `false`
13531374

13541375
Exchange arguments example: {"hash-header": "message-distribution-hash"}
13551376

1377+
Default value: {}
1378+
13561379
##### `user`
13571380

13581381
Valid values: %r{^\S+$}
@@ -1649,6 +1672,8 @@ Default value: `false`
16491672

16501673
Queue arguments example: {x-message-ttl => 60, x-expires => 10}
16511674

1675+
Default value: {}
1676+
16521677
##### `user`
16531678

16541679
Valid values: %r{^\S+$}

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppet-rabbitmq",
3-
"version": "11.1.1-rc0",
3+
"version": "12.0.0",
44
"author": "voxpupuli",
55
"summary": "Installs, configures, and manages RabbitMQ.",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)