From fb127ef9a6ab1d15f333da3fce013334702cf17a Mon Sep 17 00:00:00 2001 From: Dean Strelau Date: Fri, 26 Jul 2024 12:48:44 -0500 Subject: [PATCH] prep v0.25 (#508) Co-authored-by: Mridula Jayaraman Co-authored-by: Elliott Krupa --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ README.md | 2 +- docs/index.md | 2 +- 3 files changed, 33 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5896ab2d..89a185d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,34 @@ +# 0.25.0 (Jul 25, 2024) + +NOTES: + +This release includes new resources for managing your team's Environments and +Ingest API Keys. These resources operate against new team-level APIs, which +require a new team-level Management API Key for authentication. See the [new +setup instructions for "v2 APIs"](https://github.com/honeycombio/terraform-provider-honeycombio/blob/main/README.md#v2-apis) in the README. + +[Best Practices for API Keys](https://docs.honeycomb.io/get-started/best-practices/api-keys/) has more information on the types of API keys and when to use them. + +ENHANCEMENTS: + +* r/api_key: new resource for managing Ingest API Keys (#496) +* r/environment: new resource for managing Environments (#501) + +BUGFIXES: +* fix: Reflect OpenAPI validation of SLOs (#506) +* fix: client - guard against nil resp during retry check (#491) +* fix: incorrect conversion between integer types (#500) +* fix: read of null definition causes panic (#505) + +HOUSEKEEPING: + +* chore: validate examples (#492) +* chore: d/query_specification - migrate to Plugin Framework (#493) +* maint(deps): bump the hashicorp group with 3 updates (#495) +* chore: add missing toolchain directive (#498) +* chore: cleanup static environment ID in favour of new functionality (#502) +* chore: refresh README and CONTRIBUTING docs (#503) + # 0.24.0 (Jun 14, 2024) NOTES: diff --git a/README.md b/README.md index 20dd9ff0..eab6e1b0 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ terraform { required_providers { honeycombio = { source = "honeycombio/honeycombio" - version = "~> 0.24.0" + version = "~> 0.25.0" } } } diff --git a/docs/index.md b/docs/index.md index acee900d..436015d2 100644 --- a/docs/index.md +++ b/docs/index.md @@ -14,7 +14,7 @@ terraform { required_providers { honeycombio = { source = "honeycombio/honeycombio" - version = "~> 0.24.0" + version = "~> 0.25.0" } } }