splitclient-rb 4.5.2.pre.rc1-java → 5.0.0-java
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 +4 -1
- data/NEWS +8 -0
- data/lib/splitclient-rb/engine/evaluator/splitter.rb +1 -1
- data/lib/splitclient-rb/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c78ff1de0b0d868936b0076b9127f5dea7bcc43a
|
|
4
|
+
data.tar.gz: 4764377c5c77cc6259612021fbb168f5523402ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 996e463bdc20ee7fc36a6ed1f17a3d7aa579e648a4608f241b75b1766c4d75173e85175dd147fa794477ea3d3ac94749d958e40187838d0d10b2924f7aaa1e6e
|
|
7
|
+
data.tar.gz: 7e912b0ae99f4b28bc4c356347984c41c9be2516b36b714669d5615fe0d245f9eb34c3bd274e9670d670c386e14448843d7740e0ba82fe9f737bf3d058036f80
|
data/CHANGES.txt
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
5.0.0 (May 18th, 2018)
|
|
2
|
+
- Fix bug where the sdk picked the wrong hashing algo. This is a breaking change.
|
|
3
|
+
|
|
4
|
+
4.5.2 (May 16th, 2018)
|
|
2
5
|
- do not return control when a split has custom attr and I don't pass attributes to get_treatment
|
|
3
6
|
|
|
4
7
|
4.5.1 (Mar 23rd, 2018)
|
data/NEWS
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
5.0.0
|
|
2
|
+
|
|
3
|
+
This is a breaking change in how users buckets are allocated.
|
|
4
|
+
Ruby SDK was wrongly picking up the right buckets and defauled to
|
|
5
|
+
use a "legacy hashing" instead of our moder murmur3 algo which is
|
|
6
|
+
what other SDKs use. Please reach out to support@split.io for help
|
|
7
|
+
on how to upgrade to this release.
|
|
8
|
+
|
|
1
9
|
4.5.0
|
|
2
10
|
|
|
3
11
|
Add JRuby support
|
|
@@ -42,7 +42,7 @@ module SplitIoClient
|
|
|
42
42
|
return (partitions.first).treatment
|
|
43
43
|
end
|
|
44
44
|
|
|
45
|
-
return get_treatment_for_key(bucket(count_hash(id, seed,
|
|
45
|
+
return get_treatment_for_key(bucket(count_hash(id, seed, legacy)), partitions)
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
# returns a hash value for the give key, seed pair
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: splitclient-rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 5.0.0
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Split Software
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-06-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -309,9 +309,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
309
309
|
version: '0'
|
|
310
310
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
311
311
|
requirements:
|
|
312
|
-
- - "
|
|
312
|
+
- - ">="
|
|
313
313
|
- !ruby/object:Gem::Version
|
|
314
|
-
version:
|
|
314
|
+
version: '0'
|
|
315
315
|
requirements: []
|
|
316
316
|
rubyforge_project:
|
|
317
317
|
rubygems_version: 2.6.14.1
|