This repository has been archived by the owner on Aug 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
CHANGES.txt
114 lines (84 loc) · 3.73 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
CHANGES
5.0.0
- BREAKING CHANGE: Moving block until ready out of the factory into the split client and manager client.
- Added validation for traffic type name when calling track.
- Added new label when the sdk is not ready.
- Added validation for split names on getTreatment and manager calls.
- Check for multiple factories instantiated.
4.1.3
- Added support for optional event properties via our client.track() method. Read more in our docs!
4.1.2
- Updated localhost mode. Now besides supporting the old text files with `.split` extension (to be deprecated soon), we support YAML (.yaml/.yml) files with more options. Read more in our docs!
4.1.1
- Bugfix: SDK return error when posting events successfully.
4.1.0
- Added Dynamic Configurations support through two new methods that mimick the regular ones, changing the type of what is returned.
- GetTreatmentWithConfig: Same as getTreatment, but instead of a string it returns a map with treatment and config as a stringified JSON.
- GetTreatmentWithConfig: Same as getTreatments, but instead of a map of string it returns a map of objects with treatment and config as a stringified JSON.
- Added configs to SplitViews returned by the manager module.
4.0.1
- Bug fix InvalidOperationException in ImpressionsLog(). "Collection was modified; enumeration operation may not execute".
4.0.0
- BREAKING CHANGE: Updated impressions cache for Redis storage to reduce the amount of Redis operations by using a single queue. Must use Synchronizer 2.x or above with this or newer SDK versions if you are using Redis mode.
- Improved Input validation to provide better and faster feedback in case of missuse.
- Updated FeaturesRefreshRate to be 5 seconds.
3.5.0
- Signed the assembly.
- Added Input validation
- Adding Block Until Ready for Redis client
- Fix authors and other package metadata
- Fix an issue when Traffic Allocation is set to 1 and the resulting bucket is also 1.
3.4.2
- Improve async handling
3.4.1
- Fix track() bug on localhost mode
3.4.0
- Add support for .track()
- Bug fix on date rule matchers
3.3.3
- Solved Issue 94: Invalid Api key causes high CPU usage
3.3.1
- Bug fix on RedisSplitManager.
3.3.0
- Changed Splitio package to support just Standalone mode, and added Splitio.Redis package
for Consumer mode.
- Included Splitio.TestSupport framework, for unit testing.
3.2.1
- Updated Split Manager to return treatments from ROLLOUT condition.
3.2.0
- Support for Boolean and Regex Matchers.
- Support for Dependency Matcher.
- Support for Client Destroy using In Memory mode.
3.1.2
- Changed logging approach by supporting Common.Logging integration. Client can configure its already existing logging system
by using Common.Logging adapter, to be used in Splitio SDK.
3.1.1
- Bug fix.
3.1.0
- Support for new string and set matchers: ContainsAllOfSet, ContainsAnyOfSet, ContainsString, EndsWith, EqualToSet, PartOfSet and StartsWith
3.0.2
- Support for TLS 1.2 on SDK Net HttpClient.
3.0.1
- Bug fixes.
3.0.0
- New hashing algorithm for splitter: Murmur hash.
2.2.1
- Support for Impression Listener on configurations.
2.2.0
- Support for Traffic Allocation.
2.1.2
- Fix Machine IP query
2.1.1
- Localmode to support reload features.
- Refactor InMemory Metrics and Impressions to comply cache interface style.
- Support for Redis cache and Redis client.
- Configuration to support multiple modes and Redis parameters.
- Support for multiple splits evaluation by including GetTreatments method.
2.0.6
- LabelsEnabled flag is true by default
2.0.5
- Impression to include the changeNumber of the Split that served a GetTreatment call.
- Impression to include Label.
- Expose LabelsEnabled flag in ConfigurationOptions.
- Add SplitManager.SplitNames() support to retrieve feature names.
- Deprecate Engine module.