generated from ansible-collections/collection_template
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f796d9
commit 038a0b0
Showing
6 changed files
with
37 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,26 @@ | ||
ancestor: 2.0.0 | ||
releases: {} | ||
releases: | ||
3.0.0: | ||
changes: | ||
breaking_changes: | ||
- mysql_replication - remove ``Is_Slave`` and ``Is_Master`` return values (were | ||
replaced with ``Is_Primary`` and ``Is_Replica`` (https://github.com/ansible-collections /community.mysql/issues/145). | ||
- mysql_replication - remove the mode options values containing ``master``/``slave`` | ||
and the master_use_gtid option ``slave_pos`` (were replaced with corresponding | ||
``primary``/``replica`` values) (https://github.com/ansible-collections/community.mysql/issues/145). | ||
- mysql_user - remove support for the `REQUIRESSL` special privilege as it has | ||
ben superseded by the `tls_requires` option (https://github.com/ansible-collections/community.mysql/discussions/121). | ||
- mysql_user - validate privileges using database engine directly (https://github.com/ansible-collections/community.mysql/issues/234 | ||
https://github.com/ansible-collections/community.mysql/pull/243). Do not validate | ||
privileges in this module anymore. | ||
release_summary: 'This is the major release of the ``community.mysql`` collection. | ||
This changelog contains all breaking changes to the modules in this collection | ||
that have been added after the release of ``community.mysql`` 2.3.2.' | ||
fragments: | ||
- 243-get-rid-of-privs-comparison.yml | ||
- 244-remove-requiressl-privilege.yaml | ||
- 3.0.0.yml | ||
- 300-mysql_replication_remove_master_slave.yml | ||
release_date: '2021-12-01' |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
changelogs/fragments/300-mysql_replication_remove_master_slave.yml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
namespace: community | ||
name: mysql | ||
version: 2.1.0 | ||
version: 3.0.0 | ||
readme: README.md | ||
authors: | ||
- Ansible community | ||
|