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(2.1.0): release version #384

Merged
merged 8 commits into from
Aug 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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.idea/
__pycache__/
changelogs/.plugin-cache.yaml
20 changes: 20 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ Grafana Collection Release Notes

.. contents:: Topics

v2.1.0
======

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

- Manage subfolders for `grafana_folder` and specify uid

Deprecated Features
-------------------

- Deprecate `grafana_notification_channel`. It will be removed in version 3.0.0

Bugfixes
--------

- Add missing function argument in `grafana_contact_point` for org handling
- Fix var prefixes in silence-task in role
- Fixed check if grafana_api_key is defined for `grafana_dashboard` lookup

v2.0.0
======

Expand Down
18 changes: 18 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -333,3 +333,21 @@ releases:
name: grafana_contact_point
namespace: ''
release_date: '2024-05-31'
2.1.0:
changes:
bugfixes:
- Add missing function argument in `grafana_contact_point` for org handling
- Fix var prefixes in silence-task in role
- Fixed check if grafana_api_key is defined for `grafana_dashboard` lookup
deprecated_features:
- Deprecate `grafana_notification_channel`. It will be removed in version 3.0.0
minor_changes:
- Manage subfolders for `grafana_folder` and specify uid
fragments:
- 378-grafana-version-sorting.yml
- 379-contact-points-org-name-func-args.yml
- 381-sub-folders.yml
- 382-notification-channel-deprecation.yml
- 392-dashboard-lookup-apikey.yml
- patch-1.yaml
release_date: '2024-08-08'
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
deprecated_features:
- Deprecate `grafana_notification_channel` with removal in version 3.0.0
- Deprecate `grafana_notification_channel`. It will be removed in version 3.0.0
trivial:
- Check Grafana version for `grafana_notification_channel` integration tests
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: 2.0.0
version: 2.1.0
readme: README.md
authors:
- Rémi REY (@rrey)
Expand Down
Loading