diff --git a/content/flux/v0.x/release-notes.md b/content/flux/v0.x/release-notes.md index eb24e7413..c0889cec5 100644 --- a/content/flux/v0.x/release-notes.md +++ b/content/flux/v0.x/release-notes.md @@ -10,6 +10,19 @@ aliases: - /influxdb/cloud/reference/release-notes/flux/ --- +## v0.176.0 [2022-07-25] + +## Features +- Promote various feature-flagged features and optimizations to be used by default. + +### Bug fixes +- Support the [`location` option](/flux/v0.x/stdlib/internal/location/#options) + in the [`boundaries` package](/flux/v0.x/stdlib/date/boundaries/). +- Pass epsilon value from Go tests to the Flux test framework. +- Ignore unknown messages rather than erroring. + +--- + ## v0.175.0 [2022-07-19] ### Features diff --git a/content/flux/v0.x/stdlib/contrib/bonitoo-io/tickscript/selectwindow.md b/content/flux/v0.x/stdlib/contrib/bonitoo-io/tickscript/selectwindow.md index 97dc3eb3b..b1621d931 100644 --- a/content/flux/v0.x/stdlib/contrib/bonitoo-io/tickscript/selectwindow.md +++ b/content/flux/v0.x/stdlib/contrib/bonitoo-io/tickscript/selectwindow.md @@ -133,13 +133,13 @@ data #### Output data -| *_start | *_stop | *tag | example-name | _time | -| -------------------- | -------------------- | ---- | ------------- | -------------------- | -| 2021-01-01T00:00:00Z | 2021-01-01T00:01:00Z | t1 | 51 | 2021-01-01T00:01:00Z | +| _time | *_start | *_stop | *tag | example-name | +| -------------------- | -------------------- | -------------------- | ---- | ------------- | +| 2021-01-01T00:01:00Z | 2021-01-01T00:00:00Z | 2021-01-01T00:01:00Z | t1 | 51 | -| *_start | *_stop | *tag | example-name | _time | -| -------------------- | -------------------- | ---- | ------------- | -------------------- | -| 2021-01-01T00:00:00Z | 2021-01-01T00:01:00Z | t2 | 53 | 2021-01-01T00:01:00Z | +| _time | *_start | *_stop | *tag | example-name | +| -------------------- | -------------------- | -------------------- | ---- | ------------- | +| 2021-01-01T00:01:00Z | 2021-01-01T00:00:00Z | 2021-01-01T00:01:00Z | t2 | 53 | {{% /expand %}} {{< /expand-wrapper >}} diff --git a/content/flux/v0.x/stdlib/date/boundaries/friday.md b/content/flux/v0.x/stdlib/date/boundaries/friday.md index 7b539f9e2..d9742006b 100644 --- a/content/flux/v0.x/stdlib/date/boundaries/friday.md +++ b/content/flux/v0.x/stdlib/date/boundaries/friday.md @@ -20,7 +20,7 @@ documentation is generated. To make updates to this documentation, update the function comments above the function definition in the Flux source code: -https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L267-L269 +https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L254-L256 Contributing to Flux: https://github.com/influxdata/flux#contributing Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md diff --git a/content/flux/v0.x/stdlib/date/boundaries/monday.md b/content/flux/v0.x/stdlib/date/boundaries/monday.md index 06eed72aa..429e0c7ab 100644 --- a/content/flux/v0.x/stdlib/date/boundaries/monday.md +++ b/content/flux/v0.x/stdlib/date/boundaries/monday.md @@ -21,7 +21,7 @@ documentation is generated. To make updates to this documentation, update the function comments above the function definition in the Flux source code: -https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L124-L126 +https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L111-L113 Contributing to Flux: https://github.com/influxdata/flux#contributing Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md diff --git a/content/flux/v0.x/stdlib/date/boundaries/month.md b/content/flux/v0.x/stdlib/date/boundaries/month.md index f6ea303fd..c1bcf7e8f 100644 --- a/content/flux/v0.x/stdlib/date/boundaries/month.md +++ b/content/flux/v0.x/stdlib/date/boundaries/month.md @@ -20,7 +20,7 @@ documentation is generated. To make updates to this documentation, update the function comments above the function definition in the Flux source code: -https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L391-L397 +https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L378-L384 Contributing to Flux: https://github.com/influxdata/flux#contributing Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md diff --git a/content/flux/v0.x/stdlib/date/boundaries/saturday.md b/content/flux/v0.x/stdlib/date/boundaries/saturday.md index cad559675..a4b24630b 100644 --- a/content/flux/v0.x/stdlib/date/boundaries/saturday.md +++ b/content/flux/v0.x/stdlib/date/boundaries/saturday.md @@ -20,7 +20,7 @@ documentation is generated. To make updates to this documentation, update the function comments above the function definition in the Flux source code: -https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L303-L305 +https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L290-L292 Contributing to Flux: https://github.com/influxdata/flux#contributing Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md diff --git a/content/flux/v0.x/stdlib/date/boundaries/sunday.md b/content/flux/v0.x/stdlib/date/boundaries/sunday.md index 4d15d2c36..6972e891b 100644 --- a/content/flux/v0.x/stdlib/date/boundaries/sunday.md +++ b/content/flux/v0.x/stdlib/date/boundaries/sunday.md @@ -20,7 +20,7 @@ documentation is generated. To make updates to this documentation, update the function comments above the function definition in the Flux source code: -https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L339-L341 +https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L326-L328 Contributing to Flux: https://github.com/influxdata/flux#contributing Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md diff --git a/content/flux/v0.x/stdlib/date/boundaries/thursday.md b/content/flux/v0.x/stdlib/date/boundaries/thursday.md index 9a287333e..42b7b7810 100644 --- a/content/flux/v0.x/stdlib/date/boundaries/thursday.md +++ b/content/flux/v0.x/stdlib/date/boundaries/thursday.md @@ -20,7 +20,7 @@ documentation is generated. To make updates to this documentation, update the function comments above the function definition in the Flux source code: -https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L231-L233 +https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L218-L220 Contributing to Flux: https://github.com/influxdata/flux#contributing Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md diff --git a/content/flux/v0.x/stdlib/date/boundaries/tuesday.md b/content/flux/v0.x/stdlib/date/boundaries/tuesday.md index 108a34698..532546146 100644 --- a/content/flux/v0.x/stdlib/date/boundaries/tuesday.md +++ b/content/flux/v0.x/stdlib/date/boundaries/tuesday.md @@ -20,7 +20,7 @@ documentation is generated. To make updates to this documentation, update the function comments above the function definition in the Flux source code: -https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L160-L162 +https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L147-L149 Contributing to Flux: https://github.com/influxdata/flux#contributing Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md diff --git a/content/flux/v0.x/stdlib/date/boundaries/wednesday.md b/content/flux/v0.x/stdlib/date/boundaries/wednesday.md index e234899d2..2b11f5d1c 100644 --- a/content/flux/v0.x/stdlib/date/boundaries/wednesday.md +++ b/content/flux/v0.x/stdlib/date/boundaries/wednesday.md @@ -20,7 +20,7 @@ documentation is generated. To make updates to this documentation, update the function comments above the function definition in the Flux source code: -https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L196-L198 +https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L183-L185 Contributing to Flux: https://github.com/influxdata/flux#contributing Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md diff --git a/content/flux/v0.x/stdlib/date/boundaries/week.md b/content/flux/v0.x/stdlib/date/boundaries/week.md index 3bf66e4dc..6016de4d6 100644 --- a/content/flux/v0.x/stdlib/date/boundaries/week.md +++ b/content/flux/v0.x/stdlib/date/boundaries/week.md @@ -21,7 +21,7 @@ documentation is generated. To make updates to this documentation, update the function comments above the function definition in the Flux source code: -https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L461-L467 +https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L448-L454 Contributing to Flux: https://github.com/influxdata/flux#contributing Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md diff --git a/content/flux/v0.x/stdlib/date/boundaries/yesterday.md b/content/flux/v0.x/stdlib/date/boundaries/yesterday.md index 85223ec25..783955f93 100644 --- a/content/flux/v0.x/stdlib/date/boundaries/yesterday.md +++ b/content/flux/v0.x/stdlib/date/boundaries/yesterday.md @@ -21,7 +21,7 @@ documentation is generated. To make updates to this documentation, update the function comments above the function definition in the Flux source code: -https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L44-L48 +https://github.com/influxdata/flux/blob/master/stdlib/date/boundaries/boundaries.flux#L44-L46 Contributing to Flux: https://github.com/influxdata/flux#contributing Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md diff --git a/content/flux/v0.x/stdlib/experimental/http/requests/peek.md b/content/flux/v0.x/stdlib/experimental/http/requests/peek.md index f038419c1..c76082efd 100644 --- a/content/flux/v0.x/stdlib/experimental/http/requests/peek.md +++ b/content/flux/v0.x/stdlib/experimental/http/requests/peek.md @@ -87,12 +87,12 @@ requests.peek(response: requests.get(url: "https://api.agify.io", params: ["name Connection: keep-alive, Content-Length: 41, Content-Type: application/json; charset=utf-8, - Date: Tue, 19 Jul 2022 16:09:23 GMT, + Date: Mon, 25 Jul 2022 16:54:59 GMT, Etag: W/"29-klDahUESBLxHyQ7NiaetCn2CvCI", Server: nginx/1.16.1, X-Rate-Limit-Limit: 1000, X-Rate-Limit-Remaining: 998, - X-Rate-Reset: 28237 + X-Rate-Reset: 25501 ] | 200 | {{% /expand %}} diff --git a/content/flux/v0.x/stdlib/experimental/iox/_index.md b/content/flux/v0.x/stdlib/experimental/iox/_index.md index ecad77cbf..c92da9a4b 100644 --- a/content/flux/v0.x/stdlib/experimental/iox/_index.md +++ b/content/flux/v0.x/stdlib/experimental/iox/_index.md @@ -8,6 +8,9 @@ menu: parent: experimental identifier: experimental/iox weight: 21 +cascade: + + introduced: 0.152.0 --- -`iox.from()` reads from the selected bucket and measurement in an iox storage node. +`iox.from()` reads from the selected bucket and measurement in an IOx storage node. This function creates a source that reads data from IOx. Output data is "pivoted" on the time column and includes columns for each returned diff --git a/content/flux/v0.x/stdlib/experimental/json/parse.md b/content/flux/v0.x/stdlib/experimental/json/parse.md index 3479db56d..6b0d4bd7c 100644 --- a/content/flux/v0.x/stdlib/experimental/json/parse.md +++ b/content/flux/v0.x/stdlib/experimental/json/parse.md @@ -196,10 +196,10 @@ array.from( #### Output data -| color | pendingDuration | id | -| ------ | ---------------- | -------- | -| red | 3 | 15612462 | -| blue | 16 | 15612462 | +| id | color | pendingDuration | +| -------- | ------ | ---------------- | +| 15612462 | red | 3 | +| 15612462 | blue | 16 | {{% /expand %}} {{< /expand-wrapper >}} diff --git a/content/flux/v0.x/stdlib/http/requests/peek.md b/content/flux/v0.x/stdlib/http/requests/peek.md index 197e6217c..6c61341f7 100644 --- a/content/flux/v0.x/stdlib/http/requests/peek.md +++ b/content/flux/v0.x/stdlib/http/requests/peek.md @@ -82,12 +82,12 @@ requests.peek(response: requests.get(url: "https://api.agify.io", params: ["name Connection: keep-alive, Content-Length: 41, Content-Type: application/json; charset=utf-8, - Date: Tue, 19 Jul 2022 16:09:25 GMT, + Date: Mon, 25 Jul 2022 16:55:00 GMT, Etag: W/"29-klDahUESBLxHyQ7NiaetCn2CvCI", Server: nginx/1.16.1, X-Rate-Limit-Limit: 1000, X-Rate-Limit-Remaining: 996, - X-Rate-Reset: 28234 + X-Rate-Reset: 25499 ] | 200 | {{% /expand %}} diff --git a/content/flux/v0.x/stdlib/internal/boolean/_index.md b/content/flux/v0.x/stdlib/internal/boolean/_index.md index 443bcff32..d55f91b0a 100644 --- a/content/flux/v0.x/stdlib/internal/boolean/_index.md +++ b/content/flux/v0.x/stdlib/internal/boolean/_index.md @@ -8,6 +8,9 @@ menu: parent: internal identifier: internal/boolean weight: 21 +cascade: + + introduced: 0.129.0 ---