influxdb-client 1.16.0 → 1.17.0

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: c46ade6f1cd6b6448089208bf01cc2b4ae65d16a2eead12cc7fada9f39fb70b7
4
- data.tar.gz: 1edb6c9dd5c4708df499f65d1c5b84e27d26149ab57cec0863d37f78022f2f79
3
+ metadata.gz: 2b45b4e1aba281b91906e7aec477b1b0e4d96d8b19619f523646f82e84528b7a
4
+ data.tar.gz: bdc517dfa75b6605c509f89f95df9400c6a009f129b1d5f9bafe5757ba4d6f60
5
5
  SHA512:
6
- metadata.gz: 5bb4e1941dc9e3d3bc4b9bb34d15a0025d9929204cdb23c48b981a6e55070d1634f92b11041be84aa1c3e8d089d8e31dcf67ec110556c5f0a661205ede92b8f9
7
- data.tar.gz: e5a4d0fc67ec7f50b4f7092ff59a692cb2b750aeb6c7bd6943e5f74907aa6d468a57991a4d415a282013560cf9dd3a36a9ed6f457bde6ce544d6f0890192a956
6
+ metadata.gz: c3913078eded2b90435abc49a6fd85ccdfac827c01c01d5ae38d37a0454e5b37a1315a7228221eb9966ace146df3fa3cb7ecb60af76e4fc0edbe5a6b995f8ebe
7
+ data.tar.gz: 18c86b9c78f939ba131bd23e40070104794659b1fd000b4fccc3bb892ce19b951f5d6ffc71beb56c11c96b56c0787233b06d8e3ed9e320ce2b1b4f8532be6147
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 1.17.0 [2021-08-20]
2
+
3
+ ### Bug Fixes
4
+ 1. [#87](https://github.com/influxdata/influxdb-client-ruby/pull/87): Parsing infinite numbers
5
+
1
6
  ## 1.16.0 [2021-07-09]
2
7
 
3
8
  ### Bug Fixes
data/README.md CHANGED
@@ -26,6 +26,15 @@ This repository contains the reference Ruby client for the InfluxDB 2.0.
26
26
  - [Contributing](#contributing)
27
27
  - [License](#license)
28
28
 
29
+ ## Documentation
30
+
31
+ This section contains links to the client library documentation.
32
+
33
+ * [Product documentation](https://docs.influxdata.com/influxdb/v2.0/api-guide/client-libraries/), [Getting Started](#installation)
34
+ * [Examples](examples)
35
+ * [API Reference](https://influxdata.github.io/influxdb-client-ruby/InfluxDB2.html)
36
+ * [Changelog](CHANGELOG.md)
37
+
29
38
  ## Features
30
39
 
31
40
  InfluxDB 2.0 client consists of two packages
@@ -54,13 +63,13 @@ The client can be installed manually or with bundler.
54
63
  To install the client gem manually:
55
64
 
56
65
  ```
57
- gem install influxdb-client -v 1.16.0
66
+ gem install influxdb-client -v 1.17.0
58
67
  ```
59
68
 
60
69
  For management API:
61
70
 
62
71
  ```
63
- gem install influxdb-client-apis -v 1.16.0
72
+ gem install influxdb-client-apis -v 1.17.0
64
73
  ```
65
74
 
66
75
  ## Usage
@@ -240,7 +240,14 @@ module InfluxDB2
240
240
  when 'unsignedLong', 'long', 'duration'
241
241
  str_val.to_i
242
242
  when 'double'
243
- str_val.to_f
243
+ case str_val
244
+ when '+Inf'
245
+ Float::INFINITY
246
+ when '-Inf'
247
+ -Float::INFINITY
248
+ else
249
+ str_val.to_f
250
+ end
244
251
  when 'base64Binary'
245
252
  Base64.decode64(str_val)
246
253
  when 'dateTime:RFC3339', 'dateTime:RFC3339Nano'
@@ -19,5 +19,5 @@
19
19
  # THE SOFTWARE.
20
20
 
21
21
  module InfluxDB2
22
- VERSION = '1.16.0'.freeze
22
+ VERSION = '1.17.0'.freeze
23
23
  end
@@ -1,4 +1,4 @@
1
- # The MIT License
1
+ # The MIT
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the "Software"), to deal
@@ -166,7 +166,7 @@ class FluxCsvParserTest < MiniTest::Test
166
166
  "#default,mean,,,,,,,,,,,\n" \
167
167
  ",result,table,_start,_stop,_time,_value,_field,_measurement,language,license,name,owner\n" \
168
168
  ',,0,2020-11-02T07:29:49.55050738Z,2020-12-02T07:29:49.55050738Z,2020-11-02T09:00:00Z,9,' \
169
- "stars,github_repository,Ruby,MIT License,influxdb-client-ruby,influxdata\n"
169
+ "stars,gh,Ruby,MIT,influxdb-client-ruby,influxdata\n"
170
170
 
171
171
  tables = InfluxDB2::FluxCsvParser.new(data).parse.tables
172
172
  records = tables[0].records
@@ -464,4 +464,29 @@ class FluxCsvParserErrorTest < MiniTest::Test
464
464
  assert_equal true, tables[0].columns[2].group
465
465
  assert_equal 1, tables[1].records.size
466
466
  end
467
+
468
+ def test_parse_infinity
469
+ data = '#group,false,false,true,true,true,true,true,true,true,true,false,false
470
+ #datatype,string,long,dateTime:RFC3339,dateTime:RFC3339,string,string,string,string,string,string,double,double
471
+ #default,_result,,,,,,,,,,,
472
+ ,result,table,_start,_stop,_field,_measurement,language,license,name,owner,le,_value
473
+ ,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,0,0
474
+ ,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,10,0
475
+ ,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,20,0
476
+ ,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,30,0
477
+ ,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,40,0
478
+ ,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,50,0
479
+ ,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,60,0
480
+ ,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,70,0
481
+ ,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,80,0
482
+ ,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,90,0
483
+ ,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,+Inf,15
484
+ ,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,-Inf,15'
485
+
486
+ tables = InfluxDB2::FluxCsvParser.new(data).parse.tables
487
+ assert_equal 1, tables.size
488
+ assert_equal 12, tables[0].records.size
489
+ assert_equal tables[0].records[10].values['le'], Float::INFINITY
490
+ assert_equal tables[0].records[11].values['le'], -Float::INFINITY
491
+ end
467
492
  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.16.0
4
+ version: 1.17.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: 2021-07-09 00:00:00.000000000 Z
11
+ date: 2021-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler