Skip to content

Commit 5d192ee

Browse files
stable version
1 parent 88be475 commit 5d192ee

File tree

5 files changed

+18
-16
lines changed

5 files changed

+18
-16
lines changed

CHANGES.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
11.5.0 (September 9, 2025)
2-
- Added `factory.getRolloutPlan()` method for standalone server-side SDKs, which returns the rollout plan snapshot from the storage.
3-
- Added `initialRolloutPlan` configuration option for standalone client-side SDKs, which allows preloading the SDK storage with a snapshot of the rollout plan.
1+
11.5.0 (September 10, 2025)
2+
- Added `factory.getRolloutPlan()` method for standalone server-side SDK (Node.js), which returns the rollout plan snapshot from the storage.
3+
- Added `initialRolloutPlan` configuration option for standalone client-side SDK (Browser), which allows preloading the SDK storage with a snapshot of the rollout plan.
4+
- Updated @splitsoftware/splitio-commons package to version 2.5.0.
45

56
11.4.1 (June 3, 2025)
67
- Updated @splitsoftware/splitio-commons package to version 2.4.1, which improves the Proxy fallback to flag spec version 1.2 by handling the case when the Proxy does not return an end-of-stream marker in 400 status code responses.

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@splitsoftware/splitio",
3-
"version": "11.5.0-rc.1",
3+
"version": "11.5.0",
44
"description": "Split SDK",
55
"files": [
66
"README.md",
@@ -38,7 +38,7 @@
3838
"node": ">=14.0.0"
3939
},
4040
"dependencies": {
41-
"@splitsoftware/splitio-commons": "2.5.0-rc.1",
41+
"@splitsoftware/splitio-commons": "2.5.0",
4242
"bloom-filters": "^3.0.4",
4343
"ioredis": "^4.28.0",
4444
"js-yaml": "^3.13.1",

src/factory/node.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { sdkClientMethodFactory } from '@splitsoftware/splitio-commons/src/sdkCl
1010
import { impressionObserverSSFactory } from '@splitsoftware/splitio-commons/src/trackers/impressionObserver/impressionObserverSS';
1111
import { sdkFactory } from '@splitsoftware/splitio-commons/src/sdkFactory';
1212
import { CONSUMER_MODE, LOCALHOST_MODE } from '@splitsoftware/splitio-commons/src/utils/constants';
13+
import { isConsumerMode } from '@splitsoftware/splitio-commons/src/utils/settingsValidation/mode';
1314

1415
import { localhostFromFileFactory } from '../sync/offline/LocalhostFromFile';
1516
import { settingsFactory } from '../settings/node';
@@ -52,7 +53,7 @@ function getModules(settings) {
5253
filterAdapterFactory: bloomFilterFactory,
5354

5455
extraProps: (params) => {
55-
if (params.settings.mode !== CONSUMER_MODE) {
56+
if (!isConsumerMode(params.settings.mode)) {
5657
return {
5758
getRolloutPlan(userKeys) {
5859
return getRolloutPlan(params.settings.log, params.storage, userKeys);

src/settings/defaults/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const packageVersion = '11.5.0-rc.1';
1+
export const packageVersion = '11.5.0';

0 commit comments

Comments
 (0)