From 26dc6eabc7e0b14c810b6c1fe9ee6875e55618b9 Mon Sep 17 00:00:00 2001 From: Frank Wall Date: Thu, 7 May 2020 10:29:27 +0200 Subject: [PATCH] release 2.1.0 --- CHANGELOG.md | 12 +++++++++++- README.md | 7 ++++--- metadata.json | 2 +- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b65ab94..61ec881 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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/spec/v2.0.0.html). +## [2.1.0] - 2020-05-07 +This is a maintenance release. + +### Changed +* Fix duplicate declaration errors by replacing `ensure_resource()` with `ensure_packages()` ([#158]) +* Re-enable the content-check for validating the server connection ([#152]) + ## [2.0.0] - 2020-04-14 This is a new major release. It aims to fix many long-standing limitations, hence it introduces several breaking changes and should be tested in non-producton environments. Starting with this release unit tests and acceptance tests are required for all new features, this should further stabilize the module. @@ -201,7 +208,8 @@ This is the first release after extensive code refactoring and introduces multip ## 0.1.0 * Bugfix: Additional package as an ensure_resource -[Unreleased]: https://github.com/fraenki/puppet-galera/compare/2.0.0...HEAD +[Unreleased]: https://github.com/fraenki/puppet-galera/compare/2.1.0...HEAD +[2.1.0]: https://github.com/fraenki/puppet-galera/compare/2.0.0...2.1.0 [2.0.0]: https://github.com/fraenki/puppet-galera/compare/1.0.6...2.0.0 [1.0.6]: https://github.com/fraenki/puppet-galera/compare/1.0.5...1.0.6 [1.0.5]: https://github.com/fraenki/puppet-galera/compare/1.0.5...1.0.5 @@ -213,8 +221,10 @@ This is the first release after extensive code refactoring and introduces multip [0.7.2]: https://github.com/fraenki/puppet-galera/compare/0.7.1...0.7.2 [0.7.1]: https://github.com/fraenki/puppet-galera/compare/0.7.0...0.7.1 [0.7.0]: https://github.com/fraenki/puppet-galera/compare/0.0.6...0.7.0 +[#158]: https://github.com/fraenki/puppet-galera/pull/158 [#154]: https://github.com/fraenki/puppet-galera/pull/154 [#153]: https://github.com/fraenki/puppet-galera/pull/153 +[#152]: https://github.com/fraenki/puppet-galera/pull/152 [#149]: https://github.com/fraenki/puppet-galera/pull/149 [#148]: https://github.com/fraenki/puppet-galera/pull/148 [#145]: https://github.com/fraenki/puppet-galera/pull/145 diff --git a/README.md b/README.md index 4ea1c7e..2cede78 100644 --- a/README.md +++ b/README.md @@ -154,16 +154,17 @@ class { 'galera': Or if you just want to switch to using a local mirror, simply change the repo URL for the chosen `$vendor_type`. For Codership you would add something like this to Hiera: - # RHEL-based systems ```puppet +# RHEL-based systems galera::repo::codership::yum: baseurl: "http://repo.example.com/RPMS/%{facts.os.release.major}/RPMS/%{facts.os.architecture}/" baseurl: "http://repo.example.com/RPMS/<%= $vendor_version_real %>/%{facts.os.release.major}/%{facts.os.architecture}/" ``` - # Debian-based systems + ```puppet +# Debian-based systems galera::repo::codership::apt: - apt_location => "http://repo.example.com/apt/%{facts.os.distro.codename}/", + apt_location: "http://repo.example.com/apt/%{facts.os.distro.codename}/" ... ``` diff --git a/metadata.json b/metadata.json index 1df253a..768a1f2 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "fraenki-galera", - "version": "2.0.0", + "version": "2.1.0", "author": "Frank Wall", "summary": "Setup a Galera cluster on MySQL/MariaDB/XtraDB with Arbitrator support", "license": "BSD-2-Clause",