Skip to content

Commit

Permalink
Merge pull request #1894 from IntersectMBO/kderme/13.6.0.1
Browse files Browse the repository at this point in the history
Prepare 13.6.0.1
  • Loading branch information
kderme authored Nov 8, 2024
2 parents 9afcc24 + d8ba62b commit 5b131e9
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 27 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Revision history for cardano-db-sync

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

- Fix issue with `use_address_table` crashing on some networks.

## 13.5.0.2
- Fix an issue with restarts
Expand Down
2 changes: 1 addition & 1 deletion cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository cardano-haskell-packages

index-state:
, hackage.haskell.org 2024-10-10T00:52:24Z
, cardano-haskell-packages 2024-10-22T13:53:49Z
, cardano-haskell-packages 2024-10-30T10:23:17Z

packages:
cardano-db
Expand Down
2 changes: 1 addition & 1 deletion cardano-chain-gen/cardano-chain-gen.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.6

name: cardano-chain-gen
version: 13.6.0.0
version: 13.6.0.1
synopsis: A fake chain generator for testing cardano DB sync.
description: A fake chain generator for testing cardano DB sync.
homepage: https://github.com/IntersectMBO/cardano-db-sync
Expand Down
2 changes: 1 addition & 1 deletion cardano-db-sync/cardano-db-sync.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.6

name: cardano-db-sync
version: 13.6.0.0
version: 13.6.0.1
synopsis: The Cardano DB Sync node
description: A Cardano node that follows the Cardano chain and inserts data from the
chain into a PostgresQL database.
Expand Down
2 changes: 1 addition & 1 deletion cardano-db-tool/cardano-db-tool.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.6

name: cardano-db-tool
version: 13.6.0.0
version: 13.6.0.1
synopsis: Utilities to manage the cardano-db-sync databases.
description: Utilities and executable, used to manage and validate the
PostgreSQL db and the ledger database of the cardano-db-sync node
Expand Down
28 changes: 14 additions & 14 deletions cardano-db/src/Cardano/Db/Schema/BaseSchema.hs
Original file line number Diff line number Diff line change
Expand Up @@ -404,15 +404,15 @@ share
ParamProposal
epochNo Word64 Maybe sqltype=word31type
key ByteString Maybe sqltype=hash28type
minFeeA Word64 Maybe sqltype=word64type
minFeeB Word64 Maybe sqltype=word64type
maxBlockSize Word64 Maybe sqltype=word64type
maxTxSize Word64 Maybe sqltype=word64type
maxBhSize Word64 Maybe sqltype=word64type
minFeeA DbWord64 Maybe sqltype=word64type
minFeeB DbWord64 Maybe sqltype=word64type
maxBlockSize DbWord64 Maybe sqltype=word64type
maxTxSize DbWord64 Maybe sqltype=word64type
maxBhSize DbWord64 Maybe sqltype=word64type
keyDeposit DbLovelace Maybe sqltype=lovelace
poolDeposit DbLovelace Maybe sqltype=lovelace
maxEpoch Word64 Maybe sqltype=word64type
optimalPoolCount Word64 Maybe sqltype=word64type
maxEpoch DbWord64 Maybe sqltype=word64type
optimalPoolCount DbWord64 Maybe sqltype=word64type
influence Double Maybe -- sqltype=rational
monetaryExpandRate Double Maybe -- sqltype=interval
treasuryGrowthRate Double Maybe -- sqltype=interval
Expand Down Expand Up @@ -453,10 +453,10 @@ share

committeeMinSize DbWord64 Maybe sqltype=word64type
committeeMaxTermLength DbWord64 Maybe sqltype=word64type
govActionLifetime Word64 Maybe sqltype=word64type
govActionLifetime DbWord64 Maybe sqltype=word64type
govActionDeposit DbWord64 Maybe sqltype=word64type
drepDeposit DbWord64 Maybe sqltype=word64type
drepActivity Word64 Maybe sqltype=word64type
drepActivity DbWord64 Maybe sqltype=word64type
minFeeRefScriptCostPerByte Double Maybe -- sqltype=rational

registeredTxId TxId noreference
Expand Down Expand Up @@ -514,7 +514,7 @@ share

committeeMinSize DbWord64 Maybe sqltype=word64type
committeeMaxTermLength DbWord64 Maybe sqltype=word64type
govActionLifetime DbWord64 Maybe sqltype=word64type
govActionLifetime DbWord64 Maybe sqltype=word64type
govActionDeposit DbWord64 Maybe sqltype=word64type
drepDeposit DbWord64 Maybe sqltype=word64type
drepActivity DbWord64 Maybe sqltype=word64type
Expand All @@ -530,10 +530,10 @@ share
PoolStat
poolHashId PoolHashId noreference
epochNo Word64 sqltype=word31type
numberOfBlocks Word64 sqltype=word64type
numberOfDelegators Word64 sqltype=word64type
stake Word64 sqltype=word64type
votingPower Word64 Maybe sqltype=word64type
numberOfBlocks DbWord64 sqltype=word64type
numberOfDelegators DbWord64 sqltype=word64type
stake DbWord64 sqltype=word64type
votingPower DbWord64 Maybe sqltype=word64type

ExtraMigrations
token Text
Expand Down
2 changes: 1 addition & 1 deletion cardano-db/test/cardano-db-test.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.6

name: cardano-db-test
version: 13.6.0.0
version: 13.6.0.1
synopsis: Tests for the base functionality of the cardano-db library
description: Code for the Cardano DB Sync node that is shared between the
cardano-db-node and other components.
Expand Down
2 changes: 1 addition & 1 deletion cardano-smash-server/cardano-smash-server.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.6

name: cardano-smash-server
version: 13.6.0.0
version: 13.6.0.1
synopsis: The Cardano smash server
description: Please see the README on GitHub at
<https://github.com/IntersectMBO/cardano-db-sync/cardano-smash-server/#readme>
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:
max-file: "10"

cardano-node:
image: ghcr.io/intersectmbo/cardano-node:10.1.0-pre
image: ghcr.io/intersectmbo/cardano-node:10.1.2
environment:
- NETWORK=${NETWORK:-mainnet}
volumes:
Expand All @@ -54,7 +54,7 @@ services:
max-file: "10"

cardano-db-sync:
image: ghcr.io/intersectmbo/cardano-db-sync:13.6.0.0-pre
image: ghcr.io/intersectmbo/cardano-db-sync:13.6.0.1
environment:
- DB_SYNC_CONFIG=${DB_SYNC_CONFIG:-}
- DISABLE_LEDGER=${DISABLE_LEDGER}
Expand Down
6 changes: 3 additions & 3 deletions flake.lock

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

0 comments on commit 5b131e9

Please sign in to comment.