Skip to content

Commit 1c7dbda

Browse files
committed
Version 8.0.0
1 parent eccdbea commit 1c7dbda

File tree

9 files changed

+48
-7
lines changed

9 files changed

+48
-7
lines changed

cardano-db-sync-extended/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Revision history for cardano-db-sync-extended
22

3+
## 8.0.0
4+
* Note that this release requires the database to be dropped and recreated.
5+
* Requires version 1.25.0 or later of the node.
6+
* Update dependencies.
7+
* Documentation updates.
8+
* Fix a ChainSync race condition (#433).
9+
* Vastly improve database rollback performance (#256, #397).
10+
* Fix typo in database column name (Merkel -> Merkle) (#446).
11+
* Improve logging.
12+
* Handle case where latest ledger state file cannot be parsed (#483).
13+
* Improve handling/naming of ledger state files.
14+
* Fix Prometheus metrics server (#154).
15+
* Make the port that the Prometheus metrics server listens on configurable (#488).
16+
317
## 7.1.0
418
* Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from
519
6.0.x and earlier will require it.

cardano-db-sync-extended/cardano-db-sync-extended.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cabal-version: >= 1.10
33
-- http://haskell.org/cabal/users-guide/
44

55
name: cardano-db-sync-extended
6-
version: 7.1.0
6+
version: 8.0.0
77
synopsis: The Extended Cardano DB Sync node
88
description: A Cardano node that follows the Cardano chain and inserts data from the
99
chain into a PostgresQL database. It is "extended" because it maintains an

cardano-db-sync/CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
# Revision history for cardano-db-sync node
1+
# Revision history for cardano-db-sync
2+
3+
## 8.0.0
4+
* Note that this release requires the database to be dropped and recreated.
5+
* Requires version 1.25.0 or later of the node.
6+
* Documentation updates.
7+
* Update dependencies.
8+
* Vastly improve database rollback performance (#256, #397).
9+
* Split the ledger state rewards into valid and invalid sets (#415, #467).
10+
* Fix tx_count for genesis blocks (#471).
11+
* Fix typo in database column name (Merkel -> Merkle) (#446).
12+
* Improve logging.
13+
* Handle case where latest ledger state file cannot be parsed (#483).
14+
* Improve handling/naming of ledger state files.
15+
* Fix Prometheus metrics server (#154).
16+
* Make the port that the Prometheus metrics server listens on configurable (#488).
217

318
## 7.1.0
419
* Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from

cardano-db-sync/cardano-db-sync.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cabal-version: >= 1.10
33
-- http://haskell.org/cabal/users-guide/
44

55
name: cardano-db-sync
6-
version: 7.1.0
6+
version: 8.0.0
77
synopsis: The Cardano DB Sync node
88
description: A Cardano node that follows the Cardano chain and inserts data from the
99
chain into a PostgresQL database.

cardano-db-tool/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Revision history for cardano-db-tool
2+
3+
## 8.0.0
4+
* New package split out of `cardano-db` package so it can use `cardano-db-sync` as a library.
5+
* Add a validation that checks ledger state address balances against database balance.

cardano-db-tool/cardano-db-tool.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cabal-version: >= 1.10
33
-- http://haskell.org/cabal/users-guide/
44

55
name: cardano-db-tool
6-
version: 7.1.0
6+
version: 8.0.0
77
synopsis: Utilities to manage the cardano-db-sync databases.
88
description: Utilities and executable, used to manage and validate the
99
PostgreSQL db and the ledger database of the cardano-db-sync node

cardano-db/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Revision history for cardano-db
22

3+
## 8.0.0
4+
* Note that this release requires the database to be dropped and recreated.
5+
* Documentation updates.
6+
* Update dependencies.
7+
* Fix typo in database column name (Merkel -> Merkle) (#446).
8+
* `cardano-db-tool` moved to a separate package in this repo.
9+
310
## 7.1.0
411
* Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from
512
6.0.x and earlier will require it.

cardano-db/cardano-db.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cabal-version: >= 1.10
33
-- http://haskell.org/cabal/users-guide/
44

55
name: cardano-db
6-
version: 7.1.0
6+
version: 8.0.0
77
synopsis: A base PostgreSQL component for the cardano-db-sync node.
88
description: Code for the Cardano DB Sync node that is shared between the
99
cardano-db-node and other components.

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ services:
2424
max-file: "10"
2525

2626
cardano-node:
27-
image: inputoutput/cardano-node:1.24.2
27+
image: inputoutput/cardano-node:1.25.1
2828
environment:
2929
- NETWORK=${NETWORK:-mainnet}
3030
volumes:
@@ -38,7 +38,7 @@ services:
3838
max-file: "10"
3939

4040
cardano-db-sync:
41-
image: inputoutput/cardano-db-sync:7.1.0
41+
image: inputoutput/cardano-db-sync:8.0.0
4242
environment:
4343
- NETWORK=${NETWORK:-mainnet}
4444
- POSTGRES_HOST=postgres

0 commit comments

Comments
 (0)