From bb08844dac0e56274ae05ca97999fdf0d7acf06f Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:25:14 +0530 Subject: [PATCH 01/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 02/83] 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 03/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 04/83] 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 05/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 06/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 07/83] 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 08/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 09/83] 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 10/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 11/83] 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 12/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 13/83] 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 14/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 15/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 16/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 17/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 18/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 19/83] 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 20/83] 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 21/83] 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 22/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 23/83] 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 24/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 25/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 26/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 27/83] 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 28/83] 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 29/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 30/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 31/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 32/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 33/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 34/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 35/83] =?UTF-8?q?ci(socket):=20=F0=9F=8E=89=20cut=20releas?= =?UTF-8?q?e=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 36/83] 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 37/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 38/83] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20release?= =?UTF-8?q?=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 39/83] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20release?= =?UTF-8?q?=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 40/83] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20release?= =?UTF-8?q?=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 41/83] 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 42/83] 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 43/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20beta?= =?UTF-8?q?=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 44/83] 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 45/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20beta?= =?UTF-8?q?=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 46/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20beta?= =?UTF-8?q?=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 47/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 48/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 49/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20beta?= =?UTF-8?q?=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 50/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 51/83] 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 52/83] 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 53/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 54/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 55/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 56/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 57/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 58/83] 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 59/83] 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 60/83] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20release?= =?UTF-8?q?=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 61/83] 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 62/83] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20release?= =?UTF-8?q?=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 63/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 64/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 65/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 66/83] =?UTF-8?q?ci(socket):=20=F0=9F=8E=89=20cut=20releas?= =?UTF-8?q?e=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 67/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 68/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 69/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 70/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 71/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 72/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 73/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 74/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 75/83] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20release?= =?UTF-8?q?=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 76/83] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20release?= =?UTF-8?q?=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 77/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 78/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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 79/83] 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 80/83] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20release?= =?UTF-8?q?=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 81/83] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20release?= =?UTF-8?q?=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 82/83] =?UTF-8?q?ci(uiweb):=20=F0=9F=8E=89=20cut=20release?= =?UTF-8?q?=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 83/83] =?UTF-8?q?ci(restapi):=20=F0=9F=8E=89=20cut=20relea?= =?UTF-8?q?se=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/"