Skip to content

Commit

Permalink
Merge pull request #903 from wyardley/wyardley/release_12_0_0
Browse files Browse the repository at this point in the history
Release 12.0.0
  • Loading branch information
wyardley authored Mar 28, 2022
2 parents 02a52ea + 459486e commit f8e1c24
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 2 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,36 @@ All notable changes to this project will be documented in this file.
Each new release typically also includes the latest modulesync defaults.
These should not affect the functionality of the module.

## [v12.0.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v12.0.0) (2022-03-28)

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

**Breaking changes:**

- breaking: remove support for debian 8 [\#888](https://github.com/voxpupuli/puppet-rabbitmq/pull/888) ([TheMeier](https://github.com/TheMeier))
- 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))

**Fixed bugs:**

- change default python version for FreeBSD: 3.8 [\#904](https://github.com/voxpupuli/puppet-rabbitmq/pull/904) ([olevole](https://github.com/olevole))
- RedHat: Fix outdated gpgkey for packagecloud repo [\#901](https://github.com/voxpupuli/puppet-rabbitmq/pull/901) ([kajinamit](https://github.com/kajinamit))
- Fix Bug \#804 'rabbitmqadmin will not be upgraded' [\#897](https://github.com/voxpupuli/puppet-rabbitmq/pull/897) ([s-johansson](https://github.com/s-johansson))

**Closed issues:**

- Reference for log\_levels does not apply [\#894](https://github.com/voxpupuli/puppet-rabbitmq/issues/894)
- Adding rabbitmq-delayed-message-exchange plugin [\#890](https://github.com/voxpupuli/puppet-rabbitmq/issues/890)
- rabbitmqadmin will not be upgraded [\#804](https://github.com/voxpupuli/puppet-rabbitmq/issues/804)
- fix or eliminate remaining "multiple expectations" warnings [\#603](https://github.com/voxpupuli/puppet-rabbitmq/issues/603)

**Merged pull requests:**

- Adjust docu for RabbitMQ log level \#894 [\#896](https://github.com/voxpupuli/puppet-rabbitmq/pull/896) ([s-johansson](https://github.com/s-johansson))
- puppet-lint: fix top\_scope\_facts warnings [\#893](https://github.com/voxpupuli/puppet-rabbitmq/pull/893) ([bastelfreak](https://github.com/bastelfreak))
- Allow archive 6.0.0 [\#892](https://github.com/voxpupuli/puppet-rabbitmq/pull/892) ([smortex](https://github.com/smortex))
- Allow stdlib 8.0.0 [\#891](https://github.com/voxpupuli/puppet-rabbitmq/pull/891) ([smortex](https://github.com/smortex))
- switch from camptocamp/systemd to voxpupuli/systemd [\#889](https://github.com/voxpupuli/puppet-rabbitmq/pull/889) ([bastelfreak](https://github.com/bastelfreak))

## [v11.1.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v11.1.0) (2021-05-06)

[Full Changelog](https://github.com/voxpupuli/puppet-rabbitmq/compare/v11.0.0...v11.1.0)
Expand Down
27 changes: 26 additions & 1 deletion REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,26 @@ class { 'rabbitmq':
config_variables => {
'hipe_compile' => true,
'frame_max' => 131072,
'log_levels' => "[{connection, info}]"
}
}
```

##### Change RabbitMQ log level in rabbitmq.config for RabbitMQ version < 3.7.x :

```puppet
class { 'rabbitmq':
config_variables => {
'log_levels' => "[{queue, info}]"
}
}
```

##### Change RabbitMQ log level in rabbitmq.config for RabbitMQ version since 3.7.x :

```puppet
class { 'rabbitmq':
config_variables => {
'log' => "[{file, [{level,debug}]},{categories, [{queue, [{level,info},{file,'queue.log'}]}]}]"
}
}
```
Expand Down Expand Up @@ -1126,6 +1145,8 @@ Default value: queue

binding arguments

Default value: {}

#### Parameters

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

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

Default value: {}

##### `user`

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

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

Default value: {}

##### `user`

Valid values: %r{^\S+$}
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppet-rabbitmq",
"version": "11.1.1-rc0",
"version": "12.0.0",
"author": "voxpupuli",
"summary": "Installs, configures, and manages RabbitMQ.",
"license": "Apache-2.0",
Expand Down

0 comments on commit f8e1c24

Please sign in to comment.