Skip to content

Commit 5b131e9

Browse files
authored
Merge pull request #1894 from IntersectMBO/kderme/13.6.0.1
Prepare 13.6.0.1
2 parents 9afcc24 + d8ba62b commit 5b131e9

File tree

10 files changed

+27
-27
lines changed

10 files changed

+27
-27
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Revision history for cardano-db-sync
22

3-
## 13.6.0.0
3+
## 13.6.0.1
44
- A new config `use_address_table` addition makes it possible to use a separate table for addresses [#1697]
55
- Support application/ld+json http mime type for vote metadata [#1842]
66
- Support fetching from ipfs, using a new config `ipfs_gateway` [#1792]
77
- Fix an issue with drep metadata images [#1857]
88
- Fix an issue with pool_stat [#1833]
99
- Expect pool_stat instead of pool_stats in config [#1880]
1010
- Enacted gov_action_proposal are no longer marked as dropped
11-
11+
- Fix issue with `use_address_table` crashing on some networks.
1212

1313
## 13.5.0.2
1414
- Fix an issue with restarts

cabal.project

+1-1
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-22T13:53:49Z
14+
, cardano-haskell-packages 2024-10-30T10:23:17Z
1515

1616
packages:
1717
cardano-db

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

+1-1
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.0
4+
version: 13.6.0.1
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

+1-1
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.0
4+
version: 13.6.0.1
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

+1-1
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.0
4+
version: 13.6.0.1
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/src/Cardano/Db/Schema/BaseSchema.hs

+14-14
Original file line numberDiff line numberDiff line change
@@ -404,15 +404,15 @@ share
404404
ParamProposal
405405
epochNo Word64 Maybe sqltype=word31type
406406
key ByteString Maybe sqltype=hash28type
407-
minFeeA Word64 Maybe sqltype=word64type
408-
minFeeB Word64 Maybe sqltype=word64type
409-
maxBlockSize Word64 Maybe sqltype=word64type
410-
maxTxSize Word64 Maybe sqltype=word64type
411-
maxBhSize Word64 Maybe sqltype=word64type
407+
minFeeA DbWord64 Maybe sqltype=word64type
408+
minFeeB DbWord64 Maybe sqltype=word64type
409+
maxBlockSize DbWord64 Maybe sqltype=word64type
410+
maxTxSize DbWord64 Maybe sqltype=word64type
411+
maxBhSize DbWord64 Maybe sqltype=word64type
412412
keyDeposit DbLovelace Maybe sqltype=lovelace
413413
poolDeposit DbLovelace Maybe sqltype=lovelace
414-
maxEpoch Word64 Maybe sqltype=word64type
415-
optimalPoolCount Word64 Maybe sqltype=word64type
414+
maxEpoch DbWord64 Maybe sqltype=word64type
415+
optimalPoolCount DbWord64 Maybe sqltype=word64type
416416
influence Double Maybe -- sqltype=rational
417417
monetaryExpandRate Double Maybe -- sqltype=interval
418418
treasuryGrowthRate Double Maybe -- sqltype=interval
@@ -453,10 +453,10 @@ share
453453

454454
committeeMinSize DbWord64 Maybe sqltype=word64type
455455
committeeMaxTermLength DbWord64 Maybe sqltype=word64type
456-
govActionLifetime Word64 Maybe sqltype=word64type
456+
govActionLifetime DbWord64 Maybe sqltype=word64type
457457
govActionDeposit DbWord64 Maybe sqltype=word64type
458458
drepDeposit DbWord64 Maybe sqltype=word64type
459-
drepActivity Word64 Maybe sqltype=word64type
459+
drepActivity DbWord64 Maybe sqltype=word64type
460460
minFeeRefScriptCostPerByte Double Maybe -- sqltype=rational
461461

462462
registeredTxId TxId noreference
@@ -514,7 +514,7 @@ share
514514

515515
committeeMinSize DbWord64 Maybe sqltype=word64type
516516
committeeMaxTermLength DbWord64 Maybe sqltype=word64type
517-
govActionLifetime DbWord64 Maybe sqltype=word64type
517+
govActionLifetime DbWord64 Maybe sqltype=word64type
518518
govActionDeposit DbWord64 Maybe sqltype=word64type
519519
drepDeposit DbWord64 Maybe sqltype=word64type
520520
drepActivity DbWord64 Maybe sqltype=word64type
@@ -530,10 +530,10 @@ share
530530
PoolStat
531531
poolHashId PoolHashId noreference
532532
epochNo Word64 sqltype=word31type
533-
numberOfBlocks Word64 sqltype=word64type
534-
numberOfDelegators Word64 sqltype=word64type
535-
stake Word64 sqltype=word64type
536-
votingPower Word64 Maybe sqltype=word64type
533+
numberOfBlocks DbWord64 sqltype=word64type
534+
numberOfDelegators DbWord64 sqltype=word64type
535+
stake DbWord64 sqltype=word64type
536+
votingPower DbWord64 Maybe sqltype=word64type
537537

538538
ExtraMigrations
539539
token Text

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

+1-1
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.0
4+
version: 13.6.0.1
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

+1-1
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.0
4+
version: 13.6.0.1
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

+2-2
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.0-pre
36+
image: ghcr.io/intersectmbo/cardano-node:10.1.2
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.0-pre
57+
image: ghcr.io/intersectmbo/cardano-db-sync:13.6.0.1
5858
environment:
5959
- DB_SYNC_CONFIG=${DB_SYNC_CONFIG:-}
6060
- DISABLE_LEDGER=${DISABLE_LEDGER}

flake.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)