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
4 changes: 2 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# JS Browser SDK
# JavaScript Browser SDK

## What did you accomplish?

## How do we test the changes introduced in this PR?

## Extra Notes
## Extra Notes
10 changes: 10 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
branches:
- '*'

env:
PUPPETEER_SKIP_DOWNLOAD: 'true'

concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'push' && github.run_number || github.event.pull_request.number }}
cancel-in-progress: true
Expand All @@ -33,6 +36,13 @@ jobs:
- name: npm ci
run: npm ci

- name: Setup Chrome
uses: browser-actions/setup-chrome@19ae4b339ee18925ab85cf12c1041150ea4a44c8 # v1
with:
chrome-version: '125'
- name: Set CHROME_BIN
run: echo "CHROME_BIN=$(which chrome)" >> $GITHUB_ENV

- name: npm test-ts-decls
run: npm run test-ts-decls

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonar-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
-Dsonar.links.scm="https://github.com/splitio/${{ github.event.repository.name }}"

- name: SonarQube Scan (Pull Request)
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository
uses: SonarSource/sonarqube-scan-action@v6
env:
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,3 @@ dist
/.idea

.DS_Store
/karma/bundle.js
6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.7.1 (June 26, 2026)
- Updated TypeScript declaration to use `namespace` instead of `module` for compatibility with TypeScript 7 (Related to issue https://github.com/splitio/javascript-client/issues/920, and contributed by Matt Lewis (@mattlewis92) in https://github.com/splitio/javascript-browser-client/pull/173).
- Updated @splitsoftware/splitio-commons package to version 2.12.1, which:
- updates internal modules to handle `null` values from `/splitChanges` response.
- updates some dependencies for vulnerability fixes.

1.7.0 (January 28, 2026)
- Updated @splitsoftware/splitio-commons package to version 2.11.0, which:
- Added functionality to provide metadata alongside SDK update and READY events. Read more in our docs.
Expand Down
22 changes: 0 additions & 22 deletions karma/config.debug.js

This file was deleted.

99 changes: 0 additions & 99 deletions karma/config.js

This file was deleted.

21 changes: 0 additions & 21 deletions karma/e2e.consumer.karma.conf.js

This file was deleted.

20 changes: 0 additions & 20 deletions karma/e2e.destroy.karma.conf.js

This file was deleted.

20 changes: 0 additions & 20 deletions karma/e2e.errorCatching.karma.conf.js

This file was deleted.

20 changes: 0 additions & 20 deletions karma/e2e.logger.karma.conf.js

This file was deleted.

20 changes: 0 additions & 20 deletions karma/e2e.offline.karma.conf.js

This file was deleted.

20 changes: 0 additions & 20 deletions karma/e2e.online.karma.conf.js

This file was deleted.

20 changes: 0 additions & 20 deletions karma/e2e.push.karma.conf.js

This file was deleted.

Loading
Loading