Skip to content

Commit 0b054e1

Browse files
committed
Version 9.0.0
1 parent eedcfb4 commit 0b054e1

File tree

11 files changed

+52
-8
lines changed

11 files changed

+52
-8
lines changed

cardano-db-sync-extended/CHANGELOG.md

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

3+
## 9.0.0
4+
* Note that this release requires the database to be dropped and recreated.
5+
* Requires ghc-8.10.x tp build.
6+
* Documentation updates.
7+
* Improve DbSync API.
8+
* Add `delegation_slot_no` column to `delegation` table to simplify a query used when populating the
9+
database.
10+
* Improve the way database inserts are done.
11+
* Fix `blk_count` column in `epoch` table for epochs without transactions (#296).
12+
* Extract new package `cardano-sync` (which contains only the functionality require to sync the
13+
chain, and avoids all PostgreSQL dependencies) from `cardano-db-sync`.
14+
* Add static (musl64) linux builds.
15+
* Add and populate `ada_pots` table.
16+
* Fix network id for `reward_addr` in `pool_update` table (#546).
17+
318
## 8.0.0
419
* Note that this release requires the database to be dropped and recreated.
520
* Requires version 1.25.0 or later of the node.

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

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

3+
## 9.0.0
4+
* Note that this release requires the database to be dropped and recreated.
5+
* Requires ghc-8.10.x tp build.
6+
* Documentation updates.
7+
* Improve DbSync API.
8+
* Add `delegation_slot_no` column to `delegation` table to simplify a query used when populating the
9+
database.
10+
* Improve the way database inserts are done.
11+
* Fix `blk_count` column in `epoch` table for epochs without transactions (#296).
12+
* Extract new package `cardano-sync` (which contains only the functionality require to sync the
13+
chain, and avoids all PostgreSQL dependencies) from `cardano-db-sync`.
14+
* Add static (musl64) linux builds.
15+
* Add and populate `ada_pots` table.
16+
* Fix network id for `reward_addr` in `pool_update` table (#546).
17+
318
## 8.0.0
419
* Note that this release requires the database to be dropped and recreated.
520
* Requires version 1.25.0 or later of the node.

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

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

3+
## 9.0.0
4+
* No changes for this release.
5+
36
## 8.0.0
47
* New package split out of `cardano-db` package so it can use `cardano-db-sync` as a library.
58
* 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: 2.2
33
-- http://haskell.org/cabal/users-guide/
44

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

3+
## 9.0.0
4+
* Note that this release requires the database to be dropped and recreated.
5+
* Requires ghc-8.10.x tp build.
6+
* Documentation updates.
7+
* Add `delegation_slot_no` column to `delegation` table to simplify a query used when populating the
8+
database.
9+
* Add static (musl64) linux builds.
10+
* Add and populate `ada_pots` table.
11+
312
## 8.0.0
413
* Note that this release requires the database to be dropped and recreated.
514
* Documentation updates.

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: 8.0.0
6+
version: 9.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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Revision history for cardano-sync
22

3-
## Next version
4-
* Added this.
3+
## 9.0.0
4+
* Extract new package `cardano-sync` (which contains only the functionality require to sync the
5+
chain, and avoids all PostgreSQL dependencies) from `cardano-db-sync`.
6+

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: 8.0.0
6+
version: 9.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)