Skip to content

Release prep v11.0.3 #1402

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 1 commit into from
Jun 21, 2021
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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).

## [v11.0.3](https://github.com/puppetlabs/puppetlabs-mysql/tree/v11.0.3) (2021-06-21)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-mysql/compare/v11.0.2...v11.0.3)

### Fixed

- \(IAC-1430\) - Minor docs updating [\#1401](https://github.com/puppetlabs/puppetlabs-mysql/pull/1401) ([pmcmaw](https://github.com/pmcmaw))

## [v11.0.2](https://github.com/puppetlabs/puppetlabs-mysql/tree/v11.0.2) (2021-06-07)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-mysql/compare/v11.0.1...v11.0.2)
Expand Down
22 changes: 6 additions & 16 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,14 @@

### Functions

* [`mysql::normalise_and_deepmerge`](#mysqlnormalise_and_deepmerge): Recursively merges two or more hashes together, normalises keys with differing use of dashesh and underscores,
then returns the resulting hash.
* [`mysql::normalise_and_deepmerge`](#mysqlnormalise_and_deepmerge): Recursively merges two or more hashes together, normalises keys with differing use of dashes and underscores.
* [`mysql::password`](#mysqlpassword): Hash a string as mysql's "PASSWORD()" function would do it
* [`mysql::strip_hash`](#mysqlstrip_hash): When given a hash this function strips out all blank entries.
* [`mysql_password`](#mysql_password): DEPRECATED. Use the namespaced function [`mysql::password`](#mysqlpassword) instead.

### Data types

* [`Mysql::Options`](#mysqloptions)
* [`Mysql::Options`](#mysqloptions): A hash of options structured like the override_options, but not merged with the default options.

### Tasks

Expand Down Expand Up @@ -382,8 +381,6 @@ The following parameters are available in the `mysql::client` class:
* [`install_options`](#install_options)
* [`package_ensure`](#package_ensure)
* [`package_manage`](#package_manage)
* [`service_name`](#service_name)
* [`service_provider`](#service_provider)
* [`package_name`](#package_name)
* [`package_provider`](#package_provider)
* [`package_source`](#package_source)
Expand Down Expand Up @@ -420,14 +417,6 @@ Whether to manage the MySQL client package. Defaults to `true`.

Default value: `$mysql::params::client_package_manage`

##### <a name="service_name"></a>`service_name`

The name of the MySQL server service. Defaults are OS dependent, defined in 'params.pp'.

##### <a name="service_provider"></a>`service_provider`

The provider to use to manage the service. For Ubuntu, defaults to 'upstart'; otherwise, default is undefined.

##### <a name="package_name"></a>`package_name`

Data type: `Any`
Expand Down Expand Up @@ -1621,7 +1610,8 @@ $merged_hash = mysql::normalise_and_deepmerge($hash1, $hash2)
- When there is a duplicate key that is not a hash, the key in the rightmost hash will "win."
- When there are conficting uses of dashes and underscores in two keys (which mysql would otherwise equate), the rightmost style will win.

Returns: `Any`
Returns: `Any` hash
The given hash normalised

##### Examples

Expand All @@ -1639,7 +1629,7 @@ $merged_hash = mysql::normalise_and_deepmerge($hash1, $hash2)

Data type: `Any`


Hash to be normalised

### <a name="mysqlpassword"></a>`mysql::password`

Expand Down Expand Up @@ -1701,7 +1691,7 @@ Plain text password.

### <a name="mysqloptions"></a>`Mysql::Options`

The Mysql::Options data type.
Use this if you don’t want your options merged with the default options.

Alias of

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": "11.0.2",
"version": "11.0.3",
"author": "puppetlabs",
"summary": "Installs, configures, and manages the MySQL service.",
"license": "Apache-2.0",
Expand Down