diff --git a/content/flux/v0.x/release-notes.md b/content/flux/v0.x/release-notes.md index 238c8c597..5eee75e86 100644 --- a/content/flux/v0.x/release-notes.md +++ b/content/flux/v0.x/release-notes.md @@ -10,6 +10,51 @@ aliases: - /influxdb/cloud/reference/release-notes/flux/ --- +## v0.146.0 [2021-12-13] + +### Features +- Update `pkg-config` to support `aarch64-apple-darwin`. +- Add inline documentation to the following packages: + - experimental/geo + - experimental/http + - experimental/influxdb + - experimental/json + - experimental/mqtt + - experimental/oee + +### Bug fixes +- Update the default `epsilon` parameter for `testing.diff` to `0.000001`. +- Fix unsigned integer conversion tests to correctly use an defined conversion. + +--- + +## v0.145.0 [2021-12-08] + +### Features +- Add inline documentation to the following packages: + - experimental/aggregate + - experimental/array + - experimental/bigtable + - experimental/bitwise + - experimental/csv + +### Bug fixes +- Return an error from join operations if a column is not found in the schema. + +--- + +## v0.144.0 [2021-12-06] + +### Features +- Add location and message methods to `semantic::Error`. +- Return multiple errors from conversions. +- Add a vectorized field to semantic graph, `FunctionExpr`. + +### Bug fixes +- Set `GOPATH` in `Dockerfile_build`. + +--- + ## v0.143.1 [2021-11-22] ### Bug fixes diff --git a/content/flux/v0.x/stdlib/testing/diff.md b/content/flux/v0.x/stdlib/testing/diff.md index 6fa5fc88c..f41a3ece2 100644 --- a/content/flux/v0.x/stdlib/testing/diff.md +++ b/content/flux/v0.x/stdlib/testing/diff.md @@ -22,7 +22,7 @@ import "testing" testing.diff( got: stream2, want: stream1, - epsilon: 0.000000001, + epsilon: 0.000001, nansEqual: false, verbose: false ) @@ -50,7 +50,7 @@ Stream that contains the expected data to test against. ### epsilon {data-type="float"} Specifies how far apart two **float** values can be, but still considered equal. -Default is `0.000000001`. +Default is `0.000001`. ### nansEqual {data-type="bool"} Consider `NaN` float values equal.