Releases: honeycombio/terraform-provider-honeycombio
Releases · honeycombio/terraform-provider-honeycombio
v0.5.0
BUGFIXES:
- docs: grammar fixes (#153, #152)
- client: ensure Derived Column
alias
is properly URL escaped (#154) - resource/honeycombio_query_annotation: properly validate length for
name
at 80 characters (#155)
ENHANCEMENTS:
- resource/honeycombio_derived_column: validate length for
alias
,expression
, anddescription
(#154) - resource/honeycombio_board: validate length for
name
,description
, and querycaption
(#155) - resource/honeycombio_column: validate length for
key_name
, anddescription
(#155) - resource/honeycombio_dataset: validate length for
name
(#155)
HOUSEKEEPING:
v0.4.0
NOTES:
- A Trigger may need to be destroyed and recreated in order to stabalize the ordering of recipients.
BUGFIXES:
- resource/honeycombio_trigger: fix unstable recipient ordering causing infinite diffs (#142)
- datasource/honeycombio_query_specfication: fix for
filter_combination
'AND' causing infinite diffs (#144)
ENHANCEMENTS:
HOUSEKEEPING:
v0.3.2
v0.3.1
v0.3.0
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
andvalue_string
filter values (introduced by #29) have been
deprecated. Thevalue_*
filter attributes 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 thevalue_*
have been deprecated (#114) - datasource/honeycombio_query_specfication: specifiying
ascending
sort order no longer causes constant diffs (#120)
v0.2.0
0.2.0 (Jan 27, 2022)
NOTES:
- This is the first official release made by Honeycomb!
- This release does contain three breaking changes, see below.
FEATURES:
- resource/honeycombio_board: board queries now support annotations (#100)
ENHANCEMENTS:
- client: API client is no longer a third party dependency (#88)
- client: query specification support for RATE_AVG, RATE_MAX, and RATE_SUM (#92)
BUGFIXES:
- resource/honeycombio_trigger:
disabled
properly marshaled to allow disabling triggers (#91) - resource/honeycombio_query: Suppress equivalent
query_json
differences (#100) - documentation fixes (#94, #99)
BREAKING CHANGES:
v0.1.5
FEATURES:
- Add
honeycombio_query
andhoneycombio_query_annotation
resource #63 (@tyler-boyd)
BUG FIXES:
- Remove ForceNew from
honeycombio_derived_column
expression field #78 (@olegy2008)
v0.1.4
v0.1.3
NOTES:
- Honeycomb released several new management APIs in open beta. Support has been added for columns, derived columns and datasets. Support for managing queries and query annotations (named queries) is yet to come.
FEATURES:
- New resource:
honeycombio_dataset
- New data source:
honeycombio_datasets
- New resource:
honeycombio_column
- New resource:
honeycombio_derived_column
v0.1.2
ENHANCEMENTS:
- data source
honeycombio_query
: added support for new filter opsin
andnot-in
(feature announcement)
Example of using in
and not-in
:
data "honeycombio_query" "example" {
filter {
column = "app.tenant"
op = "in"
value_string = "foo,bar" # op 'in' expects a list of values
}
filter {
column = "request.method"
op = "not-in"
value_string = "GET,HEAD"
}
}