@splitsoftware/splitio 11.10.0 → 11.10.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 CHANGED
@@ -1,3 +1,6 @@
1
+ 11.10.1 (February 3, 2026)
2
+ - Updated js-yaml dependency for vulnerability fixes (Related to issue https://github.com/splitio/javascript-client/issues/913).
3
+
1
4
  11.10.0 (January 28, 2026)
2
5
  - Updated @splitsoftware/splitio-commons package to version 2.11.0, which:
3
6
  - Added functionality to provide metadata alongside SDK update and READY events. Read more in our docs.
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.packageVersion = void 0;
4
- exports.packageVersion = '11.10.0';
4
+ exports.packageVersion = '11.10.1';
@@ -98,7 +98,7 @@ function splitsParserFromFileFactory() {
98
98
  if (data === previousMock)
99
99
  return false;
100
100
  previousMock = data;
101
- yamldoc = js_yaml_1.default.safeLoad(data);
101
+ yamldoc = js_yaml_1.default.load(data);
102
102
  }
103
103
  catch (e) {
104
104
  log.error(e);
@@ -1 +1 @@
1
- export var packageVersion = '11.10.0';
1
+ export var packageVersion = '11.10.1';
@@ -94,7 +94,7 @@ export function splitsParserFromFileFactory() {
94
94
  if (data === previousMock)
95
95
  return false;
96
96
  previousMock = data;
97
- yamldoc = yaml.safeLoad(data);
97
+ yamldoc = yaml.load(data);
98
98
  }
99
99
  catch (e) {
100
100
  log.error(e);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@splitsoftware/splitio",
3
- "version": "11.10.0",
3
+ "version": "11.10.1",
4
4
  "description": "Split SDK",
5
5
  "files": [
6
6
  "README.md",
@@ -41,7 +41,7 @@
41
41
  "@splitsoftware/splitio-commons": "2.11.0",
42
42
  "bloom-filters": "^3.0.4",
43
43
  "ioredis": "^4.28.0",
44
- "js-yaml": "^3.13.1",
44
+ "js-yaml": "^4.1.1",
45
45
  "node-fetch": "^2.7.0",
46
46
  "tslib": "^2.3.1",
47
47
  "unfetch": "^4.2.0"
@@ -1 +1 @@
1
- export const packageVersion = '11.10.0';
1
+ export const packageVersion = '11.10.1';
@@ -115,7 +115,7 @@ export function splitsParserFromFileFactory() {
115
115
  if (data === previousMock) return false;
116
116
  previousMock = data;
117
117
 
118
- yamldoc = yaml.safeLoad(data);
118
+ yamldoc = yaml.load(data);
119
119
  } catch (e) {
120
120
  log.error(e);
121
121