Skip to content

Commit

Permalink
Merge pull request #131 from splitio/issue_130
Browse files Browse the repository at this point in the history
Upgrade dependencies and fix issue with `SplitIO` namespace
  • Loading branch information
EmilianoSanchez authored Dec 5, 2024
2 parents 60bef68 + 888fcea commit f0da593
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 89 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2.0.1 (December 5, 2024)
- Updated @splitsoftware/splitio package to version 11.0.3 that includes some improvements and bugfixes.
- 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).

2.0.0 (November 14, 2024)
- Added support for targeting rules based on large segments.
- Updated @splitsoftware/splitio package to version 11.0.1 that includes major updates, and updated some transitive dependencies for vulnerability fixes.
Expand Down
162 changes: 75 additions & 87 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@splitsoftware/splitio-redux",
"version": "2.0.0",
"version": "2.0.1",
"description": "A library to easily use Split JS SDK with Redux and React Redux",
"main": "cjs/index.js",
"module": "esm/index.js",
Expand Down Expand Up @@ -59,7 +59,7 @@
},
"homepage": "https://github.com/splitio/redux-client#readme",
"dependencies": {
"@splitsoftware/splitio": "11.0.1",
"@splitsoftware/splitio": "11.0.3",
"tslib": "^2.3.1"
},
"devDependencies": {
Expand Down
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SplitIO namespace
import '@splitsoftware/splitio';

// For Redux
export { splitReducer } from './reducer';
export { initSplitSdk, getTreatments, destroySplitSdk, splitSdk } from './asyncActions';
Expand Down

0 comments on commit f0da593

Please sign in to comment.