Skip to content
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

build(1.9.0): release version #360

Merged
merged 10 commits into from
May 8, 2024
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
22 changes: 21 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ Grafana Collection Release Notes

.. contents:: Topics

v1.9.0
======

Minor Changes
-------------

- Add new module `grafana_silence` to create and delete silences through the API
- Add role components for `grafana_silence` module
- lookup - grafana_dashboards - add `validate_certs` and `ca_path` options to plugin for custom certs validation

Removed Features (previously deprecated)
----------------------------------------

- removed deprecated `message` argument in `grafana_dashboard`

Bugfixes
--------

- Handling of desired default state for first `grafana_datasource`
- Ignore `type` argument for diff comparison if `grafana-postgresq-datasource` alias `postgres` is used
- Set umask for `grafana_plugin` command

v1.8.0
======
Expand Down Expand Up @@ -288,4 +309,3 @@ Release Summary
---------------

Initial migration of Grafana content from Ansible core (2.9/devel)

25 changes: 25 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -279,3 +279,28 @@ releases:
- 349-role-notification-channel.yml
- 350-python3.12.yml
release_date: '2024-02-21'
1.9.0:
changes:
bugfixes:
- Handling of desired default state for first `grafana_datasource`
- Ignore `type` argument for diff comparison if `grafana-postgresq-datasource`
alias `postgres` is used
- Set umask for `grafana_plugin` command
minor_changes:
- Add new module `grafana_silence` to create and delete silences through the
API
- Add role components for `grafana_silence` module
- lookup - grafana_dashboards - add `validate_certs` and `ca_path` options to
plugin for custom certs validation
removed_features:
- removed deprecated `message` argument in `grafana_dashboard`
fragments:
- 353-docs-add-influxdb-flux-example.yml
- 354-fix-find-grafana-versions.yml
- 355-rm-dashboard-message-argument.yml
- 356-lookup-dashboards-add-custom-certs-verification-logic.yml
- 357-module-grafana-silence.yml
- 358-role-grafana-silence.yml
- 362-plugin-umask.yml
- 364-first-datasource-default.yml
release_date: '2024-04-30'
2 changes: 2 additions & 0 deletions changelogs/fragments/357-module-grafana-silence.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- Add new module `grafana_silence` to create and delete silences through the API
2 changes: 0 additions & 2 deletions changelogs/fragments/add grafana_silence module.yml

This file was deleted.

2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
namespace: community
name: grafana
version: 1.8.0
version: 1.9.0
readme: README.md
authors:
- Rémi REY (@rrey)
Expand Down
Loading