Skip to content

Commit 3f9cad2

Browse files
committed
Release 13.7.0.3
1 parent 22334c0 commit 3f9cad2

10 files changed

Lines changed: 15 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
- SMASH: validate `PoolMetadataHash` inputs, return 400 instead of 500
66
- Ledger snapshots now use the consensus directory format (`<slot>/state`, `meta`, `utxoSize`). Old snapshots are not compatible.
77
- Experimental: LSM-backed on-disk UTxO (opt-in via `ledger_backend` config, see [doc/configuration.md](doc/configuration.md#ledger-backend))
8+
- Snapshots can be converted between InMemory and LSM formats (see [doc/state-snapshot.md](doc/state-snapshot.md))
9+
- Off-chain metadata fetching (`offchain_pool_data`, `offchain_vote_data`) is now disabled by default; enable explicitly in `insert_options` if you need it
10+
- 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
11+
- 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>`
812

913
## 13.7.0.2
1014
- Fix slow rollbacks caused by suboptimal query plans on large tables [#2083]

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

Lines changed: 1 addition & 1 deletion
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.7.0.2
4+
version: 13.7.0.3
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

Lines changed: 1 addition & 1 deletion
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.7.0.2
4+
version: 13.7.0.3
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

Lines changed: 1 addition & 1 deletion
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.7.0.2
4+
version: 13.7.0.3
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/cardano-db.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.6
22

33
name: cardano-db
4-
version: 13.7.0.2
4+
version: 13.7.0.3
55
synopsis: A base PostgreSQL component for the cardano-db-sync node.
66
description: Code for the Cardano DB Sync node that is shared between the
77
cardano-db-node and other components.

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

Lines changed: 1 addition & 1 deletion
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.7.0.2
4+
version: 13.7.0.3
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

Lines changed: 1 addition & 1 deletion
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.7.0.2
4+
version: 13.7.0.3
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>

config/pgpass-mainnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/var/run/postgresql:5432:cexplorer:*:*
1+
/var/run/postgresql:5432:mainnet-13.7.0.3:*:*

docker-compose.example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ services:
3636
max-file: "10"
3737

3838
cardano-node:
39-
image: ghcr.io/intersectmbo/cardano-node:10.6.1
39+
image: ghcr.io/intersectmbo/cardano-node:10.7.1
4040
environment:
4141
- NETWORK=${NETWORK:-mainnet}
4242
networks:
@@ -59,7 +59,7 @@ services:
5959
max-file: "10"
6060

6161
cardano-db-sync:
62-
image: ghcr.io/intersectmbo/cardano-db-sync:13.7.0.2
62+
image: ghcr.io/intersectmbo/cardano-db-sync:13.7.0.3
6363
environment:
6464
- NETWORK=${NETWORK:-mainnet}
6565
- POSTGRES_HOST=postgres

docker-compose.yml

Lines changed: 2 additions & 2 deletions
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.6.1
36+
image: ghcr.io/intersectmbo/cardano-node:10.7.1
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.7.0.2
57+
image: ghcr.io/intersectmbo/cardano-db-sync:13.7.0.3
5858
environment:
5959
- DB_SYNC_CONFIG=${DB_SYNC_CONFIG:-}
6060
- DISABLE_LEDGER=${DISABLE_LEDGER}

0 commit comments

Comments
 (0)