Skip to content

Commit

Permalink
Version 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
erikd committed Oct 22, 2020
1 parent 1c97b51 commit ae6d9a0
Show file tree
Hide file tree
Showing 7 changed files with 86 additions and 5 deletions.
28 changes: 28 additions & 0 deletions cardano-db-sync-extended/CHANGELOG.md
@@ -1,5 +1,33 @@
# Revision history for cardano-db-sync-extended

## 6.0.0

* Note that this release requires the database to be dropped and recreated.
* Update dependencies.
* Rename 'config/pgpass' to 'config/pgpass-mainnet'.
* Maintain a copy of the ledger state which contains data that is not on chain.
* Add Reward table (populated from ledger state).
* Rejig how configuration is handled (it now reads the node's config file).
* Read node config from a path relative to db-sync config (#321).
* Rename ParamUpdate table to ParamProposal.
* Fix uniqueness constraint for PoolRetire table (#306).
* Add and populate EpochParam table (for Shelley not Byron).
* Add and populate EpochStake table (#319).
* Store Bech32 encodings of two more fields (#295).
* Fix bad registeredTxId uniqueness constraint on StakeAddress (#326, #327) (this was never
included in a release).
* Robustify handling of the Word64 types in database (#334, #351).
* Add version number CLI commands for standard and extended db-sync
* Fix incorrect hash for SlotLeader (#349).
* Fix pool_id column in reward table (#361).
* Add a stake_address_id column to the tx_out table
* Documentation updates.
* Improve the way ProtVer is stored in the database (#368).

## 5.0.2

* Fix handling of unsigned 64bit integer fields (#334, #335).

## 5.0.1

* Update dependencies.
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: 5.0.1
version: 6.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
28 changes: 28 additions & 0 deletions cardano-db-sync/CHANGELOG.md
@@ -1,5 +1,33 @@
# Revision history for cardano-db-sync node

## 6.0.0

* Note that this release requires the database to be dropped and recreated.
* Update dependencies.
* Maintain a copy of the ledger state which contains data that is not on chain.
* Add Reward table (populated from ledger state).
* Rejig how configuration is handled (it now reads the node's config file).
* Read node config from a path relative to db-sync config (#321).
* Rename ParamUpdate table to ParamProposal.
* Fix uniqueness constraint for PoolRetire table (#306).
* Add and populate EpochParam table (for Shelley not Byron).
* Add and populate EpochStake table (#319).
* Fix handling of PersistRational DbWord64 values (#334).
* Store Bech32 encodings of two more fields (#295).
* Fix bad registeredTxId uniqueness constraint on StakeAddress (#326, #327) (this was never
included in a release).
* Robustify handling of the Word64 types in database (#334, #351).
* Add version number CLI commands for standard and extended db-sync
* Fix incorrect hash for SlotLeader (#349).
* Fix pool_id column in reward table (#361).
* Add a stake_address_id column to the tx_out table
* Documentation updates.
* Improve the way ProtVer is stored in the database (#368).

## 5.0.2

* Fix handling of unsigned 64bit integer fields (#334, #335).

## 5.0.1

* Update dependencies.
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: 5.0.1
version: 6.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
25 changes: 25 additions & 0 deletions cardano-db/CHANGELOG.md
@@ -1,5 +1,30 @@
# Revision history for cardano-db

## 6.0.0

* Note that this release requires the database to be dropped and recreated.
* Update dependencies.
* Maintain a copy of the ledger state which contains data that is not on chain.
* Add Reward table (populated from ledger state).
* Rename ParamUpdate table to ParamProposal.
* Fix uniqueness constraint for PoolRetire table (#306).
* Add and populate EpochParam table (for Shelley not Byron).
* Add and populate EpochStake table (#319).
* Store Bech32 encodings of two more fields (#295).
* Fix bad registeredTxId uniqueness constraint on StakeAddress (#326, #327) (this was never
included in a release).
* Robustify handling of the Word64 types in database (#334, #351).
* Add version number CLI commands for standard and extended db-sync
* Fix incorrect hash for SlotLeader (#349).
* Fix pool_id column in reward table (#361).
* Add a stake_address_id column to the tx_out table
* Documentation updates.
* Improve the way ProtVer is stored in the database (#368).

## 5.0.2

* Fix handling of unsigned 64bit integer fields (#334, #335).

## 5.0.1

* Update dependencies.
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: 5.0.1
version: 6.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.19.1
image: inputoutput/cardano-node:1.21.1
environment:
- NETWORK=${NETWORK:-mainnet}
volumes:
Expand All @@ -38,7 +38,7 @@ services:
max-file: "10"

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

0 comments on commit ae6d9a0

Please sign in to comment.