Skip to content

Commit 07ee3b0

Browse files
erikdjbgi
authored andcommitted
Version 11.0.0
1 parent e06c011 commit 07ee3b0

File tree

12 files changed

+72
-30
lines changed

12 files changed

+72
-30
lines changed

cardano-db-sync-extended/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-sync-extended
22

3+
## 11.0.0
4+
* Note that this release requires the database to be dropped and recreated.
5+
* Alonzo support.
6+
* Database changes as per cardano-db changelog.
7+
* Add run time validation that the on-disk schema matches what the app expects (#472).
8+
* Add partial validation of `Reward` table.
9+
310
## 10.0.1
411
* Fix docker issue (#686).
512

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: 2.4
33
-- http://haskell.org/cabal/users-guide/
44

55
name: cardano-db-sync-extended
6-
version: 10.0.1
6+
version: 11.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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Revision history for cardano-db-sync
22

3+
## 11.0.0
4+
* Note that this release requires the database to be dropped and recreated.
5+
* Alonzo support.
6+
* Database changes as per cardano-db changelog.
7+
* Add run time validation that the on-disk schema matches what the app expects (#472).
8+
* Add partial validation of `Reward` table.
9+
310
## 10.0.1
411
* Fix docker issue (#686).
512

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: 2.4
33
-- http://haskell.org/cabal/users-guide/
44

55
name: cardano-db-sync
6-
version: 10.0.1
6+
version: 11.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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Revision history for cardano-db-tool
22

3+
## 11.0.0
4+
* Alonzo support.
5+
* Database changes as per cardano-db changelog.
6+
* Add a validation to ensure the sum of the AdaPots values per epoch is a constant (#718).
7+
* Add reporting functionalities (balance, teansactions, reward history, latest rewards).
8+
39
## 10.0.0
410
* Add helper functionality for state snapshot generation.
511

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: 2.2
33
-- http://haskell.org/cabal/users-guide/
44

55
name: cardano-db-tool
6-
version: 10.0.1
6+
version: 11.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: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Revision history for cardano-db
22

3+
## 11.0.0
4+
* Note that this release requires the database to be dropped and recreated.
5+
* Many changed to support Alonzo release.
6+
* Add Alonzo (smart contracts) related Redeemer and Script tables.
7+
* Add an `epochNo` columm to StakeRegistration/Deregistration tables.
8+
* Add instantaneous rewards to the `Reward` table. This adds two new reward sources (`treasury` and
9+
`reserves` to the existing `owner` and `member` types) and makes the `poolId` NULLable (treasury
10+
and reserves rewards are not associated with a pool).
11+
* For the `EpochSyncTime` table change the `seconds` column from `double` to `Word64` and make it
12+
non-NULLable.
13+
* Fix the uniqueness constraint on the `CollateralTxIn` and `PoolMetadataRef` tables.
14+
* For the `Reward` table, drop the `epochNo` column and relace it with `earnedEpoch` and
15+
`spendableEpoch`
16+
* Extend `ProtocolParams` and `EpochParams` tables for Alonzo.
17+
* Add `opCertCounter` column to `Block` table.
18+
* Drop `OrphanedRewrd` table (because it was incomplete can cannot be fixed).
19+
* Fix `utxo_view` defined in schema (#744).
20+
* Add `dataHash` field to the `TxOut` table.
21+
322
## 10.0.1
423
* Fix docker issue (#686).
524

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: 2.2
33
-- http://haskell.org/cabal/users-guide/
44

55
name: cardano-db
6-
version: 10.0.1
6+
version: 11.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.

cardano-sync/CHANGELOG.md

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

3+
## 11.0.0
4+
* Alonzo support.
5+
* Database changes as per cardano-db changelog.
6+
37
## 10.0.1
48
* Fix docker issue (#686).
59

cardano-sync/cardano-sync.cabal

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

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

0 commit comments

Comments
 (0)