Merge 1.3.9.x changelog and version bump

pull/2086/head^2
Nathan Haugo 2017-10-06 11:39:45 -07:00
commit 3ec34cd1a4
7 changed files with 23 additions and 23 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.8.0
current_version = 1.3.9.0
files = README.md server/swagger.json
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\.(?P<release>\d+)
serialize = {major}.{minor}.{patch}.{release}

View File

@ -1,11 +1,10 @@
## v1.3.9.0 [unreleased]
## v1.3.9.0 [2017-10-06]
### Bug Fixes
1.[#2004](https://github.com/influxdata/chronograf/pull/2004): Fix DE query templates dropdown disappearance
1.[#2006](https://github.com/influxdata/chronograf/pull/2006): Fix no alert for duplicate db name
1.[#2015](https://github.com/influxdata/chronograf/pull/2015): Chronograf shows real status for windows hosts when metrics are saved in non-default db - thank you, @ar7z1!
1.[#2019](https://github.com/influxdata/chronograf/pull/2006): Fix false error warning for duplicate kapacitor name
1.[#2018](https://github.com/influxdata/chronograf/pull/2018): Fix unresponsive display options and query builder in dashboards
1.[#1996](https://github.com/influxdata/chronograf/pull/1996): Able to switch InfluxDB sources on a per graph basis
1. [#2004](https://github.com/influxdata/chronograf/pull/2004): Fix Data Explorer disappearing query templates in dropdown
1. [#2006](https://github.com/influxdata/chronograf/pull/2006): Fix missing alert for duplicate db name
1. [#2015](https://github.com/influxdata/chronograf/pull/2015): Chronograf shows real status for windows hosts when metrics are saved in non-default db - thank you, @ar7z1!
1. [#2019](https://github.com/influxdata/chronograf/pull/2006): Fix false error warning for duplicate kapacitor name
1. [#2018](https://github.com/influxdata/chronograf/pull/2018): Fix unresponsive display options and query builder in dashboards
### Features
1. [#1885](https://github.com/influxdata/chronograf/pull/1885): Add `fill` options to data explorer and dashboard queries
@ -13,6 +12,7 @@
1. [#1721](https://github.com/influxdata/chronograf/pull/1721): Introduce the TICKscript editor UI
1. [#1992](https://github.com/influxdata/chronograf/pull/1992): Add .csv download button to data explorer
1. [#2082](https://github.com/influxdata/chronograf/pull/2082): Add Data Explorer InfluxQL query and location query synchronization, so queries can be shared via a a URL
1. [#1996](https://github.com/influxdata/chronograf/pull/1996): Able to switch InfluxDB sources on a per graph basis
### UI Improvements
1. [#2002](https://github.com/influxdata/chronograf/pull/2002): Require a second click when deleting a dashboard cell

View File

@ -110,7 +110,7 @@ Change the default root path of the Chronograf server with the `--basepath` opti
## Versions
The most recent version of Chronograf is [v1.3.8.0](https://www.influxdata.com/downloads/).
The most recent version of Chronograf is [v1.3.9.0](https://www.influxdata.com/downloads/).
Spotted a bug or have a feature request?
Please open [an issue](https://github.com/influxdata/chronograf/issues/new)!
@ -138,7 +138,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.3.8.0
docker pull chronograf:1.3.9.0
```
### From Source

View File

@ -3,7 +3,7 @@
"info": {
"title": "Chronograf",
"description": "API endpoints for Chronograf",
"version": "1.3.8.0"
"version": "1.3.9.0"
},
"schemes": ["http"],
"basePath": "/chronograf/v1",

View File

@ -1,6 +1,6 @@
{
"name": "chronograf-ui",
"version": "1.3.8-0",
"version": "1.3.9-0",
"private": false,
"license": "AGPL-3.0",
"description": "",

View File

@ -16,13 +16,12 @@ const OverlayControls = ({
onClickDisplayOptions,
}) =>
<div className="overlay-controls">
{queries.length
? <SourceSelector
sources={sources}
selected={selected}
onSetQuerySource={onSetQuerySource}
/>
: null}
<SourceSelector
sources={sources}
selected={selected}
onSetQuerySource={onSetQuerySource}
queries={queries}
/>
<ul className="nav nav-tablist nav-tablist-sm">
<li
key="queries"

View File

@ -1,8 +1,8 @@
import React, {PropTypes} from 'react'
import Dropdown from 'shared/components/Dropdown'
const SourceSelector = ({sources = [], selected, onSetQuerySource}) =>
sources.length > 1
const SourceSelector = ({sources = [], selected, onSetQuerySource, queries}) =>
sources.length > 1 && queries.length
? <div className="source-selector">
<h3>Source:</h3>
<Dropdown
@ -15,14 +15,15 @@ const SourceSelector = ({sources = [], selected, onSetQuerySource}) =>
className="dropdown-240"
/>
</div>
: null
: <div className="source-selector" />
const {arrayOf, func, shape, string} = PropTypes
const {array, arrayOf, func, shape, string} = PropTypes
SourceSelector.propTypes = {
sources: arrayOf(shape()).isRequired,
onSetQuerySource: func.isRequired,
selected: string,
queries: array,
}
export default SourceSelector