diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bae0a3fa..861b07cf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Revision history for cardano-db-sync +## 13.6.0.6 +- Fix "hash bytes wrong size" on preview +- Add support for GHC 9.12 [#1968] +- Speed up no ledger migration [#1964] +- Shutdown container gracefully on exit [#1946] + ## 13.6.0.5 - Fix offchain data so it supports files up to 3MB [#1928] - Upgrade to PostgreSQL 17 diff --git a/cardano-chain-gen/cardano-chain-gen.cabal b/cardano-chain-gen/cardano-chain-gen.cabal index 12306f88f..f711da320 100644 --- a/cardano-chain-gen/cardano-chain-gen.cabal +++ b/cardano-chain-gen/cardano-chain-gen.cabal @@ -1,7 +1,7 @@ cabal-version: 3.6 name: cardano-chain-gen -version: 13.6.0.5 +version: 13.6.0.6 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 diff --git a/cardano-db-sync/cardano-db-sync.cabal b/cardano-db-sync/cardano-db-sync.cabal index bc0f10808..91573d82f 100644 --- a/cardano-db-sync/cardano-db-sync.cabal +++ b/cardano-db-sync/cardano-db-sync.cabal @@ -1,7 +1,7 @@ cabal-version: 3.6 name: cardano-db-sync -version: 13.6.0.5 +version: 13.6.0.6 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. diff --git a/cardano-db-tool/cardano-db-tool.cabal b/cardano-db-tool/cardano-db-tool.cabal index 9410d3ef6..e4cc4f55c 100644 --- a/cardano-db-tool/cardano-db-tool.cabal +++ b/cardano-db-tool/cardano-db-tool.cabal @@ -1,7 +1,7 @@ cabal-version: 3.6 name: cardano-db-tool -version: 13.6.0.5 +version: 13.6.0.6 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 diff --git a/cardano-db/cardano-db.cabal b/cardano-db/cardano-db.cabal index d8afa1a33..54dad455d 100644 --- a/cardano-db/cardano-db.cabal +++ b/cardano-db/cardano-db.cabal @@ -1,7 +1,7 @@ cabal-version: 3.6 name: cardano-db -version: 13.6.0.5 +version: 13.6.0.6 synopsis: A base PostgreSQL component for the cardano-db-sync node. description: Code for the Cardano DB Sync node that is shared between the cardano-db-node and other components. diff --git a/cardano-db/test/cardano-db-test.cabal b/cardano-db/test/cardano-db-test.cabal index cbff16efa..32fa664c6 100644 --- a/cardano-db/test/cardano-db-test.cabal +++ b/cardano-db/test/cardano-db-test.cabal @@ -1,7 +1,7 @@ cabal-version: 3.6 name: cardano-db-test -version: 13.6.0.5 +version: 13.6.0.6 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. diff --git a/cardano-smash-server/cardano-smash-server.cabal b/cardano-smash-server/cardano-smash-server.cabal index 338617fc1..e10db9bdc 100644 --- a/cardano-smash-server/cardano-smash-server.cabal +++ b/cardano-smash-server/cardano-smash-server.cabal @@ -1,7 +1,7 @@ cabal-version: 3.6 name: cardano-smash-server -version: 13.6.0.5 +version: 13.6.0.6 synopsis: The Cardano smash server description: Please see the README on GitHub at diff --git a/docker-compose.example.yml b/docker-compose.example.yml index 39d2039b3..08e83e185 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -59,7 +59,7 @@ services: max-file: "10" cardano-db-sync: - image: ghcr.io/intersectmbo/cardano-db-sync:13.6.0.5 + image: ghcr.io/intersectmbo/cardano-db-sync:13.6.0.6 environment: - NETWORK=${NETWORK:-mainnet} - POSTGRES_HOST=postgres diff --git a/docker-compose.yml b/docker-compose.yml index 9b8d9200a..63196b9bd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -54,7 +54,7 @@ services: max-file: "10" cardano-db-sync: - image: ghcr.io/intersectmbo/cardano-db-sync:13.6.0.5 + image: ghcr.io/intersectmbo/cardano-db-sync:13.6.0.6 environment: - DB_SYNC_CONFIG=${DB_SYNC_CONFIG:-} - DISABLE_LEDGER=${DISABLE_LEDGER}