Skip to content

Commit 367ccd6

Browse files
authored
chore(ci): upgrade InfluxDB 1.7 to 1.8 (#104)
1 parent 7cd6a38 commit 367ccd6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
- image: &influx-image quay.io/influxdb/<< parameters.influxdb-image >>
6565
- image: &influx-image quay.io/influxdb/<< parameters.influxdb-image >>
6666
name: influxdb_v2_onboarding
67-
- image: influxdb:1.7-alpine
67+
- image: influxdb:1.8-alpine
6868
environment:
6969
INFLUXDB_HTTP_FLUX_ENABLED: true
7070
environment:
@@ -85,9 +85,6 @@ jobs:
8585
image: "windows-server-2019-vs2019:stable"
8686
resource_class: windows.medium
8787
shell: bash
88-
environment:
89-
DOCKER_NET_DRIVER: nat
90-
INFLUXDB_VERSION: 1.7
9188
steps:
9289
- checkout
9390
# - run:
@@ -108,11 +105,11 @@ jobs:
108105
# curl -OutFile release.zip https://github.com/linuxkit/lcow/releases/download/v4.14.35-v0.3.9/release.zip
109106
# Expand-Archive -DestinationPath . .\release.zip
110107
# rm release.zip
111-
- run: choco install influxdb1 --version=1.7.9
108+
- run: choco install influxdb1 --version=1.8.0
112109
- run: export INFLUXDB_HTTP_FLUX_ENABLED=true
113110
- run:
114111
name: "Start InfluxDB"
115-
command: /c/influxdata/influxdb-1.7.9-1/influxd.exe -config "Scripts/influxdb.conf"
112+
command: /c/influxdata/influxdb-1.8.0-1/influxd.exe -config "Scripts/influxdb.conf"
116113
background: true
117114
- run: dotnet nuget locals --clear all
118115
- run: dotnet restore --no-cache --force

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
1. [#94](https://github.com/influxdata/influxdb-client-csharp/pull/94): Update swagger to latest version
88
1. [#103](https://github.com/influxdata/influxdb-client-csharp/pull/103): Removed log system from Bucket, Dashboard, Organization, Task and Users API - [influxdb#18459](https://github.com/influxdata/influxdb/pull/18459)
99

10+
### CI
11+
1. [#104](https://github.com/influxdata/influxdb-client-csharp/pull/104): Upgraded InfluxDB 1.7 to 1.8
12+
1013
### Bug Fixes
1114
1. [#100](https://github.com/influxdata/influxdb-client-csharp/pull/100): Thread-safety disposing of clients
1215
1. [#101](https://github.com/influxdata/influxdb-client-csharp/pull/101/): Use Trace output when disposing WriteApi

Scripts/influxdb-restart.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ set -e
2626
DEFAULT_DOCKER_REGISTRY="quay.io/influxdb/"
2727
DOCKER_REGISTRY="${DOCKER_REGISTRY:-$DEFAULT_DOCKER_REGISTRY}"
2828

29-
DEFAULT_INFLUXDB_VERSION="1.7-alpine"
29+
DEFAULT_INFLUXDB_VERSION="1.8-alpine"
3030
INFLUXDB_VERSION="${INFLUXDB_VERSION:-$DEFAULT_INFLUXDB_VERSION}"
3131
INFLUXDB_IMAGE=influxdb:${INFLUXDB_VERSION}
3232

0 commit comments

Comments
 (0)