Skip to content

Commit 3b0fb31

Browse files
Merge branch 'main' into inlocalstorage
2 parents e9211f8 + 4da948d commit 3b0fb31

File tree

13 files changed

+731
-211
lines changed

13 files changed

+731
-211
lines changed

.github/workflows/ci-cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ci-cd
22
on:
33
pull_request:
44
branches:
5-
- master
5+
- main
66
- development
77
push:
88
branches:
@@ -57,7 +57,7 @@ jobs:
5757
run: BUILD_BRANCH=$(echo "${GITHUB_REF#refs/heads/}") npm run build
5858

5959
- name: Store assets
60-
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/inlocalstorage' || github.ref == 'refs/heads/master') }}
60+
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/development' || github.ref == 'refs/heads/main') }}
6161
uses: actions/upload-artifact@v4
6262
with:
6363
name: assets
@@ -68,7 +68,7 @@ jobs:
6868
name: Upload assets
6969
runs-on: ubuntu-latest
7070
needs: build
71-
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/inlocalstorage' }}
71+
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/development' }}
7272
strategy:
7373
matrix:
7474
environment:
@@ -107,7 +107,7 @@ jobs:
107107
name: Upload assets
108108
runs-on: ubuntu-latest
109109
needs: build
110-
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
110+
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
111111
strategy:
112112
matrix:
113113
environment:

.github/workflows/sonar-scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: sonar-scan
22
on:
33
pull_request:
44
branches:
5-
- master
5+
- main
66
- development
77
push:
88
branches:
9-
- master
9+
- main
1010
- development
1111

1212
jobs:

CHANGES.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
11.5.0 (August XX, 2025)
1+
11.6.0 (September 19, 2025)
22
- Added `storage.wrapper` configuration option to allow the SDK to use a custom storage wrapper for the storage type `LOCALSTORAGE`. Default value is `window.localStorage`.
33

4+
11.5.0 (September 10, 2025)
5+
- Added `factory.getRolloutPlan()` method for standalone server-side SDK (Node.js), which returns the rollout plan snapshot from the storage.
6+
- Added `initialRolloutPlan` configuration option for standalone client-side SDK (Browser), which allows preloading the SDK storage with a snapshot of the rollout plan.
7+
- Updated @splitsoftware/splitio-commons package to version 2.5.0.
8+
49
11.4.1 (June 3, 2025)
510
- 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.
611

0 commit comments

Comments
 (0)