Skip to content

Commit ddc6777

Browse files
authored
Merge pull request #2124 from IntersectMBO/kderme/integrate-node-11.0.1
Prepare release 13.7.0.5
2 parents ddbf4cc + f4a638f commit ddc6777

12 files changed

Lines changed: 25 additions & 22 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Revision history for cardano-db-sync
22

3+
## 13.7.0.5
4+
- Update to cardano-node 11.0.1
5+
36
## 13.7.0.4
47
- Restore static (musl) Linux binary; 13.7.0.3 shipped a dynamically linked binary that broke on non-NixOS systems
58
- Fix macOS builds

cabal.project

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository cardano-haskell-packages
1111

1212
index-state:
1313
, hackage.haskell.org 2026-03-26T20:21:33Z
14-
, cardano-haskell-packages 2026-04-14T21:25:56Z
14+
, cardano-haskell-packages 2026-05-02T16:21:41Z
1515
active-repositories:
1616
, :rest
1717
, cardano-haskell-packages:override
@@ -73,11 +73,11 @@ package snap-server
7373
-- ---------------------------------------------------------
7474

7575
constraints:
76-
-- New version of `text` exposes a `show` function and in the `node`
77-
-- code,`Data.Text` is being imported unqualified (bad idea IMO) which
78-
-- then clashes with the `show` in `Prelude`.
79-
, text < 2.1.2
8076
, hasql ==1.9.3
77+
-- haskell.nix tries to use 0.7.1.5; the patched 0.7.1.6 fork is in source-repository-package.
78+
, any.proto-lens >= 0.7.1.6
79+
-- haskell.nix patch does not work for 1.6.8
80+
, any.crypton-x509-system < 1.6.8
8181

8282
allow-newer:
8383
, cardano-api:plutus-core
@@ -106,8 +106,8 @@ if impl (ghc >= 9.12)
106106
source-repository-package
107107
type: git
108108
location: https://github.com/IntersectMBO/cardano-node
109-
tag: 045bc187a36ef0cbd236db902b85dd8f202fb059
110-
--sha256: sha256-D2HMIr65q0RM9+ZAjbtA9xNKyoKYfr3Kc4Vv4+s64uY=
109+
tag: 97036a66bcf8c89f687ae57a048eecc0389977ef
110+
--sha256: sha256-+dod+EL73MICgbgflyJnwDlxbCeaBbBLrr2tLX59hAA=
111111
subdir:
112112
cardano-node
113113
trace-forward

cardano-chain-gen/cardano-chain-gen.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.6
22

33
name: cardano-chain-gen
4-
version: 13.7.0.4
4+
version: 13.7.0.5
55
synopsis: A fake chain generator for testing cardano DB sync.
66
description: A fake chain generator for testing cardano DB sync.
77
homepage: https://github.com/IntersectMBO/cardano-db-sync

cardano-db-sync/cardano-db-sync.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.6
22

33
name: cardano-db-sync
4-
version: 13.7.0.4
4+
version: 13.7.0.5
55
synopsis: The Cardano DB Sync node
66
description: A Cardano node that follows the Cardano chain and inserts data from the
77
chain into a PostgresQL database.

cardano-db-tool/cardano-db-tool.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.6
22

33
name: cardano-db-tool
4-
version: 13.7.0.4
4+
version: 13.7.0.5
55
synopsis: Utilities to manage the cardano-db-sync databases.
66
description: Utilities and executable, used to manage and validate the
77
PostgreSQL db and the ledger database of the cardano-db-sync node

cardano-db/cardano-db.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.6
22

33
name: cardano-db
4-
version: 13.7.0.4
4+
version: 13.7.0.5
55
synopsis: A base PostgreSQL component for the cardano-db-sync node.
66
description: Code for the Cardano DB Sync node that is shared between the
77
cardano-db-node and other components.

cardano-db/test/Test/IO/Cardano/Db/EpochCalc.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ word128RoundTripWithTrailingZerosTest =
5151
{ epochOutSum = 380_000_000_000_000_000 -- ~38B ADA in lovelace
5252
, epochFees = DbLovelace 36_000_000_000 -- ~36k ADA in lovelace
5353
, epochTxCount = 100
54-
, epochBlkCount = 21600
54+
, epochBlkCount = 21_600
5555
, epochNo = 999_999 -- Use a high epoch number unlikely to clash
5656
, epochStartTime = dummyUTCTime
5757
, epochEndTime = dummyUTCTime
@@ -112,7 +112,7 @@ queryCalcEpochEntryLargeSumsTest =
112112
, txScriptSize = 0
113113
, txTreasuryDonation = DbLovelace 0
114114
}
115-
mapM_ (\i -> void . insertTx $ bigTx i) [0 .. nTxs - 1]
115+
mapM_ (insertTx . bigTx) [0 .. nTxs - 1]
116116

117117
-- mkBlock hard-codes epoch_no = 0
118118
calcEpoch <- queryCalcEpochEntry 0

cardano-db/test/cardano-db-test.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.6
22

33
name: cardano-db-test
4-
version: 13.7.0.4
4+
version: 13.7.0.5
55
synopsis: Tests for the base functionality of the cardano-db library
66
description: Code for the Cardano DB Sync node that is shared between the
77
cardano-db-node and other components.

cardano-smash-server/cardano-smash-server.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.6
22

33
name: cardano-smash-server
4-
version: 13.7.0.4
4+
version: 13.7.0.5
55
synopsis: The Cardano smash server
66
description: Please see the README on GitHub at
77
<https://github.com/IntersectMBO/cardano-db-sync/cardano-smash-server/#readme>

docker-compose.example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ services:
3636
max-file: "10"
3737

3838
cardano-node:
39-
image: ghcr.io/intersectmbo/cardano-node:10.7.1
39+
image: ghcr.io/intersectmbo/cardano-node:11.0.1
4040
environment:
4141
- NETWORK=${NETWORK:-mainnet}
4242
networks:
@@ -59,7 +59,7 @@ services:
5959
max-file: "10"
6060

6161
cardano-db-sync:
62-
image: ghcr.io/intersectmbo/cardano-db-sync:13.7.0.4
62+
image: ghcr.io/intersectmbo/cardano-db-sync:13.7.0.5
6363
environment:
6464
- NETWORK=${NETWORK:-mainnet}
6565
- POSTGRES_HOST=postgres

0 commit comments

Comments
 (0)