Skip to content

Commit

Permalink
rel: 0.27.0 (#536)
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 Aug 23, 2024
1 parent 5d38cbf commit 0ab7e83
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
# 0.27.0 (Aug 23, 2024)

NOTES:

**This release contains breaking and behavioral changes**

* `r/dataset`: will now attempt to *delete* datasets on destroy.
However, they come with delete protection (`delete_protection`) enabled by default and it must be disabled for the destroy to succeed.
This behavior matches `r/environment` as introduced in v0.25.0
* `r/dataset`: will now error on create if a Dataset with that name already exists in the Environment.
Previously, the dataset would be silently imported into state, but given deletion is now possible on destroy this behavior has to changed to be more standard.
The end-user can choose to either adjust the name or import the existing Dataset.
* client: if the Datasets API returns an HTTP '200 OK' -- as opposed to '201 Created' -- on create the `Datasets.Create` method will now return `ErrDatasetExists`.

ENHANCEMENTS:

* *New Data Source*: `honeycombio_dataset` (#535)
* feat: ends/does-not-end-with filters (#530)
* feat: add P20 and P80 calculations (#534)
* feat: full lifecycle support for datasets (#535)

BUGFIXES:

* chore(r/query): improve doc for derived_column (#531)

HOUSEKEEPING:

* chore: address new linter errors (#532)

# 0.26.0 (Aug 12, 2024)

NOTES:
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.26.0"
version = "~> 0.27.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.26.0"
version = "~> 0.27.0"
}
}
}
Expand Down

0 comments on commit 0ab7e83

Please sign in to comment.