Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
- SMASH: validate `PoolMetadataHash` inputs, return 400 instead of 500
- Ledger snapshots now use the consensus directory format (`<slot>/state`, `meta`, `utxoSize`). Old snapshots are not compatible.
- Experimental: LSM-backed on-disk UTxO (opt-in via `ledger_backend` config, see [doc/configuration.md](doc/configuration.md#ledger-backend))
- Snapshots can be converted between InMemory and LSM formats (see [doc/state-snapshot.md](doc/state-snapshot.md))
- Off-chain metadata fetching (`offchain_pool_data`, `offchain_vote_data`) is now disabled by default; enable explicitly in `insert_options` if you need it
- New helper scripts under `scripts/`: `validate-epoch-table.sql`, `fix-epoch-table.sql`, and `check-and-fix-epoch-table.sh` to diagnose and repair stale rows in the `epoch` table
- Schema integrity scripts `test-uniqueness.sql` and `test-referential-integrity.sql` moved from `schema/` to `scripts/`; run all checks via `scripts/run-schema-checks.sh <dbname>`

## 13.7.0.2
- Fix slow rollbacks caused by suboptimal query plans on large tables [#2083]
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.7.0.2
version: 13.7.0.3
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.7.0.2
version: 13.7.0.3
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.7.0.2
version: 13.7.0.3
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
2 changes: 1 addition & 1 deletion cardano-db/cardano-db.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.6

name: cardano-db
version: 13.7.0.2
version: 13.7.0.3
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.
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.7.0.2
version: 13.7.0.3
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.7.0.2
version: 13.7.0.3
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.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:
max-file: "10"

cardano-node:
image: ghcr.io/intersectmbo/cardano-node:10.6.1
image: ghcr.io/intersectmbo/cardano-node:10.7.1
environment:
- NETWORK=${NETWORK:-mainnet}
networks:
Expand All @@ -59,7 +59,7 @@ services:
max-file: "10"

cardano-db-sync:
image: ghcr.io/intersectmbo/cardano-db-sync:13.7.0.2
image: ghcr.io/intersectmbo/cardano-db-sync:13.7.0.3
environment:
- NETWORK=${NETWORK:-mainnet}
- POSTGRES_HOST=postgres
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.6.1
image: ghcr.io/intersectmbo/cardano-node:10.7.1
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.7.0.2
image: ghcr.io/intersectmbo/cardano-db-sync:13.7.0.3
environment:
- DB_SYNC_CONFIG=${DB_SYNC_CONFIG:-}
- DISABLE_LEDGER=${DISABLE_LEDGER}
Expand Down
Loading