@cardano-sdk/e2e 0.51.0 → 0.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/package.json +3 -3
- package/test/web-extension/extension/ui.ts +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.52.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.51.0...@cardano-sdk/e2e@0.52.0) (2025-01-21)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
* **web-extension:** make KeyAgentFactory methods async
|
|
11
|
+
|
|
12
|
+
### Code Refactoring
|
|
13
|
+
|
|
14
|
+
* **web-extension:** make KeyAgentFactory methods async ([069b2b5](https://github.com/input-output-hk/cardano-js-sdk/commit/069b2b5263505652b9b81200707812a3280f88e5)), closes [#1558](https://github.com/input-output-hk/cardano-js-sdk/issues/1558)
|
|
15
|
+
|
|
6
16
|
## [0.51.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.50.0...@cardano-sdk/e2e@0.51.0) (2025-01-20)
|
|
7
17
|
|
|
8
18
|
### ⚠ BREAKING CHANGES
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cardano-sdk/e2e",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.52.0",
|
|
4
4
|
"description": "End to end tests for the cardano-js-sdk packages.",
|
|
5
5
|
"repository": "https://github.com/input-output-hk/cardano-js-sdk",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"@cardano-sdk/dapp-connector": "~0.13.3",
|
|
123
123
|
"@cardano-sdk/projection": "~0.12.22",
|
|
124
124
|
"@cardano-sdk/projection-typeorm": "~0.9.22",
|
|
125
|
-
"@cardano-sdk/web-extension": "~0.
|
|
125
|
+
"@cardano-sdk/web-extension": "~0.38.0",
|
|
126
126
|
"@dcspark/cardano-multiplatform-lib-browser": "^3.1.1",
|
|
127
127
|
"@emurgo/cardano-message-signing-asmjs": "^1.0.1",
|
|
128
128
|
"@types/bunyan": "^1.8.8",
|
|
@@ -182,5 +182,5 @@
|
|
|
182
182
|
"publishConfig": {
|
|
183
183
|
"access": "public"
|
|
184
184
|
},
|
|
185
|
-
"gitHead": "
|
|
185
|
+
"gitHead": "f6a4480661692482520b7376418f5a2b6a9b3de7"
|
|
186
186
|
}
|
|
@@ -198,8 +198,6 @@ const passphraseByteArray = Uint8Array.from(
|
|
|
198
198
|
);
|
|
199
199
|
|
|
200
200
|
const initSigningCoordinator = async () => {
|
|
201
|
-
const bip32Ed25519 = await Crypto.SodiumBip32Ed25519.create();
|
|
202
|
-
|
|
203
201
|
const signingCoordinator = new SigningCoordinator(
|
|
204
202
|
{
|
|
205
203
|
hwOptions: {
|
|
@@ -212,7 +210,7 @@ const initSigningCoordinator = async () => {
|
|
|
212
210
|
},
|
|
213
211
|
{
|
|
214
212
|
keyAgentFactory: createKeyAgentFactory({
|
|
215
|
-
|
|
213
|
+
getBip32Ed25519: Crypto.SodiumBip32Ed25519.create,
|
|
216
214
|
logger
|
|
217
215
|
}),
|
|
218
216
|
logger
|