From bb08844dac0e56274ae05ca97999fdf0d7acf06f Mon Sep 17 00:00:00 2001 From: Shoaib Mohammed Date: Wed, 5 Apr 2023 00:25:14 +0530 Subject: [PATCH 01/31] =?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/31] 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/31] =?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/31] 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/31] =?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/31] =?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/31] 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/31] =?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/31] 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/31] =?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/31] 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/31] =?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/31] 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/31] =?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/31] =?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/31] =?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/31] =?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/31] =?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/31] 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/31] 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/31] 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/31] =?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/31] 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/31] =?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/31] =?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/31] =?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/31] 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/31] 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/31] =?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/31] =?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/31] =?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/"