Skip to content

Commit 0b7c281

Browse files
authored
Merge pull request #1910 from IntersectMBO/kderme/13.6.0.4
Prepare release 13.6.0.4
2 parents a34f4d4 + ef2db6a commit 0b7c281

File tree

10 files changed

+19
-15
lines changed

10 files changed

+19
-15
lines changed

CHANGELOG.md

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

3+
## 13.6.0.4
4+
- Fixes an issue from ledger where DRep delegations could be removed under some conditions
5+
- Fix an issue with migration from 13.5.x when consumed_tx_out config is enabled
6+
37
## 13.6.0.2
48
- Fix rollbacks speed
59

cabal.project

Lines changed: 3 additions & 3 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 2024-10-10T00:52:24Z
14-
, cardano-haskell-packages 2024-10-30T10:23:17Z
14+
, cardano-haskell-packages 2024-11-26T16:00:26Z
1515

1616
packages:
1717
cardano-db
@@ -90,8 +90,8 @@ constraints:
9090
source-repository-package
9191
type: git
9292
location: https://github.com/IntersectMBO/cardano-node
93-
tag: cdb45dd5aa9b4cf43ef6a6c8ecd5b6afbef953e4
94-
--sha256: sha256-YFq/0HGlWqzij+9hOoXNhDHFH+5ltpMph8mmI4O8qeE=
93+
tag: 36871ba0cd3e86a5dbcfd6878cdb7168bb4e56a1
94+
--sha256: sha256-v0q8qHdI6LKc8mP43QZt3UGdTNDQXE0aF6QapvZsTvU=
9595
subdir:
9696
cardano-node
9797
cardano-submit-api

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.6.0.2
4+
version: 13.6.0.4
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: 2 additions & 2 deletions
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.6.0.2
4+
version: 13.6.0.4
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.
@@ -169,7 +169,7 @@ library
169169
, cardano-ledger-binary
170170
, cardano-ledger-byron
171171
, cardano-ledger-core
172-
, cardano-ledger-conway ^>= 1.17.1
172+
, cardano-ledger-conway ^>= 1.17.3
173173
, cardano-ledger-binary
174174
, cardano-ledger-mary
175175
, cardano-ledger-shelley >= 1.12.3.0

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.6.0.2
4+
version: 13.6.0.4
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.6.0.2
4+
version: 13.6.0.4
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/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.6.0.2
4+
version: 13.6.0.4
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.6.0.2
4+
version: 13.6.0.4
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.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ services:
3333
max-file: "10"
3434

3535
cardano-node:
36-
image: ghcr.io/intersectmbo/cardano-node:10.1.2
36+
image: ghcr.io/intersectmbo/cardano-node:10.1.3
3737
environment:
3838
- NETWORK=${NETWORK:-mainnet}
3939
volumes:
@@ -54,7 +54,7 @@ services:
5454
max-file: "10"
5555

5656
cardano-db-sync:
57-
image: ghcr.io/intersectmbo/cardano-db-sync:13.6.0.2
57+
image: ghcr.io/intersectmbo/cardano-db-sync:13.6.0.4
5858
environment:
5959
- DB_SYNC_CONFIG=${DB_SYNC_CONFIG:-}
6060
- DISABLE_LEDGER=${DISABLE_LEDGER}

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)