From 750fe071d421d6344e7b394aef305d6c7a143494 Mon Sep 17 00:00:00 2001 From: Jason Harley Date: Thu, 17 Feb 2022 10:04:40 -0500 Subject: [PATCH 1/2] CHANGELOG: fix typos in 0.2.0 release notes --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 361a1510..cda867d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ ENHANCEMENTS: BUGFIXES: -* resource/honeycombio_trigger: `disabled` properly marshalled to allow disabling trhiggers (#91) +* resource/honeycombio_trigger: `disabled` properly marshaled to allow disabling triggers (#91) * resource/honeycombio_query: Suppress equivalent `query_json` differences (#100) * documentation fixes (#94, #99) From 6b0582933d60ea47c7bbe82febe9622fe13078fb Mon Sep 17 00:00:00 2001 From: Jason Harley Date: Thu, 17 Feb 2022 10:05:39 -0500 Subject: [PATCH 2/2] stage 0.3.0 release --- CHANGELOG.md | 20 ++++++++++++++++++++ README.md | 2 +- docs/index.md | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cda867d1..11bd1408 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +# 0.3.0 (Feb 17, 2022) + +NOTES: + +* the `value` filter attribute has been *undeprecated* and now properly coerces the input when marshaling JSON to the Honeycomb API. +* the type-specific `value_boolean`, `value_float`, `value_integer` and `value_string` filter values (introduced by #29) have been +deprecated. +The `value_*` filter attributes (introduced by #29) will be removed before the 1.0 release. + +ENHANCEMENTS: + +* datasource/honeycombio_query_specfication: support for `having` filters (#110) +* datasource/honeycombio_query_specfication: support for `CONCURRENCY` operator (#112) +* docs: handful of fixes and clarifications (#111, #115, #116) + +BUGFIXES: + +* datasource/honeycombio_query_specfication: filtering by the 'zero value' of a type and properly coerced values now sent to the API. Filter `value` has been undeprecated and the `value_*` have been deprecated (#114) +* datasource/honeycombio_query_specfication: specifiying `ascending` sort order no longer causes constant diffs (#120) + # 0.2.0 (Jan 27, 2022) NOTES: diff --git a/README.md b/README.md index 0643c622..54c145db 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ terraform { required_providers { honeycombio = { source = "honeycombio/honeycombio" - version = "~> 0.2.0" + version = "~> 0.3.0" } } } diff --git a/docs/index.md b/docs/index.md index 709a684b..8b9f9fab 100644 --- a/docs/index.md +++ b/docs/index.md @@ -14,7 +14,7 @@ terraform { required_providers { honeycombio = { source = "honeycombio/honeycombio" - version = "~> 0.2.0" + version = "~> 0.3.0" } } }