@splitsoftware/splitio 10.16.1-rc.0 → 10.16.1-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 CHANGED
@@ -1,5 +1,5 @@
1
1
  10.16.1 (October 25, 2021)
2
- - Updated some internal modules to optimize the time efficiency of split evaluations (i.e., `getTreatment(s)` method calls)
2
+ - Updated some internal modules to optimize the time efficiency of split evaluations (i.e., `getTreatment(s)` method calls).
3
3
  - Updated some dependencies for vulnerability fixes.
4
4
  - Bugfixing - Fixed localhost mode with localStorage, to use a mock in memory instead of localStorage API directly but keep emitting emit SDK_READY_FROM_CACHE event.
5
5
 
@@ -25,7 +25,7 @@ import validateSplitFilters from '../inputValidation/splitFilters';
25
25
  import { API } from '../../utils/logger';
26
26
  import { STANDALONE_MODE, STORAGE_MEMORY, CONSUMER_MODE, OPTIMIZED } from '../../utils/constants';
27
27
  import validImpressionsMode from './impressionsMode';
28
- var version = '10.16.1-rc.0';
28
+ var version = '10.16.1-rc.1';
29
29
  var eventsEndpointMatcher = /^\/(testImpressions|metrics|events)/;
30
30
  var authEndpointMatcher = /^\/v2\/auth/;
31
31
  var streamingEndpointMatcher = /^\/(sse|event-stream)/;
@@ -44,7 +44,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
44
44
  See the License for the specific language governing permissions and
45
45
  limitations under the License.
46
46
  **/
47
- var version = '10.16.1-rc.0';
47
+ var version = '10.16.1-rc.1';
48
48
  var eventsEndpointMatcher = /^\/(testImpressions|metrics|events)/;
49
49
  var authEndpointMatcher = /^\/v2\/auth/;
50
50
  var streamingEndpointMatcher = /^\/(sse|event-stream)/;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@splitsoftware/splitio",
3
- "version": "10.16.1-rc.0",
3
+ "version": "10.16.1-rc.1",
4
4
  "description": "Split SDK",
5
5
  "files": [
6
6
  "README.md",
@@ -46,7 +46,7 @@
46
46
  "eventsource": "^1.0.7"
47
47
  },
48
48
  "devDependencies": {
49
- "@babel/cli": "^7.14.8",
49
+ "@babel/cli": "^7.15.7",
50
50
  "@babel/core": "^7.13.10",
51
51
  "@babel/plugin-transform-runtime": "^7.13.10",
52
52
  "@babel/preset-env": "^7.13.10",
@@ -55,8 +55,8 @@
55
55
  "copyfiles": "^2.4.1",
56
56
  "cross-env": "^7.0.3",
57
57
  "csv-streamify": "4.0.0",
58
- "eslint": "^6.8.0",
59
- "eslint-plugin-compat": "^3.9.0",
58
+ "eslint": "^8.0.1",
59
+ "eslint-plugin-compat": "^3.13.0",
60
60
  "fetch-mock": "^9.11.0",
61
61
  "karma": "^6.3.2",
62
62
  "karma-chrome-launcher": "^3.1.0",
@@ -94,7 +94,7 @@
94
94
  "check:version": "cross-env NODE_ENV=test tape -r @babel/register src/utils/__tests__/settings/index.spec.js",
95
95
  "test-browser-local": "cross-env NODE_ENV=test karma start karma/local.karma.conf.js",
96
96
  "test-browser-e2e-local": "cross-env NODE_ENV=test karma start karma/e2e.local.karma.conf.js",
97
- "test-browser": "npm run test-browser-unit && npm run test-browser-online && npm run test-browser-offline && npm run test-browser-destroy && npm run test-browser-errors && npm run test-browser-push",
97
+ "test-browser": "npm run test-browser-unit && npm run test-browser-online && npm run test-browser-offline && npm run test-browser-destroy && npm run test-browser-errors && npm run test-browser-push && npm run test-browser-gaintegration",
98
98
  "test-browser-unit": "cross-env NODE_ENV=test karma start karma/ci.karma.conf.js",
99
99
  "test-browser-online": "cross-env NODE_ENV=test karma start karma/e2e.ci.karma.conf.js",
100
100
  "test-browser-offline": "cross-env NODE_ENV=test karma start karma/offline.karma.conf.js",
@@ -113,9 +113,7 @@
113
113
  "pretest-ts-decls": "npm run build-es && npm run build-cjs && npm link",
114
114
  "test-ts-decls": "./scripts/ts-tests.sh",
115
115
  "posttest-ts-decls": "npm unlink && npm install",
116
- "browser-test-suite": "npm run test-browser-ci && npm run test-browser-e2e-ci && npm run test-browser-offline && npm run test-browser-destroy && npm run test-browser-errors && npm run test-browser-gaintegration",
117
- "node-test-suite": "npm run test-node && npm run test-node-e2e && npm run test-node-destroy && npm run test-node-offline && npm run test-node-redis && npm run test-node-errors",
118
- "test": "npm run browser-test-suite && npm run node-test-suite",
116
+ "test": "npm run test-node && npm run test-browser",
119
117
  "publish:rc": "npm run check && npm run build && npm publish --tag canary",
120
118
  "publish:stable": "npm run check && npm run build && npm publish"
121
119
  },
@@ -27,7 +27,7 @@ import { API } from '../../utils/logger';
27
27
  import { STANDALONE_MODE, STORAGE_MEMORY, CONSUMER_MODE, OPTIMIZED } from '../../utils/constants';
28
28
  import validImpressionsMode from './impressionsMode';
29
29
 
30
- const version = '10.16.1-rc.0';
30
+ const version = '10.16.1-rc.1';
31
31
  const eventsEndpointMatcher = /^\/(testImpressions|metrics|events)/;
32
32
  const authEndpointMatcher = /^\/v2\/auth/;
33
33
  const streamingEndpointMatcher = /^\/(sse|event-stream)/;