influxdb-client 1.10.0 → 1.12.0.pre.1570

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8027476de30b385d27485ff85014ae02f85cd5530fa49b740465ccccf2f1fd6e
4
- data.tar.gz: 494d0bfe0d990fc9855a60a425e9cc3085e1011cf8005b0c1b4be144db4767a8
3
+ metadata.gz: c1ebcd4584c736898dc12128e3d2d8aff4552c75f7b5dee09bd572bd28d4fa54
4
+ data.tar.gz: 28e7c428b1b388271b7fb442776466f1769921d75607afcd3dce6e8bd73713fd
5
5
  SHA512:
6
- metadata.gz: 78623c34c15f9e2c53fee332d61206a4aa50d62fae16b3bd175177c72ee8022de3d4fc49d1af7560e8d53943602a823ce697c39c2afdf7f664b458af0e0253d8
7
- data.tar.gz: a883e0ca1b808e7768c9f48ddef40311b5ff40f3f6b0d87030d8b3135a77854e5489e9c74155b7d9a1f6bf9d47bca004cd40ffc6130956b89ed8eee4ab075cf7
6
+ metadata.gz: 3c3468f94879516883f4f64955706efee67ff2c69e647e6bc77f480efc921be831b122c5900940fef623d2626c8d477a2fc44382520d6d12175a3b41f4cfb165
7
+ data.tar.gz: a24fc758b5655e3f6fe14de6e242d418d2cec6a63b29cafe8a932e581ba355a9d3c0180df7dc796a6b895c354f5b081642244f24c76627caed305fd8980c49f1
@@ -78,7 +78,7 @@ jobs:
78
78
  default: &default-ruby-image "circleci/ruby:2.6-stretch"
79
79
  influxdb-image:
80
80
  type: string
81
- default: &default-influxdb-image "influxdb:v2.0.2"
81
+ default: &default-influxdb-image "influxdb:v2.0.3"
82
82
  docker:
83
83
  - image: << parameters.ruby-image >>
84
84
  - image: &influx-image quay.io/influxdb/<< parameters.influxdb-image >>
@@ -117,6 +117,9 @@ workflows:
117
117
  version: 2
118
118
  build:
119
119
  jobs:
120
+ - tests-ruby:
121
+ name: ruby-3.0
122
+ ruby-image: "circleci/ruby:3.0-buster"
120
123
  - tests-ruby:
121
124
  name: ruby-2.7
122
125
  ruby-image: "circleci/ruby:2.7-buster"
@@ -124,7 +127,7 @@ workflows:
124
127
  name: ruby-2.6
125
128
  - tests-ruby:
126
129
  name: ruby-2.6-nightly
127
- influxdb-image: "influx:nightly"
130
+ influxdb-image: "influxdb2:nightly"
128
131
  - tests-ruby:
129
132
  name: ruby-2.5
130
133
  ruby-image: "circleci/ruby:2.5-stretch"
@@ -133,6 +136,7 @@ workflows:
133
136
  ruby-image: "circleci/ruby:2.4-stretch"
134
137
  - deploy-preview:
135
138
  requires:
139
+ - ruby-3.0
136
140
  - ruby-2.7
137
141
  - ruby-2.6
138
142
  - ruby-2.6-nightly
@@ -1,3 +1,11 @@
1
+ ## 1.12.0 [unreleased]
2
+
3
+ ## 1.11.0 [2021-01-29]
4
+
5
+ ### CI
6
+ 1. [#63](https://github.com/influxdata/influxdb-client-ruby/pull/63): Updated default docker image to v2.0.3
7
+ 1. [#65](https://github.com/influxdata/influxdb-client-ruby/pull/65): Added Ruby 3.0 into CI
8
+
1
9
  ## 1.10.0 [2020-12-04]
2
10
 
3
11
  ### Features
data/README.md CHANGED
@@ -23,7 +23,7 @@ The client can be installed manually or with bundler.
23
23
  To install the client gem manually:
24
24
 
25
25
  ```
26
- gem install influxdb-client -v 1.10.0
26
+ gem install influxdb-client -v 1.11.0
27
27
  ```
28
28
 
29
29
  ## Usage
@@ -27,7 +27,7 @@ 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="v2.0.2"
30
+ DEFAULT_INFLUXDB_V2_VERSION="v2.0.3"
31
31
  INFLUXDB_V2_REPOSITORY="${INFLUXDB_V2_REPOSITORY:-$DEFAULT_INFLUXDB_V2_REPOSITORY}"
32
32
  INFLUXDB_V2_VERSION="${INFLUXDB_V2_VERSION:-$DEFAULT_INFLUXDB_V2_VERSION}"
33
33
  INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}${INFLUXDB_V2_REPOSITORY}:${INFLUXDB_V2_VERSION}
@@ -19,5 +19,5 @@
19
19
  # THE SOFTWARE.
20
20
 
21
21
  module InfluxDB2
22
- VERSION = '1.10.0'.freeze
22
+ VERSION = '1.12.0'.freeze
23
23
  end
@@ -56,8 +56,6 @@ class DeleteApiIntegrationTest < MiniTest::Test
56
56
  end
57
57
 
58
58
  def test_delete
59
- # TODO: https://github.com/influxdata/influxdb/issues/19545
60
- skip
61
59
  @client.create_delete_api.delete(Time.utc(2015, 10, 16, 8, 20, 15), Time.utc(2020, 10, 16, 8, 20, 15),
62
60
  predicate: 'location="europe"')
63
61
 
@@ -65,24 +63,18 @@ class DeleteApiIntegrationTest < MiniTest::Test
65
63
  end
66
64
 
67
65
  def test_delete_without_predicate
68
- # TODO: https://github.com/influxdata/influxdb/issues/19545
69
- skip
70
66
  @client.create_delete_api.delete(Time.utc(2016, 10, 15, 7, 20, 15), Time.utc(2018, 10, 14, 8, 20, 15))
71
67
 
72
68
  assert_equal 2, _query_count
73
69
  end
74
70
 
75
71
  def test_delete_all
76
- # TODO: https://github.com/influxdata/influxdb/issues/19545
77
- skip
78
72
  @client.create_delete_api.delete(Time.utc(2010, 10, 15, 7, 20, 15), Time.utc(2020, 10, 14, 8, 20, 15))
79
73
 
80
74
  assert_equal 0, _query_count
81
75
  end
82
76
 
83
77
  def test_delete_without_interval
84
- # TODO: https://github.com/influxdata/influxdb/issues/19545
85
- skip
86
78
  error = assert_raises InfluxDB2::InfluxError do
87
79
  @client.create_delete_api.delete(nil, nil)
88
80
  end
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.10.0
4
+ version: 1.12.0.pre.1570
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-12-04 00:00:00.000000000 Z
11
+ date: 2021-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -198,9 +198,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
198
198
  version: 2.2.0
199
199
  required_rubygems_version: !ruby/object:Gem::Requirement
200
200
  requirements:
201
- - - ">="
201
+ - - ">"
202
202
  - !ruby/object:Gem::Version
203
- version: '0'
203
+ version: 1.3.1
204
204
  requirements: []
205
205
  rubygems_version: 3.0.3
206
206
  signing_key: