Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): update default docker image to v2.0.3 #179

Merged
merged 2 commits into from
Dec 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
default: &default-python "circleci/python:3.6-buster"
influxdb-image:
type: string
default: "influxdb:v2.0.2"
default: "influxdb:v2.0.3"
enabled-ciso-8601:
type: boolean
default: true
Expand Down Expand Up @@ -136,7 +136,7 @@ workflows:
enabled-ciso-8601: false
- tests-python:
name: test-3.6-influxdb-nightly
influxdb-image: "influx:nightly"
influxdb-image: "influxdb2:nightly"
- tests-python:
name: test-3.7
python-image: "circleci/python:3.7-buster"
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## 1.14.0 [unreleased]

### Features
1. [#176](https://github.com/influxdata/influxdb-client-python/pull/176): Allow providing proxy option to InfluxDBClient
1. [#176](https://github.com/influxdata/influxdb-client-python/pull/179): Allow providing proxy option to InfluxDBClient

### CI
1. [#179](https://github.com/influxdata/influxdb-client-python/pull/179): Updated default docker image to v2.0.3

## 1.13.0 [2020-12-04]

Expand Down
2 changes: 1 addition & 1 deletion scripts/influxdb-restart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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="v2.0.2"
DEFAULT_INFLUXDB_V2_VERSION="v2.0.3"
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}
Expand Down
4 changes: 0 additions & 4 deletions tests/test_DeleteApi.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
import pytest

from influxdb_client import PermissionResource, Permission, InfluxDBClient, Point
from influxdb_client.client.write_api import SYNCHRONOUS
from tests.base_test import BaseTest


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

def setUp(self) -> None:
Expand Down