Skip to content

Commit 9ad32fd

Browse files
authored
Merge pull request #1402 from puppetlabs/release-prep
Release prep v11.0.3
2 parents e20670f + 317fc9c commit 9ad32fd

File tree

3 files changed

+15
-17
lines changed

3 files changed

+15
-17
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

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

5+
## [v11.0.3](https://github.com/puppetlabs/puppetlabs-mysql/tree/v11.0.3) (2021-06-21)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-mysql/compare/v11.0.2...v11.0.3)
8+
9+
### Fixed
10+
11+
- \(IAC-1430\) - Minor docs updating [\#1401](https://github.com/puppetlabs/puppetlabs-mysql/pull/1401) ([pmcmaw](https://github.com/pmcmaw))
12+
513
## [v11.0.2](https://github.com/puppetlabs/puppetlabs-mysql/tree/v11.0.2) (2021-06-07)
614

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

REFERENCE.md

+6-16
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,14 @@
5858

5959
### Functions
6060

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

6766
### Data types
6867

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

7170
### Tasks
7271

@@ -382,8 +381,6 @@ The following parameters are available in the `mysql::client` class:
382381
* [`install_options`](#install_options)
383382
* [`package_ensure`](#package_ensure)
384383
* [`package_manage`](#package_manage)
385-
* [`service_name`](#service_name)
386-
* [`service_provider`](#service_provider)
387384
* [`package_name`](#package_name)
388385
* [`package_provider`](#package_provider)
389386
* [`package_source`](#package_source)
@@ -420,14 +417,6 @@ Whether to manage the MySQL client package. Defaults to `true`.
420417

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

423-
##### <a name="service_name"></a>`service_name`
424-
425-
The name of the MySQL server service. Defaults are OS dependent, defined in 'params.pp'.
426-
427-
##### <a name="service_provider"></a>`service_provider`
428-
429-
The provider to use to manage the service. For Ubuntu, defaults to 'upstart'; otherwise, default is undefined.
430-
431420
##### <a name="package_name"></a>`package_name`
432421

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

1624-
Returns: `Any`
1613+
Returns: `Any` hash
1614+
The given hash normalised
16251615

16261616
##### Examples
16271617

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

16401630
Data type: `Any`
16411631

1642-
1632+
Hash to be normalised
16431633

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

@@ -1701,7 +1691,7 @@ Plain text password.
17011691

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

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

17061696
Alias of
17071697

metadata.json

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

0 commit comments

Comments
 (0)