Skip to content

Commit 81ac31c

Browse files
authored
Merge pull request #1424 from puppetlabs/release
Release mergeback version 12.0.0
2 parents 3a87bd8 + d0150ff commit 81ac31c

File tree

3 files changed

+12
-85
lines changed

3 files changed

+12
-85
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
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+
## [v12.0.0](https://github.com/puppetlabs/puppetlabs-mysql/tree/v12.0.0) (2021-07-26)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-mysql/compare/v11.1.0...v12.0.0)
8+
9+
### Changed
10+
11+
- Deprecate mysql::server::mysqltuner and show it as an example [\#1409](https://github.com/puppetlabs/puppetlabs-mysql/pull/1409) ([ghoneycutt](https://github.com/ghoneycutt))
12+
- Deprecate mysql::server::monitor and show as an example [\#1408](https://github.com/puppetlabs/puppetlabs-mysql/pull/1408) ([ghoneycutt](https://github.com/ghoneycutt))
13+
- Remove EOL platforms Debian 8 and Ubuntu 14.04 [\#1406](https://github.com/puppetlabs/puppetlabs-mysql/pull/1406) ([ghoneycutt](https://github.com/ghoneycutt))
14+
515
## [v11.1.0](https://github.com/puppetlabs/puppetlabs-mysql/tree/v11.1.0) (2021-07-05)
616

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

REFERENCE.md

+1-84
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
* [`mysql::client`](#mysqlclient): Installs and configures the MySQL client.
1313
* [`mysql::server`](#mysqlserver): Installs and configures the MySQL server.
1414
* [`mysql::server::backup`](#mysqlserverbackup): Create and manage a MySQL backup.
15-
* [`mysql::server::monitor`](#mysqlservermonitor): This is a helper class to add a monitoring user to the database
16-
* [`mysql::server::mysqltuner`](#mysqlservermysqltuner): Manage the MySQLTuner package.
1715

1816
#### Private Classes
1917

@@ -1069,87 +1067,6 @@ Configure the file extension for the compressed backup (when using the mysqldump
10691067

10701068
Default value: ``undef``
10711069

1072-
### <a name="mysqlservermonitor"></a>`mysql::server::monitor`
1073-
1074-
This is a helper class to add a monitoring user to the database
1075-
1076-
#### Parameters
1077-
1078-
The following parameters are available in the `mysql::server::monitor` class:
1079-
1080-
* [`mysql_monitor_username`](#mysql_monitor_username)
1081-
* [`mysql_monitor_password`](#mysql_monitor_password)
1082-
* [`mysql_monitor_hostname`](#mysql_monitor_hostname)
1083-
1084-
##### <a name="mysql_monitor_username"></a>`mysql_monitor_username`
1085-
1086-
Data type: `Any`
1087-
1088-
The username to create for MySQL monitoring.
1089-
1090-
Default value: `''`
1091-
1092-
##### <a name="mysql_monitor_password"></a>`mysql_monitor_password`
1093-
1094-
Data type: `Optional[Variant[String, Sensitive[String]]]`
1095-
1096-
The password to create for MySQL monitoring.
1097-
1098-
Default value: `''`
1099-
1100-
##### <a name="mysql_monitor_hostname"></a>`mysql_monitor_hostname`
1101-
1102-
Data type: `Any`
1103-
1104-
The hostname from which the monitoring user requests are allowed access.
1105-
1106-
Default value: `''`
1107-
1108-
### <a name="mysqlservermysqltuner"></a>`mysql::server::mysqltuner`
1109-
1110-
Manage the MySQLTuner package.
1111-
1112-
#### Parameters
1113-
1114-
The following parameters are available in the `mysql::server::mysqltuner` class:
1115-
1116-
* [`ensure`](#ensure)
1117-
* [`version`](#version)
1118-
* [`source`](#source)
1119-
* [`tuner_location`](#tuner_location)
1120-
1121-
##### <a name="ensure"></a>`ensure`
1122-
1123-
Data type: `Any`
1124-
1125-
Ensures that the resource exists. Valid values are 'present', 'absent'. Defaults to 'present'.
1126-
1127-
Default value: `'present'`
1128-
1129-
##### <a name="version"></a>`version`
1130-
1131-
Data type: `Any`
1132-
1133-
The version to install from the major/MySQLTuner-perl github repository. Must be a valid tag. Defaults to 'v1.3.0'.
1134-
1135-
Default value: `'v1.3.0'`
1136-
1137-
##### <a name="source"></a>`source`
1138-
1139-
Data type: `Any`
1140-
1141-
Source path for the mysqltuner package.
1142-
1143-
Default value: ``undef``
1144-
1145-
##### <a name="tuner_location"></a>`tuner_location`
1146-
1147-
Data type: `Any`
1148-
1149-
Destination for the mysqltuner package.
1150-
1151-
Default value: `'/usr/local/bin/mysqltuner'`
1152-
11531070
## Defined types
11541071

11551072
### <a name="mysqldb"></a>`mysql::db`
@@ -1639,7 +1556,7 @@ Hash a string as mysql's "PASSWORD()" function would do it
16391556

16401557
#### `mysql::password(Variant[String, Sensitive[String]] $password, Optional[Boolean] $sensitive)`
16411558

1642-
Hash a string as mysql's "PASSWORD()" function would do it
1559+
The mysql::password function.
16431560

16441561
Returns: `Variant[String, Sensitive[String]]` hash
16451562
The mysql password hash from the clear text password.

metadata.json

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

0 commit comments

Comments
 (0)