@cardano-sdk/e2e 0.55.27 → 0.56.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 +21 -0
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/tsconfig.tsbuildinfo +1 -1
- package/package.json +18 -18
- package/test/wallet_epoch_0/PersonalWallet/phase2validation.test.ts +0 -1
- package/test/wallet_epoch_3/PersonalWallet/conwayTransactions.test.ts +1 -7
- package/test/wallet_epoch_3/PersonalWallet/drepRetirement.test.ts +1 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,27 @@
|
|
|
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.56.0 (2026-07-08)
|
|
7
|
+
|
|
8
|
+
* feat(core)!: default inConwayEra to true ([92d197b](https://github.com/input-output-hk/cardano-js-sdk/commit/92d197b))
|
|
9
|
+
* feat(core)!: hardcode transaction is_valid to true ([143ceb8](https://github.com/input-output-hk/cardano-js-sdk/commit/143ceb8))
|
|
10
|
+
|
|
11
|
+
### BREAKING CHANGE
|
|
12
|
+
|
|
13
|
+
* freshly encoded sets and redeemers built from core
|
|
14
|
+
now use the Conway wire format by default; call setInConwayEra(false)
|
|
15
|
+
to restore legacy encodings.
|
|
16
|
+
|
|
17
|
+
Test fixtures triaged monorepo-wide: pre-Conway pins keep legacy bytes
|
|
18
|
+
behind a locally scoped flag with restore; era-neutral vectors are
|
|
19
|
+
re-baselined to the modern encodings; size-based fee expectations in
|
|
20
|
+
tx-construction updated accordingly.
|
|
21
|
+
* Transaction.setIsValid and TxContext.isValid are
|
|
22
|
+
removed; no public API can produce an is_valid=false transaction.
|
|
23
|
+
|
|
24
|
+
Call sites updated: tx-construction TxBuilder/types, wallet
|
|
25
|
+
BaseWallet/types, e2e phase2validation fixture.
|
|
26
|
+
|
|
6
27
|
## [0.55.27](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.55.26...@cardano-sdk/e2e@0.55.27) (2026-06-30)
|
|
7
28
|
|
|
8
29
|
**Note:** Version bump only for package @cardano-sdk/e2e
|