@splitsoftware/splitio 10.22.7-rc.0 → 10.22.7

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,7 @@
1
+ 10.22.7 (July 18, 2023)
2
+ - Updated @splitsoftware/splitio-commons package to version 1.8.4 that includes minor improvements:
3
+ - Updated streaming architecture implementation to apply feature flag updates from the notification received which is now enhanced, improving efficiency and reliability of the whole update system.
4
+
1
5
  10.22.6 (July 6, 2023)
2
6
  - Updated some transitive dependencies for vulnerability fixes.
3
7
  - Updated @splitsoftware/splitio-commons package to version 1.8.3 that includes the following bug fix:
@@ -1 +1 @@
1
- export var packageVersion = '10.22.7-rc.0';
1
+ export var packageVersion = '10.22.7';
@@ -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 = '10.22.7-rc.0';
4
+ exports.packageVersion = '10.22.7';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@splitsoftware/splitio",
3
- "version": "10.22.7-rc.0",
3
+ "version": "10.22.7",
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.8.4-rc.0",
43
+ "@splitsoftware/splitio-commons": "1.8.4",
44
44
  "@types/google.analytics": "0.0.40",
45
45
  "@types/ioredis": "^4.28.0",
46
46
  "bloom-filters": "^3.0.0",
@@ -91,7 +91,7 @@
91
91
  "build-umd:stats": "webpack --progress --env production --json > ./stats/stat_results.json",
92
92
  "build-cjs": "rimraf lib && tsc -outDir lib -m CommonJS",
93
93
  "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 --env commit_hash=$BUILD_COMMIT && webpack --config webpack.prod.js --env branch=$BUILD_BRANCH --env commit_hash=$BUILD_COMMIT && ./scripts/clean_umd_build.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
95
  "build:npm": "rimraf lib es && npm run build-cjs && npm run build-esm",
96
96
  "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
97
  "build": "rimraf lib umd es && npm run build-cjs && npm run build-esm && npm run build-umd",
@@ -1 +1 @@
1
- export const packageVersion = '10.22.7-rc.0';
1
+ export const packageVersion = '10.22.7';
@@ -158,7 +158,7 @@ interface ILoggerAPI {
158
158
  */
159
159
  interface IUserConsentAPI {
160
160
  /**
161
- * Set or update the user consent status. Possible values are `true` and `false`, which represent user consent `'GRANTED'` and `'DECLINED'` respectively.
161
+ * Sets or updates the user consent status. Possible values are `true` and `false`, which represent user consent `'GRANTED'` and `'DECLINED'` respectively.
162
162
  * - `true ('GRANTED')`: the user has granted consent for tracking events and impressions. The SDK will send them to Split cloud.
163
163
  * - `false ('DECLINED')`: the user has declined consent for tracking events and impressions. The SDK will not send them to Split cloud.
164
164
  *
@@ -170,7 +170,7 @@ interface IUserConsentAPI {
170
170
  */
171
171
  setStatus(userConsent: boolean): boolean;
172
172
  /**
173
- * Get the user consent status.
173
+ * Gets the user consent status.
174
174
  *
175
175
  * @function getStatus
176
176
  * @returns {ConsentStatus} The user consent status.