diff --git a/.circleci/config.yml b/.circleci/config.yml index accc0a8b..69e7583a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -49,7 +49,7 @@ jobs: default: &default-python "circleci/python:3.6-buster" influxdb-image: type: string - default: "influxdb:2.0.0-rc" + default: "influxdb:v2.0.2" enabled-ciso-8601: type: boolean default: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 1066cce0..b880ff42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ ### Bug Fixes 1. [#170](https://github.com/influxdata/influxdb-client-python/pull/170): Skip DataFrame rows without data - all fields are nan. +### CI +1. [#175](https://github.com/influxdata/influxdb-client-python/pull/175): Updated default docker image to v2.0.2 + ## 1.12.0 [2020-10-30] 1. [#163](https://github.com/influxdata/influxdb-client-python/pull/163): Added support for Python 3.9 diff --git a/README.rst b/README.rst index 55fa35ac..eb6707e4 100644 --- a/README.rst +++ b/README.rst @@ -899,7 +899,7 @@ Gzip support InfluxDB 1.8 API compatibility ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -`InfluxDB 1.8.0 introduced forward compatibility APIs `_ for InfluxDB 2.0. This allow you to easily move from InfluxDB 1.x to InfluxDB 2.0 Cloud or open source. +`InfluxDB 1.8.0 introduced forward compatibility APIs `_ for InfluxDB 2.0. This allow you to easily move from InfluxDB 1.x to InfluxDB 2.0 Cloud or open source. The following forward compatible APIs are available: diff --git a/scripts/influxdb-restart.sh b/scripts/influxdb-restart.sh index 32762394..713d018f 100755 --- a/scripts/influxdb-restart.sh +++ b/scripts/influxdb-restart.sh @@ -27,7 +27,7 @@ DEFAULT_DOCKER_REGISTRY="quay.io/influxdb/" DOCKER_REGISTRY="${DOCKER_REGISTRY:-$DEFAULT_DOCKER_REGISTRY}" DEFAULT_INFLUXDB_V2_REPOSITORY="influxdb" -DEFAULT_INFLUXDB_V2_VERSION="2.0.0-rc" +DEFAULT_INFLUXDB_V2_VERSION="v2.0.2" INFLUXDB_V2_REPOSITORY="${INFLUXDB_V2_REPOSITORY:-$DEFAULT_INFLUXDB_V2_REPOSITORY}" INFLUXDB_V2_VERSION="${INFLUXDB_V2_VERSION:-$DEFAULT_INFLUXDB_V2_VERSION}" INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}${INFLUXDB_V2_REPOSITORY}:${INFLUXDB_V2_VERSION}