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
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
81 changes: 31 additions & 50 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@splitsoftware/splitio-browserjs",
"version": "1.7.0",
"version": "1.7.1",
"description": "Split SDK for JavaScript on Browser",
"main": "cjs/index.js",
"module": "esm/index.js",
Expand Down Expand Up @@ -59,15 +59,15 @@
"bugs": "https://github.com/splitio/javascript-browser-client/issues",
"homepage": "https://github.com/splitio/javascript-browser-client#readme",
"dependencies": {
"@splitsoftware/splitio-commons": "2.11.0",
"@splitsoftware/splitio-commons": "2.12.1",
"tslib": "^2.3.1",
"unfetch": "^4.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-terser": "^1.0.0",
"@types/jest": "^27.0.2",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
Expand Down
1 change: 1 addition & 0 deletions src/platform/getModules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export function getModules(settings: ISettings, platform: IPlatform): ISdkFactor

sdkManagerFactory,

// @ts-expect-error - To be fixed in commons
sdkClientMethodFactory: sdkClientMethodCSFactory,

SignalListener: BrowserSignalListener as ISdkFactoryParams['SignalListener'],
Expand Down
2 changes: 1 addition & 1 deletion src/settings/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type SplitIO from '@splitsoftware/splitio-commons/types/splitio';
import { LogLevels, isLogLevelString } from '@splitsoftware/splitio-commons/src/logger/index';
import { CONSENT_GRANTED } from '@splitsoftware/splitio-commons/src/utils/constants';

const packageVersion = '1.7.0';
const packageVersion = '1.7.1';

/**
* In browser, the default debug level, can be set via the `localStorage.splitio_debug` item.
Expand Down
Loading