Skip to content

Commit

Permalink
rel: stage v0.21.0 (#425)
Browse files Browse the repository at this point in the history
Co-authored-by: Brooke Sargent <[email protected]>
  • Loading branch information
jharley and brookesargent authored Jan 26, 2024
1 parent ad4a093 commit f3dc857
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
# 0.21.0 (Jan 26, 2024)

NOTES:

* If you are a downstream consumer of the `client` package in another Go project, this release contains a breaking change:
`client.NewClient` now takes no arguments and creates a client with the default configuration
values, while `client.NewClientWithConfig` has been added to allow passing a custom configuration.
* This does not effect Terraform Configurations: only projects importing the `client` Package.
* If you were making use of the previously undocumented `HONEYCOMB_API_HOST` environment variable to override the Honeycomb API URL,
it has been renamed to the more standard `HONEYCOMB_API_ENDPOINT`.

ENHANCEMENTS:

* feat(client): standardize and document API endpoint envvar (#414)
* refactor(client) - testsuite and constructor improvements (#416)

BUGFIXES:

* fix(client): fix Marker Settings flakey test (#420)
* fix(client): fix queryspec equivalence for empty breakdowns (#421)
* fix(docs): add missing mention to HONEYCOMB_API_ENDPOINT env var for endpoint configuration (#422)

HOUSEKEEPING:

* build(deps): Bump github.com/hashicorp/terraform-plugin-go from 0.19.1 to 0.20.0 (#413)
* build(deps): Bump github.com/hashicorp/terraform-plugin-mux from 0.12.0 to 0.13.0 (#413)
* build(deps): Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.30.0 to 2.31.0 (#413)
* build(deps): Bump golang.org/x/crypto from 0.16.0 to 0.17.0 (#415)
* chore(ci): switch to golangci-lint and fix lints (#417)
* build(deps): Bump github.com/hashicorp/terraform-plugin-framework from 1.4.2 to 1.5.0 (#419)
* build(deps): Bump github.com/cloudflare/circl from 1.3.3 to 1.3.7 (#418)
* build(deps): Bump codecov/codecov-action from 3.1.4 to 3.1.5 (#423)
* chore(license): update copyright time range (#424)

# 0.20.3 (Dec 14, 2023)

BUGFIXES:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ terraform {
required_providers {
honeycombio = {
source = "honeycombio/honeycombio"
version = "~> 0.20.0"
version = "~> 0.21.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ terraform {
required_providers {
honeycombio = {
source = "honeycombio/honeycombio"
version = "~> 0.20.0"
version = "~> 0.21.0"
}
}
}
Expand Down

0 comments on commit f3dc857

Please sign in to comment.