influxdb-client 3.2.0.pre.8516 → 3.2.0

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +2 -2
  3. data/README.md +2 -2
  4. metadata +14 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: adda5a4d78579513f3b89484e134f0290b91135617de7a6bab94ad8cd11240e0
4
- data.tar.gz: 2dae89bb53c254d6be1a96077178f23b433693a8a7abcebf404f19cebbce5cf9
3
+ metadata.gz: 768a8d2d224d9692a0bd5e6c1fa7bd4d759f98363145b790ee1fa0a25abb3daa
4
+ data.tar.gz: d6318011de76ea13c6bf102ecd347da2e4fda3c8dfe7ac2e303c4ba034766c55
5
5
  SHA512:
6
- metadata.gz: 4d8c8336898fdb9b144b635417ea721802c8c4b4f9c3c3c4769a3e612378194bdf5e8bc4e6c91db84b0eeb0f0bffeb516eabe6dbfefa59d9b51e8aae172f1511
7
- data.tar.gz: 382fdf9c33584a7452456defd0cc289f0f27950ce699e6a10a987eb04841d41f49901bd60ce2188946c4844d493d69d3e2cac52e0bd80d32e1e86dfd295753cd
6
+ metadata.gz: 1252419af7c5e238769c87692d16f153e848c8ccd822175b963f33b81aebbd60ec5ad3dec04253819b29f6725d7e635b8fa1ae98adaaf0987937c8fa29b4a47e
7
+ data.tar.gz: 3f236e4d15de593ab911da0f9ac7ae28f3cf4c53aeab11a624a04e2af6fcd217e4438abc761b98ae5e4279af85f173236f512710519a8a6e2f204bc1b34a87c1
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- ## 3.2.0 [unreleased]
1
+ ## 3.2.0 [2024-11-27]
2
2
 
3
3
  ### Others
4
4
  1. [#137](https://github.com/influxdata/influxdb-client-ruby/pull/137): Add the csv gem to the gemspec dependencies.
@@ -32,7 +32,7 @@
32
32
  ## 2.8.0 [2022-10-27]
33
33
 
34
34
  ### Features
35
- 1. [#118](https://github.com/influxdata/influxdb-client-ruby/pull/118): Add `FluxRecord.row` which stores response data in a array
35
+ 1. [#118](https://github.com/influxdata/influxdb-client-ruby/pull/118): Add `FluxRecord.row` which stores response data in an array
36
36
 
37
37
  ## 2.7.0 [2022-07-29]
38
38
 
data/README.md CHANGED
@@ -64,13 +64,13 @@ The client can be installed manually or with bundler.
64
64
  To install the client gem manually:
65
65
 
66
66
  ```
67
- gem install influxdb-client -v 3.1.0
67
+ gem install influxdb-client -v 3.2.0
68
68
  ```
69
69
 
70
70
  For management API:
71
71
 
72
72
  ```
73
- gem install influxdb-client-apis -v 3.1.0
73
+ gem install influxdb-client-apis -v 3.2.0
74
74
  ```
75
75
 
76
76
  ## Usage
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: 3.2.0.pre.8516
4
+ version: 3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jakub Bednar
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-20 00:00:00.000000000 Z
11
+ date: 2024-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: csv
@@ -194,27 +194,27 @@ required_ruby_version: !ruby/object:Gem::Requirement
194
194
  version: 2.2.0
195
195
  required_rubygems_version: !ruby/object:Gem::Requirement
196
196
  requirements:
197
- - - ">"
197
+ - - ">="
198
198
  - !ruby/object:Gem::Version
199
- version: 1.3.1
199
+ version: '0'
200
200
  requirements: []
201
- rubygems_version: 3.3.11
201
+ rubygems_version: 3.0.3.1
202
202
  signing_key:
203
203
  specification_version: 4
204
204
  summary: Ruby library for InfluxDB 2.
205
205
  test_files:
206
- - test/influxdb/client_test.rb
206
+ - test/influxdb/query_api_integration_test.rb
207
207
  - test/influxdb/default_api_test.rb
208
+ - test/influxdb/client_test.rb
209
+ - test/influxdb/query_api_test.rb
208
210
  - test/influxdb/delete_api_integration_test.rb
209
- - test/influxdb/delete_api_test.rb
210
- - test/influxdb/flux_csv_parser_test.rb
211
- - test/influxdb/invokable_scripts_api_test.rb
212
- - test/influxdb/point_test.rb
213
- - test/influxdb/query_api_integration_test.rb
211
+ - test/influxdb/write_api_integration_test.rb
214
212
  - test/influxdb/query_api_stream_test.rb
215
- - test/influxdb/query_api_test.rb
213
+ - test/influxdb/flux_csv_parser_test.rb
214
+ - test/influxdb/delete_api_test.rb
216
215
  - test/influxdb/redirect_test.rb
217
- - test/influxdb/write_api_batching_test.rb
218
- - test/influxdb/write_api_integration_test.rb
219
216
  - test/influxdb/write_api_test.rb
217
+ - test/influxdb/write_api_batching_test.rb
218
+ - test/influxdb/point_test.rb
219
+ - test/influxdb/invokable_scripts_api_test.rb
220
220
  - test/test_helper.rb