Skip to content

Commit f0da593

Browse files
Merge pull request #131 from splitio/issue_130
Upgrade dependencies and fix issue with `SplitIO` namespace
2 parents 60bef68 + 888fcea commit f0da593

File tree

4 files changed

+84
-89
lines changed

4 files changed

+84
-89
lines changed

CHANGES.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2.0.1 (December 5, 2024)
2+
- Updated @splitsoftware/splitio package to version 11.0.3 that includes some improvements and bugfixes.
3+
- Bugfixing - Fixed issue where the `SplitIO` namespace from `@splitsoftware/splitio` was not accessible through the library, enabling users to use the namespace without additional imports (Related to https://github.com/splitio/redux-client/issues/130).
4+
15
2.0.0 (November 14, 2024)
26
- Added support for targeting rules based on large segments.
37
- Updated @splitsoftware/splitio package to version 11.0.1 that includes major updates, and updated some transitive dependencies for vulnerability fixes.

package-lock.json

+75-87
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@splitsoftware/splitio-redux",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "A library to easily use Split JS SDK with Redux and React Redux",
55
"main": "cjs/index.js",
66
"module": "esm/index.js",
@@ -59,7 +59,7 @@
5959
},
6060
"homepage": "https://github.com/splitio/redux-client#readme",
6161
"dependencies": {
62-
"@splitsoftware/splitio": "11.0.1",
62+
"@splitsoftware/splitio": "11.0.3",
6363
"tslib": "^2.3.1"
6464
},
6565
"devDependencies": {

src/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SplitIO namespace
2+
import '@splitsoftware/splitio';
3+
14
// For Redux
25
export { splitReducer } from './reducer';
36
export { initSplitSdk, getTreatments, destroySplitSdk, splitSdk } from './asyncActions';

0 commit comments

Comments
 (0)