Skip to content
Draft
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
31 changes: 31 additions & 0 deletions .changes/20260702_updates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Changelog fragment template - copy this file and fill in the fields.
# Or use 'herald new' for interactive creation.
#
# Files starting with _ are ignored by herald.
#
# Available projects and kinds are defined in .herald.yml

# Which project this change belongs to (see 'projects' in .herald.yml)
# Uncomment exactly one:
project: cardano-cli
# project: cardano-api-gen
# project: cardano-rpc
# project: cardano-wasm

# Pull request number associated with this change
pr: 1394

# One or more change kinds (see 'kinds' in .herald.yml)
kind:
# - breaking # the API has changed in a breaking way
# - feature # introduces a new feature
# - compatible # the API has changed but is non-breaking
# - bugfix # fixes a defect
# - optimisation # measurable performance improvements
# - documentation # change in code docs, haddocks
# - refactoring # code quality improvements
# - test # fixes or modifies tests
- maintenance # not directly related to the code
# - release # related to a new release preparation
description: |
Update dependencies, increase lower bound of aeson dependency.
17 changes: 14 additions & 3 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ repository cardano-haskell-packages
-- See CONTRIBUTING for information about these, including some Nix commands
-- you need to run if you change them
index-state:
, hackage.haskell.org 2026-06-02T21:49:32Z
, cardano-haskell-packages 2026-06-02T21:14:32Z
, hackage.haskell.org 2026-07-02T00:02:36Z
, cardano-haskell-packages 2026-06-29T12:05:19Z

active-repositories:
, :rest
Expand Down Expand Up @@ -74,6 +74,17 @@ write-ghc-environment-files: always
-- Do NOT add more source-repository-package stanzas here unless they are strictly
-- temporary! Please read the section in CONTRIBUTING about updating dependencies.

-- Needed for the aeson >= 2.3 dependency.
allow-newer:
, cborg-json:aeson
, deriving-aeson:aeson
, grapesy:aeson
, grpc-spec:aeson
, hedgehog-extras:aeson
, microstache:aeson
, http-api-data:text-iso8601
, vary:aeson

-- cabal-allow-newer begin
if impl(ghc >= 9.14)
allow-newer:
Expand All @@ -83,11 +94,11 @@ if impl(ghc >= 9.14)
, cborg:containers
, cborg-json:base
, compact:base
, data-elevator:base
, dependent-map:containers
, dictionary-sharing:containers
, diff-containers:base
, fs-sim:QuickCheck
, lsm-tree:data-elevator
, ordered-containers:containers
, partial-order:containers
, safe-wild-cards:template-haskell
Expand Down
4 changes: 2 additions & 2 deletions cardano-cli/cardano-cli.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ library
autogen-modules: Paths_cardano_cli
build-depends:
-- TODO: bump consensus back
aeson >=1.5.6.0,
aeson >=2.3,
aeson-pretty >=0.8.5,
ansi-terminal,
attoparsec,
Expand Down Expand Up @@ -433,7 +433,7 @@ test-suite cardano-cli-golden
main-is: cardano-cli-golden.hs
type: exitcode-stdio-1.0
build-depends:
aeson >=1.5.6.0,
aeson >=2.3,
base16-bytestring,
bytestring,
cardano-api:{cardano-api, gen},
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading