From 4757f8ee43ae924997365ef10452af635acbf697 Mon Sep 17 00:00:00 2001 From: Emiliano Sanchez Date: Mon, 18 Oct 2021 17:36:34 -0300 Subject: [PATCH 1/5] added changelog --- CHANGES.txt | 7 +++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 2500c73a..4aa075f8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,10 @@ +1.0.0 (October 18, 2021) + - Updated localhost mode to emit SDK_READY_FROM_CACHE event in Browser when using localStorage (issue https://github.com/splitio/react-client/issues/34). + - Updated streaming logic to use the newest version of our streaming service. + - Updated dependencies for vulnerability fixes. + - Added pluggable storage module. + - BREAKING CHANGE on multiple modules due to general polishing, improvements and bug fixes. + 0.1.0 (March 30, 2021) - Initial public release. It includes common modules to be consumed by the different Split implementations written in JavaScript. Based on the original JS SDK in the `javascript-client` repository. - It's designed with a modular approach, with the following goals in mind: diff --git a/package-lock.json b/package-lock.json index a5324ded..f32024b1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@splitsoftware/splitio-commons", - "version": "0.1.1-rc.20", + "version": "1.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d85878ee..01e594a7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@splitsoftware/splitio-commons", - "version": "0.1.1-rc.20", + "version": "1.0.0", "description": "Split Javascript SDK common components", "main": "cjs/index.js", "module": "esm/index.js", From cdb6363707e1a2ac1a4c0a014fd2f55fa36be0e9 Mon Sep 17 00:00:00 2001 From: Emiliano Sanchez Date: Tue, 19 Oct 2021 17:20:01 -0300 Subject: [PATCH 2/5] update changelog --- CHANGES.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 4aa075f8..e77fc8c0 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,8 +1,7 @@ -1.0.0 (October 18, 2021) +1.0.0 (October 19, 2021) - Updated localhost mode to emit SDK_READY_FROM_CACHE event in Browser when using localStorage (issue https://github.com/splitio/react-client/issues/34). - Updated streaming logic to use the newest version of our streaming service. - Updated dependencies for vulnerability fixes. - - Added pluggable storage module. - BREAKING CHANGE on multiple modules due to general polishing, improvements and bug fixes. 0.1.0 (March 30, 2021) From 200415b0aeb4a508821a9079cb64ab1474590a9d Mon Sep 17 00:00:00 2001 From: Emiliano Sanchez Date: Tue, 19 Oct 2021 20:27:49 -0300 Subject: [PATCH 3/5] update changelog --- CHANGES.txt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index e77fc8c0..46345d2e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,9 @@ -1.0.0 (October 19, 2021) - - Updated localhost mode to emit SDK_READY_FROM_CACHE event in Browser when using localStorage (issue https://github.com/splitio/react-client/issues/34). - - Updated streaming logic to use the newest version of our streaming service. +1.0.0 (October 20, 2021) + - Updated localhost mode to emit SDK_READY_FROM_CACHE event in Browser when using localStorage (Related to issue https://github.com/splitio/react-client/issues/34). + - Updated streaming logic to use the newest version of our streaming service, including: + - Integration with Auth service V2, connecting to the new channels and applying the received connection delay. + - Implemented handling of the new MySegmentsV2 notification types (SegmentRemoval, KeyList, Bounded and Unbounded) + - New control notification for environment scoped streaming reset. - Updated dependencies for vulnerability fixes. - BREAKING CHANGE on multiple modules due to general polishing, improvements and bug fixes. From df0592e3e60745610b86a7cf8a352fde4465d9d1 Mon Sep 17 00:00:00 2001 From: Emiliano Sanchez Date: Wed, 20 Oct 2021 09:17:51 -0300 Subject: [PATCH 4/5] updated readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d9dee55..51caf41d 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Split has built and maintains SDKs for: * Java [Github](https://github.com/splitio/java-client) [Docs](https://help.split.io/hc/en-us/articles/360020405151-Java-SDK) * Javascript [Github](https://github.com/splitio/javascript-client) [Docs](https://help.split.io/hc/en-us/articles/360020448791-JavaScript-SDK) * Node [Github](https://github.com/splitio/javascript-client) [Docs](https://help.split.io/hc/en-us/articles/360020564931-Node-js-SDK) -* Javascript for Browser [Github](https://github.com/splitio/javascript-browser-client) [Docs](https://help.split.io/hc/en-us/articles/360058730852) +* Javascript for Browser [Github](https://github.com/splitio/javascript-browser-client) [Docs](https://help.split.io/hc/en-us/articles/360058730852-Browser-SDK) * PHP [Github](https://github.com/splitio/php-client) [Docs](https://help.split.io/hc/en-us/articles/360020350372-PHP-SDK) * Python [Github](https://github.com/splitio/python-client) [Docs](https://help.split.io/hc/en-us/articles/360020359652-Python-SDK) * React [Github](https://github.com/splitio/react-client) [Docs](https://help.split.io/hc/en-us/articles/360038825091-React-SDK) From 679545d8642a9b8083e885b637a503ce9ce60fd6 Mon Sep 17 00:00:00 2001 From: Emiliano Sanchez Date: Wed, 20 Oct 2021 13:06:09 -0300 Subject: [PATCH 5/5] updated changelog --- CHANGES.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 46345d2e..429ad003 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,11 +1,11 @@ 1.0.0 (October 20, 2021) - - Updated localhost mode to emit SDK_READY_FROM_CACHE event in Browser when using localStorage (Related to issue https://github.com/splitio/react-client/issues/34). +- BREAKING CHANGE on multiple modules due to general polishing, improvements and bug fixes. In most cases the change is to use named exports. This affected mostly modules related with synchronization and storages. - Updated streaming logic to use the newest version of our streaming service, including: - Integration with Auth service V2, connecting to the new channels and applying the received connection delay. - Implemented handling of the new MySegmentsV2 notification types (SegmentRemoval, KeyList, Bounded and Unbounded) - New control notification for environment scoped streaming reset. - - Updated dependencies for vulnerability fixes. - - BREAKING CHANGE on multiple modules due to general polishing, improvements and bug fixes. +- Updated localhost mode to emit SDK_READY_FROM_CACHE event in Browser when using localStorage (Related to issue https://github.com/splitio/react-client/issues/34). +- Updated dependencies for vulnerability fixes. 0.1.0 (March 30, 2021) - Initial public release. It includes common modules to be consumed by the different Split implementations written in JavaScript. Based on the original JS SDK in the `javascript-client` repository.