influxdb-client 1.11.0.pre.1463 → 1.11.0.pre.1492

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a11646d2ea5550d5bf98c76475ced4cc77d9c8dd4e4977132d6b23f319020828
4
- data.tar.gz: a3f41b3895a30383efa07237479871038fb9e95b56a40a82c8d20890da683680
3
+ metadata.gz: 1236713d44eae0b2c2ae536e01701d2bd18aa5117de56abc9a7b4f66fcbb2be0
4
+ data.tar.gz: 167624af36d2c8e14f80b453dd530f7c0a91e6d2e0f454082c401e0ab2086678
5
5
  SHA512:
6
- metadata.gz: 891f71db5da1ee0ec35e9b6c126f8a4f01e1c97e055ba88400ed4ad06db213821b24ee23c7b16acf0048185df3496fdf06649abc6e6c99be39b5c61df4d6d8d7
7
- data.tar.gz: c1384e6bb22fda9a21dc3302657237c1b6c8a0e9ccb390d4d6679f9d12c01f9fe08bcb7f30a7ff8d9453633d59b34d7064628e21147e34ecd70eae51baa77f66
6
+ metadata.gz: bac2f6e4a30be9fc2b98a8ab428e9ff4659f8b1350107cbdf8a73899735353bfba2668c901be2405ae66b8636d314416e56904df7f7cb56399e7c7f052a1b06a
7
+ data.tar.gz: 656c0752105f1af52295a94d7b6dc95db691948ecbde468382f991b30498cd9189b25745393fcdddf0a6384944e4c0d0bb4cae7a996deafbd7d1cd90a3510a96
@@ -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 >>
@@ -124,7 +124,7 @@ workflows:
124
124
  name: ruby-2.6
125
125
  - tests-ruby:
126
126
  name: ruby-2.6-nightly
127
- influxdb-image: "influx:nightly"
127
+ influxdb-image: "influxdb2:nightly"
128
128
  - tests-ruby:
129
129
  name: ruby-2.5
130
130
  ruby-image: "circleci/ruby:2.5-stretch"
@@ -1,5 +1,8 @@
1
1
  ## 1.11.0 [unreleased]
2
2
 
3
+ ### CI
4
+ 1. [#63](https://github.com/influxdata/influxdb-client-ruby/pull/63): Updated default docker image to v2.0.3
5
+
3
6
  ## 1.10.0 [2020-12-04]
4
7
 
5
8
  ### Features
@@ -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}
@@ -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.11.0.pre.1463
4
+ version: 1.11.0.pre.1492
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: 2020-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler