@cardano-sdk/e2e 0.38.0 → 0.39.1
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 +24 -0
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/tsconfig.tsbuildinfo +1 -1
- package/package.json +18 -18
- package/test/long-running/multisig-wallet/MultiSigTx.ts +2 -2
- package/test/long-running/shared-wallet-delegation-rewards.test.ts +22 -17
- package/test/wallet_epoch_0/SharedWallet/simpleTx.test.ts +9 -5
- package/test/wallet_epoch_0/SharedWallet/utils.ts +2 -2
- package/test/wallet_epoch_3/SharedWallet/delegation.test.ts +12 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
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.39.1](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.39.0...@cardano-sdk/e2e@0.39.1) (2024-08-20)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* add to BaseWallet re-submit exceptions CredentialAlreadyRegistered and DrepAlreadyRegistered errors ([48f7951](https://github.com/input-output-hk/cardano-js-sdk/commit/48f7951ce092c0d489d982fd1fdfef8599d6cada))
|
|
11
|
+
|
|
12
|
+
## [0.39.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.38.0...@cardano-sdk/e2e@0.39.0) (2024-08-07)
|
|
13
|
+
|
|
14
|
+
### ⚠ BREAKING CHANGES
|
|
15
|
+
|
|
16
|
+
* remove updateWitness method from observable wallet
|
|
17
|
+
- add addSignatures method to observable wallet
|
|
18
|
+
* remove Cardano.TransactionId.fromTxBodyCbor
|
|
19
|
+
- hoist getAssetNameAsText util to Asset.util namespace
|
|
20
|
+
- hoist TxCBOR and TxBodyCBOR under Serialization namespace
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* replace updateWitness with addSignatures in observable wallet ([d0bdffa](https://github.com/input-output-hk/cardano-js-sdk/commit/d0bdffa9ad62ce46d906645b889c44de9355b73e))
|
|
25
|
+
|
|
26
|
+
### Code Refactoring
|
|
27
|
+
|
|
28
|
+
* resolve circular references in core package ([87aa26f](https://github.com/input-output-hk/cardano-js-sdk/commit/87aa26f2a2f50df0c7a72aaf4f746df2a466adfb))
|
|
29
|
+
|
|
6
30
|
## [0.38.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.37.1...@cardano-sdk/e2e@0.38.0) (2024-08-01)
|
|
7
31
|
|
|
8
32
|
### ⚠ BREAKING CHANGES
|