Skip to content

Commit ae53701

Browse files
authored
chore(ci): update default docker image to v2.0.3 (#179)
1 parent 5eb4cdf commit ae53701

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
default: &default-python "circleci/python:3.6-buster"
5050
influxdb-image:
5151
type: string
52-
default: "influxdb:v2.0.2"
52+
default: "influxdb:v2.0.3"
5353
enabled-ciso-8601:
5454
type: boolean
5555
default: true
@@ -136,7 +136,7 @@ workflows:
136136
enabled-ciso-8601: false
137137
- tests-python:
138138
name: test-3.6-influxdb-nightly
139-
influxdb-image: "influx:nightly"
139+
influxdb-image: "influxdb2:nightly"
140140
- tests-python:
141141
name: test-3.7
142142
python-image: "circleci/python:3.7-buster"

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
## 1.14.0 [unreleased]
22

33
### Features
4-
1. [#176](https://github.com/influxdata/influxdb-client-python/pull/176): Allow providing proxy option to InfluxDBClient
4+
1. [#176](https://github.com/influxdata/influxdb-client-python/pull/179): Allow providing proxy option to InfluxDBClient
5+
6+
### CI
7+
1. [#179](https://github.com/influxdata/influxdb-client-python/pull/179): Updated default docker image to v2.0.3
58

69
## 1.13.0 [2020-12-04]
710

scripts/influxdb-restart.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ DEFAULT_DOCKER_REGISTRY="quay.io/influxdb/"
2727
DOCKER_REGISTRY="${DOCKER_REGISTRY:-$DEFAULT_DOCKER_REGISTRY}"
2828

2929
DEFAULT_INFLUXDB_V2_REPOSITORY="influxdb"
30-
DEFAULT_INFLUXDB_V2_VERSION="v2.0.2"
30+
DEFAULT_INFLUXDB_V2_VERSION="v2.0.3"
3131
INFLUXDB_V2_REPOSITORY="${INFLUXDB_V2_REPOSITORY:-$DEFAULT_INFLUXDB_V2_REPOSITORY}"
3232
INFLUXDB_V2_VERSION="${INFLUXDB_V2_VERSION:-$DEFAULT_INFLUXDB_V2_VERSION}"
3333
INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}${INFLUXDB_V2_REPOSITORY}:${INFLUXDB_V2_VERSION}

tests/test_DeleteApi.py

-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
1-
import pytest
2-
31
from influxdb_client import PermissionResource, Permission, InfluxDBClient, Point
42
from influxdb_client.client.write_api import SYNCHRONOUS
53
from tests.base_test import BaseTest
64

75

8-
# TODO https://github.com/influxdata/influxdb/issues/19545
9-
@pytest.mark.skip(reason="https://github.com/influxdata/influxdb/issues/19545")
106
class DeleteApiTest(BaseTest):
117

128
def setUp(self) -> None:

0 commit comments

Comments
 (0)