Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

17 changes: 0 additions & 17 deletions .changes/20260521_cardano_cli_bump_cardano_api_11_2_0_0.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .changes/20260521_cardano_cli_fix_inline_datum_tx_view.yml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/20260526_cardano_cli_bump_cardano_api_11_3_0_0.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
description: Release cardano-cli 11.1.0.0
kind:
- release
pr: 1385
project: cardano-cli
22 changes: 22 additions & 0 deletions cardano-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog for cardano-cli

## 11.1.0.0 -- 2026-05-27

- Fix `cardano-cli transaction view` rendering inline datums as a Haskell-`Show`
string instead of the structured JSON detailed-schema dict. The friendly tx
renderer's `L.Datum` branch in `friendlyTxOut` now routes through
`scriptDataToJson ScriptDataJsonDetailedSchema . fromAlonzoData`, restoring the
pre-#1374 output shape for inline-datum outputs.
(bugfix)
[PR 1379](https://github.com/intersectmbo/cardano-cli/pull/1379)

- Add --key-output-bech32/--key-output-text-envelope to governance key-gen commands.
(feature, compatible)
[PR 1378](https://github.com/intersectmbo/cardano-cli/pull/1378)

- Migrate the friendly transaction renderer (Cardano.CLI.Compatible.Json.Friendly) off the old-API Tx/TxBody/TxBodyContent onto Exp.SignedTx/Exp.UnsignedTx. The public renderer entry points and every internal helper now use Exp.Era era and Exp.LedgerEra era. cardano-cli debug transaction view and cardano-cli transaction view now only accept Conway and Dijkstra tx/tx-body files. Pre-Conway files fail with a DeprecatedEra error.
(breaking, refactoring)
[PR 1374](https://github.com/intersectmbo/cardano-cli/pull/1374)

- Remove the deprecated --update-proposal-file flag from era-based transaction build and transaction build-raw. Update proposals are deprecated since Conway and the flag was already a no-op for Conway+. The flag is kept for compatible <era> transaction signed-transaction where pre-Conway eras still need it.
(breaking)
[PR 1372](https://github.com/intersectmbo/cardano-cli/pull/1372)

## 11.0.0.0

- Bump `cardano-api` to `11.0.0.0`. Adapt to the new `Either MakeUnsignedTxError (UnsignedTx ...)` return of `Exp.makeUnsignedTx` and surface the error via a new `TxCmdMakeUnsignedTxError` constructor on `TxCmdError`.
Expand Down
2 changes: 1 addition & 1 deletion cardano-cli/cardano-cli.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.8
name: cardano-cli
version: 11.0.0.0
version: 11.1.0.0
synopsis: The Cardano command-line interface
description: The Cardano command-line interface.
copyright: 2020-2023 Input Output Global Inc (IOG).
Expand Down
Loading