Skip to content

Commit

Permalink
Version 10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
erikd committed Jun 9, 2021
1 parent 0988d53 commit 5eff9a0
Show file tree
Hide file tree
Showing 11 changed files with 66 additions and 7 deletions.
18 changes: 18 additions & 0 deletions cardano-db-sync-extended/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Revision history for cardano-db-sync-extended

## 10.0.0
* Note that this release requires the database to be dropped and recreated. Restoring the `db-sync`
state can take a long time so it is possible to restore it from a snapsot file.
See `doc/state-snapshot.md`.
* Ability to create and restore state snapshots (#613).
* Documentation updates.
* Fix network id for reward_addr in pool_update table (#546).
* Update utxo_view query (#543).
* Minor update of database schema.
* Remove `merkle_root` field from `block` table.
* Refactor/improve rollbacks (#570).
* Interleave bulk insertion (`epoch_stake`, `reward` and `orphaned_reward`) with regular insertions.
* Fetch and insert pool offline metadata.
* Update a couple of uniqueness constraints.
* Fix PoolUpdate activeEpochNo field (#610)
* Add EpochSyncTime table (#621).
* Update system requirements in Readme.hd.

## 9.0.0
* Note that this release requires the database to be dropped and recreated.
* Requires ghc-8.10.x tp build.
Expand Down
2 changes: 1 addition & 1 deletion cardano-db-sync-extended/cardano-db-sync-extended.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cabal-version: 2.2
-- http://haskell.org/cabal/users-guide/

name: cardano-db-sync-extended
version: 9.0.0
version: 10.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
18 changes: 18 additions & 0 deletions cardano-db-sync/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Revision history for cardano-db-sync

## 10.0.0
* Note that this release requires the database to be dropped and recreated. Restoring the `db-sync`
state can take a long time so it is possible to restore it from a snapsot file.
See `doc/state-snapshot.md`.
* Ability to create and restore state snapshots (#613).
* Documentation updates.
* Fix network id for reward_addr in pool_update table (#546).
* Update utxo_view query (#543).
* Minor update of database schema.
* Remove `merkle_root` field from `block` table.
* Refactor/improve rollbacks (#570).
* Interleave bulk insertion (`epoch_stake`, `reward` and `orphaned_reward`) with regular insertions.
* Fetch and insert pool offline metadata.
* Update a couple of uniqueness constraints.
* Fix PoolUpdate activeEpochNo field (#610)
* Add EpochSyncTime table (#621).
* Update system requirements in Readme.hd.

## 9.0.0
* Note that this release requires the database to be dropped and recreated.
* Requires ghc-8.10.x tp build.
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
Expand Up @@ -3,7 +3,7 @@ cabal-version: 2.2
-- http://haskell.org/cabal/users-guide/

name: cardano-db-sync
version: 9.0.0
version: 10.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
3 changes: 3 additions & 0 deletions cardano-db-tool/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Revision history for cardano-db-tool

## 10.0.0
* Add helper functionality for state snapshot generation.

## 9.0.0
* No changes for this release.

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
Expand Up @@ -3,7 +3,7 @@ cabal-version: 2.2
-- http://haskell.org/cabal/users-guide/

name: cardano-db-tool
version: 9.0.0
version: 10.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
17 changes: 17 additions & 0 deletions cardano-db/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Revision history for cardano-db

## 10.0.0
* Note that this release requires the database to be dropped and recreated. Restoring the `db-sync`
state can take a long time so it is possible to restore it from a snapsot file.
See `doc/state-snapshot.md`.
* Ability to create and restore state snapshots (#613).
* Documentation updates.
* Fix network id for reward_addr in pool_update table (#546).
* Update utxo_view query (#543).
* Minor update of database schema.
* Remove `merkle_root` field from `block` table.
* Refactor/improve rollbacks (#570).
* Interleave bulk insertion (`epoch_stake`, `reward` and `orphaned_reward`) with regular insertions.
* Fetch and insert pool offline metadata.
* Update a couple of uniqueness constraints.
* Fix PoolUpdate activeEpochNo field (#610)
* Add EpochSyncTime table (#621).

## 9.0.0
* Note that this release requires the database to be dropped and recreated.
* Requires ghc-8.10.x tp build.
Expand Down
2 changes: 1 addition & 1 deletion cardano-db/cardano-db.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cabal-version: 2.2
-- http://haskell.org/cabal/users-guide/

name: cardano-db
version: 9.0.0
version: 10.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
3 changes: 3 additions & 0 deletions cardano-sync/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Revision history for cardano-sync

## 10.0.0
* Changes required for other changes.

## 9.0.0
* Extract new package `cardano-sync` (which contains only the functionality require to sync the
chain, and avoids all PostgreSQL dependencies) from `cardano-db-sync`.
Expand Down
2 changes: 1 addition & 1 deletion cardano-sync/cardano-sync.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cabal-version: 2.2
-- http://haskell.org/cabal/users-guide/

name: cardano-sync
version: 9.0.0
version: 10.0.0
synopsis: The Cardano Sync node
description: A Cardano node that follows the Cardano chain and inserts data from the
chain into a PostgresQL database.
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
max-file: "10"

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

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

0 comments on commit 5eff9a0

Please sign in to comment.