influxdb-client 3.1.0.pre.7871 → 3.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -1
- data/README.md +2 -2
- metadata +14 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '049023b9ad636a67edfab1e278984617678e648614b25601a77fc1a851351edd'
|
4
|
+
data.tar.gz: 979b8511a545e47e1c0f00dbd094ed81e09f85a5d6f8aeb28c2681eff8e53394
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a4b899fab0bcfe357f40f5afa83057a8b19108f6822f77b6ad5df01512f610fc13acaaf18546edcc2658bcf36fd799bbb7d8ffe45cc7a7af2cf5a47339672e7
|
7
|
+
data.tar.gz: ed92374cb7f1c5b6819c44efed1561e3d2ae8aba31159d2f38071c5bd4ad69ea29c449869d8666fc9bc5c6ff47f7852c4dee477a6f67593d4b73d2b898ea1d7e
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
## 3.1.0 [
|
1
|
+
## 3.1.0 [2024-03-01]
|
2
2
|
|
3
3
|
### Bug Fixes
|
4
4
|
1. [#134](https://github.com/influxdata/influxdb-client-ruby/pull/134): Support influxdb v1.8 HTTP error response message. Prior to this change, in case of an HTTP error response (influxDB v1.8) the InfluxError had empty message.
|
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.
|
67
|
+
gem install influxdb-client -v 3.1.0
|
68
68
|
```
|
69
69
|
|
70
70
|
For management API:
|
71
71
|
|
72
72
|
```
|
73
|
-
gem install influxdb-client-apis -v 3.
|
73
|
+
gem install influxdb-client-apis -v 3.1.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.1.0
|
4
|
+
version: 3.1.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
|
+
date: 2024-03-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -180,27 +180,27 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
180
180
|
version: 2.2.0
|
181
181
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
182
182
|
requirements:
|
183
|
-
- - "
|
183
|
+
- - ">="
|
184
184
|
- !ruby/object:Gem::Version
|
185
|
-
version:
|
185
|
+
version: '0'
|
186
186
|
requirements: []
|
187
|
-
rubygems_version: 3.3.
|
187
|
+
rubygems_version: 3.0.3.1
|
188
188
|
signing_key:
|
189
189
|
specification_version: 4
|
190
190
|
summary: Ruby library for InfluxDB 2.
|
191
191
|
test_files:
|
192
|
-
- test/influxdb/
|
192
|
+
- test/influxdb/query_api_integration_test.rb
|
193
193
|
- test/influxdb/default_api_test.rb
|
194
|
+
- test/influxdb/client_test.rb
|
195
|
+
- test/influxdb/query_api_test.rb
|
194
196
|
- test/influxdb/delete_api_integration_test.rb
|
195
|
-
- test/influxdb/
|
196
|
-
- test/influxdb/flux_csv_parser_test.rb
|
197
|
-
- test/influxdb/invokable_scripts_api_test.rb
|
198
|
-
- test/influxdb/point_test.rb
|
199
|
-
- test/influxdb/query_api_integration_test.rb
|
197
|
+
- test/influxdb/write_api_integration_test.rb
|
200
198
|
- test/influxdb/query_api_stream_test.rb
|
201
|
-
- test/influxdb/
|
199
|
+
- test/influxdb/flux_csv_parser_test.rb
|
200
|
+
- test/influxdb/delete_api_test.rb
|
202
201
|
- test/influxdb/redirect_test.rb
|
203
|
-
- test/influxdb/write_api_batching_test.rb
|
204
|
-
- test/influxdb/write_api_integration_test.rb
|
205
202
|
- test/influxdb/write_api_test.rb
|
203
|
+
- test/influxdb/write_api_batching_test.rb
|
204
|
+
- test/influxdb/point_test.rb
|
205
|
+
- test/influxdb/invokable_scripts_api_test.rb
|
206
206
|
- test/test_helper.rb
|