Skip to content

Commit

Permalink
Version 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
erikd committed Jan 26, 2021
1 parent eccdbea commit bc16ef8
Show file tree
Hide file tree
Showing 9 changed files with 48 additions and 7 deletions.
14 changes: 14 additions & 0 deletions cardano-db-sync-extended/CHANGELOG.md
@@ -1,5 +1,19 @@
# Revision history for cardano-db-sync-extended

## 8.0.0
* Note that this release requires the database to be dropped and recreated.
* Requires version 1.25.0 or later of the node.
* Update dependencies.
* Documentation updates.
* Fix a ChainSync race condition (#433).
* Vastly improve database rollback performance (#256, #397).
* Fix typo in database column name (Merkel -> Merkle) (#446).
* Improve logging.
* Handle case where latest ledger state file cannot be parsed (#483).
* Improve handling/naming of ledger state files.
* Fix Prometheus metrics server (#154).
* Make the port that the Prometheus metrics server listens on configurable (#488).

## 7.1.0
* Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from
6.0.x and earlier will require it.
Expand Down
2 changes: 1 addition & 1 deletion cardano-db-sync-extended/cardano-db-sync-extended.cabal
Expand Up @@ -3,7 +3,7 @@ cabal-version: >= 1.10
-- http://haskell.org/cabal/users-guide/

name: cardano-db-sync-extended
version: 7.1.0
version: 8.0.0
synopsis: The Extended Cardano DB Sync node
description: A Cardano node that follows the Cardano chain and inserts data from the
chain into a PostgresQL database. It is "extended" because it maintains an
Expand Down
17 changes: 16 additions & 1 deletion cardano-db-sync/CHANGELOG.md
@@ -1,4 +1,19 @@
# Revision history for cardano-db-sync node
# Revision history for cardano-db-sync

## 8.0.0
* Note that this release requires the database to be dropped and recreated.
* Requires version 1.25.0 or later of the node.
* Documentation updates.
* Update dependencies.
* Vastly improve database rollback performance (#256, #397).
* Split the ledger state rewards into valid and invalid sets (#415, #467).
* Fix tx_count for genesis blocks (#471).
* Fix typo in database column name (Merkel -> Merkle) (#446).
* Improve logging.
* Handle case where latest ledger state file cannot be parsed (#483).
* Improve handling/naming of ledger state files.
* Fix Prometheus metrics server (#154).
* Make the port that the Prometheus metrics server listens on configurable (#488).

## 7.1.0
* Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from
Expand Down
2 changes: 1 addition & 1 deletion cardano-db-sync/cardano-db-sync.cabal
Expand Up @@ -3,7 +3,7 @@ cabal-version: >= 1.10
-- http://haskell.org/cabal/users-guide/

name: cardano-db-sync
version: 7.1.0
version: 8.0.0
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
5 changes: 5 additions & 0 deletions cardano-db-tool/CHANGELOG.md
@@ -0,0 +1,5 @@
# Revision history for cardano-db-tool

## 8.0.0
* New package split out of `cardano-db` package so it can use `cardano-db-sync` as a library.
* Add a validation that checks ledger state address balances against database balance.
2 changes: 1 addition & 1 deletion cardano-db-tool/cardano-db-tool.cabal
Expand Up @@ -3,7 +3,7 @@ cabal-version: >= 1.10
-- http://haskell.org/cabal/users-guide/

name: cardano-db-tool
version: 7.1.0
version: 8.0.0
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
7 changes: 7 additions & 0 deletions cardano-db/CHANGELOG.md
@@ -1,5 +1,12 @@
# Revision history for cardano-db

## 8.0.0
* Note that this release requires the database to be dropped and recreated.
* Documentation updates.
* Update dependencies.
* Fix typo in database column name (Merkel -> Merkle) (#446).
* `cardano-db-tool` moved to a separate package in this repo.

## 7.1.0
* Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from
6.0.x and earlier will require it.
Expand Down
2 changes: 1 addition & 1 deletion cardano-db/cardano-db.cabal
Expand Up @@ -3,7 +3,7 @@ cabal-version: >= 1.10
-- http://haskell.org/cabal/users-guide/

name: cardano-db
version: 7.1.0
version: 8.0.0
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
4 changes: 2 additions & 2 deletions docker-compose.yml
Expand Up @@ -24,7 +24,7 @@ services:
max-file: "10"

cardano-node:
image: inputoutput/cardano-node:1.24.2
image: inputoutput/cardano-node:1.25.1
environment:
- NETWORK=${NETWORK:-mainnet}
volumes:
Expand All @@ -38,7 +38,7 @@ services:
max-file: "10"

cardano-db-sync:
image: inputoutput/cardano-db-sync:7.1.0
image: inputoutput/cardano-db-sync:8.0.0
environment:
- NETWORK=${NETWORK:-mainnet}
- POSTGRES_HOST=postgres
Expand Down

0 comments on commit bc16ef8

Please sign in to comment.