From 37775e5090680ee99d3ceda65220d49f3692fe27 Mon Sep 17 00:00:00 2001 From: Trey Dockendorf Date: Fri, 13 May 2022 11:01:15 -0400 Subject: [PATCH] Release v7.19.0 --- .sync.yml | 2 +- CHANGELOG.md | 12 ++++++++++++ REFERENCE.md | 9 +++++++++ Rakefile | 2 +- metadata.json | 2 +- 5 files changed, 24 insertions(+), 3 deletions(-) diff --git a/.sync.yml b/.sync.yml index 537dba9a..e243d9d6 100644 --- a/.sync.yml +++ b/.sync.yml @@ -1,7 +1,7 @@ --- Rakefile: changelog_since_tag: v6.26.0 - changelog_max_issues: 50 + changelog_max_issues: 1 .github/workflows/ci.yaml: unit_name: Puppet ${{ matrix.puppet }} (Ruby ${{ matrix.ruby }} fixtures=${{ matrix.fixtures }}) unit_includes: diff --git a/CHANGELOG.md b/CHANGELOG.md index 68d0de53..54acac5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ 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). +## [v7.19.0](https://github.com/treydock/puppet-module-keycloak/tree/v7.19.0) (2022-05-13) + +[Full Changelog](https://github.com/treydock/puppet-module-keycloak/compare/v7.18.0...v7.19.0) + +### Added + +- Allow changing auth URL via auth\_url\_path parameter [\#245](https://github.com/treydock/puppet-module-keycloak/pull/245) ([treydock](https://github.com/treydock)) + +### Fixed + +- fix profile.properties file path in domain mode [\#244](https://github.com/treydock/puppet-module-keycloak/pull/244) ([surcouf](https://github.com/surcouf)) + ## [v7.18.0](https://github.com/treydock/puppet-module-keycloak/tree/v7.18.0) (2022-04-29) [Full Changelog](https://github.com/treydock/puppet-module-keycloak/compare/v7.17.0...v7.18.0) diff --git a/REFERENCE.md b/REFERENCE.md index 87b6f9f6..d6b5bba1 100644 --- a/REFERENCE.md +++ b/REFERENCE.md @@ -173,6 +173,7 @@ The following parameters are available in the `keycloak` class: * [`syslog_port`](#syslog_port) * [`syslog_server_address`](#syslog_server_address) * [`syslog_format`](#syslog_format) +* [`auth_url_path`](#auth_url_path) ##### `manage_install` @@ -1064,6 +1065,14 @@ Syslog format. Either 'RFC3164' or 'RFC5424' Default 'RFC3164'. Default value: `'RFC3164'` +##### `auth_url_path` + +Data type: `String` + +The URL path for /auth + +Default value: `'/auth'` + ### `keycloak::config` Private class. diff --git a/Rakefile b/Rakefile index d9f709c5..0cedc45c 100644 --- a/Rakefile +++ b/Rakefile @@ -48,7 +48,7 @@ if Bundler.rubygems.find_name('github_changelog_generator').any? config.user = "#{changelog_user}" config.project = "#{changelog_project}" config.since_tag = "v6.26.0" - config.max_issues = 50 + config.max_issues = 1 config.future_release = "#{changelog_future_release}" config.exclude_labels = ['maintenance'] config.header = "# Change log\n\nAll 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)." diff --git a/metadata.json b/metadata.json index c7b0cc2b..2990274f 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "treydock-keycloak", - "version": "7.18.0", + "version": "7.19.0", "author": "treydock", "summary": "Keycloak Puppet module", "license": "Apache-2.0",