Skip to content

Commit 26dc6ea

Browse files
committed
release 2.1.0
1 parent a23cbb9 commit 26dc6ea

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [2.1.0] - 2020-05-07
8+
This is a maintenance release.
9+
10+
### Changed
11+
* Fix duplicate declaration errors by replacing `ensure_resource()` with `ensure_packages()` ([#158])
12+
* Re-enable the content-check for validating the server connection ([#152])
13+
714
## [2.0.0] - 2020-04-14
815
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.
916

@@ -201,7 +208,8 @@ This is the first release after extensive code refactoring and introduces multip
201208
## 0.1.0
202209
* Bugfix: Additional package as an ensure_resource
203210

204-
[Unreleased]: https://github.com/fraenki/puppet-galera/compare/2.0.0...HEAD
211+
[Unreleased]: https://github.com/fraenki/puppet-galera/compare/2.1.0...HEAD
212+
[2.1.0]: https://github.com/fraenki/puppet-galera/compare/2.0.0...2.1.0
205213
[2.0.0]: https://github.com/fraenki/puppet-galera/compare/1.0.6...2.0.0
206214
[1.0.6]: https://github.com/fraenki/puppet-galera/compare/1.0.5...1.0.6
207215
[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
213221
[0.7.2]: https://github.com/fraenki/puppet-galera/compare/0.7.1...0.7.2
214222
[0.7.1]: https://github.com/fraenki/puppet-galera/compare/0.7.0...0.7.1
215223
[0.7.0]: https://github.com/fraenki/puppet-galera/compare/0.0.6...0.7.0
224+
[#158]: https://github.com/fraenki/puppet-galera/pull/158
216225
[#154]: https://github.com/fraenki/puppet-galera/pull/154
217226
[#153]: https://github.com/fraenki/puppet-galera/pull/153
227+
[#152]: https://github.com/fraenki/puppet-galera/pull/152
218228
[#149]: https://github.com/fraenki/puppet-galera/pull/149
219229
[#148]: https://github.com/fraenki/puppet-galera/pull/148
220230
[#145]: https://github.com/fraenki/puppet-galera/pull/145

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,16 +154,17 @@ class { 'galera':
154154

155155
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:
156156

157-
# RHEL-based systems
158157
```puppet
158+
# RHEL-based systems
159159
galera::repo::codership::yum:
160160
baseurl: "http://repo.example.com/RPMS/%{facts.os.release.major}/RPMS/%{facts.os.architecture}/"
161161
baseurl: "http://repo.example.com/RPMS/<%= $vendor_version_real %>/%{facts.os.release.major}/%{facts.os.architecture}/"
162162
```
163-
# Debian-based systems
163+
164164
```puppet
165+
# Debian-based systems
165166
galera::repo::codership::apt:
166-
apt_location => "http://repo.example.com/apt/%{facts.os.distro.codename}/",
167+
apt_location: "http://repo.example.com/apt/%{facts.os.distro.codename}/"
167168
...
168169
```
169170

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fraenki-galera",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"author": "Frank Wall",
55
"summary": "Setup a Galera cluster on MySQL/MariaDB/XtraDB with Arbitrator support",
66
"license": "BSD-2-Clause",

0 commit comments

Comments
 (0)