@splitsoftware/splitio 10.17.1 → 10.17.2-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 +4 -0
- package/es/services/transport/index.js +1 -1
- package/es/utils/settings/index.js +1 -1
- package/lib/services/transport/index.js +1 -1
- package/lib/utils/settings/index.js +1 -1
- package/package.json +2 -2
- package/src/services/transport/index.js +1 -1
- package/src/utils/settings/index.js +1 -1
package/CHANGES.txt
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
10.17.2 (January 31, 2022)
|
|
2
|
+
- Updated some dependencies for vulnerability fixes.
|
|
3
|
+
- Bugfixing - Fixed internal handling of Fetch API call rejections, to avoid unhandled exceptions on some Web browsers (issue https://github.com/splitio/javascript-client/issues/621)
|
|
4
|
+
|
|
1
5
|
10.17.1 (January 13, 2022)
|
|
2
6
|
- Updated some transitive dependencies for vulnerability fixes.
|
|
3
7
|
- Bugfixing - Fixed internal handling of SDK_READY_FROM_CACHE event, to avoid CSP issues in browsers.
|
|
@@ -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.17.
|
|
28
|
+
var version = '10.17.2-rc.0';
|
|
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.17.
|
|
47
|
+
var version = '10.17.2-rc.0';
|
|
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.17.
|
|
3
|
+
"version": "10.17.2-rc.0",
|
|
4
4
|
"description": "Split SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"README.md",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"ioredis": "^4.28.0",
|
|
39
39
|
"ip": "1.1.5",
|
|
40
40
|
"js-yaml": "3.13.1",
|
|
41
|
-
"node-fetch": "^2.6.
|
|
41
|
+
"node-fetch": "^2.6.7",
|
|
42
42
|
"object-assign": "^4.1.1",
|
|
43
43
|
"unfetch": "^4.2.0"
|
|
44
44
|
},
|
|
@@ -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.17.
|
|
30
|
+
const version = '10.17.2-rc.0';
|
|
31
31
|
const eventsEndpointMatcher = /^\/(testImpressions|metrics|events)/;
|
|
32
32
|
const authEndpointMatcher = /^\/v2\/auth/;
|
|
33
33
|
const streamingEndpointMatcher = /^\/(sse|event-stream)/;
|