From bb08844dac0e56274ae05ca97999fdf0d7acf06f Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:25:14 +0530 Subject: [PATCH 001/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 52 +++++++++++++++++++++++++++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 53 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 8b6d607f1..bfc2a59a7 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,58 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +# [1.0.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.8.2...restapi-1.0.0) (2023-04-04) + + +### Bug Fixes + +* **component:** decrypt issue fixed ([21538db](https://github.com/ethereum-push-notification-service/push-sdk/commit/21538dbb0569914b880d8f36aea341360041b4e7)) +* **component:** dummy commit ([#282](https://github.com/ethereum-push-notification-service/push-sdk/issues/282)) ([af10b66](https://github.com/ethereum-push-notification-service/push-sdk/commit/af10b6681c8365b9b16fb3cde8bfa88a26408fa1)) +* **component:** mocha setup ([6ecf79d](https://github.com/ethereum-push-notification-service/push-sdk/commit/6ecf79dd3ee4840350965fb045cc163bdd98b5a9)) +* **component:** mocha setup ([5b7c504](https://github.com/ethereum-push-notification-service/push-sdk/commit/5b7c50444734c8df507175eb98ab780507ddcad4)) +* **component:** mocha setup with basic test case ([35fa1dc](https://github.com/ethereum-push-notification-service/push-sdk/commit/35fa1dc259051572ca51f8e2e0607a3917589159)) +* **component:** removed duplicate decryptAndVerifySignature method ([e42b7ff](https://github.com/ethereum-push-notification-service/push-sdk/commit/e42b7ffb4659c4f603a2f15eec2f6bf84ddcf303)) +* **component:** removed duplicate decryptAndVerifySignature method ([a03cf7e](https://github.com/ethereum-push-notification-service/push-sdk/commit/a03cf7e2ff56e5af82e0d80943cfb3ee48b773f6)) +* progressHook Changes ([#287](https://github.com/ethereum-push-notification-service/push-sdk/issues/287)) ([10d3e92](https://github.com/ethereum-push-notification-service/push-sdk/commit/10d3e929022fdada202be1a9cbb3d49d90edb1d1)) +* **restapi/helpers/crypto.ts:** hook Fix ([#288](https://github.com/ethereum-push-notification-service/push-sdk/issues/288)) ([b751637](https://github.com/ethereum-push-notification-service/push-sdk/commit/b751637c158811201140cfa1190c57c5f1b07262)) +* sig changes to include domain ([#279](https://github.com/ethereum-push-notification-service/push-sdk/issues/279)) ([3dd8a9c](https://github.com/ethereum-push-notification-service/push-sdk/commit/3dd8a9ce301521e3913437f3192cefa8d699a914)) +* signature Validation of chat msg ([#272](https://github.com/ethereum-push-notification-service/push-sdk/issues/272)) ([9f6093f](https://github.com/ethereum-push-notification-service/push-sdk/commit/9f6093fcc5941a2a7bc19d00217483016828bdcb)) + + +* Chat keys Encryption V2 (#231) ([f35730b](https://github.com/ethereum-push-notification-service/push-sdk/commit/f35730bd6398694176941875abb3e8678b255568)), closes [#231](https://github.com/ethereum-push-notification-service/push-sdk/issues/231) + + +### Features + +* chat.chat function ([760dda4](https://github.com/ethereum-push-notification-service/push-sdk/commit/760dda4095e57ef1f79fba8543aa5ff6a8c48c6f)) +* mediaURL type message support ([72d8d41](https://github.com/ethereum-push-notification-service/push-sdk/commit/72d8d411155ffce55da14810d7aeb5845035dade)) + + +### BREAKING CHANGES + +* New chat key ecnryption + +* feat: chat key encryption v2 + +New encryption version for pgp keys +* Signer is required in ui-web + +* refactor: add signer in ApproveRequest + +* fix: revert dev from localhost + +* feat: auto uprade keys + +* test: tests for upgrade User + +* test: test for send chat message + +* test: rename tests + +* test: text formating fix + + + ## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.1...restapi-1.0.2) (2023-04-04) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 2b97a3a71..8a2ea231e 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.0.2", + "version": "1.0.0", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 12ba2f72c0a5c237bc4c564f2a9ca05cca01ac22 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:25:52 +0530 Subject: [PATCH 002/137] fix(component): dummy --- packages/restapi/src/lib/config.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/restapi/src/lib/config.ts b/packages/restapi/src/lib/config.ts index 8989ee359..60aae7fc4 100644 --- a/packages/restapi/src/lib/config.ts +++ b/packages/restapi/src/lib/config.ts @@ -103,4 +103,3 @@ const CONFIG = { }; export default CONFIG; - From b0d4776f829c84510fda537ad50489165e518ff8 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:26:02 +0530 Subject: [PATCH 003/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 53 +++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index bfc2a59a7..43b2dbc03 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -5,6 +5,59 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s # [1.0.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.8.2...restapi-1.0.0) (2023-04-04) +### Bug Fixes + +* **component:** decrypt issue fixed ([21538db](https://github.com/ethereum-push-notification-service/push-sdk/commit/21538dbb0569914b880d8f36aea341360041b4e7)) +* **component:** dummy ([12ba2f7](https://github.com/ethereum-push-notification-service/push-sdk/commit/12ba2f72c0a5c237bc4c564f2a9ca05cca01ac22)) +* **component:** dummy commit ([#282](https://github.com/ethereum-push-notification-service/push-sdk/issues/282)) ([af10b66](https://github.com/ethereum-push-notification-service/push-sdk/commit/af10b6681c8365b9b16fb3cde8bfa88a26408fa1)) +* **component:** mocha setup ([6ecf79d](https://github.com/ethereum-push-notification-service/push-sdk/commit/6ecf79dd3ee4840350965fb045cc163bdd98b5a9)) +* **component:** mocha setup ([5b7c504](https://github.com/ethereum-push-notification-service/push-sdk/commit/5b7c50444734c8df507175eb98ab780507ddcad4)) +* **component:** mocha setup with basic test case ([35fa1dc](https://github.com/ethereum-push-notification-service/push-sdk/commit/35fa1dc259051572ca51f8e2e0607a3917589159)) +* **component:** removed duplicate decryptAndVerifySignature method ([e42b7ff](https://github.com/ethereum-push-notification-service/push-sdk/commit/e42b7ffb4659c4f603a2f15eec2f6bf84ddcf303)) +* **component:** removed duplicate decryptAndVerifySignature method ([a03cf7e](https://github.com/ethereum-push-notification-service/push-sdk/commit/a03cf7e2ff56e5af82e0d80943cfb3ee48b773f6)) +* progressHook Changes ([#287](https://github.com/ethereum-push-notification-service/push-sdk/issues/287)) ([10d3e92](https://github.com/ethereum-push-notification-service/push-sdk/commit/10d3e929022fdada202be1a9cbb3d49d90edb1d1)) +* **restapi/helpers/crypto.ts:** hook Fix ([#288](https://github.com/ethereum-push-notification-service/push-sdk/issues/288)) ([b751637](https://github.com/ethereum-push-notification-service/push-sdk/commit/b751637c158811201140cfa1190c57c5f1b07262)) +* sig changes to include domain ([#279](https://github.com/ethereum-push-notification-service/push-sdk/issues/279)) ([3dd8a9c](https://github.com/ethereum-push-notification-service/push-sdk/commit/3dd8a9ce301521e3913437f3192cefa8d699a914)) +* signature Validation of chat msg ([#272](https://github.com/ethereum-push-notification-service/push-sdk/issues/272)) ([9f6093f](https://github.com/ethereum-push-notification-service/push-sdk/commit/9f6093fcc5941a2a7bc19d00217483016828bdcb)) + + +* Chat keys Encryption V2 (#231) ([f35730b](https://github.com/ethereum-push-notification-service/push-sdk/commit/f35730bd6398694176941875abb3e8678b255568)), closes [#231](https://github.com/ethereum-push-notification-service/push-sdk/issues/231) + + +### Features + +* chat.chat function ([760dda4](https://github.com/ethereum-push-notification-service/push-sdk/commit/760dda4095e57ef1f79fba8543aa5ff6a8c48c6f)) +* mediaURL type message support ([72d8d41](https://github.com/ethereum-push-notification-service/push-sdk/commit/72d8d411155ffce55da14810d7aeb5845035dade)) + + +### BREAKING CHANGES + +* New chat key ecnryption + +* feat: chat key encryption v2 + +New encryption version for pgp keys +* Signer is required in ui-web + +* refactor: add signer in ApproveRequest + +* fix: revert dev from localhost + +* feat: auto uprade keys + +* test: tests for upgrade User + +* test: test for send chat message + +* test: rename tests + +* test: text formating fix + + + +# [1.0.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.8.2...restapi-1.0.0) (2023-04-04) + + ### Bug Fixes * **component:** decrypt issue fixed ([21538db](https://github.com/ethereum-push-notification-service/push-sdk/commit/21538dbb0569914b880d8f36aea341360041b4e7)) From 3c7037b8876b3ff58fc3c4602813a71b02325fb7 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:27:29 +0530 Subject: [PATCH 004/137] fix(component): dummy --- packages/restapi/src/lib/config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/restapi/src/lib/config.ts b/packages/restapi/src/lib/config.ts index 60aae7fc4..51e13990a 100644 --- a/packages/restapi/src/lib/config.ts +++ b/packages/restapi/src/lib/config.ts @@ -103,3 +103,5 @@ const CONFIG = { }; export default CONFIG; + + From 3df2a3f56e8e60403c519122f3ada0ca6922d0ed Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:27:38 +0530 Subject: [PATCH 005/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 43b2dbc03..8c1bebc46 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.0.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.0...restapi-1.0.1) (2023-04-04) + + +### Bug Fixes + +* **component:** dummy ([3c7037b](https://github.com/ethereum-push-notification-service/push-sdk/commit/3c7037b8876b3ff58fc3c4602813a71b02325fb7)) + + + # [1.0.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.8.2...restapi-1.0.0) (2023-04-04) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 8a2ea231e..d84316bd3 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.0.0", + "version": "1.0.1", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 2e57a603ccc90b889d65c862d2a0cc295ad68870 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:27:56 +0530 Subject: [PATCH 006/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 8c1bebc46..8191fa64b 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -11,6 +11,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s +## [1.0.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.0...restapi-1.0.1) (2023-04-04) + + +### Bug Fixes + +* **component:** dummy ([3c7037b](https://github.com/ethereum-push-notification-service/push-sdk/commit/3c7037b8876b3ff58fc3c4602813a71b02325fb7)) + + + # [1.0.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.8.2...restapi-1.0.0) (2023-04-04) From 59b6cec5562b571a36ee3eca27d880f237705bca Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:28:30 +0530 Subject: [PATCH 007/137] fix(component): dummy --- packages/restapi/src/lib/config.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/restapi/src/lib/config.ts b/packages/restapi/src/lib/config.ts index 51e13990a..60aae7fc4 100644 --- a/packages/restapi/src/lib/config.ts +++ b/packages/restapi/src/lib/config.ts @@ -103,5 +103,3 @@ const CONFIG = { }; export default CONFIG; - - From 09e71294a0b94f7b6f9e0f5aeae30493357463e9 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:28:40 +0530 Subject: [PATCH 008/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 8191fa64b..b611cd524 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.1...restapi-1.0.2) (2023-04-04) + + +### Bug Fixes + +* **component:** dummy ([59b6cec](https://github.com/ethereum-push-notification-service/push-sdk/commit/59b6cec5562b571a36ee3eca27d880f237705bca)) + + + ## [1.0.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.0...restapi-1.0.1) (2023-04-04) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index d84316bd3..2b97a3a71 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.0.1", + "version": "1.0.2", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From bef586f0754400334994d1f6079b1b1a77380edd Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:29:10 +0530 Subject: [PATCH 009/137] fix(component): dummy --- packages/restapi/src/lib/config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/restapi/src/lib/config.ts b/packages/restapi/src/lib/config.ts index 60aae7fc4..51e13990a 100644 --- a/packages/restapi/src/lib/config.ts +++ b/packages/restapi/src/lib/config.ts @@ -103,3 +103,5 @@ const CONFIG = { }; export default CONFIG; + + From 422e8c222464a15e8f5be3988ff72ddc7eaffe3d Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:29:18 +0530 Subject: [PATCH 010/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index b611cd524..aa9b86e24 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -5,6 +5,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.1...restapi-1.0.2) (2023-04-04) +### Bug Fixes + +* **component:** dummy ([bef586f](https://github.com/ethereum-push-notification-service/push-sdk/commit/bef586f0754400334994d1f6079b1b1a77380edd)) +* **component:** dummy ([59b6cec](https://github.com/ethereum-push-notification-service/push-sdk/commit/59b6cec5562b571a36ee3eca27d880f237705bca)) + + + +## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.1...restapi-1.0.2) (2023-04-04) + + ### Bug Fixes * **component:** dummy ([59b6cec](https://github.com/ethereum-push-notification-service/push-sdk/commit/59b6cec5562b571a36ee3eca27d880f237705bca)) From 40f1c57cb26e9efcace0f9ad2ceb577c70dac11e Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:29:48 +0530 Subject: [PATCH 011/137] fix(component): dummy --- packages/restapi/src/lib/config.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/restapi/src/lib/config.ts b/packages/restapi/src/lib/config.ts index 51e13990a..60aae7fc4 100644 --- a/packages/restapi/src/lib/config.ts +++ b/packages/restapi/src/lib/config.ts @@ -103,5 +103,3 @@ const CONFIG = { }; export default CONFIG; - - From ca9c88ab064d968c9c01641461be3a2500b99712 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:29:56 +0530 Subject: [PATCH 012/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.0.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index aa9b86e24..91e627c8a 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.0.3](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.2...restapi-1.0.3) (2023-04-04) + + +### Bug Fixes + +* **component:** dummy ([40f1c57](https://github.com/ethereum-push-notification-service/push-sdk/commit/40f1c57cb26e9efcace0f9ad2ceb577c70dac11e)) + + + ## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.1...restapi-1.0.2) (2023-04-04) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 2b97a3a71..4063a24a3 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.0.2", + "version": "1.0.3", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 3e699b07071fe53499d8116bab108ff5a00d8a85 Mon Sep 17 00:00:00 2001 From: aman035 Date: Wed, 5 Apr 2023 00:51:50 +0530 Subject: [PATCH 013/137] fix: success progressHook --- packages/restapi/src/lib/helpers/crypto.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/restapi/src/lib/helpers/crypto.ts b/packages/restapi/src/lib/helpers/crypto.ts index e80609001..c8f4e77e7 100644 --- a/packages/restapi/src/lib/helpers/crypto.ts +++ b/packages/restapi/src/lib/helpers/crypto.ts @@ -219,6 +219,12 @@ export const decryptPGPKey = async (options: decryptPgpKeyProps) => { }); } } + progressHook?.({ + progressId: 'PUSH-DECRYPT-02', + progressTitle: 'Push Profile Unlocked', + progressInfo: 'Unlocking push profile', + level: 'SUCCESS', + }); return privateKey; } catch (err) { // Report Progress From 2b9df346e315673e7dfa9c3982bf50b63f17a45a Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:54:36 +0530 Subject: [PATCH 014/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.0.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 91e627c8a..834c98265 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.0.4](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.3...restapi-1.0.4) (2023-04-04) + + +### Bug Fixes + +* success progressHook ([3e699b0](https://github.com/ethereum-push-notification-service/push-sdk/commit/3e699b07071fe53499d8116bab108ff5a00d8a85)) + + + ## [1.0.3](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.2...restapi-1.0.3) (2023-04-04) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 4063a24a3..e4fc92092 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.0.3", + "version": "1.0.4", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From fa731877d3751714143bfa4e947899c858676cdc Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 17:49:16 +0530 Subject: [PATCH 015/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 15 +++++++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 834c98265..d22dace22 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,21 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +# [1.1.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.4...restapi-1.1.0) (2023-04-05) + + +### Bug Fixes + +* remove unnecessary log ([#289](https://github.com/ethereum-push-notification-service/push-sdk/issues/289)) ([7ac6be3](https://github.com/ethereum-push-notification-service/push-sdk/commit/7ac6be3b99ab1c36fa18e701b7656ff483834456)) +* success progressHook ([#291](https://github.com/ethereum-push-notification-service/push-sdk/issues/291)) ([9fd5b5a](https://github.com/ethereum-push-notification-service/push-sdk/commit/9fd5b5a0a64d922b299e8e33543c0ba500147fbc)) + + +### Features + +* **sendnotification:** add additionalMeta field to payload ([#235](https://github.com/ethereum-push-notification-service/push-sdk/issues/235)) ([6d9d60b](https://github.com/ethereum-push-notification-service/push-sdk/commit/6d9d60b2532bf408aaed708a8bbf753aeab13296)), closes [#234](https://github.com/ethereum-push-notification-service/push-sdk/issues/234) + + + ## [1.0.4](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.3...restapi-1.0.4) (2023-04-04) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index e4fc92092..34ee23589 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.0.4", + "version": "1.1.0", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From ade2b43808063a096f69acdf63a0fee9ab7aed92 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Thu, 6 Apr 2023 18:44:30 +0530 Subject: [PATCH 016/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 14 ++++++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index d22dace22..2eb829205 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,20 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +# [1.2.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.1.0...restapi-1.2.0) (2023-04-06) + + +### Bug Fixes + +* **component:** add chatid to requests and chats ([#278](https://github.com/ethereum-push-notification-service/push-sdk/issues/278)) ([e1d4af5](https://github.com/ethereum-push-notification-service/push-sdk/commit/e1d4af5aa9cfeef0a2ca422d87a158e546fe9d4a)) + + +### Features + +* local for local development ([#295](https://github.com/ethereum-push-notification-service/push-sdk/issues/295)) ([2b09806](https://github.com/ethereum-push-notification-service/push-sdk/commit/2b09806d28f1c8d2f74e163691fc2bcc60f26116)) + + + # [1.1.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.4...restapi-1.1.0) (2023-04-05) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 34ee23589..26a8f0da6 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.1.0", + "version": "1.2.0", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From ee9c434e97bb31177aaa2d2eee1c46b94c35440f Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Thu, 6 Apr 2023 18:44:48 +0530 Subject: [PATCH 017/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 2eb829205..52cf1dfb6 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -16,6 +16,20 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s +# [1.2.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.1.0...restapi-1.2.0) (2023-04-06) + + +### Bug Fixes + +* **component:** add chatid to requests and chats ([#278](https://github.com/ethereum-push-notification-service/push-sdk/issues/278)) ([e1d4af5](https://github.com/ethereum-push-notification-service/push-sdk/commit/e1d4af5aa9cfeef0a2ca422d87a158e546fe9d4a)) + + +### Features + +* local for local development ([#295](https://github.com/ethereum-push-notification-service/push-sdk/issues/295)) ([2b09806](https://github.com/ethereum-push-notification-service/push-sdk/commit/2b09806d28f1c8d2f74e163691fc2bcc60f26116)) + + + # [1.1.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.4...restapi-1.1.0) (2023-04-05) From a6915b6a0212af1d5245867922eb73e70c930c23 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:26:02 +0530 Subject: [PATCH 018/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 53 +++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 52cf1dfb6..1af49a8b3 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -153,6 +153,59 @@ New encryption version for pgp keys +# [1.0.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.8.2...restapi-1.0.0) (2023-04-04) + + +### Bug Fixes + +* **component:** decrypt issue fixed ([21538db](https://github.com/ethereum-push-notification-service/push-sdk/commit/21538dbb0569914b880d8f36aea341360041b4e7)) +* **component:** dummy ([12ba2f7](https://github.com/ethereum-push-notification-service/push-sdk/commit/12ba2f72c0a5c237bc4c564f2a9ca05cca01ac22)) +* **component:** dummy commit ([#282](https://github.com/ethereum-push-notification-service/push-sdk/issues/282)) ([af10b66](https://github.com/ethereum-push-notification-service/push-sdk/commit/af10b6681c8365b9b16fb3cde8bfa88a26408fa1)) +* **component:** mocha setup ([6ecf79d](https://github.com/ethereum-push-notification-service/push-sdk/commit/6ecf79dd3ee4840350965fb045cc163bdd98b5a9)) +* **component:** mocha setup ([5b7c504](https://github.com/ethereum-push-notification-service/push-sdk/commit/5b7c50444734c8df507175eb98ab780507ddcad4)) +* **component:** mocha setup with basic test case ([35fa1dc](https://github.com/ethereum-push-notification-service/push-sdk/commit/35fa1dc259051572ca51f8e2e0607a3917589159)) +* **component:** removed duplicate decryptAndVerifySignature method ([e42b7ff](https://github.com/ethereum-push-notification-service/push-sdk/commit/e42b7ffb4659c4f603a2f15eec2f6bf84ddcf303)) +* **component:** removed duplicate decryptAndVerifySignature method ([a03cf7e](https://github.com/ethereum-push-notification-service/push-sdk/commit/a03cf7e2ff56e5af82e0d80943cfb3ee48b773f6)) +* progressHook Changes ([#287](https://github.com/ethereum-push-notification-service/push-sdk/issues/287)) ([10d3e92](https://github.com/ethereum-push-notification-service/push-sdk/commit/10d3e929022fdada202be1a9cbb3d49d90edb1d1)) +* **restapi/helpers/crypto.ts:** hook Fix ([#288](https://github.com/ethereum-push-notification-service/push-sdk/issues/288)) ([b751637](https://github.com/ethereum-push-notification-service/push-sdk/commit/b751637c158811201140cfa1190c57c5f1b07262)) +* sig changes to include domain ([#279](https://github.com/ethereum-push-notification-service/push-sdk/issues/279)) ([3dd8a9c](https://github.com/ethereum-push-notification-service/push-sdk/commit/3dd8a9ce301521e3913437f3192cefa8d699a914)) +* signature Validation of chat msg ([#272](https://github.com/ethereum-push-notification-service/push-sdk/issues/272)) ([9f6093f](https://github.com/ethereum-push-notification-service/push-sdk/commit/9f6093fcc5941a2a7bc19d00217483016828bdcb)) + + +* Chat keys Encryption V2 (#231) ([f35730b](https://github.com/ethereum-push-notification-service/push-sdk/commit/f35730bd6398694176941875abb3e8678b255568)), closes [#231](https://github.com/ethereum-push-notification-service/push-sdk/issues/231) + + +### Features + +* chat.chat function ([760dda4](https://github.com/ethereum-push-notification-service/push-sdk/commit/760dda4095e57ef1f79fba8543aa5ff6a8c48c6f)) +* mediaURL type message support ([72d8d41](https://github.com/ethereum-push-notification-service/push-sdk/commit/72d8d411155ffce55da14810d7aeb5845035dade)) + + +### BREAKING CHANGES + +* New chat key ecnryption + +* feat: chat key encryption v2 + +New encryption version for pgp keys +* Signer is required in ui-web + +* refactor: add signer in ApproveRequest + +* fix: revert dev from localhost + +* feat: auto uprade keys + +* test: tests for upgrade User + +* test: test for send chat message + +* test: rename tests + +* test: text formating fix + + + # [1.0.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.8.2...restapi-1.0.0) (2023-04-04) From 2af4079a91664832fa72d9eb7a3ae3f9536bdefc Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:27:29 +0530 Subject: [PATCH 019/137] fix(component): dummy --- packages/restapi/src/lib/config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/restapi/src/lib/config.ts b/packages/restapi/src/lib/config.ts index 050b26852..d6959e6dd 100644 --- a/packages/restapi/src/lib/config.ts +++ b/packages/restapi/src/lib/config.ts @@ -128,3 +128,5 @@ const CONFIG = { }; export default CONFIG; + + From 617a4cf4402bde574aee59dfb212f32fe7ce8b8d Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:28:30 +0530 Subject: [PATCH 020/137] fix(component): dummy --- packages/restapi/src/lib/config.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/restapi/src/lib/config.ts b/packages/restapi/src/lib/config.ts index d6959e6dd..050b26852 100644 --- a/packages/restapi/src/lib/config.ts +++ b/packages/restapi/src/lib/config.ts @@ -128,5 +128,3 @@ const CONFIG = { }; export default CONFIG; - - From 9b53717f8aa4f67d2a991033dc3ab04b9672b2d2 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:29:10 +0530 Subject: [PATCH 021/137] fix(component): dummy --- packages/restapi/src/lib/config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/restapi/src/lib/config.ts b/packages/restapi/src/lib/config.ts index 050b26852..d6959e6dd 100644 --- a/packages/restapi/src/lib/config.ts +++ b/packages/restapi/src/lib/config.ts @@ -128,3 +128,5 @@ const CONFIG = { }; export default CONFIG; + + From 44bf6d3d29eea3f66a1be12d5568d711b0157cb8 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:29:18 +0530 Subject: [PATCH 022/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 1af49a8b3..68e2f9c32 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -73,6 +73,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s +## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.1...restapi-1.0.2) (2023-04-04) + + +### Bug Fixes + +* **component:** dummy ([bef586f](https://github.com/ethereum-push-notification-service/push-sdk/commit/bef586f0754400334994d1f6079b1b1a77380edd)) +* **component:** dummy ([59b6cec](https://github.com/ethereum-push-notification-service/push-sdk/commit/59b6cec5562b571a36ee3eca27d880f237705bca)) + + + ## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.1...restapi-1.0.2) (2023-04-04) From 61cfc0cfa3fac4c3ee754b837bd6e562b9ee2faf Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:29:48 +0530 Subject: [PATCH 023/137] fix(component): dummy --- packages/restapi/src/lib/config.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/restapi/src/lib/config.ts b/packages/restapi/src/lib/config.ts index d6959e6dd..050b26852 100644 --- a/packages/restapi/src/lib/config.ts +++ b/packages/restapi/src/lib/config.ts @@ -128,5 +128,3 @@ const CONFIG = { }; export default CONFIG; - - From 1c31050f93e1945b444470ba8644c237ceee2188 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:29:56 +0530 Subject: [PATCH 024/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.0.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 68e2f9c32..154485db6 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -63,6 +63,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s +<<<<<<< HEAD ## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.1...restapi-1.0.2) (2023-04-04) @@ -73,6 +74,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s +======= +>>>>>>> ca9c88a (ci(restapi): 🎉 cut release to restapi-v1.0.3) ## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.1...restapi-1.0.2) (2023-04-04) From d9e9f157a5c141b346bb67697b5fdc72ebe0c158 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:54:36 +0530 Subject: [PATCH 025/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.0.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 35 +---------------------------------- 1 file changed, 1 insertion(+), 34 deletions(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 154485db6..2d055f231 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -59,31 +59,21 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Bug Fixes -* **component:** dummy ([40f1c57](https://github.com/ethereum-push-notification-service/push-sdk/commit/40f1c57cb26e9efcace0f9ad2ceb577c70dac11e)) - - -<<<<<<< HEAD ## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.1...restapi-1.0.2) (2023-04-04) ### Bug Fixes -* **component:** dummy ([bef586f](https://github.com/ethereum-push-notification-service/push-sdk/commit/bef586f0754400334994d1f6079b1b1a77380edd)) -* **component:** dummy ([59b6cec](https://github.com/ethereum-push-notification-service/push-sdk/commit/59b6cec5562b571a36ee3eca27d880f237705bca)) -======= ->>>>>>> ca9c88a (ci(restapi): 🎉 cut release to restapi-v1.0.3) + ## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.1...restapi-1.0.2) (2023-04-04) ### Bug Fixes -* **component:** dummy ([bef586f](https://github.com/ethereum-push-notification-service/push-sdk/commit/bef586f0754400334994d1f6079b1b1a77380edd)) -* **component:** dummy ([59b6cec](https://github.com/ethereum-push-notification-service/push-sdk/commit/59b6cec5562b571a36ee3eca27d880f237705bca)) - ## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.1...restapi-1.0.2) (2023-04-04) @@ -91,27 +81,18 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Bug Fixes -* **component:** dummy ([59b6cec](https://github.com/ethereum-push-notification-service/push-sdk/commit/59b6cec5562b571a36ee3eca27d880f237705bca)) - - ## [1.0.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.0...restapi-1.0.1) (2023-04-04) ### Bug Fixes -* **component:** dummy ([3c7037b](https://github.com/ethereum-push-notification-service/push-sdk/commit/3c7037b8876b3ff58fc3c4602813a71b02325fb7)) - - ## [1.0.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.0...restapi-1.0.1) (2023-04-04) ### Bug Fixes -* **component:** dummy ([3c7037b](https://github.com/ethereum-push-notification-service/push-sdk/commit/3c7037b8876b3ff58fc3c4602813a71b02325fb7)) - - # [1.0.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.8.2...restapi-1.0.0) (2023-04-04) @@ -119,8 +100,6 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Bug Fixes * **component:** decrypt issue fixed ([21538db](https://github.com/ethereum-push-notification-service/push-sdk/commit/21538dbb0569914b880d8f36aea341360041b4e7)) -* **component:** dummy ([12ba2f7](https://github.com/ethereum-push-notification-service/push-sdk/commit/12ba2f72c0a5c237bc4c564f2a9ca05cca01ac22)) -* **component:** dummy commit ([#282](https://github.com/ethereum-push-notification-service/push-sdk/issues/282)) ([af10b66](https://github.com/ethereum-push-notification-service/push-sdk/commit/af10b6681c8365b9b16fb3cde8bfa88a26408fa1)) * **component:** mocha setup ([6ecf79d](https://github.com/ethereum-push-notification-service/push-sdk/commit/6ecf79dd3ee4840350965fb045cc163bdd98b5a9)) * **component:** mocha setup ([5b7c504](https://github.com/ethereum-push-notification-service/push-sdk/commit/5b7c50444734c8df507175eb98ab780507ddcad4)) * **component:** mocha setup with basic test case ([35fa1dc](https://github.com/ethereum-push-notification-service/push-sdk/commit/35fa1dc259051572ca51f8e2e0607a3917589159)) @@ -172,8 +151,6 @@ New encryption version for pgp keys ### Bug Fixes * **component:** decrypt issue fixed ([21538db](https://github.com/ethereum-push-notification-service/push-sdk/commit/21538dbb0569914b880d8f36aea341360041b4e7)) -* **component:** dummy ([12ba2f7](https://github.com/ethereum-push-notification-service/push-sdk/commit/12ba2f72c0a5c237bc4c564f2a9ca05cca01ac22)) -* **component:** dummy commit ([#282](https://github.com/ethereum-push-notification-service/push-sdk/issues/282)) ([af10b66](https://github.com/ethereum-push-notification-service/push-sdk/commit/af10b6681c8365b9b16fb3cde8bfa88a26408fa1)) * **component:** mocha setup ([6ecf79d](https://github.com/ethereum-push-notification-service/push-sdk/commit/6ecf79dd3ee4840350965fb045cc163bdd98b5a9)) * **component:** mocha setup ([5b7c504](https://github.com/ethereum-push-notification-service/push-sdk/commit/5b7c50444734c8df507175eb98ab780507ddcad4)) * **component:** mocha setup with basic test case ([35fa1dc](https://github.com/ethereum-push-notification-service/push-sdk/commit/35fa1dc259051572ca51f8e2e0607a3917589159)) @@ -225,7 +202,6 @@ New encryption version for pgp keys ### Bug Fixes * **component:** decrypt issue fixed ([21538db](https://github.com/ethereum-push-notification-service/push-sdk/commit/21538dbb0569914b880d8f36aea341360041b4e7)) -* **component:** dummy commit ([#282](https://github.com/ethereum-push-notification-service/push-sdk/issues/282)) ([af10b66](https://github.com/ethereum-push-notification-service/push-sdk/commit/af10b6681c8365b9b16fb3cde8bfa88a26408fa1)) * **component:** mocha setup ([6ecf79d](https://github.com/ethereum-push-notification-service/push-sdk/commit/6ecf79dd3ee4840350965fb045cc163bdd98b5a9)) * **component:** mocha setup ([5b7c504](https://github.com/ethereum-push-notification-service/push-sdk/commit/5b7c50444734c8df507175eb98ab780507ddcad4)) * **component:** mocha setup with basic test case ([35fa1dc](https://github.com/ethereum-push-notification-service/push-sdk/commit/35fa1dc259051572ca51f8e2e0607a3917589159)) @@ -276,17 +252,12 @@ New encryption version for pgp keys ### Bug Fixes -* **component:** dummy commit ([14b8824](https://github.com/ethereum-push-notification-service/push-sdk/commit/14b882466e36fe165af696c91a2c99bcbb0b6ecc)) - - ## [1.0.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.0.0...restapi-1.0.1) (2023-04-04) ### Bug Fixes -* **component:** dummy commit ([88e6d5e](https://github.com/ethereum-push-notification-service/push-sdk/commit/88e6d5e83f16dd23649991abd04776df2c37911d)) - # [1.0.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.8.2...restapi-1.0.0) (2023-04-04) @@ -295,8 +266,6 @@ New encryption version for pgp keys ### Bug Fixes * **component:** decrypt issue fixed ([21538db](https://github.com/ethereum-push-notification-service/push-sdk/commit/21538dbb0569914b880d8f36aea341360041b4e7)) -* **component:** dummy commit ([e5d19b8](https://github.com/ethereum-push-notification-service/push-sdk/commit/e5d19b8c6aa4cd72f872d6c27577295324e3b8e1)) -* **component:** dummy commit ([#282](https://github.com/ethereum-push-notification-service/push-sdk/issues/282)) ([af10b66](https://github.com/ethereum-push-notification-service/push-sdk/commit/af10b6681c8365b9b16fb3cde8bfa88a26408fa1)) * **component:** mocha setup ([6ecf79d](https://github.com/ethereum-push-notification-service/push-sdk/commit/6ecf79dd3ee4840350965fb045cc163bdd98b5a9)) * **component:** mocha setup ([5b7c504](https://github.com/ethereum-push-notification-service/push-sdk/commit/5b7c50444734c8df507175eb98ab780507ddcad4)) * **component:** mocha setup with basic test case ([35fa1dc](https://github.com/ethereum-push-notification-service/push-sdk/commit/35fa1dc259051572ca51f8e2e0607a3917589159)) @@ -346,8 +315,6 @@ New encryption version for pgp keys ### Bug Fixes * **component:** decrypt issue fixed ([21538db](https://github.com/ethereum-push-notification-service/push-sdk/commit/21538dbb0569914b880d8f36aea341360041b4e7)) -* **component:** dummy commit ([e5d19b8](https://github.com/ethereum-push-notification-service/push-sdk/commit/e5d19b8c6aa4cd72f872d6c27577295324e3b8e1)) -* **component:** dummy commit ([#282](https://github.com/ethereum-push-notification-service/push-sdk/issues/282)) ([af10b66](https://github.com/ethereum-push-notification-service/push-sdk/commit/af10b6681c8365b9b16fb3cde8bfa88a26408fa1)) * **component:** mocha setup ([6ecf79d](https://github.com/ethereum-push-notification-service/push-sdk/commit/6ecf79dd3ee4840350965fb045cc163bdd98b5a9)) * **component:** mocha setup ([5b7c504](https://github.com/ethereum-push-notification-service/push-sdk/commit/5b7c50444734c8df507175eb98ab780507ddcad4)) * **component:** mocha setup with basic test case ([35fa1dc](https://github.com/ethereum-push-notification-service/push-sdk/commit/35fa1dc259051572ca51f8e2e0607a3917589159)) From 93c2cf45f10d5c18fa646ac3015a81f142f17511 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Fri, 7 Apr 2023 15:00:13 +0530 Subject: [PATCH 026/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 13 +++++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 2d055f231..dec831077 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.0...restapi-1.2.1) (2023-04-07) + + +### Bug Fixes + +* added types for chat fn ([#298](https://github.com/ethereum-push-notification-service/push-sdk/issues/298)) ([1c944b2](https://github.com/ethereum-push-notification-service/push-sdk/commit/1c944b237909e393f6ae72c76138411076c62b13)) +* **component:** dummy ([61cfc0c](https://github.com/ethereum-push-notification-service/push-sdk/commit/61cfc0cfa3fac4c3ee754b837bd6e562b9ee2faf)) +* **component:** dummy ([9b53717](https://github.com/ethereum-push-notification-service/push-sdk/commit/9b53717f8aa4f67d2a991033dc3ab04b9672b2d2)) +* **component:** dummy ([617a4cf](https://github.com/ethereum-push-notification-service/push-sdk/commit/617a4cf4402bde574aee59dfb212f32fe7ce8b8d)) +* **component:** dummy ([2af4079](https://github.com/ethereum-push-notification-service/push-sdk/commit/2af4079a91664832fa72d9eb7a3ae3f9536bdefc)) + + + # [1.2.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.1.0...restapi-1.2.0) (2023-04-06) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 26a8f0da6..98388ef21 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.0", + "version": "1.2.1", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 639b4d2de728ef289da5889b51fd45e003156699 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Fri, 7 Apr 2023 15:04:24 +0530 Subject: [PATCH 027/137] fix: local for local development (#295) Co-Authored-By: aman035 --- packages/restapi/CHANGELOG.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index dec831077..12fc660d8 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -8,10 +8,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Bug Fixes * added types for chat fn ([#298](https://github.com/ethereum-push-notification-service/push-sdk/issues/298)) ([1c944b2](https://github.com/ethereum-push-notification-service/push-sdk/commit/1c944b237909e393f6ae72c76138411076c62b13)) -* **component:** dummy ([61cfc0c](https://github.com/ethereum-push-notification-service/push-sdk/commit/61cfc0cfa3fac4c3ee754b837bd6e562b9ee2faf)) -* **component:** dummy ([9b53717](https://github.com/ethereum-push-notification-service/push-sdk/commit/9b53717f8aa4f67d2a991033dc3ab04b9672b2d2)) -* **component:** dummy ([617a4cf](https://github.com/ethereum-push-notification-service/push-sdk/commit/617a4cf4402bde574aee59dfb212f32fe7ce8b8d)) -* **component:** dummy ([2af4079](https://github.com/ethereum-push-notification-service/push-sdk/commit/2af4079a91664832fa72d9eb7a3ae3f9536bdefc)) + From d5433a93de34e69953ca88e602d264b234708727 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Fri, 7 Apr 2023 15:14:56 +0530 Subject: [PATCH 028/137] fix: version update --- packages/restapi/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 98388ef21..554f6a0c6 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -30,3 +30,4 @@ "mocha": "^10.2.0" } } + From 6d6f04199fe3d28e23276287ba631cccb46054b1 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Fri, 7 Apr 2023 19:58:41 +0530 Subject: [PATCH 029/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 14 ++++++++++++++ packages/restapi/package.json | 3 +-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 12fc660d8..9d3759390 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,20 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.1...restapi-1.2.2) (2023-04-07) + + +### Bug Fixes + +* local for local development ([#295](https://github.com/ethereum-push-notification-service/push-sdk/issues/295)) ([639b4d2](https://github.com/ethereum-push-notification-service/push-sdk/commit/639b4d2de728ef289da5889b51fd45e003156699)) +* main merge ([0be9604](https://github.com/ethereum-push-notification-service/push-sdk/commit/0be9604eacf003db0cc4244f41d5e9c533f7613a)) +* remove hardcoded values ([#299](https://github.com/ethereum-push-notification-service/push-sdk/issues/299)) ([02a4e20](https://github.com/ethereum-push-notification-service/push-sdk/commit/02a4e2077a2ee4fb010d619d04acffc1881a2c0c)) +* signerType ([#303](https://github.com/ethereum-push-notification-service/push-sdk/issues/303)) ([20eb15a](https://github.com/ethereum-push-notification-service/push-sdk/commit/20eb15af4bc3286e5836845e299326352af0ce34)) +* version update ([d5433a9](https://github.com/ethereum-push-notification-service/push-sdk/commit/d5433a93de34e69953ca88e602d264b234708727)) +* version update ([#302](https://github.com/ethereum-push-notification-service/push-sdk/issues/302)) ([82bd4f7](https://github.com/ethereum-push-notification-service/push-sdk/commit/82bd4f7882f8782f8d19a1daf97e5366ce26c5de)) + + + ## [1.2.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.0...restapi-1.2.1) (2023-04-07) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 554f6a0c6..7928e276f 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.1", + "version": "1.2.2", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" @@ -30,4 +30,3 @@ "mocha": "^10.2.0" } } - From aef8084145af7816fbbaf64a9a3832d1324a4af5 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Tue, 18 Apr 2023 20:27:18 +0530 Subject: [PATCH 030/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 9d3759390..8d2fee118 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.3](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.2...restapi-1.2.3) (2023-04-18) + + +### Bug Fixes + +* git merge ([87a31a1](https://github.com/ethereum-push-notification-service/push-sdk/commit/87a31a142b80e3305d5986e9f6b5734d9345b7d0)) + + + ## [1.2.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.1...restapi-1.2.2) (2023-04-07) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index c76a6da67..fc16dae18 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.2", + "version": "1.2.3", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 9562adc60a5749a308e34e83eb1819fc5da2d669 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 19 Apr 2023 17:23:34 +0530 Subject: [PATCH 031/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 8d2fee118..b641cb659 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.4](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.3...restapi-1.2.4) (2023-04-19) + + +### Bug Fixes + +* chamged signerType from ethers.wallet ([#315](https://github.com/ethereum-push-notification-service/push-sdk/issues/315)) ([385b3dd](https://github.com/ethereum-push-notification-service/push-sdk/commit/385b3ddf2e2aa22b687a5094ba5cfec0e13da63b)) +* fix videoCall Notif ([#310](https://github.com/ethereum-push-notification-service/push-sdk/issues/310)) ([069783e](https://github.com/ethereum-push-notification-service/push-sdk/commit/069783e2cbe77723e335affb2f2668c785aeace6)) + + + ## [1.2.3](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.2...restapi-1.2.3) (2023-04-18) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index fc16dae18..1822d4e96 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.3", + "version": "1.2.4", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From bc3413392d16cc34c5646e9f121dcb165e70eafe Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Thu, 27 Apr 2023 12:51:11 +0530 Subject: [PATCH 032/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 18 ++++++++++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index b641cb659..c03e5fd48 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,24 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.5](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.4...restapi-1.2.5) (2023-04-27) + + +### Bug Fixes + +* nft compatibility ([#326](https://github.com/ethereum-push-notification-service/push-sdk/issues/326)) ([80650e6](https://github.com/ethereum-push-notification-service/push-sdk/commit/80650e65f490e08df30c17c9e5dadc0b513b1f46)) + + + +## [1.2.5](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.4...restapi-1.2.5) (2023-04-27) + + +### Bug Fixes + +* nft compatibility ([#326](https://github.com/ethereum-push-notification-service/push-sdk/issues/326)) ([80650e6](https://github.com/ethereum-push-notification-service/push-sdk/commit/80650e65f490e08df30c17c9e5dadc0b513b1f46)) + + + ## [1.2.4](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.3...restapi-1.2.4) (2023-04-19) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 1822d4e96..e9e8e7466 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.4", + "version": "1.2.5", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 294fe70a588aaa9152ad6e02cf74877fdd34ae88 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Thu, 27 Apr 2023 17:17:27 +0530 Subject: [PATCH 033/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index c03e5fd48..ee0376069 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.6](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.5...restapi-1.2.6) (2023-04-27) + + +### Bug Fixes + +* add chat.chat to exports ([#331](https://github.com/ethereum-push-notification-service/push-sdk/issues/331)) ([289c774](https://github.com/ethereum-push-notification-service/push-sdk/commit/289c774074cecd6998b0bda39bee4e779ee9daa3)) + + + ## [1.2.5](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.4...restapi-1.2.5) (2023-04-27) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index e9e8e7466..6cdc41952 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.5", + "version": "1.2.6", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 934b4a3aa1039931d61a911b3d6179607a15dcb7 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Thu, 27 Apr 2023 18:17:36 +0530 Subject: [PATCH 034/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index ee0376069..53bb4fa96 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.7](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.6...restapi-1.2.7) (2023-04-27) + + +### Bug Fixes + +* Merge branch 'deployment' ([0d184dc](https://github.com/ethereum-push-notification-service/push-sdk/commit/0d184dc75d8680ac8a77f1124204af86befac82c)) +* senderType is optional param ([#329](https://github.com/ethereum-push-notification-service/push-sdk/issues/329)) ([ed3d6e6](https://github.com/ethereum-push-notification-service/push-sdk/commit/ed3d6e611975da054d5e1b3809e614450a563cd5)) + + + ## [1.2.6](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.5...restapi-1.2.6) (2023-04-27) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 6cdc41952..39bb48962 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.6", + "version": "1.2.7", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 8434cfaf82f9ef7a2d84847701e20d210d2d7250 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Thu, 27 Apr 2023 18:36:16 +0530 Subject: [PATCH 035/137] =?UTF-8?q?ci(socket):=20=F0=9F=8E=89=20cut=20rele?= =?UTF-8?q?ase=20to=20socket-v0.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/socket/CHANGELOG.md | 15 +++++++++++++++ packages/socket/package.json | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/packages/socket/CHANGELOG.md b/packages/socket/CHANGELOG.md index 848699b26..608a00bc2 100644 --- a/packages/socket/CHANGELOG.md +++ b/packages/socket/CHANGELOG.md @@ -2,6 +2,21 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +# [0.5.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/socket-0.4.1...socket-0.5.0) (2023-04-27) + + +### Bug Fixes + +* **component:** env type in demo react and uiweb ([#225](https://github.com/ethereum-push-notification-service/push-sdk/issues/225)) ([ff1113a](https://github.com/ethereum-push-notification-service/push-sdk/commit/ff1113adb226aee4c9f6ccdfa488e59b47ca9b9e)) +* **component:** group chat socket event ([#251](https://github.com/ethereum-push-notification-service/push-sdk/issues/251)) ([17f0892](https://github.com/ethereum-push-notification-service/push-sdk/commit/17f0892570a6f2318d515a7d6e297a71463fe490)) + + +### Features + +* add local env to socket config file ([#334](https://github.com/ethereum-push-notification-service/push-sdk/issues/334)) ([db4171e](https://github.com/ethereum-push-notification-service/push-sdk/commit/db4171e57bcba2b86f798072fc37d9f082236ad0)) + + + ## [0.4.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/socket-0.4.1...socket-0.4.2) (2023-03-22) diff --git a/packages/socket/package.json b/packages/socket/package.json index 583aa4647..18bd79d85 100644 --- a/packages/socket/package.json +++ b/packages/socket/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/socket", - "version": "0.4.2", + "version": "0.5.0", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 1421658ec40b18780a62163f013ad0c53d66f805 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Thu, 27 Apr 2023 18:42:48 +0530 Subject: [PATCH 036/137] fix: test commit --- packages/uiweb/src/lib/components/chat/AddressInfo.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/uiweb/src/lib/components/chat/AddressInfo.tsx b/packages/uiweb/src/lib/components/chat/AddressInfo.tsx index f27c7ad98..4034e6125 100644 --- a/packages/uiweb/src/lib/components/chat/AddressInfo.tsx +++ b/packages/uiweb/src/lib/components/chat/AddressInfo.tsx @@ -107,3 +107,4 @@ const Span = styled.span` letter-spacing: -0.019em; color: ${(props: any): string => props.theme.textColorPrimary || '#000'}; `; + From 974a07fb76202b9d17a3898daf53b424b2142971 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Mon, 1 May 2023 13:51:10 +0530 Subject: [PATCH 037/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 53bb4fa96..2e81d52db 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.8](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.7...restapi-1.2.8) (2023-05-01) + + +### Bug Fixes + +* error ProgressHook added ([#336](https://github.com/ethereum-push-notification-service/push-sdk/issues/336)) ([3f7295f](https://github.com/ethereum-push-notification-service/push-sdk/commit/3f7295f7811c15e5b9f3ba74a69ffcbe3fb6d829)) + + + ## [1.2.7](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.6...restapi-1.2.7) (2023-04-27) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 39bb48962..bb36058ea 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.7", + "version": "1.2.8", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 7f72fdb2ba9702fae54afab150e4f8e6f6a5c232 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Mon, 1 May 2023 14:31:13 +0530 Subject: [PATCH 038/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 40 +++++++++++++++++++++++++++++++++++++ packages/uiweb/package.json | 2 +- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index 2f1c821ae..e05bb866d 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,46 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +# [1.0.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-0.5.0...uiweb-1.0.0) (2023-05-01) + + +### Bug Fixes + +* chamged signerType from ethers.wallet ([#315](https://github.com/ethereum-push-notification-service/push-sdk/issues/315)) ([385b3dd](https://github.com/ethereum-push-notification-service/push-sdk/commit/385b3ddf2e2aa22b687a5094ba5cfec0e13da63b)) +* **component:** add chatid to requests and chats ([#278](https://github.com/ethereum-push-notification-service/push-sdk/issues/278)) ([e1d4af5](https://github.com/ethereum-push-notification-service/push-sdk/commit/e1d4af5aa9cfeef0a2ca422d87a158e546fe9d4a)) +* sig changes to include domain ([#279](https://github.com/ethereum-push-notification-service/push-sdk/issues/279)) ([3dd8a9c](https://github.com/ethereum-push-notification-service/push-sdk/commit/3dd8a9ce301521e3913437f3192cefa8d699a914)) +* signerType ([#303](https://github.com/ethereum-push-notification-service/push-sdk/issues/303)) ([20eb15a](https://github.com/ethereum-push-notification-service/push-sdk/commit/20eb15af4bc3286e5836845e299326352af0ce34)) +* upgraded rest api package in webui ([#338](https://github.com/ethereum-push-notification-service/push-sdk/issues/338)) ([b4cc0b0](https://github.com/ethereum-push-notification-service/push-sdk/commit/b4cc0b0104d6a16279680118364c085eab7d74b2)) + + +* Chat keys Encryption V2 (#231) ([f35730b](https://github.com/ethereum-push-notification-service/push-sdk/commit/f35730bd6398694176941875abb3e8678b255568)), closes [#231](https://github.com/ethereum-push-notification-service/push-sdk/issues/231) + + +### BREAKING CHANGES + +* New chat key ecnryption + +* feat: chat key encryption v2 + +New encryption version for pgp keys +* Signer is required in ui-web + +* refactor: add signer in ApproveRequest + +* fix: revert dev from localhost + +* feat: auto uprade keys + +* test: tests for upgrade User + +* test: test for send chat message + +* test: rename tests + +* test: text formating fix + + + # [0.5.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-0.4.3...uiweb-0.5.0) (2023-03-07) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index 28354cead..888dde41b 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "0.5.0", + "version": "1.0.0", "publishConfig": { "registry": "https://registry.npmjs.org/" }, From de824a4bce1de11f18e7bfea80f46bea6eb574d1 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Mon, 1 May 2023 14:31:35 +0530 Subject: [PATCH 039/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 40 +++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index e05bb866d..ffe029ffa 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -42,6 +42,46 @@ New encryption version for pgp keys +# [1.0.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-0.5.0...uiweb-1.0.0) (2023-05-01) + + +### Bug Fixes + +* chamged signerType from ethers.wallet ([#315](https://github.com/ethereum-push-notification-service/push-sdk/issues/315)) ([385b3dd](https://github.com/ethereum-push-notification-service/push-sdk/commit/385b3ddf2e2aa22b687a5094ba5cfec0e13da63b)) +* **component:** add chatid to requests and chats ([#278](https://github.com/ethereum-push-notification-service/push-sdk/issues/278)) ([e1d4af5](https://github.com/ethereum-push-notification-service/push-sdk/commit/e1d4af5aa9cfeef0a2ca422d87a158e546fe9d4a)) +* sig changes to include domain ([#279](https://github.com/ethereum-push-notification-service/push-sdk/issues/279)) ([3dd8a9c](https://github.com/ethereum-push-notification-service/push-sdk/commit/3dd8a9ce301521e3913437f3192cefa8d699a914)) +* signerType ([#303](https://github.com/ethereum-push-notification-service/push-sdk/issues/303)) ([20eb15a](https://github.com/ethereum-push-notification-service/push-sdk/commit/20eb15af4bc3286e5836845e299326352af0ce34)) +* upgraded rest api package in webui ([#338](https://github.com/ethereum-push-notification-service/push-sdk/issues/338)) ([b4cc0b0](https://github.com/ethereum-push-notification-service/push-sdk/commit/b4cc0b0104d6a16279680118364c085eab7d74b2)) + + +* Chat keys Encryption V2 (#231) ([f35730b](https://github.com/ethereum-push-notification-service/push-sdk/commit/f35730bd6398694176941875abb3e8678b255568)), closes [#231](https://github.com/ethereum-push-notification-service/push-sdk/issues/231) + + +### BREAKING CHANGES + +* New chat key ecnryption + +* feat: chat key encryption v2 + +New encryption version for pgp keys +* Signer is required in ui-web + +* refactor: add signer in ApproveRequest + +* fix: revert dev from localhost + +* feat: auto uprade keys + +* test: tests for upgrade User + +* test: test for send chat message + +* test: rename tests + +* test: text formating fix + + + # [0.5.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-0.4.3...uiweb-0.5.0) (2023-03-07) From f7ecc4debead2f849ec856e5bdfb94ca6ff19eb0 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Mon, 1 May 2023 15:13:54 +0530 Subject: [PATCH 040/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 10 ++++++++++ packages/uiweb/package.json | 3 +-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index ffe029ffa..fea8965b1 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.0.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.0.0...uiweb-1.0.1) (2023-05-01) + + +### Bug Fixes + +* Merge branch 'main' into deployment ([ec73af8](https://github.com/ethereum-push-notification-service/push-sdk/commit/ec73af85df847159c440a834905015d7937ffd9e)) +* upgrade rest API ([#339](https://github.com/ethereum-push-notification-service/push-sdk/issues/339)) ([0c85519](https://github.com/ethereum-push-notification-service/push-sdk/commit/0c85519b0a9d2a17bd85fb5bccba5c20953d3612)) + + + # [1.0.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-0.5.0...uiweb-1.0.0) (2023-05-01) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index 440a65a68..89acb815b 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "1.0.0", + "version": "1.0.1", "publishConfig": { "registry": "https://registry.npmjs.org/" }, @@ -16,4 +16,3 @@ "@pushprotocol/socket": "^0.4.2" } } - From 496952ac8faab02c82ee11be8e8925a1fb01cd01 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Tue, 2 May 2023 12:58:00 +0530 Subject: [PATCH 041/137] fix: added ci-version-beta --- packages/restapi/project.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages/restapi/project.json b/packages/restapi/project.json index 03ca264a6..a42008d52 100644 --- a/packages/restapi/project.json +++ b/packages/restapi/project.json @@ -38,6 +38,15 @@ "postTargets": ["restapi:build", "restapi:ci-publish"] } }, + "ci-version-beta": { + "executor": "@jscutlery/semver:version", + "options": { + "preset": "angular", + "commitMessageFormat": "ci(${projectName}): 🎉 cut release to ${projectName}-v${version}", + "postTargets": ["restapi:build", "restapi:ci-publish"], + "preid": "beta" + } + }, "ci-publish": { "executor": "@nrwl/workspace:run-commands", "options": { From 2f282ce60003733fc95ce239a6c1a2d6c24616cc Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Tue, 2 May 2023 12:59:11 +0530 Subject: [PATCH 042/137] fix: added ci-version-beta --- packages/restapi/project.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/restapi/project.json b/packages/restapi/project.json index a42008d52..7019b9692 100644 --- a/packages/restapi/project.json +++ b/packages/restapi/project.json @@ -42,7 +42,7 @@ "executor": "@jscutlery/semver:version", "options": { "preset": "angular", - "commitMessageFormat": "ci(${projectName}): 🎉 cut release to ${projectName}-v${version}", + "commitMessageFormat": "ci(${projectName}): 🎉 cut beta release to ${projectName}-v${version}", "postTargets": ["restapi:build", "restapi:ci-publish"], "preid": "beta" } From fc6f0692e81111de4b46232b085c45a2c5a30d33 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Tue, 2 May 2023 13:10:05 +0530 Subject: [PATCH 043/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20bet?= =?UTF-8?q?a=20release=20to=20restapi-v1.2.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 2e81d52db..15fb66363 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.9](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.8...restapi-1.2.9) (2023-05-02) + + +### Bug Fixes + +* Merge branch 'main' into deployment ([2b3993c](https://github.com/ethereum-push-notification-service/push-sdk/commit/2b3993c673fcf11a39acd7a6663b6e6996fc26b6)) +* remove autoupgarde for v4 ([#344](https://github.com/ethereum-push-notification-service/push-sdk/issues/344)) ([3a4bef0](https://github.com/ethereum-push-notification-service/push-sdk/commit/3a4bef0750abb5bdb5ab9e96c9cc76e2269afa3c)) + + + ## [1.2.8](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.7...restapi-1.2.8) (2023-05-01) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index bb36058ea..aa04f9e90 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.8", + "version": "1.2.9", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 55429e54fc9df054dab955796ae4e34da8dd25ec Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Tue, 2 May 2023 13:13:27 +0530 Subject: [PATCH 044/137] fix: added releaseType --- packages/restapi/project.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/restapi/project.json b/packages/restapi/project.json index 7019b9692..ca6f65668 100644 --- a/packages/restapi/project.json +++ b/packages/restapi/project.json @@ -44,6 +44,7 @@ "preset": "angular", "commitMessageFormat": "ci(${projectName}): 🎉 cut beta release to ${projectName}-v${version}", "postTargets": ["restapi:build", "restapi:ci-publish"], + "releaseType": "prerelease", "preid": "beta" } }, From 9237cb8761cf0a06e8d2f43fba891fe7b81de69c Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Tue, 2 May 2023 16:27:41 +0530 Subject: [PATCH 045/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20bet?= =?UTF-8?q?a=20release=20to=20restapi-v0.0.1-beta.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 12 ++++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 15fb66363..20368b110 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,18 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [0.0.1-beta.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.9...restapi-0.0.1-beta.0) (2023-05-02) + + +### Bug Fixes + +* added ci-version-beta ([2f282ce](https://github.com/ethereum-push-notification-service/push-sdk/commit/2f282ce60003733fc95ce239a6c1a2d6c24616cc)) +* added ci-version-beta ([496952a](https://github.com/ethereum-push-notification-service/push-sdk/commit/496952ac8faab02c82ee11be8e8925a1fb01cd01)) +* added release type ([28d7181](https://github.com/ethereum-push-notification-service/push-sdk/commit/28d71818c766b7057d4b1b8f629c8a4d01378db0)) +* added releaseType ([55429e5](https://github.com/ethereum-push-notification-service/push-sdk/commit/55429e54fc9df054dab955796ae4e34da8dd25ec)) + + + ## [1.2.9](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.8...restapi-1.2.9) (2023-05-02) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index aa04f9e90..49e570667 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.9", + "version": "0.0.1-beta.0", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 9d3080c2099f3645966876e5e3e38dcabbaffd4e Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Tue, 2 May 2023 16:28:51 +0530 Subject: [PATCH 046/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20bet?= =?UTF-8?q?a=20release=20to=20restapi-v0.0.1-beta.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 20368b110..67cb16def 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -14,6 +14,18 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s +## [0.0.1-beta.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.9...restapi-0.0.1-beta.0) (2023-05-02) + + +### Bug Fixes + +* added ci-version-beta ([2f282ce](https://github.com/ethereum-push-notification-service/push-sdk/commit/2f282ce60003733fc95ce239a6c1a2d6c24616cc)) +* added ci-version-beta ([496952a](https://github.com/ethereum-push-notification-service/push-sdk/commit/496952ac8faab02c82ee11be8e8925a1fb01cd01)) +* added release type ([28d7181](https://github.com/ethereum-push-notification-service/push-sdk/commit/28d71818c766b7057d4b1b8f629c8a4d01378db0)) +* added releaseType ([55429e5](https://github.com/ethereum-push-notification-service/push-sdk/commit/55429e54fc9df054dab955796ae4e34da8dd25ec)) + + + ## [1.2.9](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.8...restapi-1.2.9) (2023-05-02) From 1a67c50a9740427f93be977088afce47753a2cfb Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Tue, 2 May 2023 16:46:49 +0530 Subject: [PATCH 047/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 67cb16def..12021d5c9 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.10](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.0.1-beta.0...restapi-1.2.10) (2023-05-02) + + +### Bug Fixes + +* add password validation ([#345](https://github.com/ethereum-push-notification-service/push-sdk/issues/345)) ([863f48f](https://github.com/ethereum-push-notification-service/push-sdk/commit/863f48f9cbb3022e01f8715005cc8cd0fa96d0a8)) +* Merge branch 'main' into deployment ([a3cf078](https://github.com/ethereum-push-notification-service/push-sdk/commit/a3cf078f37d31859ae83129d2b704639bbaab62b)) + + + ## [0.0.1-beta.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.9...restapi-0.0.1-beta.0) (2023-05-02) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 49e570667..e9fd82b90 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "0.0.1-beta.0", + "version": "1.2.10", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 80248d0e1ff09d4605372660d72bc6451795f7d4 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Tue, 2 May 2023 16:47:39 +0530 Subject: [PATCH 048/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 12021d5c9..1fff29a8d 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -12,6 +12,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s +## [1.2.10](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.0.1-beta.0...restapi-1.2.10) (2023-05-02) + + +### Bug Fixes + +* add password validation ([#345](https://github.com/ethereum-push-notification-service/push-sdk/issues/345)) ([863f48f](https://github.com/ethereum-push-notification-service/push-sdk/commit/863f48f9cbb3022e01f8715005cc8cd0fa96d0a8)) +* Merge branch 'main' into deployment ([a3cf078](https://github.com/ethereum-push-notification-service/push-sdk/commit/a3cf078f37d31859ae83129d2b704639bbaab62b)) + + + ## [0.0.1-beta.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.9...restapi-0.0.1-beta.0) (2023-05-02) From d7a80e1b4174fe20eb8c04f72ee233c09445cbe9 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Thu, 4 May 2023 16:37:49 +0530 Subject: [PATCH 049/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20bet?= =?UTF-8?q?a=20release=20to=20restapi-v0.0.1-beta.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 4 ++++ packages/restapi/package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 1fff29a8d..9efeee6a9 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [0.0.1-beta.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.10...restapi-0.0.1-beta.1) (2023-05-04) + + + ## [1.2.10](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.0.1-beta.0...restapi-1.2.10) (2023-05-02) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index e9fd82b90..bec9e611f 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.10", + "version": "0.0.1-beta.1", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 318aed6a78070d947525eccb7a1c28c44c9d09df Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Mon, 8 May 2023 16:58:15 +0530 Subject: [PATCH 050/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 12 ++++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 9efeee6a9..1ae036cd3 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,18 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.11](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.0.1-beta.1...restapi-1.2.11) (2023-05-08) + + + +## [1.2.10](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.0.1-beta.1...restapi-1.2.10) (2023-05-08) + + + +## [0.0.1-alpha.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.0.1-beta.1...restapi-0.0.1-alpha.0) (2023-05-08) + + + ## [0.0.1-beta.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.10...restapi-0.0.1-beta.1) (2023-05-04) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index bec9e611f..b691892b2 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "0.0.1-beta.1", + "version": "1.2.11", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From a14362ba8f5b0428e1e300472980a30f55074cc0 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Mon, 8 May 2023 17:04:23 +0530 Subject: [PATCH 051/137] fix: linkedListHash test cases removed & CI version corrected --- packages/restapi/project.json | 4 ++-- packages/restapi/tests/lib/user/createUser.test.ts | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/packages/restapi/project.json b/packages/restapi/project.json index ca6f65668..90d27ba83 100644 --- a/packages/restapi/project.json +++ b/packages/restapi/project.json @@ -44,8 +44,8 @@ "preset": "angular", "commitMessageFormat": "ci(${projectName}): 🎉 cut beta release to ${projectName}-v${version}", "postTargets": ["restapi:build", "restapi:ci-publish"], - "releaseType": "prerelease", - "preid": "beta" + "version": "prerelease", + "preid": "alpha" } }, "ci-publish": { diff --git a/packages/restapi/tests/lib/user/createUser.test.ts b/packages/restapi/tests/lib/user/createUser.test.ts index 2e2d19293..0419a09a2 100644 --- a/packages/restapi/tests/lib/user/createUser.test.ts +++ b/packages/restapi/tests/lib/user/createUser.test.ts @@ -62,7 +62,6 @@ describe('Create Push Profile', () => { expect(user.about).to.be.null; expect(user.name).to.be.null; expect(user.numMsg).to.be.equal(0); - expect(user.linkedListHash).to.be.equal(''); }); it('Push Profile V3', async () => { const user = await create({ @@ -88,7 +87,6 @@ describe('Create Push Profile', () => { expect(user.about).to.be.null; expect(user.name).to.be.null; expect(user.numMsg).to.be.equal(0); - expect(user.linkedListHash).to.be.equal(''); }); it('Push Profile V4 ( NFT Profile )', async () => { const user = await create({ @@ -114,6 +112,5 @@ describe('Create Push Profile', () => { expect(user.about).to.be.null; expect(user.name).to.be.null; expect(user.numMsg).to.be.equal(0); - expect(user.linkedListHash).to.be.equal(''); }); }); From 42a810295573b3ebfdb535ec19723eac2144583e Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Mon, 8 May 2023 17:15:01 +0530 Subject: [PATCH 052/137] fix: update name to beta --- packages/restapi/project.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/restapi/project.json b/packages/restapi/project.json index 377672e06..90d27ba83 100644 --- a/packages/restapi/project.json +++ b/packages/restapi/project.json @@ -38,7 +38,7 @@ "postTargets": ["restapi:build", "restapi:ci-publish"] } }, - "ci-version-alpha": { + "ci-version-beta": { "executor": "@jscutlery/semver:version", "options": { "preset": "angular", From eec215c1897ec97bc0df3d0ed041b94838468c45 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Mon, 8 May 2023 18:26:02 +0530 Subject: [PATCH 053/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 1ae036cd3..f9f4106cb 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.12](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.11...restapi-1.2.12) (2023-05-08) + + +### Bug Fixes + +* change preid to alpha ([#358](https://github.com/ethereum-push-notification-service/push-sdk/issues/358)) ([6ac2c23](https://github.com/ethereum-push-notification-service/push-sdk/commit/6ac2c23c5e4a9f54f8bd6ae99aeb77c96417aae3)) +* changed AdditionalMeta structure ([#349](https://github.com/ethereum-push-notification-service/push-sdk/issues/349)) ([ee8ca02](https://github.com/ethereum-push-notification-service/push-sdk/commit/ee8ca022b2d948d08fa8503616898ff6c773062e)) + + + ## [1.2.11](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.0.1-beta.1...restapi-1.2.11) (2023-05-08) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index b691892b2..c94743a1c 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.11", + "version": "1.2.12", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 21a7b7ab2826179e0fe1e389a1775803859f04ca Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Mon, 8 May 2023 18:40:50 +0530 Subject: [PATCH 054/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index f9f4106cb..760b90567 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -12,6 +12,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s +## [1.2.12](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.11...restapi-1.2.12) (2023-05-08) + + +### Bug Fixes + +* change preid to alpha ([#358](https://github.com/ethereum-push-notification-service/push-sdk/issues/358)) ([6ac2c23](https://github.com/ethereum-push-notification-service/push-sdk/commit/6ac2c23c5e4a9f54f8bd6ae99aeb77c96417aae3)) +* changed AdditionalMeta structure ([#349](https://github.com/ethereum-push-notification-service/push-sdk/issues/349)) ([ee8ca02](https://github.com/ethereum-push-notification-service/push-sdk/commit/ee8ca022b2d948d08fa8503616898ff6c773062e)) + + + ## [1.2.11](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.0.1-beta.1...restapi-1.2.11) (2023-05-08) From 643eb54475f4b89dc2be3fa040dd11a6907ba6a7 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 10 May 2023 12:03:52 +0530 Subject: [PATCH 055/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.13?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 760b90567..7ca2db1d1 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.13](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.12...restapi-1.2.13) (2023-05-10) + + +### Bug Fixes + +* eip191v2 signatures for create and auth.update ([#359](https://github.com/ethereum-push-notification-service/push-sdk/issues/359)) ([48abaf6](https://github.com/ethereum-push-notification-service/push-sdk/commit/48abaf667dce2a1140c3622451c1c5b49d153c00)) +* Merge branch 'main' into deployment ([52cab60](https://github.com/ethereum-push-notification-service/push-sdk/commit/52cab60eedbc71d74697adbcd69133d1b93d0f5a)) + + + ## [1.2.12](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.11...restapi-1.2.12) (2023-05-08) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index c94743a1c..11f2eca89 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.12", + "version": "1.2.13", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 83756bb181a5f9dd9847f8e1686e2f1eb4582502 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Thu, 11 May 2023 17:04:15 +0530 Subject: [PATCH 056/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.14?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 7ca2db1d1..f2e07af7b 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.14](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.13...restapi-1.2.14) (2023-05-11) + + +### Bug Fixes + +* fix chat.chat for grps ([#382](https://github.com/ethereum-push-notification-service/push-sdk/issues/382)) ([052a75c](https://github.com/ethereum-push-notification-service/push-sdk/commit/052a75ca0f0fea7664d8c607fc85cdf37cc5d398)) +* Merge branch 'main' into deployment ([dd21949](https://github.com/ethereum-push-notification-service/push-sdk/commit/dd21949792a6028efdae17232ba16bb98605b017)) + + + ## [1.2.13](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.12...restapi-1.2.13) (2023-05-10) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 11f2eca89..5f3c39479 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.13", + "version": "1.2.14", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 17733ed82f2b2ec25ae010413ef37d64c07086fa Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Fri, 12 May 2023 12:51:45 +0530 Subject: [PATCH 057/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.15?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index f2e07af7b..8d999c6ec 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.15](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.14...restapi-1.2.15) (2023-05-12) + + +### Bug Fixes + +* fix eip712v2 ([#385](https://github.com/ethereum-push-notification-service/push-sdk/issues/385)) ([42c10ba](https://github.com/ethereum-push-notification-service/push-sdk/commit/42c10ba6f5331c9caf5db7136ba94d1a6ed05e10)) +* Merge branch 'main' into deployment ([3250a7c](https://github.com/ethereum-push-notification-service/push-sdk/commit/3250a7cfc3bb8fefd630179cd204deef023a5e6c)) + + + ## [1.2.14](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.13...restapi-1.2.14) (2023-05-11) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 5f3c39479..b4826c786 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.14", + "version": "1.2.15", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 6c321c760055fa9aaebf1ee5f693bbbad16fb9c8 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Sat, 13 May 2023 17:28:50 +0530 Subject: [PATCH 058/137] fix: update package json --- packages/uiweb/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index 89acb815b..2b2e92379 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -12,7 +12,7 @@ "peerDependencies": { "react": ">=16.8.0", "styled-components": "^5.3.5", - "@pushprotocol/restapi": "^1.2.8", + "@pushprotocol/restapi": "^1.2.15", "@pushprotocol/socket": "^0.4.2" } } From 5052b6ab721a942dcb7560bfe875296fa2d6a992 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Sat, 13 May 2023 17:33:04 +0530 Subject: [PATCH 059/137] fix: updated socket version --- packages/uiweb/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index 2b2e92379..9a38200c4 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -13,6 +13,6 @@ "react": ">=16.8.0", "styled-components": "^5.3.5", "@pushprotocol/restapi": "^1.2.15", - "@pushprotocol/socket": "^0.4.2" + "@pushprotocol/socket": "^0.5.0" } } From 7edacbf24495d8574d492bf3d5f4e8753364ad45 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Sat, 13 May 2023 17:33:29 +0530 Subject: [PATCH 060/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 10 ++++++++++ packages/uiweb/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index fea8965b1..810cc5a54 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.0.1...uiweb-1.0.2) (2023-05-13) + + +### Bug Fixes + +* update package json ([6c321c7](https://github.com/ethereum-push-notification-service/push-sdk/commit/6c321c760055fa9aaebf1ee5f693bbbad16fb9c8)) +* updated socket version ([5052b6a](https://github.com/ethereum-push-notification-service/push-sdk/commit/5052b6ab721a942dcb7560bfe875296fa2d6a992)) + + + ## [1.0.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.0.0...uiweb-1.0.1) (2023-05-01) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index 9a38200c4..4396a526e 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "1.0.1", + "version": "1.0.2", "publishConfig": { "registry": "https://registry.npmjs.org/" }, From 1301f999fe37b8e801a3d3e24aa45cf012db158a Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Sat, 13 May 2023 17:41:07 +0530 Subject: [PATCH 061/137] fix: socket lib update --- packages/socket/package-lock.json | 5 + packages/uiweb/package-lock.json | 215 ++++++++++++++++++++++++++++++ packages/uiweb/package.json | 1 + 3 files changed, 221 insertions(+) create mode 100644 packages/socket/package-lock.json create mode 100644 packages/uiweb/package-lock.json diff --git a/packages/socket/package-lock.json b/packages/socket/package-lock.json new file mode 100644 index 000000000..e5bec83f1 --- /dev/null +++ b/packages/socket/package-lock.json @@ -0,0 +1,5 @@ +{ + "name": "@pushprotocol/socket", + "version": "0.5.0", + "lockfileVersion": 1 +} diff --git a/packages/uiweb/package-lock.json b/packages/uiweb/package-lock.json new file mode 100644 index 000000000..764f96b37 --- /dev/null +++ b/packages/uiweb/package-lock.json @@ -0,0 +1,215 @@ +{ + "name": "@pushprotocol/uiweb", + "version": "1.0.2", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/runtime": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", + "requires": { + "regenerator-runtime": "^0.13.11" + } + }, + "@pushprotocol/socket": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@pushprotocol/socket/-/socket-0.5.0.tgz", + "integrity": "sha512-b6hzyUIMunmf2hLeTqTtJFvDG1Ngm+Rho00Z0mod+3khSOKy1Kwgpcpmj9bISLgr0ymeFqMYqNPj9+X89EAMZA==", + "requires": { + "socket.io-client": "^4.5.2", + "tslib": "^2.3.0" + } + }, + "@socket.io/component-emitter": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz", + "integrity": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==" + }, + "date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "requires": { + "@babel/runtime": "^7.21.0" + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "dependencies": { + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + } + } + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "emoji-picker-react": { + "version": "3.6.5", + "resolved": "https://registry.npmjs.org/emoji-picker-react/-/emoji-picker-react-3.6.5.tgz", + "integrity": "sha512-pfu3XkHSeqXjygyoKtRsmJdsNkRxhkE7hlnWrYBoPnm8V03aJ8Y9H5oRUQ+fF4WRZpjfJFsw5V7ewRVhuj/8cA==" + }, + "engine.io-client": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.4.0.tgz", + "integrity": "sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==", + "requires": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1", + "engine.io-parser": "~5.0.3", + "ws": "~8.11.0", + "xmlhttprequest-ssl": "~2.0.0" + } + }, + "engine.io-parser": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz", + "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==" + }, + "entities": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==" + }, + "html-dom-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-1.2.0.tgz", + "integrity": "sha512-2HIpFMvvffsXHFUFjso0M9LqM+1Lm22BF+Df2ba+7QHJXjk63pWChEnI6YG27eaWqUdfnh5/Vy+OXrNTtepRsg==", + "requires": { + "domhandler": "4.3.1", + "htmlparser2": "7.2.0" + } + }, + "html-react-parser": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/html-react-parser/-/html-react-parser-1.4.14.tgz", + "integrity": "sha512-pxhNWGie8Y+DGDpSh8cTa0k3g8PsDcwlfolA+XxYo1AGDeB6e2rdlyv4ptU9bOTiZ2i3fID+6kyqs86MN0FYZQ==", + "requires": { + "domhandler": "4.3.1", + "html-dom-parser": "1.2.0", + "react-property": "2.0.0", + "style-to-js": "1.1.1" + } + }, + "htmlparser2": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz", + "integrity": "sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.2", + "domutils": "^2.8.0", + "entities": "^3.0.1" + } + }, + "inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "react-property": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-property/-/react-property-2.0.0.tgz", + "integrity": "sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==" + }, + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "socket.io-client": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.6.1.tgz", + "integrity": "sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==", + "requires": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.2", + "engine.io-client": "~6.4.0", + "socket.io-parser": "~4.2.1" + } + }, + "socket.io-parser": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.2.tgz", + "integrity": "sha512-DJtziuKypFkMMHCm2uIshOYC7QaylbtzQwiMYDuCKy3OPkjLzu4B2vAhTlqipRHHzrI0NJeBAizTK7X+6m1jVw==", + "requires": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1" + } + }, + "style-to-js": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.1.tgz", + "integrity": "sha512-RJ18Z9t2B02sYhZtfWKQq5uplVctgvjTfLWT7+Eb1zjUjIrWzX5SdlkwLGQozrqarTmEzJJ/YmdNJCUNI47elg==", + "requires": { + "style-to-object": "0.3.0" + } + }, + "style-to-object": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz", + "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", + "requires": { + "inline-style-parser": "0.1.1" + } + }, + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "ws": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==" + }, + "xmlhttprequest-ssl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz", + "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" + } + } +} diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index 4396a526e..20c7a00db 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -5,6 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "dependencies": { + "@pushprotocol/socket": "^0.5.0", "date-fns": "^2.28.0", "emoji-picker-react": "^3.5.1", "html-react-parser": "^1.4.13" From 259b507725a74aea661c56cd6155b93e0af9d96f Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Sat, 13 May 2023 17:41:36 +0530 Subject: [PATCH 062/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index 810cc5a54..7cdac7208 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -5,6 +5,17 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.0.1...uiweb-1.0.2) (2023-05-13) +### Bug Fixes + +* socket lib update ([1301f99](https://github.com/ethereum-push-notification-service/push-sdk/commit/1301f999fe37b8e801a3d3e24aa45cf012db158a)) +* update package json ([6c321c7](https://github.com/ethereum-push-notification-service/push-sdk/commit/6c321c760055fa9aaebf1ee5f693bbbad16fb9c8)) +* updated socket version ([5052b6a](https://github.com/ethereum-push-notification-service/push-sdk/commit/5052b6ab721a942dcb7560bfe875296fa2d6a992)) + + + +## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.0.1...uiweb-1.0.2) (2023-05-13) + + ### Bug Fixes * update package json ([6c321c7](https://github.com/ethereum-push-notification-service/push-sdk/commit/6c321c760055fa9aaebf1ee5f693bbbad16fb9c8)) From 97f054613b0fcb9821e581b78d4acf00c3fa2847 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Fri, 19 May 2023 19:59:09 +0530 Subject: [PATCH 063/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.2.16?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 8d999c6ec..3358fd4ef 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.2.16](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.15...restapi-1.2.16) (2023-05-19) + + +### Bug Fixes + +* add deprecated info to chat.chat ([#392](https://github.com/ethereum-push-notification-service/push-sdk/issues/392)) ([d84ae64](https://github.com/ethereum-push-notification-service/push-sdk/commit/d84ae64c116adb7eea9e8faf7929b6eb3b74c657)) +* show hardcoded msg rather than throwing error ([#388](https://github.com/ethereum-push-notification-service/push-sdk/issues/388)) ([8962e10](https://github.com/ethereum-push-notification-service/push-sdk/commit/8962e10036916d0bc161324f5684f74bb7b74dc3)) + + + ## [1.2.15](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.14...restapi-1.2.15) (2023-05-12) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index b4826c786..ba5d2910f 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.15", + "version": "1.2.16", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From d63fd205fd25b2d5d299346085e7088c012b86a8 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Fri, 19 May 2023 20:35:37 +0530 Subject: [PATCH 064/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 14 ++++++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 4c225e662..8b78491e9 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,20 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +# [1.3.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.16...restapi-1.3.0) (2023-05-19) + + +### Bug Fixes + +* merge main ([b58d9d5](https://github.com/ethereum-push-notification-service/push-sdk/commit/b58d9d53bd91fa33200a854170fe7e3facff4371)) + + +### Features + +* add video sdk methods ([#395](https://github.com/ethereum-push-notification-service/push-sdk/issues/395)) ([4b9dd69](https://github.com/ethereum-push-notification-service/push-sdk/commit/4b9dd691ac1fde6a91be0478b20780f6755fbb4f)), closes [#295](https://github.com/ethereum-push-notification-service/push-sdk/issues/295) [#309](https://github.com/ethereum-push-notification-service/push-sdk/issues/309) [#357](https://github.com/ethereum-push-notification-service/push-sdk/issues/357) [#295](https://github.com/ethereum-push-notification-service/push-sdk/issues/295) + + + ## [1.2.16](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.15...restapi-1.2.16) (2023-05-19) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 8bdd9dcaf..be37b6920 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.2.16", + "version": "1.3.0", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 970e84d58009a2d276f3514affb5196f1dbfb984 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Mon, 22 May 2023 20:35:37 +0530 Subject: [PATCH 065/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 8b78491e9..9be102169 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.3.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.0...restapi-1.3.1) (2023-05-22) + + +### Bug Fixes + +* merge main ([dc2ba17](https://github.com/ethereum-push-notification-service/push-sdk/commit/dc2ba179cef2f834ac4fe13a6673095b97a6e019)) + + + # [1.3.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.16...restapi-1.3.0) (2023-05-19) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index be37b6920..a45285dd0 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.3.0", + "version": "1.3.1", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 8c5e4b02c55c18d78a79a813fe307abae4b13d71 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Mon, 22 May 2023 22:04:25 +0530 Subject: [PATCH 066/137] =?UTF-8?q?ci(socket):=20=F0=9F=8E=89=20cut=20rele?= =?UTF-8?q?ase=20to=20socket-v0.5.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/socket/CHANGELOG.md | 9 +++++++++ packages/socket/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/socket/CHANGELOG.md b/packages/socket/CHANGELOG.md index 608a00bc2..78b0cb728 100644 --- a/packages/socket/CHANGELOG.md +++ b/packages/socket/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [0.5.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/socket-0.5.0...socket-0.5.1) (2023-05-22) + + +### Bug Fixes + +* fixed nft socket ([#413](https://github.com/ethereum-push-notification-service/push-sdk/issues/413)) ([0d8c3ab](https://github.com/ethereum-push-notification-service/push-sdk/commit/0d8c3ab628ec29903bcc051254e5c54e94a2325e)) + + + # [0.5.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/socket-0.4.1...socket-0.5.0) (2023-04-27) diff --git a/packages/socket/package.json b/packages/socket/package.json index 18bd79d85..ff281d423 100644 --- a/packages/socket/package.json +++ b/packages/socket/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/socket", - "version": "0.5.0", + "version": "0.5.1", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 7953495adb26ed61673682a5eb9c20c162da699d Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Tue, 23 May 2023 17:58:38 +0530 Subject: [PATCH 067/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.3.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 785c5a8cb..909f52dcf 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.3.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.1...restapi-1.3.2) (2023-05-23) + + +### Bug Fixes + +* merge main ([5d0bc64](https://github.com/ethereum-push-notification-service/push-sdk/commit/5d0bc649b16c674d20e96eedc590a0efe6a5b77f)) + + + ## [1.3.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.0...restapi-1.3.1) (2023-05-22) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index a45285dd0..6ce3329d6 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.3.1", + "version": "1.3.2", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From ef769b280e3ec0a0dd04e115b4361cfe0df79508 Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 31 May 2023 13:16:10 +0530 Subject: [PATCH 068/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.3.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 12 ++++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index a3c332e6e..426ff45e6 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,18 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.3.3](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.2...restapi-1.3.3) (2023-05-31) + + +### Bug Fixes + +* add profile.update feature ([#410](https://github.com/ethereum-push-notification-service/push-sdk/issues/410)) ([361b930](https://github.com/ethereum-push-notification-service/push-sdk/commit/361b9303c5340238bcb7fa457370707ae864756b)) +* Merge branch 'main' into deployment ([59715aa](https://github.com/ethereum-push-notification-service/push-sdk/commit/59715aa307c0931e86476c18f78d495bc0de891f)) +* Merge branch 'main' into deployment ([1d52d6b](https://github.com/ethereum-push-notification-service/push-sdk/commit/1d52d6ba5aaadd70d7ccfd3904100586ad74d0f0)) +* removed undocumented fn ([#419](https://github.com/ethereum-push-notification-service/push-sdk/issues/419)) ([3fff974](https://github.com/ethereum-push-notification-service/push-sdk/commit/3fff974b1e2cfa3499439a246be190aaad2907e3)) + + + ## [1.3.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.1...restapi-1.3.2) (2023-05-23) ### Bug Fixes diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 6ce3329d6..cc93dfbfe 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.3.2", + "version": "1.3.3", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 029aa49528c25127101da013287d82a058592be8 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Mon, 5 Jun 2023 13:16:09 +0530 Subject: [PATCH 069/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.3.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 426ff45e6..fc33be748 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.3.4](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.3...restapi-1.3.4) (2023-06-05) + + +### Bug Fixes + +* fix subset for take whole array ([#429](https://github.com/ethereum-push-notification-service/push-sdk/issues/429)) ([88b5a4d](https://github.com/ethereum-push-notification-service/push-sdk/commit/88b5a4d8df6363087895c9f8c635b91253237a44)) + + + ## [1.3.3](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.2...restapi-1.3.3) (2023-05-31) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index cc93dfbfe..1aaef6fc9 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.3.3", + "version": "1.3.4", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 1c4521d080546301531c8a4dac0f3e53a5cb44fb Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Thu, 8 Jun 2023 16:43:07 +0530 Subject: [PATCH 070/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.3.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index fc33be748..25554c318 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.3.5](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.4...restapi-1.3.5) (2023-06-08) + + +### Bug Fixes + +* **video:** fix error on repeated acceptRequest calls ([#439](https://github.com/ethereum-push-notification-service/push-sdk/issues/439)) ([4936d1f](https://github.com/ethereum-push-notification-service/push-sdk/commit/4936d1f9d747401d341a7dc502e9044c00290c8a)) + + + ## [1.3.4](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.3...restapi-1.3.4) (2023-06-05) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 1aaef6fc9..dcb66a49b 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.3.4", + "version": "1.3.5", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 712a5e59d495b7dfbbfb484177afe14115b2216a Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Fri, 9 Jun 2023 11:19:44 +0530 Subject: [PATCH 071/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.3.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 25554c318..ddfe7723b 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.3.6](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.5...restapi-1.3.6) (2023-06-09) + + +### Bug Fixes + +* Merge branch 'main' into deployment ([af582f7](https://github.com/ethereum-push-notification-service/push-sdk/commit/af582f7efba83b69f5d29a97f772a00de16a0c25)) +* **video:** clear the peer instance in disconnect ([#445](https://github.com/ethereum-push-notification-service/push-sdk/issues/445)) ([db32d2c](https://github.com/ethereum-push-notification-service/push-sdk/commit/db32d2c901d8a208d409b6c09a716dee653b06f9)) + + + ## [1.3.5](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.4...restapi-1.3.5) (2023-06-08) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index dcb66a49b..2c35b1870 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.3.5", + "version": "1.3.6", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 36a5c072747d5c98df4abdf625e1b4ec80539a17 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Mon, 12 Jun 2023 14:08:58 +0530 Subject: [PATCH 072/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.3.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index ddfe7723b..1a248ace7 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.3.7](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.6...restapi-1.3.7) (2023-06-12) + + +### Bug Fixes + +* destroy peer instance in disconnect ([#451](https://github.com/ethereum-push-notification-service/push-sdk/issues/451)) ([439fd96](https://github.com/ethereum-push-notification-service/push-sdk/commit/439fd9627168e31b8626c88368eebb3a4443a092)) +* Merge branch 'main' into deployment ([494916b](https://github.com/ethereum-push-notification-service/push-sdk/commit/494916b3b4140f44cb5ae1d7d674a31a420d1995)) + + + ## [1.3.6](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.5...restapi-1.3.6) (2023-06-09) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 2c35b1870..d4a2d5a5f 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.3.6", + "version": "1.3.7", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 183e9c244e402eb00dc94d4ae40ddbaf5038dde8 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Mon, 12 Jun 2023 20:09:53 +0530 Subject: [PATCH 073/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.3.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 1a248ace7..21a5a2522 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.3.8](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.7...restapi-1.3.8) (2023-06-12) + + +### Bug Fixes + +* added types for Env and name in Ifeeds ([#452](https://github.com/ethereum-push-notification-service/push-sdk/issues/452)) ([301808e](https://github.com/ethereum-push-notification-service/push-sdk/commit/301808e81fc66df10a0f64b65eb7d13375702e00)) + + + ## [1.3.7](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.6...restapi-1.3.7) (2023-06-12) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index d4a2d5a5f..bfbe50baf 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.3.7", + "version": "1.3.8", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 3fe41c43e27291f5fda705c1a40ef3ea54fe564a Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Mon, 26 Jun 2023 21:37:19 +0530 Subject: [PATCH 074/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.3.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 11 +++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 21a5a2522..4d1b4a228 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,17 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.3.9](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.8...restapi-1.3.9) (2023-06-26) + + +### Bug Fixes + +* add blockedUsersList functionality to SDK ([#444](https://github.com/ethereum-push-notification-service/push-sdk/issues/444)) ([d66e3ff](https://github.com/ethereum-push-notification-service/push-sdk/commit/d66e3ff9fcb7b775705315654a759800b367122d)) +* Merge branch 'main' into deployment ([a95a1aa](https://github.com/ethereum-push-notification-service/push-sdk/commit/a95a1aaef0b2ae579e40e17e898f7df58a00388f)) +* **video:** add error handlers and turn server config ([#466](https://github.com/ethereum-push-notification-service/push-sdk/issues/466)) ([cda9a28](https://github.com/ethereum-push-notification-service/push-sdk/commit/cda9a28bbb99bf8bd40bcd13f3c486cbf1ebe5a2)) + + + ## [1.3.8](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.7...restapi-1.3.8) (2023-06-12) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index bfbe50baf..143b636d7 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.3.8", + "version": "1.3.9", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From ff840b1a086a0e827568c51d3b608ee29300e3ee Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Fri, 14 Jul 2023 15:41:47 +0530 Subject: [PATCH 075/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 15 +++++++++++++++ packages/uiweb/package.json | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index 7cdac7208..32df3a2bf 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,21 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +# [1.1.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.0.2...uiweb-1.1.0) (2023-07-14) + + +### Bug Fixes + +* fixed issue with build uiweb ([#541](https://github.com/ethereum-push-notification-service/push-sdk/issues/541)) ([3e00f81](https://github.com/ethereum-push-notification-service/push-sdk/commit/3e00f81af99de5bee468c3320062aec243708798)) + + +### Features + +* add video sdk methods ([#395](https://github.com/ethereum-push-notification-service/push-sdk/issues/395)) ([4b9dd69](https://github.com/ethereum-push-notification-service/push-sdk/commit/4b9dd691ac1fde6a91be0478b20780f6755fbb4f)), closes [#295](https://github.com/ethereum-push-notification-service/push-sdk/issues/295) [#309](https://github.com/ethereum-push-notification-service/push-sdk/issues/309) [#357](https://github.com/ethereum-push-notification-service/push-sdk/issues/357) [#295](https://github.com/ethereum-push-notification-service/push-sdk/issues/295) +* chat widget component ([#386](https://github.com/ethereum-push-notification-service/push-sdk/issues/386)) ([93a8fd8](https://github.com/ethereum-push-notification-service/push-sdk/commit/93a8fd8b41831ab61931336044a8f66cb9453edd)), closes [#460](https://github.com/ethereum-push-notification-service/push-sdk/issues/460) + + + ## [1.0.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.0.1...uiweb-1.0.2) (2023-05-13) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index 091b6cec3..91888e7ec 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "1.0.2", + "version": "1.1.0", "publishConfig": { "registry": "https://registry.npmjs.org/" }, From 9ed0b0fa83c3271cbaa804418d30a95a4960bf58 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Mon, 17 Jul 2023 21:23:51 +0530 Subject: [PATCH 076/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 10 ++++++++++ packages/uiweb/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index 32df3a2bf..032942928 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.1.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.0...uiweb-1.1.1) (2023-07-17) + + +### Bug Fixes + +* fixed build issues ([#550](https://github.com/ethereum-push-notification-service/push-sdk/issues/550)) ([0ce6e18](https://github.com/ethereum-push-notification-service/push-sdk/commit/0ce6e18a82901478fe3157788c716e5224f14bdb)) +* Merge branch 'main' into deployment ([2e2c904](https://github.com/ethereum-push-notification-service/push-sdk/commit/2e2c904040260726d5c5087aed6e33d0d722a0f4)) + + + # [1.1.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.0.2...uiweb-1.1.0) (2023-07-14) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index 14858c1e9..61a817332 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "1.1.0", + "version": "1.1.1", "publishConfig": { "registry": "https://registry.npmjs.org/" }, From 769b7a458fe867046794d6223643e0010b13aa55 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Mon, 17 Jul 2023 21:30:22 +0530 Subject: [PATCH 077/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 17 +++++++++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 8906e57d3..6b1d7307c 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +# [1.4.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.9...restapi-1.4.0) (2023-07-17) + + +### Bug Fixes + +* add tc fix null meta ([#502](https://github.com/ethereum-push-notification-service/push-sdk/issues/502)) ([6e48314](https://github.com/ethereum-push-notification-service/push-sdk/commit/6e48314c0e58989849f66a4ffe387d906623ef69)) +* added messageObj and Meta Messages support ([#485](https://github.com/ethereum-push-notification-service/push-sdk/issues/485)) ([2769aa6](https://github.com/ethereum-push-notification-service/push-sdk/commit/2769aa6bb0da6e7a4d28fca6b481db6cc2958d47)) +* added silent notifications ([#467](https://github.com/ethereum-push-notification-service/push-sdk/issues/467)) ([88bafe4](https://github.com/ethereum-push-notification-service/push-sdk/commit/88bafe49d489cfe399efa7166407a50574995b16)) +* fix unable to decrypt case ([#527](https://github.com/ethereum-push-notification-service/push-sdk/issues/527)) ([ccdf532](https://github.com/ethereum-push-notification-service/push-sdk/commit/ccdf532517e50e40ae0d0645c6c836360152813f)) + + +### Features + +* chat widget component ([#386](https://github.com/ethereum-push-notification-service/push-sdk/issues/386)) ([93a8fd8](https://github.com/ethereum-push-notification-service/push-sdk/commit/93a8fd8b41831ab61931336044a8f66cb9453edd)), closes [#460](https://github.com/ethereum-push-notification-service/push-sdk/issues/460) + + + ## [0.0.1-alpha.23](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-0.0.1-alpha.22...restapi-0.0.1-alpha.23) (2023-07-12) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 631fbc409..fce6c50a8 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "0.0.1-alpha.23", + "version": "1.4.0", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 6f97b99d3d816740ac752b8a5d59f1089b743a13 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Tue, 18 Jul 2023 14:18:41 +0530 Subject: [PATCH 078/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 6b1d7307c..f5835adf7 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.4.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.0...restapi-1.4.1) (2023-07-18) + + +### Bug Fixes + +* fix decryptConversation ([#554](https://github.com/ethereum-push-notification-service/push-sdk/issues/554)) ([ab01717](https://github.com/ethereum-push-notification-service/push-sdk/commit/ab0171716c18ea632d05a32bc29a67ff9b048785)) + + + # [1.4.0](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.3.9...restapi-1.4.0) (2023-07-17) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index fce6c50a8..322fe7d89 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.4.0", + "version": "1.4.1", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 7a16f326c36539b0bb23b350b7be6120784d6d6f Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Tue, 18 Jul 2023 14:43:25 +0530 Subject: [PATCH 079/137] fix: corrections --- .../sdk-backend-node/src/spaces/index.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/examples/sdk-backend-node/src/spaces/index.ts b/packages/examples/sdk-backend-node/src/spaces/index.ts index f320f7659..5d0187b1b 100644 --- a/packages/examples/sdk-backend-node/src/spaces/index.ts +++ b/packages/examples/sdk-backend-node/src/spaces/index.ts @@ -143,9 +143,9 @@ async function PushAPI_space_create( const response = await PushAPI.space.create({ spaceName, spaceDescription, - members: [`eip155:${randomWallet1}`, `eip155:${randomWallet2}`], + listeners: [`eip155:${randomWallet1}`, `eip155:${randomWallet2}`], spaceImage, - admins: [], + speakers: [], isPublic: true, signer: signer, pgpPrivateKey: pgpDecrpyptedPvtKey, @@ -191,14 +191,14 @@ async function PushAPI_space_update( spaceId, spaceName, spaceDescription, - members: [ + listeners: [ `eip155:${randomWallet1}`, `eip155:${randomWallet2}`, `eip155:${randomWallet3}`, `eip155:${signer.address}`, ], spaceImage, - admins: [`eip155:${signer.address}`], // takes signer as admin automatically, add more if you want to + speakers: [`eip155:${signer.address}`], // takes signer as admin automatically, add more if you want to scheduleAt: start, scheduleEnd: end, status: PushAPI.ChatStatus.PENDING, @@ -255,9 +255,9 @@ async function PushAPI_space_start_and_stop( dictionaries: [adjectives, colors, animals], }), spaceDescription, - members: [`eip155:${randomWallet1}`, `eip155:${randomWallet2}`], + listeners: [`eip155:${randomWallet1}`, `eip155:${randomWallet2}`], spaceImage, - admins: [], + speakers: [], isPublic: true, signer: signer, pgpPrivateKey: pgpDecrpyptedPvtKey, @@ -323,9 +323,9 @@ async function PushAPI_space_approve( dictionaries: [adjectives, colors, animals], }), spaceDescription, - members: [`eip155:${randomWallet1}`, `eip155:${randomWallet2}`], + listeners: [`eip155:${randomWallet1}`, `eip155:${randomWallet2}`], spaceImage, - admins: [], + speakers: [], isPublic: true, signer: signer, pgpPrivateKey: pgpDecrpyptedPvtKey, From 71d80b6c89438fea99cc4f65c7230c0aaf6bbc9d Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Tue, 18 Jul 2023 15:32:32 +0530 Subject: [PATCH 080/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.1.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 4 ++++ packages/uiweb/package.json | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index 032942928..c52390abf 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.1.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.1...uiweb-1.1.2) (2023-07-18) + + + ## [1.1.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.0...uiweb-1.1.1) (2023-07-17) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index f61be7256..52a47fb5c 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "1.1.1", + "version": "1.1.2", "publishConfig": { "registry": "https://registry.npmjs.org/" }, @@ -13,7 +13,7 @@ "html-react-parser": "^1.4.13", "gif-picker-react": "^1.1.0", "font-awesome": "^4.7.0", - "moment":"^2.29.4" + "moment": "^2.29.4" }, "peerDependencies": { "@pushprotocol/restapi": "^1.2.15", From 8c1a148132c3a182e8a358df9e5e1314bfad7639 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Thu, 20 Jul 2023 15:06:10 +0530 Subject: [PATCH 081/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.1.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 10 ++++++++++ packages/uiweb/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index c52390abf..aeb40b126 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.1.3](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.2...uiweb-1.1.3) (2023-07-20) + + +### Bug Fixes + +* fixed bugs ([#566](https://github.com/ethereum-push-notification-service/push-sdk/issues/566)) ([481d8fc](https://github.com/ethereum-push-notification-service/push-sdk/commit/481d8fcd7c40325654ba490640daabc38ee2f96e)) +* Merge branch 'main' into deployment ([9f77f39](https://github.com/ethereum-push-notification-service/push-sdk/commit/9f77f391b26111006891c10a3cc8eab06e26f14f)) + + + ## [1.1.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.1...uiweb-1.1.2) (2023-07-18) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index 52a47fb5c..8598fadfc 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "1.1.2", + "version": "1.1.3", "publishConfig": { "registry": "https://registry.npmjs.org/" }, From fa7acd2d133f8f34e73f493dfda7ed5c390cb2a8 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Thu, 20 Jul 2023 20:19:19 +0530 Subject: [PATCH 082/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.1.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 9 +++++++++ packages/uiweb/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index aeb40b126..182d1e341 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.1.4](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.3...uiweb-1.1.4) (2023-07-20) + + +### Bug Fixes + +* merge main ([24784e9](https://github.com/ethereum-push-notification-service/push-sdk/commit/24784e9ceca8f3757481f3be72efd0ca1ff3fba8)) + + + ## [1.1.3](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.2...uiweb-1.1.3) (2023-07-20) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index 8598fadfc..b8a2a0e2a 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "1.1.3", + "version": "1.1.4", "publishConfig": { "registry": "https://registry.npmjs.org/" }, From 76617017ddf2f32a0c9a304d30b72b2343a5ee86 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Thu, 20 Jul 2023 20:23:51 +0530 Subject: [PATCH 083/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 00b0d8534..26587e562 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.4.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.1...restapi-1.4.2) (2023-07-20) + + +### Bug Fixes + +* merge main ([24784e9](https://github.com/ethereum-push-notification-service/push-sdk/commit/24784e9ceca8f3757481f3be72efd0ca1ff3fba8)) + + + ## [1.4.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.0...restapi-1.4.1) (2023-07-18) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 322fe7d89..ba91e9d60 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.4.1", + "version": "1.4.2", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 8972cea9193d160680f140a022759647249a2beb Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Sat, 22 Jul 2023 10:33:12 +0530 Subject: [PATCH 084/137] Update README.md --- packages/restapi/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/restapi/README.md b/packages/restapi/README.md index a9e1cdaea..f12881d5c 100644 --- a/packages/restapi/README.md +++ b/packages/restapi/README.md @@ -9,7 +9,7 @@ This package gives access to Push Protocol (Push Nodes) APIs. Visit [Developer D - [How to use in your app?](#how-to-use-in-your-app) - [Installation](#installation) - [Import SDK](#import-sdk) - - [**About generating the "signer" object for different platforms**](#about-generating-the-signer-object-for-different-platforms) + - [About generating the "signer" object for different platforms](#about-generating-the-signer-object-for-different-platforms) - [When using in SERVER-SIDE code:](#when-using-in-server-side-code) - [When using in FRONT-END code:](#when-using-in-front-end-code) - [**About blockchain agnostic address format**](#about-blockchain-agnostic-address-format) From bfeee5f055af7b995de40fb3af2f17ce9b003d10 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Sat, 22 Jul 2023 10:42:33 +0530 Subject: [PATCH 085/137] Update README.md --- packages/restapi/README.md | 152 ++++++++++++++++++------------------- 1 file changed, 76 insertions(+), 76 deletions(-) diff --git a/packages/restapi/README.md b/packages/restapi/README.md index f12881d5c..9438227ff 100644 --- a/packages/restapi/README.md +++ b/packages/restapi/README.md @@ -12,93 +12,93 @@ This package gives access to Push Protocol (Push Nodes) APIs. Visit [Developer D - [About generating the "signer" object for different platforms](#about-generating-the-signer-object-for-different-platforms) - [When using in SERVER-SIDE code:](#when-using-in-server-side-code) - [When using in FRONT-END code:](#when-using-in-front-end-code) - - [**About blockchain agnostic address format**](#about-blockchain-agnostic-address-format) + - [About blockchain agnostic address format](#about-blockchain-agnostic-address-format) - [Chat blockchain agnostic address format](#chat-blockchain-agnostic-address-format) - - [**About Push contract addresses**](#about-push-contract-addresses) + - [About Push contract addresses](#about-push-contract-addresses) - [Push core contract address](#push-core-contract-address) - [Push communicator contract address](#push-communicator-contract-address) - [SDK Features](#sdk-features) - [For Notification](#for-notification) - - [**Fetching user notifications**](#fetching-user-notifications) - - [**Fetching user spam notifications**](#fetching-user-spam-notifications) - - [**Fetching user subscriptions**](#fetching-user-subscriptions) - - [**Fetching channel details**](#fetching-channel-details) - - [**Searching for channel(s)**](#searching-for-channels) - - [**Opt in to a channel**](#opt-in-to-a-channel) - - [**Opt out to a channel**](#opt-out-to-a-channel) - - [**Sending notification**](#sending-notification) - - [**Direct payload for single recipient(target)**](#direct-payload-for-single-recipienttarget) - - [**Direct payload for group of recipients(subset)**](#direct-payload-for-group-of-recipientssubset) - - [**Direct payload for all recipients(broadcast)**](#direct-payload-for-all-recipientsbroadcast) - - [**IPFS payload for single recipient(target)**](#ipfs-payload-for-single-recipienttarget) - - [**IPFS payload for group of recipients(subset)**](#ipfs-payload-for-group-of-recipientssubset) - - [**IPFS payload for all recipients(broadcast)**](#ipfs-payload-for-all-recipientsbroadcast) - - [**Minimal payload for single recipient(target)**](#minimal-payload-for-single-recipienttarget) - - [**Minimal payload for a group of recipient(subset)**](#minimal-payload-for-a-group-of-recipientsubset) - - [**Minimal payload for all recipients(broadcast)**](#minimal-payload-for-all-recipientsbroadcast) - - [**Graph payload for single recipient(target)**](#graph-payload-for-single-recipienttarget) - - [**Graph payload for group of recipients(subset)**](#graph-payload-for-group-of-recipientssubset) - - [**Graph payload for all recipients(broadcast)**](#graph-payload-for-all-recipientsbroadcast) + - [Fetching user notifications](#fetching-user-notifications) + - [Fetching user spam notifications](#fetching-user-spam-notifications) + - [Fetching user subscriptions](#fetching-user-subscriptions) + - [Fetching channel details](#fetching-channel-details) + - [Searching for channel(s)](#searching-for-channels) + - [Opt in to a channel](#opt-in-to-a-channel) + - [Opt out to a channel](#opt-out-to-a-channel) + - [Sending notification](#sending-notification) + - [Direct payload for single recipient(target)](#direct-payload-for-single-recipienttarget) + - [Direct payload for group of recipients(subset)](#direct-payload-for-group-of-recipientssubset) + - [Direct payload for all recipients(broadcast)](#direct-payload-for-all-recipientsbroadcast) + - [IPFS payload for single recipient(target)](#ipfs-payload-for-single-recipienttarget) + - [IPFS payload for group of recipients(subset)](#ipfs-payload-for-group-of-recipientssubset) + - [IPFS payload for all recipients(broadcast)](#ipfs-payload-for-all-recipientsbroadcast) + - [Minimal payload for single recipient(target)](#minimal-payload-for-single-recipienttarget) + - [Minimal payload for a group of recipient(subset)](#minimal-payload-for-a-group-of-recipientsubset) + - [Minimal payload for all recipients(broadcast)](#minimal-payload-for-all-recipientsbroadcast) + - [Graph payload for single recipient(target)](#graph-payload-for-single-recipienttarget) + - [Graph payload for group of recipients(subset)](#graph-payload-for-group-of-recipientssubset) + - [Graph payload for all recipients(broadcast)](#graph-payload-for-all-recipientsbroadcast) - [Notification Helper Utils](#notification-helper-utils) - - [**Parsing notifications**](#parsing-notifications) + - [Parsing notifications](#parsing-notifications) - [Advanced Notifications (WIP)](#advanced-notifications-wip) - [DEPRECATED](#deprecated) - - [**Get a channel's subscriber list of addresses**](#get-a-channels-subscriber-list-of-addresses) + - [Get a channel's subscriber list of addresses](#get-a-channels-subscriber-list-of-addresses) - [For Chat](#for-chat) - - [**Create user for chat**](#create-user-for-chat) - - [**Get user data for chat**](#get-user-data-for-chat) - - [**Decrypting encrypted pgp private key from user data**](#decrypting-encrypted-pgp-private-key-from-user-data) - - [**Updating User Profile**](#updating-user-profile) - - [**Fetching list of user chats**](#fetching-list-of-user-chats) - - [**Fetching list of user chat requests**](#fetching-list-of-user-chat-requests) - - [**Fetching conversation hash between two users**](#fetching-conversation-hash-between-two-users) - - [**Fetching latest chat between two users**](#fetching-latest-chat-between-two-users) - - [**Fetching chat history between two users**](#fetching-chat-history-between-two-users) - - [**To send a message**](#to-send-a-message) - - [**To approve a chat request**](#to-approve-a-chat-request) - - [**To create a group**](#to-create-a-group) - - [**To create a token gated group**](#to-create-a-token-gated-group) - - [**To update group details**](#to-update-group-details) - - [**To update token gated group details**](#to-update-token-gated-group-details) - - [**To get group details by group name**](#to-get-group-details-by-group-name) - - [**To get group details by chatId**](#to-get-group-details-by-chatid) - - [**Chat Helper Utils**](#chat-helper-utils) - - [**Decrypting messages**](#decrypting-messages) + - [Create user for chat](#create-user-for-chat) + - [Get user data for chat](#get-user-data-for-chat) + - [Decrypting encrypted pgp private key from user data](#decrypting-encrypted-pgp-private-key-from-user-data) + - [Updating User Profile](#updating-user-profile) + - [Fetching list of user chats](#fetching-list-of-user-chats) + - [Fetching list of user chat requests](#fetching-list-of-user-chat-requests) + - [Fetching conversation hash between two users](#fetching-conversation-hash-between-two-users) + - [Fetching latest chat between two users](#fetching-latest-chat-between-two-users) + - [Fetching chat history between two users](#fetching-chat-history-between-two-users) + - [To send a message](#to-send-a-message) + - [To approve a chat request](#to-approve-a-chat-request) + - [To create a group](#to-create-a-group) + - [To create a token gated group](#to-create-a-token-gated-group) + - [To update group details](#to-update-group-details) + - [To update token gated group details](#to-update-token-gated-group-details) + - [To get group details by group name](#to-get-group-details-by-group-name) + - [To get group details by chatId](#to-get-group-details-by-chatid) + - [Chat Helper Utils](#chat-helper-utils) + - [Decrypting messages](#decrypting-messages) - [For Video](#for-video) - - [**Instance Variables**](#instance-variables) - - [**peerInstance**](#peerinstance) - - [**signer**](#signer) - - [**chainId**](#chainid) - - [**pgpPrivateKey**](#pgpprivatekey) - - [**env**](#env) - - [**data**](#data) - - [**setData**](#setdata) - - [**Methods**](#methods) - - [**constructor**](#constructor) - - [**create**](#create) - - [**request**](#request) - - [**acceptRequest**](#acceptrequest) - - [**connect**](#connect) - - [**disconnect**](#disconnect) - - [**enableVideo**](#enablevideo) - - [**enableAudio**](#enableaudio) - - [**isInitiator**](#isinitiator) + - [Instance Variables](#instance-variables) + - [peerInstance](#peerinstance) + - [signer](#signer) + - [chainId](#chainid) + - [pgpPrivateKey](#pgpprivatekey) + - [env](#env) + - [data](#data) + - [setData](#setdata) + - [Methods](#methods) + - [constructor](#constructor) + - [create](#create) + - [request](#request) + - [acceptRequest](#acceptrequest) + - [connect](#connect) + - [disconnect](#disconnect) + - [enableVideo](#enablevideo) + - [enableAudio](#enableaudio) + - [isInitiator](#isinitiator) - [For Spaces](#for-spaces) - - [**To create a space**](#to-create-a-space) - - [**To create a token gated space**](#to-create-a-token-gated-space) - - [**To update space details**](#to-update-space-details) - - [**To update token gated space details**](#to-update-token-gated-space-details) - - [**To get space details by spaceId**](#to-get-space-details-by-spaceid) - - [**To start a space**](#to-start-a-space) - - [**To stop a space**](#to-stop-a-space) - - [**To approve a space request**](#to-approve-a-space-request) - - [**To add listeners to space**](#to-add-listeners-to-space) - - [**To remove listeners from space**](#to-remove-listeners-from-space) - - [**To add speakers to space**](#to-add-speakers-to-space) - - [**To remove speakers from space**](#to-remove-speakers-from-space) - - [**Fetching list of user spaces**](#fetching-list-of-user-spaces) - - [**Fetching list of user space requests**](#fetching-list-of-user-space-requests) - - [**Fetching list of trending spaces**](#fetching-list-of-trending-spaces) + - [To create a space](#to-create-a-space) + - [To create a token gated space](#to-create-a-token-gated-space) + - [To update space details](#to-update-space-details) + - [To update token gated space details](#to-update-token-gated-space-details) + - [To get space details by spaceId](#to-get-space-details-by-spaceid) + - [To start a space](#to-start-a-space) + - [To stop a space](#to-stop-a-space) + - [To approve a space request](#to-approve-a-space-request) + - [To add listeners to space](#to-add-listeners-to-space) + - [To remove listeners from space](#to-remove-listeners-from-space) + - [To add speakers to space](#to-add-speakers-to-space) + - [To remove speakers from space](#to-remove-speakers-from-space) + - [Fetching list of user spaces](#fetching-list-of-user-spaces) + - [Fetching list of user space requests](#fetching-list-of-user-space-requests) + - [Fetching list of trending spaces](#fetching-list-of-trending-spaces) # How to use in your app? From 110fca57d197e3688d2b5a1714a771a142391af9 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Sat, 22 Jul 2023 10:45:43 +0530 Subject: [PATCH 086/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 4 ++++ packages/restapi/package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 26587e562..90c24c680 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.4.3](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.2...restapi-1.4.3) (2023-07-22) + + + ## [1.4.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.1...restapi-1.4.2) (2023-07-20) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index ba91e9d60..d6df83be9 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.4.2", + "version": "1.4.3", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 9e691d8b92fd575efab2a083754364ea007bdbae Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Thu, 27 Jul 2023 17:45:39 +0530 Subject: [PATCH 087/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 4 ++++ packages/restapi/package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index d0241adc9..617d9f259 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.4.4](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.3...restapi-1.4.4) (2023-07-27) + + + ## [1.4.3](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.2...restapi-1.4.3) (2023-07-22) ## [1.4.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.1...restapi-1.4.2) (2023-07-20) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index d6df83be9..63b9e4d6f 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.4.3", + "version": "1.4.4", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 3e8e7d88adb1b5ee9ee4cc07b012a5407df63a74 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Thu, 27 Jul 2023 18:16:33 +0530 Subject: [PATCH 088/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.1.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 4 ++++ packages/uiweb/package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index 182d1e341..c5fbf59f3 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.1.5](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.4...uiweb-1.1.5) (2023-07-27) + + + ## [1.1.4](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.3...uiweb-1.1.4) (2023-07-20) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index b8a2a0e2a..f9ef5e68e 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "1.1.4", + "version": "1.1.5", "publishConfig": { "registry": "https://registry.npmjs.org/" }, From ebddf3aecb522ce8ed11d7390e29d84394bf0b94 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Fri, 28 Jul 2023 15:34:56 +0530 Subject: [PATCH 089/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.1.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 9 +++++++++ packages/uiweb/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index c5fbf59f3..d81aa9dba 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.1.6](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.5...uiweb-1.1.6) (2023-07-28) + + +### Bug Fixes + +* Merge branch 'main' into deployment ([e33017a](https://github.com/ethereum-push-notification-service/push-sdk/commit/e33017afb2d4e9361d5df47e0f7e726ecdffbc32)) + + + ## [1.1.5](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.4...uiweb-1.1.5) (2023-07-27) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index f9ef5e68e..db0dfad7d 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "1.1.5", + "version": "1.1.6", "publishConfig": { "registry": "https://registry.npmjs.org/" }, From f9c5178562333321227ebcc45d4ea2074a7c173f Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Mon, 31 Jul 2023 16:51:44 +0530 Subject: [PATCH 090/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.1.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 9 +++++++++ packages/uiweb/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index d81aa9dba..ced9a14af 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.1.7](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.6...uiweb-1.1.7) (2023-07-31) + + +### Bug Fixes + +* Merge branch 'main' into deployment ([9755baf](https://github.com/ethereum-push-notification-service/push-sdk/commit/9755baf3d4bcd3ab3fd365fad9d8fb7623fda58f)) + + + ## [1.1.6](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.5...uiweb-1.1.6) (2023-07-28) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index db0dfad7d..18011909a 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "1.1.6", + "version": "1.1.7", "publishConfig": { "registry": "https://registry.npmjs.org/" }, From e5790a2367d1b309bb51e03cae7109dcde2c61c0 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Thu, 3 Aug 2023 13:35:25 +0530 Subject: [PATCH 091/137] =?UTF-8?q?ci(socket):=20=F0=9F=8E=89=20cut=20rele?= =?UTF-8?q?ase=20to=20socket-v0.5.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/socket/CHANGELOG.md | 9 +++++++++ packages/socket/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/socket/CHANGELOG.md b/packages/socket/CHANGELOG.md index 78b0cb728..98aad4563 100644 --- a/packages/socket/CHANGELOG.md +++ b/packages/socket/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [0.5.2](https://github.com/ethereum-push-notification-service/push-sdk/compare/socket-0.5.1...socket-0.5.2) (2023-08-03) + + +### Bug Fixes + +* socket options ([#601](https://github.com/ethereum-push-notification-service/push-sdk/issues/601)) ([d821535](https://github.com/ethereum-push-notification-service/push-sdk/commit/d821535d3e800c8821206fc387b346c990c02b5a)) + + + ## [0.5.1](https://github.com/ethereum-push-notification-service/push-sdk/compare/socket-0.5.0...socket-0.5.1) (2023-05-22) diff --git a/packages/socket/package.json b/packages/socket/package.json index ff281d423..13ebf5808 100644 --- a/packages/socket/package.json +++ b/packages/socket/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/socket", - "version": "0.5.1", + "version": "0.5.2", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From b0dcc26f9e1e7486f674e0d7917356207dc1ec0f Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Fri, 4 Aug 2023 14:17:10 +0530 Subject: [PATCH 092/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index d75bdc083..8f9a24fd2 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.4.5](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.4...restapi-1.4.5) (2023-08-04) + + +### Bug Fixes + +* merge main ([b9e4440](https://github.com/ethereum-push-notification-service/push-sdk/commit/b9e44408fa4c97720b12217486e8d13ef3caeb00)) + + + ## [1.4.4](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.3...restapi-1.4.4) (2023-07-27) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 37fd3e517..631835798 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.4.4", + "version": "1.4.5", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 6fc57f47d3bbee48262e072f01f6c4ffa8854d41 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Fri, 4 Aug 2023 14:26:06 +0530 Subject: [PATCH 093/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.1.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 9 +++++++++ packages/uiweb/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index ced9a14af..7555e7b21 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.1.8](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.7...uiweb-1.1.8) (2023-08-04) + + +### Bug Fixes + +* merge main ([b9e4440](https://github.com/ethereum-push-notification-service/push-sdk/commit/b9e44408fa4c97720b12217486e8d13ef3caeb00)) + + + ## [1.1.7](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.6...uiweb-1.1.7) (2023-07-31) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index 18011909a..85147ea15 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "1.1.7", + "version": "1.1.8", "publishConfig": { "registry": "https://registry.npmjs.org/" }, From 79cd37464936ae2991df94fe733e42eb50a21a58 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Wed, 9 Aug 2023 16:44:12 +0530 Subject: [PATCH 094/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 8f9a24fd2..f1e522e0e 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.4.6](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.5...restapi-1.4.6) (2023-08-09) + + +### Bug Fixes + +* Merge branch 'main' into deployment ([75fbda5](https://github.com/ethereum-push-notification-service/push-sdk/commit/75fbda5fdaf152f40758cb62ebc2dca4890f0340)) +* **sdk-frontend:** comment out spaces UI to remove build issues ([#618](https://github.com/ethereum-push-notification-service/push-sdk/issues/618)) ([769c20d](https://github.com/ethereum-push-notification-service/push-sdk/commit/769c20d5eb42b758277e57699793b8e76deeab94)) + + + ## [1.4.5](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.4...restapi-1.4.5) (2023-08-04) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 631835798..76ea33b9d 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.4.5", + "version": "1.4.6", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 0142fb70a3ddbb700f941d64afb773b22f275f3f Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Thu, 10 Aug 2023 05:34:14 +0530 Subject: [PATCH 095/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.1.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 10 ++++++++++ packages/uiweb/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index 7555e7b21..6378f41a9 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.1.9](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.8...uiweb-1.1.9) (2023-08-10) + + +### Bug Fixes + +* hide few spaces features ([#622](https://github.com/ethereum-push-notification-service/push-sdk/issues/622)) ([0e2556c](https://github.com/ethereum-push-notification-service/push-sdk/commit/0e2556c6bbe3438cd30851ffdd9764b027f42f6e)) +* Merge branch 'main' into deployment ([843cd01](https://github.com/ethereum-push-notification-service/push-sdk/commit/843cd0169a270bbab69922021edf312616de3802)) + + + ## [1.1.8](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.7...uiweb-1.1.8) (2023-08-04) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index 85147ea15..da845c0af 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "1.1.8", + "version": "1.1.9", "publishConfig": { "registry": "https://registry.npmjs.org/" }, From 04c7de2523573678b4bb49be61a5dfad6dbaa3d3 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Thu, 10 Aug 2023 14:07:24 +0530 Subject: [PATCH 096/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 11 +++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index f1e522e0e..428428337 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,17 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.4.7](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.6...restapi-1.4.7) (2023-08-10) + + +### Bug Fixes + +* allow to create empty groups just with group creator. ([#607](https://github.com/ethereum-push-notification-service/push-sdk/issues/607)) ([7d14e24](https://github.com/ethereum-push-notification-service/push-sdk/commit/7d14e248626422cf079e4b99dbdfa3ce6cd796da)) +* CreateUserPropsWithProfile ([#612](https://github.com/ethereum-push-notification-service/push-sdk/issues/612)) ([32125b5](https://github.com/ethereum-push-notification-service/push-sdk/commit/32125b5408b45e8a51ba9a16acc1250fc56decae)) +* deprecation notice ([#581](https://github.com/ethereum-push-notification-service/push-sdk/issues/581)) ([6cd4b1e](https://github.com/ethereum-push-notification-service/push-sdk/commit/6cd4b1ea8626849a5f78588a21ac66db2bd293df)) + + + ## [1.4.6](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.5...restapi-1.4.6) (2023-08-09) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 76ea33b9d..c8b14a62c 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.4.6", + "version": "1.4.7", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From a50488c91347f309d4671dfdfde397a01443fa92 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Thu, 10 Aug 2023 14:26:07 +0530 Subject: [PATCH 097/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 428428337..b318349d7 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.4.8](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.7...restapi-1.4.8) (2023-08-10) + + +### Bug Fixes + +* Merge branch 'main' into deployment ([e504703](https://github.com/ethereum-push-notification-service/push-sdk/commit/e5047039c6ec668c0a2ad5950d7a5ba227c4f50a)) + + + ## [1.4.7](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.6...restapi-1.4.7) (2023-08-10) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index c8b14a62c..c47cd3dfc 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.4.7", + "version": "1.4.8", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From ae25b693c54f328ec6983b071d1e5ecb9d35f1f9 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Thu, 10 Aug 2023 14:35:02 +0530 Subject: [PATCH 098/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.1.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 4 ++++ packages/uiweb/package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index 6378f41a9..eb30e71a6 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.1.10](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.9...uiweb-1.1.10) (2023-08-10) + + + ## [1.1.9](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.8...uiweb-1.1.9) (2023-08-10) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index da845c0af..1542f18cd 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "1.1.9", + "version": "1.1.10", "publishConfig": { "registry": "https://registry.npmjs.org/" }, From 4f690df9a08c7b7ec055ad80d8f880d8d29b773c Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Fri, 11 Aug 2023 15:41:56 +0530 Subject: [PATCH 099/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index b318349d7..4d10e69cb 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.4.9](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.8...restapi-1.4.9) (2023-08-11) + + +### Bug Fixes + +* added Reaction MessageType ([#633](https://github.com/ethereum-push-notification-service/push-sdk/issues/633)) ([2856ece](https://github.com/ethereum-push-notification-service/push-sdk/commit/2856ece83e0a42335ff7e5e2f8db83d2aa7fd007)) +* Merge branch 'main' into deployment ([cd9f1e0](https://github.com/ethereum-push-notification-service/push-sdk/commit/cd9f1e0dfb6fc7aa6ff3648d17509fe43aa824f6)) + + + ## [1.4.8](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.7...restapi-1.4.8) (2023-08-10) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index c47cd3dfc..241e2296f 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.4.8", + "version": "1.4.9", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 66bce15964885cbb76a21539d450913504143236 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Fri, 18 Aug 2023 09:45:22 +0530 Subject: [PATCH 100/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 10 ++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 4d10e69cb..ca8aa7773 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.4.10](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.9...restapi-1.4.10) (2023-08-18) + + +### Bug Fixes + +* add meta ([#643](https://github.com/ethereum-push-notification-service/push-sdk/issues/643)) ([06689e7](https://github.com/ethereum-push-notification-service/push-sdk/commit/06689e75b58dc93981302b7a5feff28f8486cb85)) +* added decryptedPGPPrivateKey in the returned response for client ([#650](https://github.com/ethereum-push-notification-service/push-sdk/issues/650)) ([16646b4](https://github.com/ethereum-push-notification-service/push-sdk/commit/16646b4e2f6792c2fb30c5e544012244e5b5a6fe)) + + + ## [1.4.9](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.8...restapi-1.4.9) (2023-08-11) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 241e2296f..bf297c806 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.4.9", + "version": "1.4.10", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From b7bc27dc3f4ecf5e80a630a6678953ee6dfb4770 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Fri, 18 Aug 2023 16:06:07 +0530 Subject: [PATCH 101/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 9111f5bb4..7856279ae 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.4.11](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.10...restapi-1.4.11) (2023-08-18) + + +### Bug Fixes + +* merge main ([f53a5e2](https://github.com/ethereum-push-notification-service/push-sdk/commit/f53a5e279e3780566b4e2a9242b3555ef50fb4a6)) + + + ## [1.4.10](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.9...restapi-1.4.10) (2023-08-18) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index bf297c806..c8baca2d9 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.4.10", + "version": "1.4.11", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 674d316db580bbb591b99cc1900c29110f925a84 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Fri, 18 Aug 2023 18:24:21 +0530 Subject: [PATCH 102/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 9 +++++++++ packages/restapi/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index 7856279ae..aedea7fa3 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.4.12](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.11...restapi-1.4.12) (2023-08-18) + + +### Bug Fixes + +* remove isSupported ([#661](https://github.com/ethereum-push-notification-service/push-sdk/issues/661)) ([3c3301c](https://github.com/ethereum-push-notification-service/push-sdk/commit/3c3301c47547ee0ea1fbc412eac6395d6cf3de77)) + + + ## [1.4.11](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.10...restapi-1.4.11) (2023-08-18) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index c8baca2d9..23da5dd70 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.4.11", + "version": "1.4.12", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From 4cf5d676f61462d236db4cd17bfa42eb960b0733 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Fri, 18 Aug 2023 18:51:59 +0530 Subject: [PATCH 103/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=20to=20uiweb-v1.1.11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/uiweb/CHANGELOG.md | 4 ++++ packages/uiweb/package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md index 4589c675c..0d5db8b2a 100644 --- a/packages/uiweb/CHANGELOG.md +++ b/packages/uiweb/CHANGELOG.md @@ -2,6 +2,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.1.11](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.10...uiweb-1.1.11) (2023-08-18) + + + ## [1.1.10](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.9...uiweb-1.1.10) (2023-08-10) diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json index 7e3eea05b..60e6389b0 100644 --- a/packages/uiweb/package.json +++ b/packages/uiweb/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/uiweb", - "version": "0.0.1-alpha.0", + "version": "1.1.11", "publishConfig": { "registry": "https://registry.npmjs.org/" }, From 0f6df723f66d25eeef28f0342af044d6b3247f25 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Wed, 23 Aug 2023 16:58:52 +0530 Subject: [PATCH 104/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?= =?UTF-8?q?ease=20to=20restapi-v1.4.13?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/restapi/CHANGELOG.md | 11 +++++++++++ packages/restapi/package.json | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md index aedea7fa3..eb159aea2 100644 --- a/packages/restapi/CHANGELOG.md +++ b/packages/restapi/CHANGELOG.md @@ -2,6 +2,17 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [1.4.13](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.12...restapi-1.4.13) (2023-08-23) + + +### Bug Fixes + +* changes messageObj for meta and reaction message type ([#645](https://github.com/ethereum-push-notification-service/push-sdk/issues/645)) ([4077049](https://github.com/ethereum-push-notification-service/push-sdk/commit/407704960117a8c7461e90cccf71a53696fa6770)) +* Merge branch 'main' into deployment ([5769701](https://github.com/ethereum-push-notification-service/push-sdk/commit/576970118ed6c8d5de8a83424aa3266f252ba586)) +* origin in user creation ([#665](https://github.com/ethereum-push-notification-service/push-sdk/issues/665)) ([13c471b](https://github.com/ethereum-push-notification-service/push-sdk/commit/13c471b6e4b17efe5ec15372373283db3f7fca1e)) + + + ## [1.4.12](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.11...restapi-1.4.12) (2023-08-18) diff --git a/packages/restapi/package.json b/packages/restapi/package.json index 822456243..37ab14e48 100644 --- a/packages/restapi/package.json +++ b/packages/restapi/package.json @@ -1,6 +1,6 @@ { "name": "@pushprotocol/restapi", - "version": "1.4.12", + "version": "1.4.13", "type": "commonjs", "publishConfig": { "registry": "https://registry.npmjs.org/" From a6d5e751fd4ba8037645fff64f41a8df701a36e0 Mon Sep 17 00:00:00 2001 From: Mohammed S Date: Wed, 23 Aug 2023 17:20:49 +0530 Subject: [PATCH 105/137] fix: update read me file --- packages/restapi/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/restapi/README.md b/packages/restapi/README.md index 88f61c8c7..aa947fdd8 100644 --- a/packages/restapi/README.md +++ b/packages/restapi/README.md @@ -3436,7 +3436,8 @@ There are two main types of conditions: `PUSH` and `GUILD`. PUSH conditions may relate to: - **ERC721**: Needs an address and an amount, and can only have the `owner` subcategory. -- **ERC20**: Needs an address, an amount, and a decimals value. It can only have the `holder` subcategory. +. Comparison also can be given '>' | '<' | '>=' | '<=' | '==' | '!='. Default is > (greater than , that is minimum amount required) +- **ERC20**: Needs an address, an amount, and a decimals value. It can only have the `holder` subcategory. Comparison also can be given '>' | '<' | '>=' | '<=' | '==' | '!='. Default is > (greater than , that is minimum amount required) - **CustomEndpoint**: The `CustomEndpoint` provides a flexible way to validate a condition based on the response from a custom API endpoint. This is particularly useful when you want to incorporate data or validation logic that is external to your main application. As of now the Get API is supported and should return the 200 OK if the user is allowed to access.
   {

From 8cf6d2bea7c9e72fd6cb3db76da76eb44225b92d Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Wed, 23 Aug 2023 17:31:35 +0530
Subject: [PATCH 106/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.14?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 9 +++++++++
 packages/restapi/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index eb159aea2..9b264465c 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.14](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.13...restapi-1.4.14) (2023-08-23)
+
+
+### Bug Fixes
+
+* update read me file ([a6d5e75](https://github.com/ethereum-push-notification-service/push-sdk/commit/a6d5e751fd4ba8037645fff64f41a8df701a36e0))
+
+
+
 ## [1.4.13](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.12...restapi-1.4.13) (2023-08-23)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index 37ab14e48..1ae47b46e 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.13",
+  "version": "1.4.14",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From aee7a33991a9da9df2a748adb1c18a02a31c02a0 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Wed, 23 Aug 2023 19:47:13 +0530
Subject: [PATCH 107/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.15?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 10 ++++++++++
 packages/restapi/package.json |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 9b264465c..e6581f531 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,16 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.15](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.14...restapi-1.4.15) (2023-08-23)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([64278ec](https://github.com/ethereum-push-notification-service/push-sdk/commit/64278eccd6fd51d02b123ec00e1d36fa94a23608))
+* **spaces:** broadcast changes and UX fixes ([#674](https://github.com/ethereum-push-notification-service/push-sdk/issues/674)) ([375ebe7](https://github.com/ethereum-push-notification-service/push-sdk/commit/375ebe7f7e757d84df62cd103884e75d04bcc2b0)), closes [#642](https://github.com/ethereum-push-notification-service/push-sdk/issues/642) [#657](https://github.com/ethereum-push-notification-service/push-sdk/issues/657) [#656](https://github.com/ethereum-push-notification-service/push-sdk/issues/656)
+
+
+
 ## [1.4.14](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.13...restapi-1.4.14) (2023-08-23)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index 133c9154d..6b648549b 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.14",
+  "version": "1.4.15",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 29f0572deb71526539f916c21d2fe9b04cd43a40 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Wed, 23 Aug 2023 21:54:09 +0530
Subject: [PATCH 108/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?=
 =?UTF-8?q?se=20to=20uiweb-v1.1.12?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/uiweb/CHANGELOG.md | 10 ++++++++++
 packages/uiweb/package.json |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md
index 0d5db8b2a..4a132bf56 100644
--- a/packages/uiweb/CHANGELOG.md
+++ b/packages/uiweb/CHANGELOG.md
@@ -2,6 +2,16 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.1.12](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.11...uiweb-1.1.12) (2023-08-23)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([64278ec](https://github.com/ethereum-push-notification-service/push-sdk/commit/64278eccd6fd51d02b123ec00e1d36fa94a23608))
+* **spaces:** broadcast changes and UX fixes ([#674](https://github.com/ethereum-push-notification-service/push-sdk/issues/674)) ([375ebe7](https://github.com/ethereum-push-notification-service/push-sdk/commit/375ebe7f7e757d84df62cd103884e75d04bcc2b0)), closes [#642](https://github.com/ethereum-push-notification-service/push-sdk/issues/642) [#657](https://github.com/ethereum-push-notification-service/push-sdk/issues/657) [#656](https://github.com/ethereum-push-notification-service/push-sdk/issues/656)
+
+
+
 ## [1.1.11](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.10...uiweb-1.1.11) (2023-08-18)
 
 
diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json
index 60e6389b0..cc2bf67ce 100644
--- a/packages/uiweb/package.json
+++ b/packages/uiweb/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/uiweb",
-  "version": "1.1.11",
+  "version": "1.1.12",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"
   },

From cbfbec0b17a460361b4b5ecef84aaa45b06ab7a2 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Thu, 24 Aug 2023 15:11:38 +0530
Subject: [PATCH 109/137] fix: dummy change

---
 packages/uiweb/README.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/packages/uiweb/README.md b/packages/uiweb/README.md
index d7bbe3e09..fe84d77d5 100644
--- a/packages/uiweb/README.md
+++ b/packages/uiweb/README.md
@@ -330,3 +330,4 @@ Allowed Options (props with * are mandatory)
 | activeChat    | string  | -       | to open a particular chat when modal first opens               |
 | onClose     | () => void  | -       | function to execute when modal is minimised   |
 | env  | string  | 'prod'      | API env - 'prod', 'staging', 'dev'|
+

From c76c01c8e8fa6f23c03484cf89389de3a83cb488 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Thu, 24 Aug 2023 15:31:19 +0530
Subject: [PATCH 110/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?=
 =?UTF-8?q?se=20to=20uiweb-v1.1.13?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/uiweb/CHANGELOG.md | 9 +++++++++
 packages/uiweb/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md
index 4a132bf56..460f32368 100644
--- a/packages/uiweb/CHANGELOG.md
+++ b/packages/uiweb/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.1.13](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.12...uiweb-1.1.13) (2023-08-24)
+
+
+### Bug Fixes
+
+* dummy change ([cbfbec0](https://github.com/ethereum-push-notification-service/push-sdk/commit/cbfbec0b17a460361b4b5ecef84aaa45b06ab7a2))
+
+
+
 ## [1.1.12](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.11...uiweb-1.1.12) (2023-08-23)
 
 
diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json
index cc2bf67ce..04a0fc8d3 100644
--- a/packages/uiweb/package.json
+++ b/packages/uiweb/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/uiweb",
-  "version": "1.1.12",
+  "version": "1.1.13",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"
   },

From 8f3eaf363f8a4558403bbef98d6d2c433471e8fd Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Thu, 24 Aug 2023 16:45:17 +0530
Subject: [PATCH 111/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.16?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 10 ++++++++++
 packages/restapi/package.json |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index e6581f531..3f3e5fe92 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,16 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.16](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.15...restapi-1.4.16) (2023-08-24)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([5d959cc](https://github.com/ethereum-push-notification-service/push-sdk/commit/5d959cc4d11b8a937612f2c5b9ef15c961f3ffb1))
+* Merge branch 'main' into deployment ([d5da240](https://github.com/ethereum-push-notification-service/push-sdk/commit/d5da2403d44118d919d9ed14cc6f37372701fc3b))
+
+
+
 ## [1.4.15](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.14...restapi-1.4.15) (2023-08-23)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index 6b648549b..c04cf2647 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.15",
+  "version": "1.4.16",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 7ca84a659c2a0728b2ff525e16a079b4f9464b4a Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Fri, 1 Sep 2023 16:21:15 +0530
Subject: [PATCH 112/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.17?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 9 +++++++++
 packages/restapi/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 3f3e5fe92..f43f1acf3 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.17](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.16...restapi-1.4.17) (2023-09-01)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([7f424d5](https://github.com/ethereum-push-notification-service/push-sdk/commit/7f424d511ac854049044846e30810f773e8c89e1))
+
+
+
 ## [1.4.16](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.15...restapi-1.4.16) (2023-08-24)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index c04cf2647..fc4308c54 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.16",
+  "version": "1.4.17",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From eeefd3df013dd231d5100a14898a627f5a5071b7 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Mon, 4 Sep 2023 18:51:52 +0530
Subject: [PATCH 113/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.18?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 10 ++++++++++
 packages/restapi/package.json |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index f43f1acf3..5e4f18e10 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,16 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.18](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.17...restapi-1.4.18) (2023-09-04)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([b8212e3](https://github.com/ethereum-push-notification-service/push-sdk/commit/b8212e3009457515fa37ae2f23d95ea891e2c771))
+* **video:** send initial message in request connect callback ([#698](https://github.com/ethereum-push-notification-service/push-sdk/issues/698)) ([e515ca7](https://github.com/ethereum-push-notification-service/push-sdk/commit/e515ca7758a31992d5b85a1af8949e438b088d3d))
+
+
+
 ## [1.4.17](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.16...restapi-1.4.17) (2023-09-01)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index fc4308c54..bbead835f 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.17",
+  "version": "1.4.18",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 33616bcf137e570c953b5d231d4ec996c183b4b2 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Wed, 6 Sep 2023 14:26:33 +0530
Subject: [PATCH 114/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.19?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 10 ++++++++++
 packages/restapi/package.json |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 5e4f18e10..5a02abe6d 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,16 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.19](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.18...restapi-1.4.19) (2023-09-06)
+
+
+### Bug Fixes
+
+* merge main ([0dcf00f](https://github.com/ethereum-push-notification-service/push-sdk/commit/0dcf00f77e73d0ebb513adda826e8994cf6207c2))
+* Push API next set of functions ([#697](https://github.com/ethereum-push-notification-service/push-sdk/issues/697)) ([360e387](https://github.com/ethereum-push-notification-service/push-sdk/commit/360e3874e9e48cd0d4339faa1666afee7023c612))
+
+
+
 ## [1.4.18](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.17...restapi-1.4.18) (2023-09-04)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index bbead835f..a094d760f 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.18",
+  "version": "1.4.19",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From ccdabb89c2a6642ce21c9b276d2388717da3e7bb Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Fri, 22 Sep 2023 18:41:59 +0530
Subject: [PATCH 115/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.20?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 10 ++++++++++
 packages/restapi/package.json |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 5a02abe6d..0fddb05ca 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,16 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.20](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.19...restapi-1.4.20) (2023-09-22)
+
+
+### Bug Fixes
+
+* added chat.decrypt ([#726](https://github.com/ethereum-push-notification-service/push-sdk/issues/726)) ([995042b](https://github.com/ethereum-push-notification-service/push-sdk/commit/995042b789b19d487b5e2953463cae60e75199b8))
+* Merge branch 'main' into deployment ([2462c8b](https://github.com/ethereum-push-notification-service/push-sdk/commit/2462c8b060f4a2e6a0ea2cd03735569ead0b8e93))
+
+
+
 ## [1.4.19](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.18...restapi-1.4.19) (2023-09-06)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index a094d760f..cb236e058 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.19",
+  "version": "1.4.20",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 629d02faff84139595d36f3efb7e5edfd12b5719 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Fri, 29 Sep 2023 14:17:14 +0530
Subject: [PATCH 116/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.21?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 9 +++++++++
 packages/restapi/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 0fddb05ca..a53fee864 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.21](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.20...restapi-1.4.21) (2023-09-29)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([f9bb113](https://github.com/ethereum-push-notification-service/push-sdk/commit/f9bb113702f47132dc512910e5060286e985f4bf))
+
+
+
 ## [1.4.20](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.19...restapi-1.4.20) (2023-09-22)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index cb236e058..7985893a2 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.20",
+  "version": "1.4.21",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 8cdf4a34d93aa74b626cddb65fc45a9f5fd6a360 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Tue, 3 Oct 2023 12:37:59 +0530
Subject: [PATCH 117/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?=
 =?UTF-8?q?se=20to=20uiweb-v1.1.14?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/uiweb/CHANGELOG.md | 12 ++++++++++++
 packages/uiweb/package.json |  2 +-
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md
index 460f32368..2047ce575 100644
--- a/packages/uiweb/CHANGELOG.md
+++ b/packages/uiweb/CHANGELOG.md
@@ -2,6 +2,18 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.1.14](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.13...uiweb-1.1.14) (2023-10-03)
+
+
+### Bug Fixes
+
+* fixed typo ([3c6b14d](https://github.com/ethereum-push-notification-service/push-sdk/commit/3c6b14d1ae68ce74c91864d898e3d646898655bb))
+* Merge branch 'main' into deployment ([afdc6f8](https://github.com/ethereum-push-notification-service/push-sdk/commit/afdc6f8669dd0cd9ece859f4c8f6dc4181872e2c))
+* Merge branch 'main' into deployment ([f9bb113](https://github.com/ethereum-push-notification-service/push-sdk/commit/f9bb113702f47132dc512910e5060286e985f4bf))
+* minor fixes ([6737403](https://github.com/ethereum-push-notification-service/push-sdk/commit/6737403738dd70ad4056f9d10b4ab363fc172094))
+
+
+
 ## [1.1.13](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.12...uiweb-1.1.13) (2023-08-24)
 
 
diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json
index 04a0fc8d3..6bc4576fb 100644
--- a/packages/uiweb/package.json
+++ b/packages/uiweb/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/uiweb",
-  "version": "1.1.13",
+  "version": "1.1.14",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"
   },

From a02ca33a7e4752ed089b2a2a9aea2378512dadf7 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Fri, 6 Oct 2023 18:20:22 +0530
Subject: [PATCH 118/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.22?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 10 ++++++++++
 packages/restapi/package.json |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index c110167d4..5a9576a15 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,16 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.22](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.21...restapi-1.4.22) (2023-10-06)
+
+
+### Bug Fixes
+
+* local tests ([#744](https://github.com/ethereum-push-notification-service/push-sdk/issues/744)) ([e6ac9dc](https://github.com/ethereum-push-notification-service/push-sdk/commit/e6ac9dc896e710213d74e715da8af971c10b5e29))
+* merge main ([902194c](https://github.com/ethereum-push-notification-service/push-sdk/commit/902194cd30f9b83891b6e3dde8c39ddddacc876e))
+
+
+
 ## [1.4.21](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.20...restapi-1.4.21) (2023-09-29)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index 21a8266ca..7d07fba25 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.21",
+  "version": "1.4.22",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 299a3be9990d58572be1ad111af1b6a0fee17098 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Sun, 8 Oct 2023 15:41:14 +0530
Subject: [PATCH 119/137] fix: build fix

---
 packages/restapi/project.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/restapi/project.json b/packages/restapi/project.json
index 48ed574a1..6f7ec7b4b 100644
--- a/packages/restapi/project.json
+++ b/packages/restapi/project.json
@@ -35,7 +35,7 @@
       "options": {
         "preset": "angular",
         "commitMessageFormat": "ci(${projectName}): 🎉 cut release to ${projectName}-v${version}",
-        "postTargets": ["restapi:build", "restapi:ci-publish"]
+        "postTargets": ["socket:build", "restapi:build", "restapi:ci-publish"]
       }
     },
     "ci-version-beta": {

From e78c2d1664fff67229e09407f7aeab8c8ec12dba Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Wed, 11 Oct 2023 18:25:14 +0530
Subject: [PATCH 120/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.23?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 10 ++++++++++
 packages/restapi/package.json |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 5a9576a15..4a2a7abe2 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,16 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.23](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.22...restapi-1.4.23) (2023-10-11)
+
+
+### Bug Fixes
+
+* build fix ([299a3be](https://github.com/ethereum-push-notification-service/push-sdk/commit/299a3be9990d58572be1ad111af1b6a0fee17098))
+* Merge branch 'main' into deployment ([4532c52](https://github.com/ethereum-push-notification-service/push-sdk/commit/4532c528bcb0240bec65752d22763ce888d30118))
+
+
+
 ## [1.4.22](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.21...restapi-1.4.22) (2023-10-06)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index 7d07fba25..ac29d7900 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.22",
+  "version": "1.4.23",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From a0a84dcb23582f4b98d7c04f09dc06aafb79c7c0 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Fri, 13 Oct 2023 18:10:38 +0530
Subject: [PATCH 121/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.24?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 9 +++++++++
 packages/restapi/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 4a2a7abe2..2834696cf 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.24](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.23...restapi-1.4.24) (2023-10-13)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([a3481d9](https://github.com/ethereum-push-notification-service/push-sdk/commit/a3481d93933ba9889a159bd877ec623d2a1a062f))
+
+
+
 ## [1.4.23](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.22...restapi-1.4.23) (2023-10-11)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index ac29d7900..743f15791 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.23",
+  "version": "1.4.24",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From f24875da32ca3abe11c9b47001863334c7091dac Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Mon, 16 Oct 2023 14:52:22 +0530
Subject: [PATCH 122/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.25?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 9 +++++++++
 packages/restapi/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 2834696cf..ee2f117c8 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.25](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.24...restapi-1.4.25) (2023-10-16)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([118ea49](https://github.com/ethereum-push-notification-service/push-sdk/commit/118ea493c80d5cb472ec76260d64c5fd38085359))
+
+
+
 ## [1.4.24](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.23...restapi-1.4.24) (2023-10-13)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index 743f15791..1f609b552 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.24",
+  "version": "1.4.25",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 5663f7a54bcc03e78891f832680b0f8517a02b52 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Mon, 16 Oct 2023 14:57:54 +0530
Subject: [PATCH 123/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.26?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 9 +++++++++
 packages/restapi/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index ee2f117c8..659b64df3 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.26](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.25...restapi-1.4.26) (2023-10-16)
+
+
+### Bug Fixes
+
+* fix: merge issues ([#786](https://github.com/ethereum-push-notification-service/push-sdk/issues/786)) ([2462993](https://github.com/ethereum-push-notification-service/push-sdk/commit/24629931388042ddb9c54cb2b3542d5a5e2173cc))
+
+
+
 ## [1.4.25](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.24...restapi-1.4.25) (2023-10-16)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index 1f609b552..845c0e788 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.25",
+  "version": "1.4.26",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From e73e6a4c6de71c430fd630a1a8c5a56f1164ef7c Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Wed, 18 Oct 2023 19:54:04 +0530
Subject: [PATCH 124/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.27?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 9 +++++++++
 packages/restapi/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 659b64df3..54fabbda8 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.27](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.26...restapi-1.4.27) (2023-10-18)
+
+
+### Bug Fixes
+
+* merge main ([ecc05d9](https://github.com/ethereum-push-notification-service/push-sdk/commit/ecc05d926a37ccb49ccde60c4ca3012b29d6971a))
+
+
+
 ## [1.4.26](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.25...restapi-1.4.26) (2023-10-16)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index 845c0e788..bf2f5a89b 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.26",
+  "version": "1.4.27",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 7535f39e8c2df89b265d9206dd7369163bc6256c Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Thu, 19 Oct 2023 13:17:30 +0530
Subject: [PATCH 125/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.28?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 9 +++++++++
 packages/restapi/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 54fabbda8..512537b6d 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.28](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.27...restapi-1.4.28) (2023-10-19)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([7e2db7a](https://github.com/ethereum-push-notification-service/push-sdk/commit/7e2db7a00a5957501e2aecc81371308ed8deb459))
+
+
+
 ## [1.4.27](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.26...restapi-1.4.27) (2023-10-18)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index bf2f5a89b..977099ec4 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.27",
+  "version": "1.4.28",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 772bb678488ad1b3bec221fbc0c1de4ffec08dd7 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Fri, 20 Oct 2023 15:17:12 +0530
Subject: [PATCH 126/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?=
 =?UTF-8?q?se=20to=20uiweb-v1.1.15?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/uiweb/CHANGELOG.md | 12 ++++++++++++
 packages/uiweb/package.json |  3 +--
 2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md
index 049ec714d..73caeb32c 100644
--- a/packages/uiweb/CHANGELOG.md
+++ b/packages/uiweb/CHANGELOG.md
@@ -2,6 +2,18 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.1.15](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.14...uiweb-1.1.15) (2023-10-20)
+
+
+### Bug Fixes
+
+* fixed font awesome ([#799](https://github.com/ethereum-push-notification-service/push-sdk/issues/799)) ([282dc1c](https://github.com/ethereum-push-notification-service/push-sdk/commit/282dc1cf0e52627c2e854912d6b15acc5716ccaa))
+* Merge branch 'main' into deployment ([7791cc9](https://github.com/ethereum-push-notification-service/push-sdk/commit/7791cc979cda519c07763fe3344847f044b7eead))
+* Merge branch 'main' into deployment ([4532c52](https://github.com/ethereum-push-notification-service/push-sdk/commit/4532c528bcb0240bec65752d22763ce888d30118))
+* merge main ([902194c](https://github.com/ethereum-push-notification-service/push-sdk/commit/902194cd30f9b83891b6e3dde8c39ddddacc876e))
+
+
+
 ## [1.1.14](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.13...uiweb-1.1.14) (2023-10-03)
 
 
diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json
index 68abf9afc..9729e16b2 100644
--- a/packages/uiweb/package.json
+++ b/packages/uiweb/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/uiweb",
-  "version": "1.1.14",
+  "version": "1.1.15",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"
   },
@@ -19,7 +19,6 @@
     "date-fns": "^2.28.0",
     "emoji-picker-react": "^4.4.9",
     "ethers": "^5.6.8",
-
     "gif-picker-react": "^1.1.0",
     "html-react-parser": "^1.4.13",
     "livekit-client": "^1.13.3",

From bf65326e63e1b75af1e91cabda28a0cbb07f8175 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Mon, 23 Oct 2023 19:17:07 +0530
Subject: [PATCH 127/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.29?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 9 +++++++++
 packages/restapi/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 512537b6d..bf0633640 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.29](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.28...restapi-1.4.29) (2023-10-23)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([a552b73](https://github.com/ethereum-push-notification-service/push-sdk/commit/a552b73e0d50ad89ea3f7dceff68585680e1945a))
+
+
+
 ## [1.4.28](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.27...restapi-1.4.28) (2023-10-19)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index 977099ec4..82b779bb3 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.28",
+  "version": "1.4.29",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 564708bf5a38a95333b0af4e55419d8cef8bc22d Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Thu, 26 Oct 2023 13:14:50 +0530
Subject: [PATCH 128/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.30?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 9 +++++++++
 packages/restapi/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index bf0633640..cb1a1adc6 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.30](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.29...restapi-1.4.30) (2023-10-26)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([ab22b9d](https://github.com/ethereum-push-notification-service/push-sdk/commit/ab22b9de9527af55d5d0b02fd11094c251591b0b))
+
+
+
 ## [1.4.29](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.28...restapi-1.4.29) (2023-10-23)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index 82b779bb3..64ed8f179 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.29",
+  "version": "1.4.30",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From e76acb60d281bb846173e8f64f9ec39b8ed88b98 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Thu, 26 Oct 2023 19:13:32 +0530
Subject: [PATCH 129/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.31?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 9 +++++++++
 packages/restapi/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index cb1a1adc6..92ada84c5 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.31](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.30...restapi-1.4.31) (2023-10-26)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([f6ab874](https://github.com/ethereum-push-notification-service/push-sdk/commit/f6ab874255139a8810c62a1c85aa50466e1d6442))
+
+
+
 ## [1.4.30](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.29...restapi-1.4.30) (2023-10-26)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index 64ed8f179..d3f819f6c 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.30",
+  "version": "1.4.31",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 620929dff7a2f7cd0188c3466b4ed9000375fbff Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Mon, 6 Nov 2023 15:07:39 +0530
Subject: [PATCH 130/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.32?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 9 +++++++++
 packages/restapi/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 92ada84c5..3d813038d 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.32](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.31...restapi-1.4.32) (2023-11-06)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([1dcd3d8](https://github.com/ethereum-push-notification-service/push-sdk/commit/1dcd3d8035bd939fb7ece12c86c927aa43338ba3))
+
+
+
 ## [1.4.31](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.30...restapi-1.4.31) (2023-10-26)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index d3f819f6c..8255efd40 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.31",
+  "version": "1.4.32",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 18b58bab3cb864bdb08b1c4a6979d6c68ee6f5cb Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Wed, 8 Nov 2023 00:05:55 +0530
Subject: [PATCH 131/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.33?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 9 +++++++++
 packages/restapi/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 3d813038d..acd1004dd 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.33](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.32...restapi-1.4.33) (2023-11-07)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([f5c632e](https://github.com/ethereum-push-notification-service/push-sdk/commit/f5c632e0aa661f5f431d73a1fdd710c40cafc3c3))
+
+
+
 ## [1.4.32](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.31...restapi-1.4.32) (2023-11-06)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index 8255efd40..639990ba1 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.32",
+  "version": "1.4.33",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 81f028dbb92eefd09880f414b84de66bc548a5fe Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Thu, 9 Nov 2023 20:21:34 +0530
Subject: [PATCH 132/137] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20relea?=
 =?UTF-8?q?se=20to=20uiweb-v1.1.16?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/uiweb/CHANGELOG.md | 9 +++++++++
 packages/uiweb/package.json | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/packages/uiweb/CHANGELOG.md b/packages/uiweb/CHANGELOG.md
index 73caeb32c..5f50564da 100644
--- a/packages/uiweb/CHANGELOG.md
+++ b/packages/uiweb/CHANGELOG.md
@@ -2,6 +2,15 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.1.16](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.15...uiweb-1.1.16) (2023-11-09)
+
+
+### Bug Fixes
+
+* merge main ([f30db09](https://github.com/ethereum-push-notification-service/push-sdk/commit/f30db0951691b0bd9025f0a5c8f08fe478bd0ba8))
+
+
+
 ## [1.1.15](https://github.com/ethereum-push-notification-service/push-sdk/compare/uiweb-1.1.14...uiweb-1.1.15) (2023-10-20)
 
 
diff --git a/packages/uiweb/package.json b/packages/uiweb/package.json
index e7d2c5a62..f80cf489b 100644
--- a/packages/uiweb/package.json
+++ b/packages/uiweb/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/uiweb",
-  "version": "1.1.15",
+  "version": "1.1.16",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"
   },

From 1b0060ffd3e9183087ee732c6b53d8db7779a18b Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Mon, 13 Nov 2023 13:51:14 +0530
Subject: [PATCH 133/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.34?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 10 ++++++++++
 packages/restapi/package.json |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index acd1004dd..036629018 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,16 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.34](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.33...restapi-1.4.34) (2023-11-13)
+
+
+### Bug Fixes
+
+* Merge branch 'main' into deployment ([147dbb9](https://github.com/ethereum-push-notification-service/push-sdk/commit/147dbb9b9fef1ce3c16576c2c642d331e345be89))
+* merge main ([f30db09](https://github.com/ethereum-push-notification-service/push-sdk/commit/f30db0951691b0bd9025f0a5c8f08fe478bd0ba8))
+
+
+
 ## [1.4.33](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.32...restapi-1.4.33) (2023-11-07)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index 639990ba1..c11b561f8 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.33",
+  "version": "1.4.34",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 1c522b0e6098470791dff457a375c3497fef15d4 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Tue, 14 Nov 2023 18:38:26 +0530
Subject: [PATCH 134/137] fix: GroupMember type fix

---
 packages/restapi/src/lib/pushstream/DataModifier.ts    | 4 ++--
 packages/restapi/src/lib/pushstream/pushStreamTypes.ts | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/packages/restapi/src/lib/pushstream/DataModifier.ts b/packages/restapi/src/lib/pushstream/DataModifier.ts
index 0ff541b9b..7941f8baa 100644
--- a/packages/restapi/src/lib/pushstream/DataModifier.ts
+++ b/packages/restapi/src/lib/pushstream/DataModifier.ts
@@ -125,7 +125,7 @@ export class DataModifier {
     meta: GroupMeta;
     raw?: GroupEventRawData;
   } {
-    const mapMembersAdmins = (arr: any[]): Member[] => {
+    const mapMembersAdmins = (arr: any[]): GroupMember[] => {
       return arr.map((item) => ({
         address: item.wallet,
         profile: {
@@ -135,7 +135,7 @@ export class DataModifier {
       }));
     };
 
-    const mapPendingMembersAdmins = (arr: any[]): Member[] => {
+    const mapPendingMembersAdmins = (arr: any[]): GroupMember[] => {
       return arr.map((item) => ({
         address: item.wallet,
         profile: {
diff --git a/packages/restapi/src/lib/pushstream/pushStreamTypes.ts b/packages/restapi/src/lib/pushstream/pushStreamTypes.ts
index b6c2b8f64..3903436aa 100644
--- a/packages/restapi/src/lib/pushstream/pushStreamTypes.ts
+++ b/packages/restapi/src/lib/pushstream/pushStreamTypes.ts
@@ -85,8 +85,8 @@ export interface GroupMeta {
   description: string;
   image: string;
   owner: string;
-  members: Member[];
-  admins: Member[];
+  members: GroupMember[];
+  admins: GroupMember[];
   pending: Pending;
   private: boolean;
   rules: Rules;

From f0ae882f4099ed7e7b7645200b3289e08ebd15fa Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Tue, 14 Nov 2023 18:38:47 +0530
Subject: [PATCH 135/137] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20rel?=
 =?UTF-8?q?ease=20to=20restapi-v1.4.35?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 packages/restapi/CHANGELOG.md | 10 ++++++++++
 packages/restapi/package.json |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/packages/restapi/CHANGELOG.md b/packages/restapi/CHANGELOG.md
index 036629018..fddcc7294 100644
--- a/packages/restapi/CHANGELOG.md
+++ b/packages/restapi/CHANGELOG.md
@@ -2,6 +2,16 @@
 
 This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
 
+## [1.4.35](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.34...restapi-1.4.35) (2023-11-14)
+
+
+### Bug Fixes
+
+* GroupMember type fix ([1c522b0](https://github.com/ethereum-push-notification-service/push-sdk/commit/1c522b0e6098470791dff457a375c3497fef15d4))
+* Merge branch 'main' into deployment ([ea555b3](https://github.com/ethereum-push-notification-service/push-sdk/commit/ea555b305c5b4f426fb2481b3beecd7b4900ec44))
+
+
+
 ## [1.4.34](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.4.33...restapi-1.4.34) (2023-11-13)
 
 
diff --git a/packages/restapi/package.json b/packages/restapi/package.json
index c11b561f8..691e60ddf 100644
--- a/packages/restapi/package.json
+++ b/packages/restapi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@pushprotocol/restapi",
-  "version": "1.4.34",
+  "version": "1.4.35",
   "type": "commonjs",
   "publishConfig": {
     "registry": "https://registry.npmjs.org/"

From 11cc496555728152e4bd172c969f09c317fafa0b Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Tue, 14 Nov 2023 18:45:56 +0530
Subject: [PATCH 136/137] fix: bump examples SDK version

---
 packages/examples/sdk-backend-node/chat/chat.ts | 4 +++-
 packages/examples/sdk-backend-node/main.ts      | 2 +-
 packages/examples/sdk-backend-node/package.json | 2 +-
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/packages/examples/sdk-backend-node/chat/chat.ts b/packages/examples/sdk-backend-node/chat/chat.ts
index 1051a82b8..4c21f5a72 100644
--- a/packages/examples/sdk-backend-node/chat/chat.ts
+++ b/packages/examples/sdk-backend-node/chat/chat.ts
@@ -72,7 +72,7 @@ const eventlistener = async (
 export const runChatClassUseCases = async (): Promise => {
   const userAlice = await PushAPI.initialize(signer, { env });
 
-    const stream = await userAlice.stream(
+    const stream = await userAlice.initStream(
       [CONSTANTS.STREAM.CHAT, CONSTANTS.STREAM.CHAT_OPS],
       {
         // stream supports other products as well, such as STREAM.CHAT, STREAM.CHAT_OPS
@@ -90,6 +90,8 @@ export const runChatClassUseCases = async (): Promise => {
       }
     );
     
+      await stream.connect();
+
   const userBob = await PushAPI.initialize(secondSigner, { env });
   const userKate = await PushAPI.initialize(thirdSigner, { env });
 
diff --git a/packages/examples/sdk-backend-node/main.ts b/packages/examples/sdk-backend-node/main.ts
index e9eeaba8b..e8a538268 100644
--- a/packages/examples/sdk-backend-node/main.ts
+++ b/packages/examples/sdk-backend-node/main.ts
@@ -17,7 +17,7 @@ const start = async (): Promise => {
   console.log(`${returnENVLog()}`);
 
   await runUserCases();
-  //await runNotificationUseCases();
+  await runNotificationUseCases();
   await runChatUseCases();
   await runVideoUseCases();
   await runSpaceUseCases();
diff --git a/packages/examples/sdk-backend-node/package.json b/packages/examples/sdk-backend-node/package.json
index 772b3586e..dde76c3f2 100644
--- a/packages/examples/sdk-backend-node/package.json
+++ b/packages/examples/sdk-backend-node/package.json
@@ -11,7 +11,7 @@
   "author": "",
   "license": "ISC",
   "dependencies": {
-    "@pushprotocol/restapi": "0.0.1-alpha.53",
+    "@pushprotocol/restapi": "1.4.35",
     "@pushprotocol/socket": "^0.5.2"
   }
 }

From 39eed58d87a40f23e27bb9c66e8289992173a778 Mon Sep 17 00:00:00 2001
From: Mohammed S 
Date: Tue, 14 Nov 2023 19:08:15 +0530
Subject: [PATCH 137/137] fix: stream test cases fix

---
 .../examples/sdk-backend-node/chat/chat.ts    | 50 +++++++++++--------
 .../notification/notification.ts              | 43 +++++++++++-----
 .../sdk-backend-node/pushAPI/stream.ts        | 41 +++++++++++++--
 .../tests/lib/pushstream/initialize.test.ts   |  4 +-
 4 files changed, 101 insertions(+), 37 deletions(-)

diff --git a/packages/examples/sdk-backend-node/chat/chat.ts b/packages/examples/sdk-backend-node/chat/chat.ts
index 4c21f5a72..e1499985b 100644
--- a/packages/examples/sdk-backend-node/chat/chat.ts
+++ b/packages/examples/sdk-backend-node/chat/chat.ts
@@ -60,7 +60,7 @@ const eventlistener = async (
   stream: PushStream,
   eventName: string
 ): Promise => {
-    stream.on(eventName, (data: any) => {
+  stream.on(eventName, (data: any) => {
     if (showAPIResponse) {
       console.log('Stream Event Received');
       console.log(data);
@@ -72,25 +72,33 @@ const eventlistener = async (
 export const runChatClassUseCases = async (): Promise => {
   const userAlice = await PushAPI.initialize(signer, { env });
 
-    const stream = await userAlice.initStream(
-      [CONSTANTS.STREAM.CHAT, CONSTANTS.STREAM.CHAT_OPS],
-      {
-        // stream supports other products as well, such as STREAM.CHAT, STREAM.CHAT_OPS
-        // more info can be found at push.org/docs/chat
+  const stream = await userAlice.initStream(
+    [CONSTANTS.STREAM.CHAT, CONSTANTS.STREAM.CHAT_OPS],
+    {
+      // stream supports other products as well, such as STREAM.CHAT, STREAM.CHAT_OPS
+      // more info can be found at push.org/docs/chat
 
-        filter: {
-          channels: ['*'],
-          chats: ['*'],
-        },
-        connection: {
-          auto: true, // should connection be automatic, else need to call stream.connect();
-          retries: 3, // number of retries in case of error
-        },
-        raw: true, // enable true to show all data
-      }
-    );
-    
-      await stream.connect();
+      filter: {
+        channels: ['*'],
+        chats: ['*'],
+      },
+      connection: {
+        auto: true, // should connection be automatic, else need to call stream.connect();
+        retries: 3, // number of retries in case of error
+      },
+      raw: true, // enable true to show all data
+    }
+  );
+
+  stream.on(CONSTANTS.STREAM.CONNECT, (a) => {
+    console.log('Stream Connected');
+  });
+
+  await stream.connect();
+
+  stream.on(CONSTANTS.STREAM.DISCONNECT, () => {
+    console.log('Stream Disconnected');
+  });
 
   const userBob = await PushAPI.initialize(secondSigner, { env });
   const userKate = await PushAPI.initialize(thirdSigner, { env });
@@ -106,7 +114,9 @@ export const runChatClassUseCases = async (): Promise => {
   // -------------------------------------------------------------------
   console.log('PushAPI.chat.list');
   const aliceChats = await userAlice.chat.list(CONSTANTS.CHAT.LIST_TYPE.CHATS);
-  const aliceRequests = await userAlice.chat.list(CONSTANTS.CHAT.LIST_TYPE.REQUESTS);
+  const aliceRequests = await userAlice.chat.list(
+    CONSTANTS.CHAT.LIST_TYPE.REQUESTS
+  );
   if (showAPIResponse) {
     console.log(aliceChats);
     console.log(aliceRequests);
diff --git a/packages/examples/sdk-backend-node/notification/notification.ts b/packages/examples/sdk-backend-node/notification/notification.ts
index 00e8872c6..40d0f213e 100644
--- a/packages/examples/sdk-backend-node/notification/notification.ts
+++ b/packages/examples/sdk-backend-node/notification/notification.ts
@@ -45,19 +45,38 @@ export const runNotificationClassUseCases = async (): Promise => {
   // -------------------------------------------------------------------
   const userAlice = await PushAPI.initialize(signer, { env });
 
-  const stream = await userAlice.stream([CONSTANTS.STREAM.NOTIF], {
-    // stream supports other products as well, such as STREAM.CHAT, STREAM.CHAT_OPS
-    // more info can be found at push.org/docs/chat
+  const stream = await userAlice.initStream(
+    [
+      CONSTANTS.STREAM.NOTIF,
+      CONSTANTS.STREAM.CHAT_OPS,
+      CONSTANTS.STREAM.CHAT,
+      CONSTANTS.STREAM.CONNECT,
+      CONSTANTS.STREAM.DISCONNECT,
+    ],
+    {
+      // stream supports other products as well, such as STREAM.CHAT, STREAM.CHAT_OPS
+      // more info can be found at push.org/docs/chat
 
-    filter: {
-      channels: ['*'],
-      chats: ['*'],
-    },
-    connection: {
-      auto: true, // should connection be automatic, else need to call stream.connect();
-      retries: 3, // number of retries in case of error
-    },
-    raw: true, // enable true to show all data
+      filter: {
+        channels: ['*'],
+        chats: ['*'],
+      },
+      connection: {
+        auto: true, // should connection be automatic, else need to call stream.connect();
+        retries: 3, // number of retries in case of error
+      },
+      raw: true, // enable true to show all data
+    }
+  );
+
+  stream.on(CONSTANTS.STREAM.CONNECT, (a) => {
+    console.log('Stream Connected');
+  });
+
+  await stream.connect();
+
+  stream.on(CONSTANTS.STREAM.DISCONNECT, () => {
+    console.log('Stream Disconnected');
   });
 
   // Listen Stream Events for getting websocket events
diff --git a/packages/examples/sdk-backend-node/pushAPI/stream.ts b/packages/examples/sdk-backend-node/pushAPI/stream.ts
index 8b00ad1e2..36358115f 100644
--- a/packages/examples/sdk-backend-node/pushAPI/stream.ts
+++ b/packages/examples/sdk-backend-node/pushAPI/stream.ts
@@ -1,4 +1,4 @@
-import { PushAPI } from '@pushprotocol/restapi';
+import { CONSTANTS, PushAPI } from '@pushprotocol/restapi';
 import { config } from '../config';
 import { generatePrivateKey, privateKeyToAccount } from 'viem/accounts';
 import { createWalletClient, http } from 'viem';
@@ -36,7 +36,7 @@ const eventlistener = async (
   pushAPI: PushAPI,
   eventName: string
 ): Promise => {
-  pushAPI._stream.on(eventName, (data: any) => {
+  pushAPI.stream.on(eventName, (data: any) => {
     if (showAPIResponse) {
       console.log(data);
     }
@@ -47,11 +47,46 @@ const delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
 
 export const runPushAPIStreamCases = async (): Promise => {
   const userAlice = await PushAPI.initialize(signer, { env });
+
+  const stream = await userAlice.initStream(
+    [
+      CONSTANTS.STREAM.NOTIF,
+      CONSTANTS.STREAM.CHAT_OPS,
+      CONSTANTS.STREAM.CHAT,
+      CONSTANTS.STREAM.CONNECT,
+      CONSTANTS.STREAM.DISCONNECT,
+    ],
+    {
+      // stream supports other products as well, such as STREAM.CHAT, STREAM.CHAT_OPS
+      // more info can be found at push.org/docs/chat
+
+      filter: {
+        channels: ['*'],
+        chats: ['*'],
+      },
+      connection: {
+        auto: true, // should connection be automatic, else need to call stream.connect();
+        retries: 3, // number of retries in case of error
+      },
+      raw: true, // enable true to show all data
+    }
+  );
+
+  stream.on(CONSTANTS.STREAM.CONNECT, (a) => {
+    console.log('Stream Connected');
+  });
+
+  await stream.connect();
+
+  stream.on(CONSTANTS.STREAM.DISCONNECT, () => {
+    console.log('Stream Disconnected');
+  });
+
   const userBob = await PushAPI.initialize(secondSigner, { env });
   const userKate = await PushAPI.initialize(thirdSigner, { env });
   // -------------------------------------------------------------------
   // -------------------------------------------------------------------
-  console.log(`Listening ${STREAM.PROFILE} Events`);
+  console.log(`Listening ${CONSTANTS.STREAM.PROFILE} Events`);
   eventlistener(userAlice, STREAM.PROFILE);
   console.log(`Listening ${STREAM.ENCRYPTION} Events`);
   eventlistener(userAlice, STREAM.ENCRYPTION);
diff --git a/packages/restapi/tests/lib/pushstream/initialize.test.ts b/packages/restapi/tests/lib/pushstream/initialize.test.ts
index 9f761acfc..0e797f415 100644
--- a/packages/restapi/tests/lib/pushstream/initialize.test.ts
+++ b/packages/restapi/tests/lib/pushstream/initialize.test.ts
@@ -172,9 +172,9 @@ describe('PushStream.initialize functionality', () => {
         content: "Gm gm! It's a me... Mario",
       });
     });
-    
+
     await stream.connect();
-    
+
     stream.on(CONSTANTS.STREAM.DISCONNECT, () => {
       console.log('Stream Disconnected');
     });