File tree Expand file tree Collapse file tree 11 files changed +66
-7
lines changed Expand file tree Collapse file tree 11 files changed +66
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Revision history for cardano-db-sync-extended
2
2
3
+ ## 10.0.0
4
+ * Note that this release requires the database to be dropped and recreated. Restoring the ` db-sync `
5
+ state can take a long time so it is possible to restore it from a snapsot file.
6
+ See ` doc/state-snapshot.md ` .
7
+ * Ability to create and restore state snapshots (#613 ).
8
+ * Documentation updates.
9
+ * Fix network id for reward_addr in pool_update table (#546 ).
10
+ * Update utxo_view query (#543 ).
11
+ * Minor update of database schema.
12
+ * Remove ` merkle_root ` field from ` block ` table.
13
+ * Refactor/improve rollbacks (#570 ).
14
+ * Interleave bulk insertion (` epoch_stake ` , ` reward ` and ` orphaned_reward ` ) with regular insertions.
15
+ * Fetch and insert pool offline metadata.
16
+ * Update a couple of uniqueness constraints.
17
+ * Fix PoolUpdate activeEpochNo field (#610 )
18
+ * Add EpochSyncTime table (#621 ).
19
+ * Update system requirements in Readme.hd.
20
+
3
21
## 9.0.0
4
22
* Note that this release requires the database to be dropped and recreated.
5
23
* Requires ghc-8.10.x tp build.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cabal-version: 2.2
3
3
-- http://haskell.org/cabal/users-guide/
4
4
5
5
name : cardano-db-sync-extended
6
- version : 9 .0.0
6
+ version : 10 .0.0
7
7
synopsis : The Extended Cardano DB Sync node
8
8
description : A Cardano node that follows the Cardano chain and inserts data from the
9
9
chain into a PostgresQL database. It is "extended" because it maintains an
Original file line number Diff line number Diff line change 1
1
# Revision history for cardano-db-sync
2
2
3
+ ## 10.0.0
4
+ * Note that this release requires the database to be dropped and recreated. Restoring the ` db-sync `
5
+ state can take a long time so it is possible to restore it from a snapsot file.
6
+ See ` doc/state-snapshot.md ` .
7
+ * Ability to create and restore state snapshots (#613 ).
8
+ * Documentation updates.
9
+ * Fix network id for reward_addr in pool_update table (#546 ).
10
+ * Update utxo_view query (#543 ).
11
+ * Minor update of database schema.
12
+ * Remove ` merkle_root ` field from ` block ` table.
13
+ * Refactor/improve rollbacks (#570 ).
14
+ * Interleave bulk insertion (` epoch_stake ` , ` reward ` and ` orphaned_reward ` ) with regular insertions.
15
+ * Fetch and insert pool offline metadata.
16
+ * Update a couple of uniqueness constraints.
17
+ * Fix PoolUpdate activeEpochNo field (#610 )
18
+ * Add EpochSyncTime table (#621 ).
19
+ * Update system requirements in Readme.hd.
20
+
3
21
## 9.0.0
4
22
* Note that this release requires the database to be dropped and recreated.
5
23
* Requires ghc-8.10.x tp build.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cabal-version: 2.2
3
3
-- http://haskell.org/cabal/users-guide/
4
4
5
5
name : cardano-db-sync
6
- version : 9 .0.0
6
+ version : 10 .0.0
7
7
synopsis : The Cardano DB Sync node
8
8
description : A Cardano node that follows the Cardano chain and inserts data from the
9
9
chain into a PostgresQL database.
Original file line number Diff line number Diff line change 1
1
# Revision history for cardano-db-tool
2
2
3
+ ## 10.0.0
4
+ * Add helper functionality for state snapshot generation.
5
+
3
6
## 9.0.0
4
7
* No changes for this release.
5
8
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cabal-version: 2.2
3
3
-- http://haskell.org/cabal/users-guide/
4
4
5
5
name : cardano-db-tool
6
- version : 9 .0.0
6
+ version : 10 .0.0
7
7
synopsis : Utilities to manage the cardano-db-sync databases.
8
8
description : Utilities and executable, used to manage and validate the
9
9
PostgreSQL db and the ledger database of the cardano-db-sync node
Original file line number Diff line number Diff line change 1
1
# Revision history for cardano-db
2
2
3
+ ## 10.0.0
4
+ * Note that this release requires the database to be dropped and recreated. Restoring the ` db-sync `
5
+ state can take a long time so it is possible to restore it from a snapsot file.
6
+ See ` doc/state-snapshot.md ` .
7
+ * Ability to create and restore state snapshots (#613 ).
8
+ * Documentation updates.
9
+ * Fix network id for reward_addr in pool_update table (#546 ).
10
+ * Update utxo_view query (#543 ).
11
+ * Minor update of database schema.
12
+ * Remove ` merkle_root ` field from ` block ` table.
13
+ * Refactor/improve rollbacks (#570 ).
14
+ * Interleave bulk insertion (` epoch_stake ` , ` reward ` and ` orphaned_reward ` ) with regular insertions.
15
+ * Fetch and insert pool offline metadata.
16
+ * Update a couple of uniqueness constraints.
17
+ * Fix PoolUpdate activeEpochNo field (#610 )
18
+ * Add EpochSyncTime table (#621 ).
19
+
3
20
## 9.0.0
4
21
* Note that this release requires the database to be dropped and recreated.
5
22
* Requires ghc-8.10.x tp build.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cabal-version: 2.2
3
3
-- http://haskell.org/cabal/users-guide/
4
4
5
5
name : cardano-db
6
- version : 9 .0.0
6
+ version : 10 .0.0
7
7
synopsis : A base PostgreSQL component for the cardano-db-sync node.
8
8
description : Code for the Cardano DB Sync node that is shared between the
9
9
cardano-db-node and other components.
Original file line number Diff line number Diff line change 1
1
# Revision history for cardano-sync
2
2
3
+ ## 10.0.0
4
+ * Changes required for other changes.
5
+
3
6
## 9.0.0
4
7
* Extract new package ` cardano-sync ` (which contains only the functionality require to sync the
5
8
chain, and avoids all PostgreSQL dependencies) from ` cardano-db-sync ` .
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cabal-version: 2.2
3
3
-- http://haskell.org/cabal/users-guide/
4
4
5
5
name : cardano-sync
6
- version : 9 .0.0
6
+ version : 10 .0.0
7
7
synopsis : The Cardano Sync node
8
8
description : A Cardano node that follows the Cardano chain and inserts data from the
9
9
chain into a PostgresQL database.
You can’t perform that action at this time.
0 commit comments