@splitsoftware/splitio 10.17.2-rc.0 → 10.17.2

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,6 +1,6 @@
1
1
  10.17.2 (January 31, 2022)
2
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)
3
+ - Bugfixing - Fixed internal handling of Fetch API promise rejection, to avoid unhandled exceptions on some Web browsers (issue https://github.com/splitio/javascript-client/issues/621)
4
4
 
5
5
  10.17.1 (January 13, 2022)
6
6
  - Updated some transitive dependencies for vulnerability fixes.
@@ -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.2-rc.0';
28
+ var version = '10.17.2';
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.2-rc.0';
47
+ var version = '10.17.2';
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.2-rc.0",
3
+ "version": "10.17.2",
4
4
  "description": "Split SDK",
5
5
  "files": [
6
6
  "README.md",
@@ -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.2-rc.0';
30
+ const version = '10.17.2';
31
31
  const eventsEndpointMatcher = /^\/(testImpressions|metrics|events)/;
32
32
  const authEndpointMatcher = /^\/v2\/auth/;
33
33
  const streamingEndpointMatcher = /^\/(sse|event-stream)/;