@splitsoftware/splitio 10.25.1-rc.0 → 10.25.2-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGES.txt
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
10.25.
|
|
1
|
+
10.25.2 (XXX XX, 2024)
|
|
2
|
+
- Updated some transitive dependencies for vulnerability fixes.
|
|
3
|
+
- Bugfixing - Added tslib as an explicit dependency to avoid issues with some package managers that don't install it automatically as a transitive dependency from @splitsoftware/splitio-commons (Related to issue https://github.com/splitio/javascript-client/issues/795).
|
|
4
|
+
|
|
5
|
+
10.25.1 (January 16, 2024)
|
|
2
6
|
- Updated @splitsoftware/splitio-commons package to version 1.13.1 and some transitive dependencies for vulnerability fixes.
|
|
3
7
|
|
|
4
8
|
10.25.0 (January 4, 2024)
|
package/README.md
CHANGED
|
@@ -65,6 +65,7 @@ Split has built and maintains SDKs for:
|
|
|
65
65
|
* .NET [Github](https://github.com/splitio/dotnet-client) [Docs](https://help.split.io/hc/en-us/articles/360020240172--NET-SDK)
|
|
66
66
|
* Android [Github](https://github.com/splitio/android-client) [Docs](https://help.split.io/hc/en-us/articles/360020343291-Android-SDK)
|
|
67
67
|
* Angular [Github](https://github.com/splitio/angular-sdk-plugin) [Docs](https://help.split.io/hc/en-us/articles/6495326064397-Angular-utilities)
|
|
68
|
+
* Flutter [Github](https://github.com/splitio/flutter-sdk-plugin) [Docs](https://help.split.io/hc/en-us/articles/8096158017165-Flutter-plugin)
|
|
68
69
|
* GO [Github](https://github.com/splitio/go-client) [Docs](https://help.split.io/hc/en-us/articles/360020093652-Go-SDK)
|
|
69
70
|
* iOS [Github](https://github.com/splitio/ios-client) [Docs](https://help.split.io/hc/en-us/articles/360020401491-iOS-SDK)
|
|
70
71
|
* Java [Github](https://github.com/splitio/java-client) [Docs](https://help.split.io/hc/en-us/articles/360020405151-Java-SDK)
|
|
@@ -72,6 +73,7 @@ Split has built and maintains SDKs for:
|
|
|
72
73
|
* JavaScript for Browser [Github](https://github.com/splitio/javascript-browser-client) [Docs](https://help.split.io/hc/en-us/articles/360058730852-Browser-SDK)
|
|
73
74
|
* Node [Github](https://github.com/splitio/javascript-client) [Docs](https://help.split.io/hc/en-us/articles/360020564931-Node-js-SDK)
|
|
74
75
|
* PHP [Github](https://github.com/splitio/php-client) [Docs](https://help.split.io/hc/en-us/articles/360020350372-PHP-SDK)
|
|
76
|
+
* PHP thin-client [Github](https://github.com/splitio/php-thin-client) [Docs](https://help.split.io/hc/en-us/articles/18305128673933-PHP-Thin-Client-SDK)
|
|
75
77
|
* Python [Github](https://github.com/splitio/python-client) [Docs](https://help.split.io/hc/en-us/articles/360020359652-Python-SDK)
|
|
76
78
|
* React [Github](https://github.com/splitio/react-client) [Docs](https://help.split.io/hc/en-us/articles/360038825091-React-SDK)
|
|
77
79
|
* React Native [Github](https://github.com/splitio/react-native-client) [Docs](https://help.split.io/hc/en-us/articles/4406066357901-React-Native-SDK)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export var packageVersion = '10.25.
|
|
1
|
+
export var packageVersion = '10.25.2-rc.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "10.25.
|
|
3
|
+
"version": "10.25.2-rc.0",
|
|
4
4
|
"description": "Split SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"README.md",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"ioredis": "^4.28.0",
|
|
48
48
|
"js-yaml": "^3.13.1",
|
|
49
49
|
"node-fetch": "^2.7.0",
|
|
50
|
+
"tslib": "^2.3.1",
|
|
50
51
|
"unfetch": "^4.2.0"
|
|
51
52
|
},
|
|
52
53
|
"optionalDependencies": {
|
|
@@ -91,10 +92,10 @@
|
|
|
91
92
|
"build-umd:stats": "webpack --progress --env production --json > ./stats/stat_results.json",
|
|
92
93
|
"build-cjs": "rimraf lib && tsc -outDir lib -m CommonJS",
|
|
93
94
|
"postbuild-cjs": "cross-env NODE_ENV=cjs node scripts/copy.packages.json.js && ./scripts/build_cjs_replace_imports.sh",
|
|
94
|
-
"build-umd": "webpack --config webpack.dev.js --env branch=$BUILD_BRANCH && webpack --config webpack.prod.js --env branch=$BUILD_BRANCH && ./scripts/clean_umd_build.sh",
|
|
95
|
-
"build:npm": "
|
|
95
|
+
"build-umd": "rimraf umd && webpack --config webpack.dev.js --env branch=$BUILD_BRANCH && webpack --config webpack.prod.js --env branch=$BUILD_BRANCH && ./scripts/clean_umd_build.sh",
|
|
96
|
+
"build:npm": "npm run build-cjs && npm run build-esm",
|
|
96
97
|
"build:ga-to-split-autorequire": "terser ./node_modules/@splitsoftware/splitio-commons/src/integrations/ga/autoRequire.js --mangle --output ./scripts/ga-to-split-autorequire.js && cp ./scripts/ga-to-split-autorequire.js umd/ga-to-split-autorequire.js",
|
|
97
|
-
"build": "
|
|
98
|
+
"build": "npm run build-cjs && npm run build-esm && npm run build-umd",
|
|
98
99
|
"check": "npm run check:lint && npm run check:version",
|
|
99
100
|
"check:lint": "eslint src",
|
|
100
101
|
"check:version": "cross-env NODE_ENV=test tape -r ./ts-node.register src/settings/__tests__/defaults.spec.js",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '10.25.
|
|
1
|
+
export const packageVersion = '10.25.2-rc.0';
|