ff-ruby-server-sdk 1.4.8 → 1.4.9
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/CHANGELOG.md +56 -0
- data/lib/ff/ruby/server/sdk/version.rb +1 -1
- data/scripts/sdk_specs.sh +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 76a72fcacf7256b1ad1a51cf4ca053c36f46a420a1314f8ee13e4afadc5d8b1d
|
|
4
|
+
data.tar.gz: 8387a011dbe36d3e1c89b45ec4dfe43a03d4e48983e80480bff7b1b4483c7a3d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 62103b0deef357f19cdedf12e7b358c5cc943d58746f057edc2d567054eca293736c0c7565b854387c7b9da08a5c372285bfddc2f5fdb9e04fd64eb035cd2e7b
|
|
7
|
+
data.tar.gz: eca1e396cb153941c50d9bf1bc9a4b675333c39c3a49994078ccd4a9f7735095879d5220c1097ff983e74bbfd2be7bcfe3e95f244fcca1422d14933b4854a378
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,59 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
# [1.4.9]
|
|
4
|
+
# [1.4.8]
|
|
5
|
+
|
|
6
|
+
- [FFM-12573] - Testing Harness Code release flow. No code changes
|
|
7
|
+
|
|
8
|
+
# [1.4.8]
|
|
9
|
+
|
|
10
|
+
- [FFM-12573] - Migrate build & release pipeline to Harness Code
|
|
11
|
+
|
|
12
|
+
# [1.4.7]
|
|
13
|
+
|
|
14
|
+
- [FFM-12713] - Limit number of targets in single payload
|
|
15
|
+
|
|
16
|
+
# [1.4.6]
|
|
17
|
+
|
|
18
|
+
- [FFM-12281] - Thread safety fixes
|
|
19
|
+
- [FFM-12277] - Add initialised method
|
|
20
|
+
|
|
21
|
+
# [1.4.5]
|
|
22
|
+
|
|
23
|
+
- [FM-12192] - Following from 1.4.4: Resolves an issue where Segmentation faults can occur on Ruby 3.4 and above
|
|
24
|
+
|
|
25
|
+
# [1.4.4]
|
|
26
|
+
|
|
27
|
+
- [FFM-12192] - Following from 1.4.3, we are still investigating an edge case in the SDK, where segmentation faults can occur when the SDK aggregates and sends metrics at the end of an interval:
|
|
28
|
+
- [FFM-12192] - Also fixes some behaviour around default variations being returned
|
|
29
|
+
|
|
30
|
+
# [1.4.3]
|
|
31
|
+
# [1.4.2]
|
|
32
|
+
|
|
33
|
+
- [FFM-12192] - Following from 1.4.2, we are still investigating an edge case in the SDK, where very large projects can generate invalid metric events shortly after the SDK has initialised. This patch includes possible fixes for this issue.
|
|
34
|
+
|
|
35
|
+
# [1.4.1]
|
|
36
|
+
|
|
37
|
+
- [FFM-12192] - Skips processing invalid metrics if they are detected.
|
|
38
|
+
|
|
39
|
+
# [1.4.0]
|
|
40
|
+
|
|
41
|
+
- [FFM-12088] - Adds an optional timeout parameter for wait_for_initialization,
|
|
42
|
+
|
|
43
|
+
# [1.3.2]
|
|
44
|
+
|
|
45
|
+
- [FFM-11995] - No longer ships rake minitest and standard as dependencies.
|
|
46
|
+
|
|
47
|
+
# [1.3.1]
|
|
48
|
+
|
|
49
|
+
- [FFM-11657] - Sort group AND/OR rules and Flag rules when caching group instead of during an evaluation call
|
|
50
|
+
|
|
51
|
+
# [1.3.0]
|
|
52
|
+
|
|
53
|
+
- [FFM-11241] - Target v2: Adding SDK support for AND/OR rules.
|
|
54
|
+
- [FFM-11365] - Add rules-v2 query parameter to optimise the rules that the FF backend sends for AND/OR rules.
|
|
55
|
+
- [FFM-11211] - Metrics fixes
|
|
56
|
+
|
|
1
57
|
# [1.2.1]
|
|
2
58
|
|
|
3
59
|
- [FFM-10177] - Ruby SDK - Use pessimistic version operator for minor versions
|
data/scripts/sdk_specs.sh
CHANGED