Skip to content

Commit 84ebb42

Browse files
committed
Release 10.3.0
* Add new parameter autoconvert for rabbitmq_parameter (@joec4i) (voxpupuli#865) * Ensure :autoconvert is initialized before :value for rabbitmq_parameter (@joec4i) (voxpupuli#867) * modulesync 3.1.0 (@bastelfreak) (voxpupuli#864) * modulesync 4.0.0 (@bastelfreak) (voxpupuli#866)
1 parent 57f8e19 commit 84ebb42

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,19 @@ 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-
## [v10.2.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v10.2.0) (2020-10-12)
7+
## [v10.3.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v10.3.0) (2020-12-01)
8+
9+
[Full Changelog](https://github.com/voxpupuli/puppet-rabbitmq/compare/v10.2.0...v10.3.0)
10+
11+
**Implemented enhancements:**
12+
13+
- Add new parameter autoconvert for rabbitmq\_parameter [\#865](https://github.com/voxpupuli/puppet-rabbitmq/pull/865) ([joec4i](https://github.com/joec4i))
14+
15+
**Fixed bugs:**
16+
17+
- Ensure :autoconvert is initialized before :value for rabbitmq\_parameter [\#867](https://github.com/voxpupuli/puppet-rabbitmq/pull/867) ([joec4i](https://github.com/joec4i))
18+
19+
## [v10.2.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v10.2.0) (2020-10-13)
820

921
[Full Changelog](https://github.com/voxpupuli/puppet-rabbitmq/compare/v10.1.2...v10.2.0)
1022

REFERENCE.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1289,6 +1289,18 @@ rabbitmq_parameter { 'documentumFed@/':
12891289
'expires' => '360000',
12901290
},
12911291
}
1292+
rabbitmq_parameter { 'documentumShovelNoMunging@/':
1293+
component_name => '',
1294+
value => {
1295+
'src-uri' => 'amqp://',
1296+
'src-exchange' => 'my-exchange',
1297+
'src-exchange-key' => '6',
1298+
'src-queue' => 'my-queue',
1299+
'dest-uri' => 'amqp://remote-server',
1300+
'dest-exchange' => 'another-exchange',
1301+
},
1302+
autoconvert => false,
1303+
}
12921304
```
12931305

12941306
#### Properties
@@ -1323,6 +1335,14 @@ namevar
13231335

13241336
combination of name@vhost to set parameter for
13251337

1338+
##### `autoconvert`
1339+
1340+
Valid values: `true`, `false`
1341+
1342+
whether numeric strings from `value` should be converted to int automatically
1343+
1344+
Default value: `true`
1345+
13261346
### rabbitmq_plugin
13271347

13281348
manages rabbitmq plugins

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": "10.2.1-rc0",
3+
"version": "10.3.0",
44
"author": "voxpupuli",
55
"summary": "Installs, configures, and manages RabbitMQ.",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)