diff --git a/content/v2.0/get-started.md b/content/v2.0/get-started.md
index 61e5bbbea..7727af176 100644
--- a/content/v2.0/get-started.md
+++ b/content/v2.0/get-started.md
@@ -23,7 +23,7 @@ executables, and running the initial setup process.
### Download and install InfluxDB v2.0 alpha
Download InfluxDB v2.0 alpha for macOS.
-InfluxDB v2.0 alpha (macOS)
+InfluxDB v2.0 alpha (macOS)
### Place the executables in your $PATH
Unpackage the downloaded archive and place the `influx` and `influxd` executables in your system `$PATH`.
@@ -32,10 +32,10 @@ _**Note:** The following commands are examples. Adjust the file paths to your ow
```sh
# Unpackage contents to the current working directory
-gunzip -c ~/Downloads/influxdb_2.0.0-alpha.5_darwin_amd64.tar.gz | tar xopf -
+gunzip -c ~/Downloads/influxdb_2.0.0-alpha.6_darwin_amd64.tar.gz | tar xopf -
# Copy the influx and influxd binary to your $PATH
-sudo cp influxdb_2.0.0-alpha.5_darwin_amd64/{influx,influxd} /usr/local/bin/
+sudo cp influxdb_2.0.0-alpha.6_darwin_amd64/{influx,influxd} /usr/local/bin/
```
{{% note %}}
@@ -80,8 +80,8 @@ influxd --reporting-disabled
### Download and install InfluxDB v2.0 alpha
Download the InfluxDB v2.0 alpha package appropriate for your chipset.
-InfluxDB v2.0 alpha (amd64)
-InfluxDB v2.0 alpha (arm)
+InfluxDB v2.0 alpha (amd64)
+InfluxDB v2.0 alpha (arm)
### Place the executables in your $PATH
Unpackage the downloaded archive and place the `influx` and `influxd` executables in your system `$PATH`.
@@ -90,10 +90,10 @@ _**Note:** The following commands are examples. Adjust the file names, paths, an
```sh
# Unpackage contents to the current working directory
-tar xvzf path/to/influxdb_2.0.0-alpha.5_linux_amd64.tar.gz
+tar xvzf path/to/influxdb_2.0.0-alpha.6_linux_amd64.tar.gz
# Copy the influx and influxd binary to your $PATH
-sudo cp influxdb_2.0.0-alpha.5_linux_amd64/{influx,influxd} /usr/local/bin/
+sudo cp influxdb_2.0.0-alpha.6_linux_amd64/{influx,influxd} /usr/local/bin/
```
{{% note %}}
diff --git a/content/v2.0/reference/flux/language/assignment-scope.md b/content/v2.0/reference/flux/language/assignment-scope.md
index b12863302..d9ffa74ef 100644
--- a/content/v2.0/reference/flux/language/assignment-scope.md
+++ b/content/v2.0/reference/flux/language/assignment-scope.md
@@ -33,7 +33,7 @@ The package name does not appear in any scope.
Its purpose is to identify the files belonging to the same package and to specify the default package name for import declarations.
{{% note %}}
-To be implemented: [IMPL#247](https://github.com/influxdata/platform/issues/247) Add package/namespace support.
+[IMPL#247](https://github.com/influxdata/platform/issues/247) Add package/namespace support.
{{% /note %}}
## Variable assignment
diff --git a/content/v2.0/reference/flux/language/built-ins/time-constants.md b/content/v2.0/reference/flux/language/built-ins/time-constants.md
index c5b7d058d..7d0dae6ac 100644
--- a/content/v2.0/reference/flux/language/built-ins/time-constants.md
+++ b/content/v2.0/reference/flux/language/built-ins/time-constants.md
@@ -30,7 +30,7 @@ Saturday = 6
```
{{% note %}}
-To be implemented: [IMPL#153](https://github.com/influxdata/flux/issues/153) Add Days of the Week constants
+[IMPL#153](https://github.com/influxdata/flux/issues/153) Add Days of the Week constants
{{% /note %}}
## Months of the year
@@ -52,5 +52,5 @@ December = 12
```
{{% note %}}
-To be implemented: [IMPL#154](https://github.com/influxdata/flux/issues/154) Add Months of the Year constants
+[IMPL#154](https://github.com/influxdata/flux/issues/154) Add Months of the Year constants
{{% /note %}}
diff --git a/content/v2.0/reference/flux/language/data-model.md b/content/v2.0/reference/flux/language/data-model.md
index 21cce046e..07b25e8df 100644
--- a/content/v2.0/reference/flux/language/data-model.md
+++ b/content/v2.0/reference/flux/language/data-model.md
@@ -45,16 +45,36 @@ These common values are referred to as the "group key value" and can be represen
A tables schema consists of its group key and its columns' labels and types.
+{{% note %}}
+[IMPL#463](https://github.com/influxdata/flux/issues/463) Specify the primitive types that make up stream and table types
+{{% /note %}}
+
## Stream of tables
A **stream** represents a potentially unbounded set of tables.
A stream is grouped into individual tables using their respective group keys.
Tables within a stream each have a unique group key value.
+{{% note %}}
+[IMPL#463](https://github.com/influxdata/flux/issues/463) Specify the primitive types that make up stream and table types
+{{% /note %}}
+
## Missing values
A record may be missing a value for a specific column.
Missing values are represented with a special `null` value.
The `null` value can be of any data type.
{{% note %}}
-To be implemented: [IMPL#300](https://github.com/influxdata/platform/issues/300) Design how nulls behave
+[IMPL#723](https://github.com/influxdata/platform/issues/723) Design how nulls behave
{{% /note %}}
+
+## Transformations
+Transformations define a change to a stream.
+Transformations may consume an input stream and always produce a new output stream.
+The output stream group keys have a stable output order based on the input stream.
+Specific ordering may change between releases, but is not considered a breaking change.
+
+Most transformations output one table for every table they receive from the input stream.
+Transformations that modify group keys or values regroup the tables in the output stream.
+A transformation produces side effects when constructed from a function that produces side effects.
+
+Transformations are represented using function types.
diff --git a/content/v2.0/reference/flux/language/lexical-elements.md b/content/v2.0/reference/flux/language/lexical-elements.md
index f2cb39294..ee588967b 100644
--- a/content/v2.0/reference/flux/language/lexical-elements.md
+++ b/content/v2.0/reference/flux/language/lexical-elements.md
@@ -65,7 +65,7 @@ empty in or package builtin
```
{{% note %}}
-To be implemented: [IMPL#256](https://github.com/influxdata/platform/issues/256) Add in and empty operator support.
+[IMPL#256](https://github.com/influxdata/platform/issues/256) Add in and empty operator support.
{{% /note %}}
@@ -93,7 +93,7 @@ The following coercion rules apply to numeric literals:
* An error will occur if the coerced type cannot represent the literal value.
{{% note %}}
-To be implemented: [IMPL#255](https://github.com/influxdata/platform/issues/255) Allow numeric literal coercion.
+[IMPL#255](https://github.com/influxdata/platform/issues/255) Allow numeric literal coercion.
{{% /note %}}
### Integer literals
@@ -138,7 +138,7 @@ decimals = decimal_digit { decimal_digit } .
```
{{% note %}}
-To be implemented: [IMPL#254](https://github.com/influxdata/platform/issues/254) Parse float literals.
+[IMPL#254](https://github.com/influxdata/platform/issues/254) Parse float literals.
{{% /note %}}
### Duration literals
@@ -217,7 +217,7 @@ When months are added to a date times and the resulting date is past the end of
```
{{% note %}}
-To be implemented: [IMPL#657](https://github.com/influxdata/platform/issues/657) Implement Duration vectors.
+[IMPL#657](https://github.com/influxdata/platform/issues/657) Implement Duration vectors.
{{% /note %}}
## Date and time literals
@@ -254,7 +254,7 @@ time_offset = "Z" | ("+" | "-" ) hour ":" minute .
```
{{% note %}}
-To be implemented: [IMPL#152](https://github.com/influxdata/flux/issues/152) Implement shorthand time literals.
+[IMPL#152](https://github.com/influxdata/flux/issues/152) Implement shorthand time literals.
{{% /note %}}
### String literals
@@ -287,7 +287,7 @@ StringExpression = "{" Expression "}" .
{{% note %}}
To be added: TODO: With string interpolation `string_lit` is not longer a lexical token as part of a literal, but an entire expression in and of itself.
-To be implemented: [IMPL#252](https://github.com/influxdata/platform/issues/252) Parse string literals.
+[IMPL#252](https://github.com/influxdata/platform/issues/252) Parse string literals.
{{% /note %}}
##### Examples of string literals
@@ -309,7 +309,7 @@ A function `printf` exists to allow more precise control over formatting of vari
To include the literal curly brackets within a string they must be escaped.
{{% note %}}
-To be implemented: [IMPL#248](https://github.com/influxdata/platform/issues/248) Add printf function.
+[IMPL#248](https://github.com/influxdata/platform/issues/248) Add printf function.
{{% /note %}}
##### Example: Interpolation
@@ -323,7 +323,7 @@ n = 42
```
{{% note %}}
-To be implemented: [IMPL#251](https://github.com/influxdata/platform/issues/251) Add string interpolation support
+[IMPL#251](https://github.com/influxdata/platform/issues/251) Add string interpolation support
{{% /note %}}
### Regular expression literals
diff --git a/content/v2.0/reference/flux/language/options.md b/content/v2.0/reference/flux/language/options.md
index da1a950b8..018cd2173 100644
--- a/content/v2.0/reference/flux/language/options.md
+++ b/content/v2.0/reference/flux/language/options.md
@@ -58,5 +58,5 @@ option location = loadLocation(name:"America/Denver") // Set location to be Amer
```
{{% note %}}
-To be implemented: [IMPL#660](https://github.com/influxdata/platform/issues/660) Implement Location option
+[IMPL#660](https://github.com/influxdata/platform/issues/660) Implement Location option
{{% /note %}}
diff --git a/content/v2.0/reference/flux/language/packages.md b/content/v2.0/reference/flux/language/packages.md
index 73c7c9721..ce7d0f459 100644
--- a/content/v2.0/reference/flux/language/packages.md
+++ b/content/v2.0/reference/flux/language/packages.md
@@ -42,7 +42,7 @@ When a file does not declare a package clause, all identifiers in that
file will belong to the special `main` package.
{{% note %}}
-To be implemented: [IMPL#247](https://github.com/influxdata/platform/issues/247) Add package/namespace support.
+[IMPL#247](https://github.com/influxdata/platform/issues/247) Add package/namespace support.
{{% /note %}}
### Package main
diff --git a/content/v2.0/reference/flux/language/types.md b/content/v2.0/reference/flux/language/types.md
index 5b906d746..eab5b72ae 100644
--- a/content/v2.0/reference/flux/language/types.md
+++ b/content/v2.0/reference/flux/language/types.md
@@ -19,7 +19,7 @@ Types are never explicitly declared as part of the syntax.
Types are always inferred from the usage of the value.
{{% note %}}
-To be implemented: [IMPL#249](https://github.com/influxdata/platform/issues/249) Specify type inference rules.
+[IMPL#249](https://github.com/influxdata/platform/issues/249) Specify type inference rules.
{{% /note %}}
## Boolean types
@@ -89,7 +89,7 @@ The value may be any other type, and need not be the same as other values within
A _function type_ represents a set of all functions with the same argument and result types.
{{% note %}}
-To be implemented: [IMPL#249](https://github.com/influxdata/platform/issues/249) Specify type inference rules.
+[IMPL#249](https://github.com/influxdata/platform/issues/249) Specify type inference rules.
{{% /note %}}
## Generator types
@@ -98,5 +98,5 @@ A _generator type_ represents a value that produces an unknown number of other v
The generated values may be of any other type, but must all be the same type.
{{% note %}}
-To be implemented: [IMPL#658](https://github.com/influxdata/platform/query/issues/658) Implement Generators types.
+[IMPL#658](https://github.com/influxdata/platform/query/issues/658) Implement Generators types.
{{% /note %}}
diff --git a/content/v2.0/reference/release-notes.md b/content/v2.0/reference/release-notes.md
index 2e2794bdd..0fa6e7a20 100644
--- a/content/v2.0/reference/release-notes.md
+++ b/content/v2.0/reference/release-notes.md
@@ -7,6 +7,41 @@ menu:
weight: 1
---
+## v2.0.0-alpha.6 [2019-03-15]
+
+### Release Notes
+
+{{% warn %}}
+We have updated the way we do predefined dashboards to [include Templates](https://github.com/influxdata/influxdb/pull/12532)
+in this release which will cause existing Organizations to not have a System
+dashboard created when they build a new Telegraf configuration.
+In order to get this functionality, remove your existing data and start from scratch.
+
+_**This will remove all data from your InfluxDB v2.0 instance including time series data.**_
+
+###### Linux and macOS
+```sh
+rm ~/.influxdbv2/influxd.bolt
+```
+
+Once completed, `v2.0.0-alpha.6` can be started.
+{{% /warn %}}
+
+### Features
+- Add ability to import a dashboard.
+- Add ability to import a dashboard from organization view.
+- Add ability to export a dashboard and a task.
+- Add `run` subcommand to `influxd` binary. This is also the default when no subcommand is specified.
+- Add ability to save a query as a variable from the Data Explorer.
+- Add System template on onboarding.
+
+### Bug Fixes
+- Stop scrollbars from covering text in Flux editor.
+
+### UI Improvements
+- Fine tune keyboard interactions for managing labels from a resource card.
+
+
## v2.0.0-alpha.5 [2019-03-08]
{{% warn %}}