Integrate cardano-api 11.7.0.0 - #1440
Merged
Merged
Conversation
carbolymer
force-pushed
the
mgalazyn/fix/integrate-api-master-202609
branch
from
September 4, 2026 07:34
8cff8df to
40b00b0
Compare
carbolymer
marked this pull request as ready for review
September 4, 2026 07:34
carbolymer
requested review from
a team,
Jimbo4350,
disassembler,
kevinhammond,
newhoggy and
palas
as code owners
September 4, 2026 07:34
carbolymer
enabled auto-merge
September 4, 2026 07:35
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
The functional change is small and consistent with the stated upstream API update, with only a minor naming clarity nit identified.
Pull request overview
This PR integrates cardano-api 11.7.0.0 into cardano-cli, updating dependency pins and adapting the transaction certificate construction code to the upstream TxCertificates shape change.
Changes:
- Bump
cardano-apidependency bound to^>=11.7. - Refresh CHaP pins (
cabal.projectindex-state andflake.lock). - Update
mkTxCertificatesSbeto constructTxCertificateswith the new witness shape.
File summaries
| File | Description |
|---|---|
| flake.lock | Updates CHaP pin revision/hash to align Nix inputs with the new dependency set. |
| cardano-cli/src/Cardano/CLI/Compatible/Transaction/Run.hs | Adapts mkTxCertificatesSbe to the updated TxCertificates witness representation. |
| cardano-cli/cardano-cli.cabal | Bumps the cardano-api version bound to ^>=11.7. |
| cabal.project | Updates CHaP index-state to a newer snapshot. |
| .changes/20260904_074500_cardano-cli_mgalazyn_integrate_cardano_api_11_7_0_0.yml | Adds a changelog fragment for the dependency update. |
Review details
- Files reviewed: 4/5 changed files
- Comments generated: 1
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
carbolymer
force-pushed
the
mgalazyn/fix/integrate-api-master-202609
branch
2 times, most recently
from
September 4, 2026 07:40
6ecf3ce to
b467024
Compare
Bump the cardano-api bound to ^>=11.7 and refresh the CHaP pin. Adapt mkTxCertificatesSbe to the new TxCertificates shape, which no longer pairs each certificate witness with a stake credential.
carbolymer
force-pushed
the
mgalazyn/fix/integrate-api-master-202609
branch
from
September 4, 2026 07:43
b467024 to
59802ec
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context
Integrates the cardano-api 11.7.0.0 release.
Picks up the plutus redeemer pointer indexing fix (cardano-api#1288): proposal pointers now follow the transaction's insertion order and certificate pointers count unwitnessed certificates.
cardano-apibound to^>=11.7and refreshes the CHaP pin (cabal.projectindex-state andflake.lock).mkTxCertificatesSbeto the newTxCertificatesshape, which no longer pairs each certificate witness with a stake credential (the credential is derived from the certificate).How to trust this PR
The only code change is in
Cardano.CLI.Compatible.Transaction.Run.mkTxCertificatesSbe, following the upstream API change. The rest is dependency pinning. CI builds and tests cover it.Checklist
.changes/