Skip to content

Commit d066549

Browse files
author
Helen
authored
Merge pull request #986 from puppetlabs/release
mergeback of 4.0.0
2 parents 27b4eed + 04a1bcd commit d066549

File tree

3 files changed

+31
-8
lines changed

3 files changed

+31
-8
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## Supported Release 4.0.0
2+
### Summary
3+
This release sees the enablement of rubocop, also an update to the lib directory with rubocop fixes and several other changes and fixes. Also a bump to the Puppet version compatibility and several Puppet language updates.
4+
5+
#### Added
6+
- Updated README.md with example how to install MySQL Community Server 5.6 on Centos 7.3
7+
- Enabled Rubocop and addition of Rubocop fixes for /lib directory.
8+
9+
#### Removed
10+
- Dropped legacy tests for db.pp.
11+
12+
#### Changed
13+
- Replaced validate function calls with datatypes in db.pp.
14+
- Bumped recommended puppet version to between 4.7.0 and 6.0.0.
15+
- Conditionalize name validation in mysql_grant type. ([MODULES-4604](https://tickets.puppet.com/browse/MODULES-4604))
16+
17+
#### Fixed
18+
- Removal of invalid parameter provider on Mysql_user[user@localhost] in mysql::db ([MODULES-4115](https://tickets.puppet.com/browse/MODULES-4115))
19+
- Fixed server_service_name for Debian/stretch.
20+
- Spec fixes for Puppet 5.
21+
- Test update for fix:create procedure, then grant ([MODULES-5390](https://tickets.puppet.com/browse/MODULES-5390))
22+
- Fixing empty user/password issue for xtrabackup. Now defaults as undef instead of ''.
23+
- Remove unsupported Ubuntu versions ([MODULES-5501](https://tickets.puppet.com/browse/MODULES-5501))
24+
125
## Supported Release 3.11.0
226
### Summary
327
This release includes README and metadata translations to Japanese, as well as some enhancements and bugfixes.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -326,20 +326,20 @@ You can install MySQL Community Server on CentOS using the mysql module and Hier
326326

327327
* MySQL Community Server 5.6
328328
* Centos 7.3
329-
* Puppet 3.8.7 using hiera
329+
* Puppet 3.8.7 using Hiera
330330
* puppetlabs-mysql module v3.9.0
331331

332332
In Puppet:
333333

334334
```puppet
335-
include ::mysql::server
335+
include ::mysql::server
336336
337-
create_resources(yumrepo, hiera('yumrepo', {}))
337+
create_resources(yumrepo, hiera('yumrepo', {}))
338338
339-
Yumrepo['repo.mysql.com'] -> Anchor['mysql::server::start']
340-
Yumrepo['repo.mysql.com'] -> Package['mysql_client']
339+
Yumrepo['repo.mysql.com'] -> Anchor['mysql::server::start']
340+
Yumrepo['repo.mysql.com'] -> Package['mysql_client']
341341
342-
create_resources(mysql::db, hiera('mysql::server::db', {}))
342+
create_resources(mysql::db, hiera('mysql::server::db', {}))
343343
```
344344

345345
In Hiera:

metadata.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-mysql",
3-
"version": "3.11.0",
3+
"version": "4.0.0",
44
"author": "Puppet Labs",
55
"summary": "Installs, configures, and manages the MySQL service.",
66
"license": "Apache-2.0",
@@ -54,7 +54,6 @@
5454
{
5555
"operatingsystem": "Debian",
5656
"operatingsystemrelease": [
57-
"6",
5857
"7",
5958
"8"
6059
]

0 commit comments

Comments
 (0)