splitclient-rb 8.9.0.pre.rc1 → 8.9.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.
- checksums.yaml +4 -4
- data/CHANGES.txt +3 -0
- data/lib/splitclient-rb/validators.rb +6 -2
- data/lib/splitclient-rb/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e9675cf0c10ae67ec9447508972333071c09ac6573b8c593d92ef0a6cd93897
|
4
|
+
data.tar.gz: de84dd6e79108b69e27e387ff2e490b6ef50de23af3bbf7a7ef999308171dce5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b32b6fb272ff79f489bbb41adeb8ebd1c763dbe14aeffdc63c90b9c60ac7973ff212c28ffdecdaf5e5fd6215c5a92d4217d57e55d41b1af16107f1aa1141d092
|
7
|
+
data.tar.gz: f8f5d13d8ab366ee267fa48e2c0b7b342c5b8a36e69ad961e10c708eb188d00a870b23a3c027b60fabd0e898664601128b1064b1ca712cd99f03e5c42841afb8
|
data/CHANGES.txt
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
CHANGES
|
2
2
|
|
3
|
+
8.9.0 (Oct 8, 2025)
|
4
|
+
- Added new configuration for Fallback Treatments, which allows setting a treatment value and optional config to be returned in place of "control", either globally or by flag. Read more in our docs.
|
5
|
+
|
3
6
|
8.8.0 (Sep 26, 2025)
|
4
7
|
- Added a maximum size payload when posting unique keys telemetry in batches
|
5
8
|
|
@@ -57,8 +57,12 @@ module SplitIoClient
|
|
57
57
|
end
|
58
58
|
without_nil = Array.new
|
59
59
|
flag_sets.each { |flag_set|
|
60
|
-
|
61
|
-
|
60
|
+
if !flag_set.nil?
|
61
|
+
without_nil.push(flag_set)
|
62
|
+
next
|
63
|
+
end
|
64
|
+
|
65
|
+
log_nil("flag set", method)
|
62
66
|
}
|
63
67
|
if without_nil.length() == 0
|
64
68
|
log_invalid_flag_set_type(method)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: splitclient-rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 8.9.0
|
4
|
+
version: 8.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Split Software
|
@@ -595,9 +595,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
595
595
|
version: 2.5.0
|
596
596
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
597
597
|
requirements:
|
598
|
-
- - "
|
598
|
+
- - ">="
|
599
599
|
- !ruby/object:Gem::Version
|
600
|
-
version:
|
600
|
+
version: '0'
|
601
601
|
requirements: []
|
602
602
|
rubyforge_project:
|
603
603
|
rubygems_version: 2.7.6.2
|