influxer 1.4.0 → 2.0.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: fc1ab76fd0f5d70b0f876a0259d1d46cc3c8e878527a7aadf26c56834db55b55
4
- data.tar.gz: 6f31a226c184219b583528d2f3f57d5482839f66dd6bec240ff8bf296360a9f3
3
+ metadata.gz: e062c5d510539a73a1a169d070788871bbb719772004d3f05cac981df10b0ddc
4
+ data.tar.gz: 7c4b85a4a15d231296f43fcfcd9465d31f9269ac5dd68ca8630a398f5da8adff
5
5
  SHA512:
6
- metadata.gz: 8661b96cded076dbf6674dd72ade16886ca18f375acdb8406b54a1cb89b25e10efd78aa70d90d1e26cab4dd8356ba57bb1fa2125107ebe07ca308f9b294d4d47
7
- data.tar.gz: c7edf962257966dbbc829f0c9cd4dc0d8b924329c3ecd4ca689aaf61c54c6254e7c2f6f06e9b254131578945dcdf5dbceb292de85e934cdcda3bdfcae41393f0
6
+ metadata.gz: 43d7fc198d93b1fae12d413e9730a1cbdca778bb14e35bde6f3b1e2e84741f6ed416e08108f87a9c3cb1a7a8e65c5e281d54ff7bb3f4f4a155e8182d2998d71d
7
+ data.tar.gz: 66e78510434faa751a8f2c68c74d610d2686b2957bb6cd303d0561d51fdf87dbd379f34c0eea7771a3293c473f517ffb5543b6635c2a1aeb47cdb9bcaa564505
data/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  ## master (unreleased)
4
4
 
5
+ ## 2.0.0 (2024-10-12)
6
+
7
+ - Upgraded Ruby and Rails version to Ruby 2.7.6 and Rails 6
8
+ - Added support for providing hash objects as arguments to where condition in ruby >= 3
9
+ - Removes support for Rails 5
10
+ - Removes support for Ruby less than 2.7
11
+
5
12
  ## 1.4.0 (2022-01-24)
6
13
 
7
14
  - Fixes [#55](https://github.com/palkan/influxer/issues/55) Rails 7 deprecation warning
@@ -15,7 +22,7 @@
15
22
 
16
23
  ## 1.2.2 (2020-10-27)
17
24
 
18
- - Fixes [#49](https://github.com/palkan/influxer/issues/49) Cache hash configuration cannot be applied.([@AlexanderShvaykin][])
25
+ - Fixes [#49](https://github.com/palkan/influxer/issues/49) Cache hash configuration cannot be applied.([@AlexanderShvaykin][])
19
26
  - Fixes [#47](https://github.com/palkan/influxer/issues/47) Can't delete data when retention policy is set for a metric. ([@MPursche][])
20
27
 
21
28
  ## 1.2.1 (2020-07-09)
@@ -103,7 +110,7 @@ end
103
110
  See [changelog](https://github.com/palkan/influxer/blob/1.0.0/Changelog.md) for earlier versions.
104
111
 
105
112
  [@palkan]: https://github.com/palkan
106
- [@MPursche]: https://github.com/MPursche
113
+ [@mpursche]: https://github.com/MPursche
107
114
  [@jklimke]: https://github.com/jklimke
108
115
  [@dimiii]: https://github.com/dimiii
109
- [@AlexanderShvaykin]: https://github.com/AlexanderShvaykin
116
+ [@alexandershvaykin]: https://github.com/AlexanderShvaykin
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ![Build](https://github.com/palkan/influxer/workflows/Build/badge.svg)
1
+ ![Build](https://github.com/palkan/influxer/workflows/Rspec/badge.svg)
2
2
 
3
3
  # Influxer
4
4
 
@@ -36,8 +36,14 @@ module Influxer
36
36
  protected
37
37
 
38
38
  def build_where(args, hargs, negate)
39
- if args.present? && args[0].is_a?(String)
40
- where_values.concat(args.map { |str| "(#{str})" })
39
+ if args.present?
40
+ if args[0].is_a?(String)
41
+ where_values.concat(args.map { |str| "(#{str})" })
42
+ elsif args[0].is_a?(Hash)
43
+ build_hash_where(args[0], negate)
44
+ else
45
+ false
46
+ end
41
47
  elsif hargs.present?
42
48
  build_hash_where(hargs, negate)
43
49
  else
@@ -84,7 +84,7 @@ module Influxer
84
84
  @klass = klass
85
85
  @instance = klass.new params[:attributes]
86
86
  reset
87
- where(params[:attributes]) if params[:attributes].present?
87
+ where(**params[:attributes]) if params[:attributes].present?
88
88
  end
89
89
 
90
90
  def write(params = {})
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Influxer # :nodoc:
4
- VERSION = "1.4.0"
4
+ VERSION = "2.0.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: influxer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vlad Dem
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-24 00:00:00.000000000 Z
11
+ date: 2024-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 3.2.0
19
+ version: '6.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 3.2.0
26
+ version: '6.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: influxdb
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -182,14 +182,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
182
182
  requirements:
183
183
  - - ">="
184
184
  - !ruby/object:Gem::Version
185
- version: 2.5.0
185
+ version: 2.7.6
186
186
  required_rubygems_version: !ruby/object:Gem::Requirement
187
187
  requirements:
188
188
  - - ">="
189
189
  - !ruby/object:Gem::Version
190
190
  version: '0'
191
191
  requirements: []
192
- rubygems_version: 3.2.32
192
+ rubygems_version: 3.3.7
193
193
  signing_key:
194
194
  specification_version: 4
195
195
  summary: InfluxDB for Rails