@splitsoftware/splitio-browserjs 0.9.3 → 0.9.4-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,3 +1,6 @@
1
+ 0.9.4 (April 26, 2023)
2
+ - Bugfixing - Updated `unfetch` package as a runtime dependency, required when using the full entrypoint (`import { SplitFactory } from '@splitsoftware/splitio-browserjs/full'`).
3
+
1
4
  0.9.3 (March 20, 2023)
2
5
  - Updated @splitsoftware/splitio-commons package to version 1.8.1 that includes minor improvements.
3
6
  - Updated some transitive dependencies for vulnerability fixes.
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.defaults = void 0;
4
4
  var index_1 = require("@splitsoftware/splitio-commons/cjs/logger/index");
5
5
  var constants_1 = require("@splitsoftware/splitio-commons/cjs/utils/constants");
6
- var packageVersion = '0.9.3';
6
+ var packageVersion = '0.9.4-rc.0';
7
7
  /**
8
8
  * In browser, the default debug level, can be set via the `localStorage.splitio_debug` item.
9
9
  * Acceptable values are: 'DEBUG', 'INFO', 'WARN', 'ERROR', 'NONE'.
@@ -1,6 +1,6 @@
1
1
  import { LogLevels, isLogLevelString } from '@splitsoftware/splitio-commons/esm/logger/index';
2
2
  import { CONSENT_GRANTED } from '@splitsoftware/splitio-commons/esm/utils/constants';
3
- var packageVersion = '0.9.3';
3
+ var packageVersion = '0.9.4-rc.0';
4
4
  /**
5
5
  * In browser, the default debug level, can be set via the `localStorage.splitio_debug` item.
6
6
  * Acceptable values are: 'DEBUG', 'INFO', 'WARN', 'ERROR', 'NONE'.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@splitsoftware/splitio-browserjs",
3
- "version": "0.9.3",
3
+ "version": "0.9.4-rc.0",
4
4
  "description": "Split SDK for JavaScript on Browser",
5
5
  "main": "cjs/index.js",
6
6
  "module": "esm/index.js",
@@ -65,7 +65,8 @@
65
65
  "homepage": "https://github.com/splitio/javascript-browser-client#readme",
66
66
  "dependencies": {
67
67
  "@splitsoftware/splitio-commons": "1.8.1",
68
- "@types/google.analytics": "0.0.40"
68
+ "@types/google.analytics": "0.0.40",
69
+ "unfetch": "^4.2.0"
69
70
  },
70
71
  "devDependencies": {
71
72
  "@rollup/plugin-commonjs": "^24.0.1",
@@ -97,8 +98,7 @@
97
98
  "tape": "4.13.2",
98
99
  "tape-catch": "1.0.6",
99
100
  "ts-jest": "^27.0.5",
100
- "typescript": "4.4.4",
101
- "unfetch": "^4.2.0"
101
+ "typescript": "4.4.4"
102
102
  },
103
103
  "sideEffects": false
104
104
  }
@@ -2,7 +2,7 @@ import { LogLevels, isLogLevelString } from '@splitsoftware/splitio-commons/src/
2
2
  import { ConsentStatus, LogLevel } from '@splitsoftware/splitio-commons/src/types';
3
3
  import { CONSENT_GRANTED } from '@splitsoftware/splitio-commons/src/utils/constants';
4
4
 
5
- const packageVersion = '0.9.3';
5
+ const packageVersion = '0.9.4-rc.0';
6
6
 
7
7
  /**
8
8
  * In browser, the default debug level, can be set via the `localStorage.splitio_debug` item.