From 25098529b4ccc26358a2e66aba83104e26a68db0 Mon Sep 17 00:00:00 2001 From: Trey Dockendorf Date: Mon, 10 Oct 2022 08:17:57 -0400 Subject: [PATCH] Release v8.2.0 --- CHANGELOG.md | 13 +++++++++++++ REFERENCE.md | 11 ++++++++++- metadata.json | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e0607cc..c247a973 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org). +## [v8.2.0](https://github.com/treydock/puppet-module-keycloak/tree/v8.2.0) (2022-10-10) + +[Full Changelog](https://github.com/treydock/puppet-module-keycloak/compare/v8.1.0...v8.2.0) + +### Added + +- Support MySQL module 13.x [\#256](https://github.com/treydock/puppet-module-keycloak/pull/256) ([treydock](https://github.com/treydock)) +- Use http-relative-path for wrapper\_server [\#254](https://github.com/treydock/puppet-module-keycloak/pull/254) ([nblock](https://github.com/nblock)) + +### Fixed + +- Use a regular string for cache-config-file option [\#255](https://github.com/treydock/puppet-module-keycloak/pull/255) ([nblock](https://github.com/nblock)) + ## [v8.1.0](https://github.com/treydock/puppet-module-keycloak/tree/v8.1.0) (2022-07-13) [Full Changelog](https://github.com/treydock/puppet-module-keycloak/compare/v8.0.0...v8.1.0) diff --git a/REFERENCE.md b/REFERENCE.md index 21789454..1b10225d 100644 --- a/REFERENCE.md +++ b/REFERENCE.md @@ -93,6 +93,7 @@ The following parameters are available in the `keycloak` class: * [`http_host`](#http_host) * [`http_port`](#http_port) * [`https_port`](#https_port) +* [`http_relative_path`](#http_relative_path) * [`manage_user`](#manage_user) * [`user`](#user) * [`user_shell`](#user_shell) @@ -345,6 +346,14 @@ HTTPS port Default value: `8443` +##### `http_relative_path` + +Data type: `Pattern[/^\/.*/]` + +Set the path relative to '/' for serving resources. The path must start with a '/'. + +Default value: `'/'` + ##### `manage_user` Data type: `Boolean` @@ -3721,7 +3730,7 @@ Alias of ```puppet Struct[{ Optional['cache'] => Enum['local', 'ispn'], - Optional['cache-config-file'] => Stdlib::Absolutepath, + Optional['cache-config-file'] => String[1], Optional['cache-stack'] => Enum['tcp','udp','kubernetes','ec2','azure','google'], Optional['db'] => Enum['dev-file','dev-mem','mariadb','mysql','oracle','postgres'], Optional['db-password'] => String[1], diff --git a/metadata.json b/metadata.json index 2eec2d07..8e282b5e 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "treydock-keycloak", - "version": "8.1.0", + "version": "8.2.0", "author": "treydock", "summary": "Keycloak Puppet module", "license": "Apache-2.0",