diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9ac4daf..7fb1444 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,30 @@ Grafana.Grafana Release Notes .. contents:: Topics + +v1.0.4 +====== + +Release Summary +--------------- + +Bug fixes and idempotency fixes for modules + +Major Changes +------------- + +- All modules except dashboard and datasource modules now support idempotency + +Minor Changes +------------- + +- All modules use `missing_required_lib`` to compose the message for module.fail_json() when required library is missing from host + +Bugfixes +-------- + +- Fixed cases where cloud_stack and alert_contact_point modules do not return a tuple when nothing in loop matches + v1.0.3 ====== @@ -45,7 +69,7 @@ v0.0.7 Release Summary --------------- -Documentation update for return values in `grafana.grafana.dashboard` module +Documentation update for return values in `grafana.grafana.dashboard` v0.0.6 ====== @@ -61,7 +85,7 @@ v0.0.5 Release Summary --------------- -Documenation update and code cleanup +Documentation update and code cleanup v0.0.4 ====== @@ -77,7 +101,7 @@ v0.0.3 Release Summary --------------- -Documenation update and code cleanup +Documentation update and code cleanup v0.0.2 ====== @@ -93,4 +117,4 @@ v0.0.1 Release Summary --------------- -It's a release! First version to publish to Ansible Galaxy. +It's a release! First version to publish to Ansible Galaxy diff --git a/README.md b/README.md index 3c54a9d..f4bceb6 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ We plan to regularly release new minor or bugfix versions once new features or b Releasing the current major version on GitHub happens from the `main` branch by the [GitHub Release Workflow](https://github.com/grafana/grafana-ansible-collection/blob/main/.github/workflows/release.yml) Before the [GitHub Release Workflow](https://github.com/grafana/grafana-ansible-collection/blob/main/.github/workflows/release.yml) is run, Contributors should push the new version on Ansible Galaxy Manually. -We currently are not planning any deprecations or new major releases. The current landscape includes minor version updates for Module's documentation in 1.0.4. +We currently are not planning any deprecations or new major releases. The current landscape includes minor version updates for Module's documentation in 1.0.5. ## Code of Conduct This collection follows the Ansible project's [Code of Conduct](https://docs.ansible.com/ansible/devel/community/code_of_conduct.html). Please read and familiarize yourself with this doc diff --git a/changelogs/.plugin-cache.yaml b/changelogs/.plugin-cache.yaml index 7230d05..d3f2d84 100644 --- a/changelogs/.plugin-cache.yaml +++ b/changelogs/.plugin-cache.yaml @@ -53,4 +53,4 @@ plugins: shell: {} strategy: {} vars: {} -version: 1.0.3 +version: 1.0.4 diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 9965c00..3d02a41 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -52,4 +52,14 @@ releases: - removed `supports_check_mode=True` from source code of modules release_date: '2022-10-20' 1.0.4: - release_date: '2022-10-20' + changes: + bugfixes: + - Fixed cases where cloud_stack and alert_contact_point modules do not return + a tuple when nothing in loop matches + major_changes: + - All modules except dashboard and datasource modules now support idempotency + minor_changes: + - All modules use `missing_required_lib`` to compose the message for module.fail_json() + when required library is missing from host + release_summary: Bug fixes and idempotency fixes for modules + release_date: '2022-11-01' diff --git a/galaxy.yml b/galaxy.yml index c58c96e..1450c09 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: grafana name: grafana -version: 1.0.3 +version: 1.0.4 readme: README.md authors: - Grafana Labs