influxdb-client 1.0.0.pre.131 → 1.0.0.pre.138
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.circleci/config.yml +14 -0
- data/bin/influxdb-restart.sh +4 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 70a0a4b9753142baaf4ddb431263aca7d303891cb4d6a7cae9d7120414db7637
|
|
4
|
+
data.tar.gz: 1979ae95977092440e35f3c543455ddd83fb5e2b968d7da757bb687dd7d9e88c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5d2892760769c3da24b33cc7c901dc6767de02ea3bfd61d0445a94d536f069d79ba820553c7cf0494edd9fbb59f8de2b86dd8f744e05559394ea42ca2e9431d
|
|
7
|
+
data.tar.gz: '06844837ff0a43ff661e87320a3acf2c2557d41ab0fb430a92f2a6ac295f76d53fe7deac9b094263f9848fb257de5f650f274784640dfd0e08804c7e11468a4e'
|
data/.circleci/config.yml
CHANGED
|
@@ -76,9 +76,18 @@ jobs:
|
|
|
76
76
|
ruby-image:
|
|
77
77
|
type: string
|
|
78
78
|
default: &default-ruby-image "circleci/ruby:2.6-stretch"
|
|
79
|
+
influxdb-repository:
|
|
80
|
+
type: string
|
|
81
|
+
default: "influxdb"
|
|
82
|
+
influxdb-version:
|
|
83
|
+
type: string
|
|
84
|
+
default: "2.0.0-beta"
|
|
79
85
|
docker:
|
|
80
86
|
- image: << parameters.ruby-image >>
|
|
81
87
|
- image: &influx-image quay.io/influxdb/influx:nightly
|
|
88
|
+
environment:
|
|
89
|
+
INFLUXDB_V2_REPOSITORY: << parameters.influxdb-repository >>
|
|
90
|
+
INFLUXDB_V2_VERSION: << parameters.influxdb-version >>
|
|
82
91
|
steps:
|
|
83
92
|
- prepare
|
|
84
93
|
- test:
|
|
@@ -118,6 +127,10 @@ workflows:
|
|
|
118
127
|
ruby-image: "circleci/ruby:2.7-buster"
|
|
119
128
|
- tests-ruby:
|
|
120
129
|
name: ruby-2.6
|
|
130
|
+
- tests-ruby:
|
|
131
|
+
name: ruby-2.6-nightly
|
|
132
|
+
influxdb-repository: "influx"
|
|
133
|
+
influxdb-version: "nightly"
|
|
121
134
|
- tests-ruby:
|
|
122
135
|
name: ruby-2.5
|
|
123
136
|
ruby-image: "circleci/ruby:2.5-stretch"
|
|
@@ -128,6 +141,7 @@ workflows:
|
|
|
128
141
|
requires:
|
|
129
142
|
- ruby-2.7
|
|
130
143
|
- ruby-2.6
|
|
144
|
+
- ruby-2.6-nightly
|
|
131
145
|
- ruby-2.5
|
|
132
146
|
- ruby-2.4
|
|
133
147
|
filters:
|
data/bin/influxdb-restart.sh
CHANGED
|
@@ -26,9 +26,11 @@ set -e
|
|
|
26
26
|
DEFAULT_DOCKER_REGISTRY="quay.io/influxdb/"
|
|
27
27
|
DOCKER_REGISTRY="${DOCKER_REGISTRY:-$DEFAULT_DOCKER_REGISTRY}"
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
DEFAULT_INFLUXDB_V2_REPOSITORY="influxdb"
|
|
30
|
+
DEFAULT_INFLUXDB_V2_VERSION="2.0.0-beta"
|
|
31
|
+
INFLUXDB_V2_REPOSITORY="${INFLUXDB_V2_REPOSITORY:-$DEFAULT_INFLUXDB_V2_REPOSITORY}"
|
|
30
32
|
INFLUXDB_V2_VERSION="${INFLUXDB_V2_VERSION:-$DEFAULT_INFLUXDB_V2_VERSION}"
|
|
31
|
-
INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}
|
|
33
|
+
INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}${INFLUXDB_V2_REPOSITORY}:${INFLUXDB_V2_VERSION}
|
|
32
34
|
|
|
33
35
|
SCRIPT_PATH="$( cd "$(dirname "$0")" ; pwd -P )"
|
|
34
36
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: influxdb-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0.pre.
|
|
4
|
+
version: 1.0.0.pre.138
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jakub Bednar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-01-
|
|
11
|
+
date: 2020-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|