Skip to content

Commit 7e81906

Browse files
committed
Merge pull request #668 from mhaskel/merge_3.2.x_to_master
Merge 3.2.x to master
2 parents b9fbba3 + f93fbe3 commit 7e81906

17 files changed

+32
-9
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
##2015-02-09 - Supported Release 3.2.0
2+
###Summary
3+
This release includes several new features and bugfixes, including support for various plugins, making the output from mysql_password more consistent when input is empty and improved username validation.
4+
5+
####Features
6+
- Add type and provider to manage plugins
7+
- Add support for authentication plugins
8+
- Add support for mysql_install_db on freebsd
9+
- Add `create_root_user` and `create_root_my_cnf` parameters to `mysql::server`
10+
11+
####Bugfixes
12+
- Remove dependency on stdlib >= 4.1.0 (MODULES-1759)
13+
- Make grant autorequire user
14+
- Remove invalid parameter 'provider' from mysql_user instance (MODULES-1731)
15+
- Return empty string for empty input in mysql_password
16+
- Fix `mysql::account_security` when fqdn==localhost
17+
- Update username validation (MODULES-1520)
18+
- Future parser fix in params.pp
19+
- Fix package name for debian 8
20+
- Don't start the service until the server package is installed and the config file is in place
21+
- Test fixes
22+
- Lint fixes
23+
124
##2014-12-16 - Supported Release 3.1.0
225
###Summary
326

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/mysql_plugin.pp renamed to examples/mysql_plugin.pp

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
}
44

55
mysql::plugin{ 'validate_password':
6-
ensure => present,
7-
soname => $::osfamily ? {
6+
ensure => present,
7+
soname => $::osfamily ? {
88
windows => 'validate_password.dll',
99
default => 'validate_password.so'
1010
}
1111
}
1212

1313
mysql::plugin{ 'auth_socket':
14-
ensure => present,
15-
soname => $::osfamily ? {
14+
ensure => present,
15+
soname => $::osfamily ? {
1616
windows => 'auth_socket.dll',
1717
default => 'auth_socket.so'
1818
}

tests/mysql_user.pp renamed to examples/mysql_user.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
}
2222

2323
mysql_user{ 'socketplugin@%':
24-
ensure => present,
25-
plugin => 'unix_socket',
24+
ensure => present,
25+
plugin => 'unix_socket',
2626
}
2727

2828
mysql_user{ 'socketplugin@%':
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

manifests/server/account_security.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
}
1010
if ($::fqdn != 'localhost.localdomain') {
1111
mysql_user {
12-
13-
"@localhost.localdomain"]:
12+
13+
'@localhost.localdomain']:
1414
ensure => 'absent',
1515
require => Anchor['mysql::server::end'],
1616
}

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-mysql",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"author": "Puppet Labs",
55
"summary": "Installs, configures, and manages the MySQL service.",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)