Skip to content

Release mergeback version 12.0.0 #1424

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
Jul 27, 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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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

## [v12.0.0](https://github.com/puppetlabs/puppetlabs-mysql/tree/v12.0.0) (2021-07-26)

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

### Changed

- Deprecate mysql::server::mysqltuner and show it as an example [\#1409](https://github.com/puppetlabs/puppetlabs-mysql/pull/1409) ([ghoneycutt](https://github.com/ghoneycutt))
- Deprecate mysql::server::monitor and show as an example [\#1408](https://github.com/puppetlabs/puppetlabs-mysql/pull/1408) ([ghoneycutt](https://github.com/ghoneycutt))
- Remove EOL platforms Debian 8 and Ubuntu 14.04 [\#1406](https://github.com/puppetlabs/puppetlabs-mysql/pull/1406) ([ghoneycutt](https://github.com/ghoneycutt))

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

[Full Changelog](https://github.com/puppetlabs/puppetlabs-mysql/compare/v11.0.3...v11.1.0)
Expand Down
85 changes: 1 addition & 84 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
* [`mysql::client`](#mysqlclient): Installs and configures the MySQL client.
* [`mysql::server`](#mysqlserver): Installs and configures the MySQL server.
* [`mysql::server::backup`](#mysqlserverbackup): Create and manage a MySQL backup.
* [`mysql::server::monitor`](#mysqlservermonitor): This is a helper class to add a monitoring user to the database
* [`mysql::server::mysqltuner`](#mysqlservermysqltuner): Manage the MySQLTuner package.

#### Private Classes

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

Default value: ``undef``

### <a name="mysqlservermonitor"></a>`mysql::server::monitor`

This is a helper class to add a monitoring user to the database

#### Parameters

The following parameters are available in the `mysql::server::monitor` class:

* [`mysql_monitor_username`](#mysql_monitor_username)
* [`mysql_monitor_password`](#mysql_monitor_password)
* [`mysql_monitor_hostname`](#mysql_monitor_hostname)

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

Data type: `Any`

The username to create for MySQL monitoring.

Default value: `''`

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

Data type: `Optional[Variant[String, Sensitive[String]]]`

The password to create for MySQL monitoring.

Default value: `''`

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

Data type: `Any`

The hostname from which the monitoring user requests are allowed access.

Default value: `''`

### <a name="mysqlservermysqltuner"></a>`mysql::server::mysqltuner`

Manage the MySQLTuner package.

#### Parameters

The following parameters are available in the `mysql::server::mysqltuner` class:

* [`ensure`](#ensure)
* [`version`](#version)
* [`source`](#source)
* [`tuner_location`](#tuner_location)

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

Data type: `Any`

Ensures that the resource exists. Valid values are 'present', 'absent'. Defaults to 'present'.

Default value: `'present'`

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

Data type: `Any`

The version to install from the major/MySQLTuner-perl github repository. Must be a valid tag. Defaults to 'v1.3.0'.

Default value: `'v1.3.0'`

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

Data type: `Any`

Source path for the mysqltuner package.

Default value: ``undef``

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

Data type: `Any`

Destination for the mysqltuner package.

Default value: `'/usr/local/bin/mysqltuner'`

## Defined types

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

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

Hash a string as mysql's "PASSWORD()" function would do it
The mysql::password function.

Returns: `Variant[String, Sensitive[String]]` hash
The mysql password hash from the clear text password.
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.1.0",
"version": "12.0.0",
"author": "puppetlabs",
"summary": "Installs, configures, and manages the MySQL service.",
"license": "Apache-2.0",
Expand Down