Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- '**'
pull_request:
branches:
- master
- main
- development

concurrency:
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
run: echo "VERSION=$(cat package.json | jq -r .version)" >> $GITHUB_ENV

- name: SonarQube Scan (Push)
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/development')
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/development')
uses: SonarSource/sonarcloud-github-action@v1.9
env:
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
-Dsonar.pullrequest.base=${{ github.event.pull_request.base.ref }}

- name: Store assets
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/development')
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/development')
uses: actions/upload-artifact@v4
with:
name: assets
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
name: Upload assets
runs-on: ubuntu-latest
needs: build
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
strategy:
matrix:
environment:
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2.4.0 (September 10, 2025)
- Updated @splitsoftware/splitio package to version 11.5.0 that includes minor updates:
- Added `initialRolloutPlan` configuration option, which allows preloading the SDK storage with a snapshot of the rollout plan and support server-side rendering (SSR) with the SDK ready from cache in the initial render.
- Updated some transitive dependencies for vulnerability fixes.

2.3.1 (June 3, 2025)
- Updated @splitsoftware/splitio package to version 11.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.

Expand Down
Loading