Skip to content

Commit 9e221bf

Browse files
authored
chore(ci): update default docker image to v2.0.2 (#184)
* chore(ci): update default docker image to v2.0.2 * docs: updated CHANGELOG.md
1 parent d921b2e commit 9e221bf

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
default: &default-maven-image "circleci/openjdk:8"
105105
influxdb-image:
106106
type: string
107-
default: &default-influxdb-image "influxdb:2.0.0-rc"
107+
default: &default-influxdb-image "influxdb:v2.0.2"
108108
docker:
109109
- image: << parameters.maven-image >>
110110
- image: &influx-image quay.io/influxdb/<< parameters.influxdb-image >>

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
1. [#176](https://github.com/influxdata/influxdb-client-java/pull/176): Blocking API batches Point by precision
1010
1. [#180](https://github.com/influxdata/influxdb-client-java/pull/180): Fixed concatenation of url
1111

12+
### CI
13+
1. [#184](https://github.com/influxdata/influxdb-client-java/pull/184): Updated default docker image to v2.0.2
14+
1215
## 1.13.0 [2020-10-30]
1316

1417
### Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ public class InfluxDB2ManagementExample {
283283

284284
### InfluxDB 1.8 API compatibility
285285

286-
[InfluxDB 1.8.0 introduced forward compatibility APIs](https://docs.influxdata.com/influxdb/latest/tools/api/#influxdb-2-0-api-compatibility-endpoints) for InfluxDB 2.0. This allow you to easily move from InfluxDB 1.x to InfluxDB 2.0 Cloud or open source.
286+
[InfluxDB 1.8.0 introduced forward compatibility APIs](https://docs.influxdata.com/influxdb/v1.8/tools/api/#influxdb-2-0-api-compatibility-endpoints) for InfluxDB 2.0. This allow you to easily move from InfluxDB 1.x to InfluxDB 2.0 Cloud or open source.
287287

288288
The following forward compatible APIs are available:
289289

scripts/influxdb-restart.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ INFLUXDB_VERSION="${INFLUXDB_VERSION:-$DEFAULT_INFLUXDB_VERSION}"
3131
INFLUXDB_IMAGE=influxdb:${INFLUXDB_VERSION}-alpine
3232

3333
DEFAULT_INFLUXDB_V2_REPOSITORY="influxdb"
34-
DEFAULT_INFLUXDB_V2_VERSION="2.0.0-rc"
34+
DEFAULT_INFLUXDB_V2_VERSION="v2.0.2"
3535
INFLUXDB_V2_REPOSITORY="${INFLUXDB_V2_REPOSITORY:-$DEFAULT_INFLUXDB_V2_REPOSITORY}"
3636
INFLUXDB_V2_VERSION="${INFLUXDB_V2_VERSION:-$DEFAULT_INFLUXDB_V2_VERSION}"
3737
INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}${INFLUXDB_V2_REPOSITORY}:${INFLUXDB_V2_VERSION}

0 commit comments

Comments
 (0)