Skip to content

Commit

Permalink
Add changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilianoSanchez committed Dec 7, 2023
1 parent c3e93a3 commit 3e49e70
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
10.24.1 (December XX, 2023)
- Updated SDK cache for browsers using localStorage, to clear cached feature flag definitions before initiating the synchronization process, if the cache was previously synchronized with a different SDK key (i.e., a different environment) or different Split Filter criteria.
- Updated @splitsoftware/splitio-commons package to version 1.12.1.

10.24.0 (December 4, 2023)
- Added support for Flag Sets on the SDK, which enables grouping feature flags and interacting with the group rather than individually (more details in our documentation):
- Added new variations of the get treatment methods to support evaluating flags in given flag set/s.
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"node": ">=6"
},
"dependencies": {
"@splitsoftware/splitio-commons": "1.12.1-rc.5",
"@splitsoftware/splitio-commons": "1.12.1-rc.6",
"@types/google.analytics": "0.0.40",
"@types/ioredis": "^4.28.0",
"bloom-filters": "^3.0.0",
Expand Down
4 changes: 2 additions & 2 deletions src/__tests__/browserSuites/ready-from-cache.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export default function (fetchMock, assert) {

});

assert.test(t => { // Testing when we start with cached data but without lastUpdate item (previous version)
assert.test(t => { // Testing when we start with cached data but without lastUpdate item (JS SDK version 10.13.0 and below)
const testUrls = {
sdk: 'https://sdk.baseurl/readyFromCacheWithData',
events: 'https://events.baseurl/readyFromCacheWithData'
Expand Down Expand Up @@ -478,7 +478,7 @@ export default function (fetchMock, assert) {

/** Fetch specific splits **/

assert.test(t => { // Testing when we start with cached data without storage hash (previous version), and a valid split filter config
assert.test(t => { // Testing when we start with cached data but without storage hash (JS SDK version 10.24.0 and below), and a valid split filter config
const testUrls = {
sdk: 'https://sdk.baseurl/readyFromCache_5',
events: 'https://events.baseurl/readyFromCache_5'
Expand Down

0 comments on commit 3e49e70

Please sign in to comment.