@splitsoftware/splitio 10.24.2-rc.0 → 10.24.2-rc.1
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 +1 -1
- package/LICENSE +1 -1
- package/es/platform/getFetch/node.js +1 -1
- package/es/settings/defaults/version.js +1 -1
- package/lib/platform/getFetch/node.js +1 -1
- package/lib/settings/defaults/version.js +1 -1
- package/package.json +2 -2
- package/src/platform/getFetch/node.js +1 -1
- package/src/settings/defaults/version.js +1 -1
package/CHANGES.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
10.25.0 (January 4, 2024)
|
|
2
|
-
- Updated SDK to support URLs
|
|
2
|
+
- Updated SDK to support URLs without TLS protocol in NodeJS, to simplify proxy usage inside private networks.
|
|
3
3
|
|
|
4
4
|
10.24.1 (December 12, 2023)
|
|
5
5
|
- Updated SDK cache for browsers using localStorage, to clear cached feature flag definitions before initiating the synchronization process if the cache was previously synchronized with a different SDK key (i.e., a different environment) or different Split Filter criteria, to avoid using invalid cached data when the SDK is ready from cache.
|
package/LICENSE
CHANGED
|
@@ -29,7 +29,7 @@ export function __setFetch(fetch) {
|
|
|
29
29
|
export function getFetch() {
|
|
30
30
|
if (nodeFetch) {
|
|
31
31
|
return function (url, options) {
|
|
32
|
-
return nodeFetch(url, Object.assign({ agent: url.startsWith('https
|
|
32
|
+
return nodeFetch(url, Object.assign({ agent: url.startsWith('https:') ? agent : undefined }, options));
|
|
33
33
|
};
|
|
34
34
|
}
|
|
35
35
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export var packageVersion = '10.24.2-rc.
|
|
1
|
+
export var packageVersion = '10.24.2-rc.1';
|
|
@@ -34,7 +34,7 @@ exports.__setFetch = __setFetch;
|
|
|
34
34
|
function getFetch() {
|
|
35
35
|
if (nodeFetch) {
|
|
36
36
|
return function (url, options) {
|
|
37
|
-
return nodeFetch(url, Object.assign({ agent: url.startsWith('https
|
|
37
|
+
return nodeFetch(url, Object.assign({ agent: url.startsWith('https:') ? agent : undefined }, options));
|
|
38
38
|
};
|
|
39
39
|
}
|
|
40
40
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "10.24.2-rc.
|
|
3
|
+
"version": "10.24.2-rc.1",
|
|
4
4
|
"description": "Split SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"README.md",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"node": ">=6"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@splitsoftware/splitio-commons": "1.
|
|
43
|
+
"@splitsoftware/splitio-commons": "1.13.0",
|
|
44
44
|
"@types/google.analytics": "0.0.40",
|
|
45
45
|
"@types/ioredis": "^4.28.0",
|
|
46
46
|
"bloom-filters": "^3.0.0",
|
|
@@ -34,7 +34,7 @@ export function __setFetch(fetch) {
|
|
|
34
34
|
export function getFetch() {
|
|
35
35
|
if (nodeFetch) {
|
|
36
36
|
return (url, options) => {
|
|
37
|
-
return nodeFetch(url, Object.assign({ agent: url.startsWith('https
|
|
37
|
+
return nodeFetch(url, Object.assign({ agent: url.startsWith('https:') ? agent : undefined }, options));
|
|
38
38
|
};
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '10.24.2-rc.
|
|
1
|
+
export const packageVersion = '10.24.2-rc.1';
|