Skip to content

Merge 3.2.x to master #668

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Feb 10, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
##2015-02-09 - Supported Release 3.2.0
###Summary
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.

####Features
- Add type and provider to manage plugins
- Add support for authentication plugins
- Add support for mysql_install_db on freebsd
- Add `create_root_user` and `create_root_my_cnf` parameters to `mysql::server`

####Bugfixes
- Remove dependency on stdlib >= 4.1.0 (MODULES-1759)
- Make grant autorequire user
- Remove invalid parameter 'provider' from mysql_user instance (MODULES-1731)
- Return empty string for empty input in mysql_password
- Fix `mysql::account_security` when fqdn==localhost
- Update username validation (MODULES-1520)
- Future parser fix in params.pp
- Fix package name for debian 8
- Don't start the service until the server package is installed and the config file is in place
- Test fixes
- Lint fixes

##2014-12-16 - Supported Release 3.1.0
###Summary

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions tests/mysql_plugin.pp → examples/mysql_plugin.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
}

mysql::plugin{ 'validate_password':
ensure => present,
soname => $::osfamily ? {
ensure => present,
soname => $::osfamily ? {
windows => 'validate_password.dll',
default => 'validate_password.so'
}
}

mysql::plugin{ 'auth_socket':
ensure => present,
soname => $::osfamily ? {
ensure => present,
soname => $::osfamily ? {
windows => 'auth_socket.dll',
default => 'auth_socket.so'
}
Expand Down
4 changes: 2 additions & 2 deletions tests/mysql_user.pp → examples/mysql_user.pp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
}

mysql_user{ 'socketplugin@%':
ensure => present,
plugin => 'unix_socket',
ensure => present,
plugin => 'unix_socket',
}

mysql_user{ 'socketplugin@%':
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions manifests/server/account_security.pp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
}
if ($::fqdn != 'localhost.localdomain') {
mysql_user {
[ "[email protected]",
"@localhost.localdomain"]:
[ '[email protected]',
'@localhost.localdomain']:
ensure => 'absent',
require => Anchor['mysql::server::end'],
}
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-mysql",
"version": "3.1.0",
"version": "3.2.0",
"author": "Puppet Labs",
"summary": "Installs, configures, and manages the MySQL service.",
"license": "Apache-2.0",
Expand Down