Flux v0.144.0 - v0.146.0 (#3485)

pull/3483/head^2
Scott Anderson 2021-12-13 15:21:30 -07:00 committed by GitHub
parent b0e81bb979
commit ef0adbf7fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 47 additions and 2 deletions

View File

@ -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

View File

@ -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.