From fc703965c2ceaee8c1e2981fd253e1e02be439dc Mon Sep 17 00:00:00 2001 From: William Yardley Date: Sat, 16 Jan 2021 10:49:03 -0800 Subject: [PATCH] Release 11.0.0 * Add optional variables to support SSL CRL check configuration (#869) * Remove support for CentOS 6 (#870) --- CHANGELOG.md | 12 ++++++++++++ REFERENCE.md | 27 +++++++++++++++++++++++++++ metadata.json | 2 +- 3 files changed, 40 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1164c3863..33ea016ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ 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. +## [v11.0.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v11.0.0) (2021-01-16) + +[Full Changelog](https://github.com/voxpupuli/puppet-rabbitmq/compare/v10.3.0...v11.0.0) + +**Breaking changes:** + +- Remove support for CentOS 6 [\#870](https://github.com/voxpupuli/puppet-rabbitmq/pull/870) ([towo](https://github.com/towo)) + +**Implemented enhancements:** + +- Add optional variables to support SSL CRL check configuration [\#869](https://github.com/voxpupuli/puppet-rabbitmq/pull/869) ([dimonzozo](https://github.com/dimonzozo)) + ## [v10.3.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v10.3.0) (2020-12-01) [Full Changelog](https://github.com/voxpupuli/puppet-rabbitmq/compare/v10.2.0...v10.3.0) diff --git a/REFERENCE.md b/REFERENCE.md index a3be931e8..587b67487 100644 --- a/REFERENCE.md +++ b/REFERENCE.md @@ -834,6 +834,33 @@ Functionality can be tested with cipherscan or similar tool: https://github.com/ Default value: [] +##### `ssl_crl_check` + +Data type: `Enum['true','false','peer','best_effort']` + +Perform CRL (Certificate Revocation List) verification +Please see the [Erlang SSL](https://erlang.org/doc/man/ssl.html#type-crl_check) module documentation for more information. + +Default value: 'false' + +##### `ssl_crl_cache_hash_dir` + +Data type: `Optional[Stdlib::Absolutepath]` + +This setting makes use of a directory where CRLs are stored in files named by the hash of the issuer name. +Please see the [Erlang SSL](https://erlang.org/doc/man/ssl.html#type-crl_cache_opts) module documentation for more information. + +Default value: `undef` + +##### `ssl_crl_cache_http_timeout` + +Data type: `Optional[Integer]` + +This setting enables use of internal CRLs cache and sets HTTP timeout interval on fetching CRLs from distributino URLs defined inside certificate. +Please see the [Erlang SSL](https://erlang.org/doc/man/ssl.html#type-crl_cache_opts) module documentation for more information. + +Default value: `undef` + ##### `stomp_port` Data type: `Integer[1, 65535]` diff --git a/metadata.json b/metadata.json index 4adb1304e..cc69598b9 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "puppet-rabbitmq", - "version": "10.3.1-rc0", + "version": "11.0.0", "author": "voxpupuli", "summary": "Installs, configures, and manages RabbitMQ.", "license": "Apache-2.0",