Updating version numbers
This commit is contained in:
parent
8eeaea2aa8
commit
8bf0298bc1
@ -4,6 +4,30 @@ Grafana.Grafana Release Notes
|
|||||||
|
|
||||||
.. contents:: Topics
|
.. 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
|
v1.0.3
|
||||||
======
|
======
|
||||||
|
|
||||||
@ -45,7 +69,7 @@ v0.0.7
|
|||||||
Release Summary
|
Release Summary
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
Documentation update for return values in `grafana.grafana.dashboard` module
|
Documentation update for return values in `grafana.grafana.dashboard`
|
||||||
|
|
||||||
v0.0.6
|
v0.0.6
|
||||||
======
|
======
|
||||||
@ -61,7 +85,7 @@ v0.0.5
|
|||||||
Release Summary
|
Release Summary
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
Documenation update and code cleanup
|
Documentation update and code cleanup
|
||||||
|
|
||||||
v0.0.4
|
v0.0.4
|
||||||
======
|
======
|
||||||
@ -77,7 +101,7 @@ v0.0.3
|
|||||||
Release Summary
|
Release Summary
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
Documenation update and code cleanup
|
Documentation update and code cleanup
|
||||||
|
|
||||||
v0.0.2
|
v0.0.2
|
||||||
======
|
======
|
||||||
@ -93,4 +117,4 @@ v0.0.1
|
|||||||
Release Summary
|
Release Summary
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
It's a release! First version to publish to Ansible Galaxy.
|
It's a release! First version to publish to Ansible Galaxy
|
||||||
|
@ -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)
|
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.
|
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
|
## 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
|
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
|
||||||
|
@ -53,4 +53,4 @@ plugins:
|
|||||||
shell: {}
|
shell: {}
|
||||||
strategy: {}
|
strategy: {}
|
||||||
vars: {}
|
vars: {}
|
||||||
version: 1.0.3
|
version: 1.0.4
|
||||||
|
@ -52,4 +52,14 @@ releases:
|
|||||||
- removed `supports_check_mode=True` from source code of modules
|
- removed `supports_check_mode=True` from source code of modules
|
||||||
release_date: '2022-10-20'
|
release_date: '2022-10-20'
|
||||||
1.0.4:
|
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'
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
namespace: grafana
|
namespace: grafana
|
||||||
name: grafana
|
name: grafana
|
||||||
version: 1.0.3
|
version: 1.0.4
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- Grafana Labs <grafana.com>
|
- Grafana Labs <grafana.com>
|
||||||
|
Loading…
Reference in New Issue
Block a user