diff --git a/CHANGELOG.md b/CHANGELOG.md index c9784661b..d0a3dbf07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Revision history for cardano-db-sync +## 13.7.0.4 +- Restore static (musl) Linux binary; 13.7.0.3 shipped a dynamically linked binary that broke on non-NixOS systems +- Fix macOS builds +- Fix LSM path doubling when the state-dir is a relative path + ## 13.7.0.3 - Migration deletes legacy zero-amount `epoch_stake` rows - SMASH: validate `PoolMetadataHash` inputs, return 400 instead of 500 diff --git a/cardano-chain-gen/cardano-chain-gen.cabal b/cardano-chain-gen/cardano-chain-gen.cabal index c69aed2d0..ba46515d6 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.7.0.3 +version: 13.7.0.4 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 571878195..4ae2af119 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.7.0.3 +version: 13.7.0.4 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 12fa76e40..d69925dc2 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.7.0.3 +version: 13.7.0.4 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 1a588d5bb..33399210b 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.7.0.3 +version: 13.7.0.4 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 bd78a6bf1..601741652 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.7.0.3 +version: 13.7.0.4 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 7ff120c6b..9d3686ee0 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.7.0.3 +version: 13.7.0.4 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 ef0d6c298..46135937b 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.7.0.3 + image: ghcr.io/intersectmbo/cardano-db-sync:13.7.0.4 environment: - NETWORK=${NETWORK:-mainnet} - POSTGRES_HOST=postgres diff --git a/docker-compose.yml b/docker-compose.yml index dda9c8883..0fac1cf0d 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.7.0.3 + image: ghcr.io/intersectmbo/cardano-db-sync:13.7.0.4 environment: - DB_SYNC_CONFIG=${DB_SYNC_CONFIG:-} - DISABLE_LEDGER=${DISABLE_LEDGER}