From 6b3edf36fb5a70319484402a05ab56f19c5b5e93 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 2 Apr 2024 22:37:57 +0000 Subject: [PATCH 1/3] chore(release): 1.7.0 [skip ci] # [1.7.0](https://github.com/arconnectio/ArConnect/compare/v1.6.1...v1.7.0) (2024-04-02) ### Bug Fixes * added loading state ([b77855a](https://github.com/arconnectio/ArConnect/commit/b77855a8bb78dd0bea5e2b4e1ea4fca62cf7c09c)) * disabled announcement fixed issue w ao save ([202b81e](https://github.com/arconnectio/ArConnect/commit/202b81ec7d1f97537a4c1f8cfaf9fd1680d6e4ff)) * issue with token not showing up on faulty ao load ([39c6ec6](https://github.com/arconnectio/ArConnect/commit/39c6ec6ece36a175c5ec46fa947d722878ee5e7e)) * refresh on ao token load, can manually load warp tokens ([ab3bd4d](https://github.com/arconnectio/ArConnect/commit/ab3bd4d3ef5edbb026b13256460aac7f192d3ea8)) * remove ao tokens & handle active ao token ([346c4eb](https://github.com/arconnectio/ArConnect/commit/346c4ebd2ae96f00e1ead179a4cc5cfa77708958)) * resets field on error protects against double add for tokens ([bbc3d18](https://github.com/arconnectio/ArConnect/commit/bbc3d185c4e06327613a359f1363b56189fd7a48)) * wip manual add warp tokens ([1c3e6bb](https://github.com/arconnectio/ArConnect/commit/1c3e6bb1866f04a24b02a40c2e760025f705e951)) ### Features * add sign message API for harware wallet ([444124e](https://github.com/arconnectio/ArConnect/commit/444124eeed85442c83d892a0cd4a47f32fdac0ee)) * separate message component ([0a9cf3c](https://github.com/arconnectio/ArConnect/commit/0a9cf3c2439c81ac0aa390738d9870db601e1d6b)) * update with message viewer ([35502a3](https://github.com/arconnectio/ArConnect/commit/35502a39b33d074bbb7d8b7ce11590dc47357f26)) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0858dd05c..3bbd9ab86 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "arconnect", "displayName": "ArConnect", - "version": "1.7.1", + "version": "1.7.0", "description": "__MSG_extensionDescription__", "author": "th8ta", "packageManager": "yarn@1.22.18", From 13dc80c5baa2d6b70370e0abd18b2fb6b03885b2 Mon Sep 17 00:00:00 2001 From: Marton Lederer Date: Fri, 5 Apr 2024 13:36:42 +0200 Subject: [PATCH 2/3] feat: revert invalid algo name --- src/api/modules/sign_message/sign_message.background.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/modules/sign_message/sign_message.background.ts b/src/api/modules/sign_message/sign_message.background.ts index aaa14fc9d..716b25d65 100644 --- a/src/api/modules/sign_message/sign_message.background.ts +++ b/src/api/modules/sign_message/sign_message.background.ts @@ -56,7 +56,7 @@ const background: ModuleFunction = async ( // hashing 2 times ensures that the app is not draining the user's wallet // credits to Arweave.app const signature = await crypto.subtle.sign( - { name: "RSA-RSS", saltLength: 32 }, + { name: "RSA-PSS", saltLength: 32 }, cryptoKey, hash ); From 4d38fa1031300959d739dbb13ee67b3ece0e3d2d Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 5 Apr 2024 15:33:43 +0000 Subject: [PATCH 3/3] chore(release): 1.8.0 [skip ci] # [1.8.0](https://github.com/arconnectio/ArConnect/compare/v1.7.0...v1.8.0) (2024-04-05) ### Features * revert invalid algo name ([13dc80c](https://github.com/arconnectio/ArConnect/commit/13dc80c5baa2d6b70370e0abd18b2fb6b03885b2)) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3bbd9ab86..756e72c9d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "arconnect", "displayName": "ArConnect", - "version": "1.7.0", + "version": "1.8.0", "description": "__MSG_extensionDescription__", "author": "th8ta", "packageManager": "yarn@1.22.18",