Merge pull request #2622 from influxdata/rel/update-1.4.0.0-rc1
Update CHANGELOG and versions to prep for 1.4.0.0-rc1pull/10616/head
commit
7f5aea6414
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 1.4.0.0-beta2
|
||||
current_version = 1.4.0.0-rc1
|
||||
files = README.md server/swagger.json
|
||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\.(?P<release>\d+)
|
||||
serialize = {major}.{minor}.{patch}.{release}
|
||||
|
|
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -1,14 +1,27 @@
|
|||
## v1.4.0.0-beta2 [unreleased]
|
||||
## v1.4.0.0 [unreleased]
|
||||
### Features
|
||||
### UI Improvements
|
||||
### Bug Fixes
|
||||
|
||||
## v1.4.0.0-rc1 [2017-12-19]
|
||||
### Features
|
||||
1. [#2593](https://github.com/influxdata/chronograf/pull/2593): Add option to use files for dashboards, organizations, data sources, and kapacitors
|
||||
1. [#2604](https://github.com/influxdata/chronograf/pull/2604): After chronograf version upgrade, backup database is created in ./backups
|
||||
|
||||
### UI Improvements
|
||||
1. [#2502](https://github.com/influxdata/chronograf/pull/2502): Fix cursor flashing between default and pointer
|
||||
1. [#2492](https://github.com/influxdata/chronograf/pull/2492): Cleanup style on login page with multiple OAuth2 providers
|
||||
|
||||
### Bug Fixes
|
||||
1. [#2502](https://github.com/influxdata/chronograf/pull/2502): Fix stale source data after updating or creating
|
||||
1. [#2616](https://github.com/influxdata/chronograf/pull/2616): Fix cell editing so query data choices are kept when updating a cell
|
||||
1. [#2612](https://github.com/influxdata/chronograf/pull/2612): Allow days as a valid duration value
|
||||
|
||||
## v1.4.0.0-beta2 [2017-12-14]
|
||||
### UI Improvements
|
||||
1. [#2502](https://github.com/influxdata/chronograf/pull/2502): Fix cursor flashing between default and pointer
|
||||
### Bug Fixes
|
||||
1. [#2528](https://github.com/influxdata/chronograf/pull/2528): Fix template rendering to ignore template if not in query
|
||||
1. [#2563](https://github.com/influxdata/chronograf/pull/2563): Fix graph inversion if user input y-axis min greater than max
|
||||
1. [#2616](https://github.com/influxdata/chronograf/pull/2616): Fix cell editing so query data choices are kept when updating a cell
|
||||
|
||||
## v1.4.0.0-beta1 [2017-12-07]
|
||||
### Features
|
||||
|
|
|
@ -136,7 +136,7 @@ option.
|
|||
## Versions
|
||||
|
||||
The most recent version of Chronograf is
|
||||
[v1.4.0.0-beta2](https://www.influxdata.com/downloads/).
|
||||
[v1.4.0.0-rc1](https://www.influxdata.com/downloads/).
|
||||
|
||||
Spotted a bug or have a feature request? Please open
|
||||
[an issue](https://github.com/influxdata/chronograf/issues/new)!
|
||||
|
@ -178,7 +178,7 @@ By default, chronograf runs on port `8888`.
|
|||
To get started right away with Docker, you can pull down our latest release:
|
||||
|
||||
```sh
|
||||
docker pull chronograf:1.4.0.0
|
||||
docker pull chronograf:1.4.0.0-rc1
|
||||
```
|
||||
|
||||
### From Source
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"info": {
|
||||
"title": "Chronograf",
|
||||
"description": "API endpoints for Chronograf",
|
||||
"version": "1.4.0.0-beta2"
|
||||
"version": "1.4.0.0-rc1"
|
||||
},
|
||||
"schemes": ["http"],
|
||||
"basePath": "/chronograf/v1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "chronograf-ui",
|
||||
"version": "1.4.0-0beta2",
|
||||
"version": "1.4.0-0rc1",
|
||||
"private": false,
|
||||
"license": "AGPL-3.0",
|
||||
"description": "",
|
||||
|
|
Loading…
Reference in New Issue