Merge pull request #762 from influxdata/beta-4

Beta 4
pull/768/head
Scott Anderson 2020-02-14 13:39:07 -07:00 committed by GitHub
commit 1dcb378121
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 40 additions and 8 deletions

View File

@ -28,7 +28,7 @@ This article describes how to get started with InfluxDB OSS. To get started with
### Download and install InfluxDB v2.0 beta ### Download and install InfluxDB v2.0 beta
Download InfluxDB v2.0 beta for macOS. Download InfluxDB v2.0 beta for macOS.
<a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb_2.0.0-beta.3_darwin_amd64.tar.gz" download>InfluxDB v2.0 beta (macOS)</a> <a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb_2.0.0-beta.4_darwin_amd64.tar.gz" download>InfluxDB v2.0 beta (macOS)</a>
### Unpackage the InfluxDB binaries ### Unpackage the InfluxDB binaries
To unpackage the downloaded archive, **double click the archive file in Finder** To unpackage the downloaded archive, **double click the archive file in Finder**
@ -37,7 +37,7 @@ or run the following command in a macOS command prompt application such
```sh ```sh
# Unpackage contents to the current working directory # Unpackage contents to the current working directory
tar zxvf ~/Downloads/influxdb_2.0.0-beta.3_darwin_amd64.tar.gz tar zxvf ~/Downloads/influxdb_2.0.0-beta.4_darwin_amd64.tar.gz
``` ```
#### (Optional) Place the binaries in your $PATH #### (Optional) Place the binaries in your $PATH
@ -46,7 +46,7 @@ prefix the executables with `./` to run then in place.
```sh ```sh
# (Optional) Copy the influx and influxd binary to your $PATH # (Optional) Copy the influx and influxd binary to your $PATH
sudo cp influxdb_2.0.0-beta.3_darwin_amd64/{influx,influxd} /usr/local/bin/ sudo cp influxdb_2.0.0-beta.4_darwin_amd64/{influx,influxd} /usr/local/bin/
``` ```
{{% note %}} {{% note %}}
@ -106,8 +106,8 @@ influxd --reporting-disabled
### Download and install InfluxDB v2.0 beta ### Download and install InfluxDB v2.0 beta
Download the InfluxDB v2.0 beta package appropriate for your chipset. Download the InfluxDB v2.0 beta package appropriate for your chipset.
<a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb_2.0.0-beta.3_linux_amd64.tar.gz" download >InfluxDB v2.0 beta (amd64)</a> <a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb_2.0.0-beta.4_linux_amd64.tar.gz" download >InfluxDB v2.0 beta (amd64)</a>
<a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb_2.0.0-beta.3_linux_arm64.tar.gz" download >InfluxDB v2.0 beta (arm)</a> <a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb_2.0.0-beta.4_linux_arm64.tar.gz" download >InfluxDB v2.0 beta (arm)</a>
### Place the executables in your $PATH ### Place the executables in your $PATH
Unpackage the downloaded archive and place the `influx` and `influxd` executables in your system `$PATH`. Unpackage the downloaded archive and place the `influx` and `influxd` executables in your system `$PATH`.
@ -116,10 +116,10 @@ _**Note:** The following commands are examples. Adjust the file names, paths, an
```sh ```sh
# Unpackage contents to the current working directory # Unpackage contents to the current working directory
tar xvzf path/to/influxdb_2.0.0-beta.3_linux_amd64.tar.gz tar xvzf path/to/influxdb_2.0.0-beta.4_linux_amd64.tar.gz
# Copy the influx and influxd binary to your $PATH # Copy the influx and influxd binary to your $PATH
sudo cp influxdb_2.0.0-beta.3_linux_amd64/{influx,influxd} /usr/local/bin/ sudo cp influxdb_2.0.0-beta.4_linux_amd64/{influx,influxd} /usr/local/bin/
``` ```
{{% note %}} {{% note %}}

View File

@ -11,11 +11,18 @@ aliases:
--- ---
{{% note %}} {{% note %}}
_The latest release of InfluxDB v2.0 beta includes **Flux v0.59.5**. _The latest release of InfluxDB v2.0 beta includes **Flux v0.59.6**.
Though newer versions of Flux may be available, they will not be included with Though newer versions of Flux may be available, they will not be included with
InfluxDB until the next InfluxDB v2.0 release._ InfluxDB until the next InfluxDB v2.0 release._
{{% /note %}} {{% /note %}}
## v0.59.6 [2020-02-13]
### Bug fixes
- `derivative()` works properly across multiple buffers.
---
## v0.59.5 [2020-01-24] ## v0.59.5 [2020-01-24]
### Bug fixes ### Bug fixes

View File

@ -8,6 +8,19 @@ menu:
weight: 101 weight: 101
--- ---
## v2.0.0-beta.4 [2020-02-14]
### Features
- Added labels to buckets.
- Connect Monaco Editor to Flux LSP server.
- Update Flux to v0.59.6.
### Bug Fixes
- Revert bad indexing of `UserResourceMappings` and `Authorizations`.
- Prevent gauge visualization from becoming too small.
---
## v2.0.0-beta.3 [2020-02-11] ## v2.0.0-beta.3 [2020-02-11]
### Features ### Features
@ -22,6 +35,8 @@ weight: 101
- Fixed false success notification for read-only users creating dashboards. - Fixed false success notification for read-only users creating dashboards.
- Fix issue with pkger/http stack crashing on duplicate content type. - Fix issue with pkger/http stack crashing on duplicate content type.
---
## v2.0.0-beta.2 [2020-01-24] ## v2.0.0-beta.2 [2020-01-24]
### Features ### Features
@ -40,6 +55,8 @@ weight: 101
- Move Cloud navigation to top of page instead of within left side navigation. - Move Cloud navigation to top of page instead of within left side navigation.
- Adjust aggregate window periods to use duration input with validation. - Adjust aggregate window periods to use duration input with validation.
---
## v2.0.0-beta.1 [2020-01-08] ## v2.0.0-beta.1 [2020-01-08]
### Features ### Features
@ -93,6 +110,8 @@ weight: 101
### UI Improvements ### UI Improvements
- Add honeybadger reporting to create checks. - Add honeybadger reporting to create checks.
---
## v2.0.0-alpha.21 [2019-12-13] ## v2.0.0-alpha.21 [2019-12-13]
### Features ### Features
@ -120,6 +139,8 @@ weight: 101
- Fix crash when editing a Telegraf config. - Fix crash when editing a Telegraf config.
- Updated start/end time functionality so that custom script time ranges overwrite dropdown selections. - Updated start/end time functionality so that custom script time ranges overwrite dropdown selections.
---
## v2.0.0-alpha.20 [2019-11-20] ## v2.0.0-alpha.20 [2019-11-20]
### Features ### Features
@ -152,6 +173,8 @@ weight: 101
- Redesign cards and animations on Getting Started page. - Redesign cards and animations on Getting Started page.
- Allow users to filter with labels in Telegraf input search. - Allow users to filter with labels in Telegraf input search.
---
## v2.0.0-alpha.19 [2019-10-30] ## v2.0.0-alpha.19 [2019-10-30]
### Features ### Features
@ -177,6 +200,8 @@ weight: 101
- Changed task runs success status code from 200 to 201 to match Swagger documentation. - Changed task runs success status code from 200 to 201 to match Swagger documentation.
- Text areas have the correct height. - Text areas have the correct height.
---
## v2.0.0-alpha.18 [2019-09-26] ## v2.0.0-alpha.18 [2019-09-26]
### Features ### Features