File tree Expand file tree Collapse file tree 7 files changed +27
-7
lines changed Expand file tree Collapse file tree 7 files changed +27
-7
lines changed Original file line number Diff line number Diff line change 11# Revision history for cardano-db-sync-extended
22
3- ## 3.2.0 -- ???
3+ ## 4.0.0
44
55* Note that this release requires the database to be dropped and recreated.
66* Add and populate 'tx_metadata' table.
7+ * Insert stake deregistrations into correct table. Previously deregistrations were
8+ inserted into the registration table.
9+ * For all transaction certificates, add index within the transaction (#230 ).
10+ * Fix certificate ordering issues that resulted in an abort if a MIR certificate was
11+ found whose output was a stake address that was inserted later in the same tx (#237 ).
12+ * Make sure stake_address registrations are correctly handled on rollbacks (#238 ).
13+ * In 'tx_out' table, store the raw as well as rendered version of 'address' (#223 ).
14+ * In 'stake_address' table, store the raw as well as rendered version (#224 ).
15+ * Fix epoch start and end times in epoch table (#242 ).
16+ * Make 'delegation' and 'pool_retire' tables reference 'pool_hash' table instead of 'pool_update.
717
818## 3.1.0 -- July 2020
919
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cabal-version: >= 1.10
33-- http://haskell.org/cabal/users-guide/
44
55name : cardano-db-sync-extended
6- version : 3.1 .0
6+ version : 4.0 .0
77synopsis : The Extended Cardano DB Sync node
88description : 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
Original file line number Diff line number Diff line change 11# Revision history for cardano-db-sync node
22
3- ## 3.2.0 -- ???
3+ ## 4.0.0
44
55* Note that this release requires the database to be dropped and recreated.
66* Add and populate 'tx_metadata' table.
1010* Fix certificate ordering issues that resulted in an abort if a MIR certificate was
1111 found whose output was a stake address that was inserted later in the same tx (#237 ).
1212* Make sure stake_address registrations are correctly handled on rollbacks (#238 ).
13+ * In 'tx_out' table, store the raw as well as rendered version of 'address' (#223 ).
14+ * In 'stake_address' table, store the raw as well as rendered version (#224 ).
15+ * Fix epoch start and end times in epoch table (#242 ).
16+ * Make 'delegation' and 'pool_retire' tables reference 'pool_hash' table instead of 'pool_update.
1317
1418## 3.1.0 -- July 2020
1519
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cabal-version: >= 1.10
33-- http://haskell.org/cabal/users-guide/
44
55name : cardano-db-sync
6- version : 3.1 .0
6+ version : 4.0 .0
77synopsis : The Cardano DB Sync node
88description : A Cardano node that follows the Cardano chain and inserts data from the
99 chain into a PostgresQL database.
Original file line number Diff line number Diff line change 11# Revision history for cardano-db
22
3- ## 3.2.0 -- ???
3+ ## 4.0.0
44
55* Note that this release requires the database to be dropped and recreated.
66* Add and populate 'tx_metadata' table.
7+ * For all transaction certificates, add index within the transaction (#230 ).
8+ * In 'tx_out' table, store the raw as well as rendered version of 'address' (#223 ).
9+ * In 'stake_address' table, store the raw as well as rendered version (#224 ).
10+ * Fix epoch start and end times in epoch table (#242 ).
11+ * Make 'delegation' and 'pool_retire' tables reference 'pool_hash' table instead of 'pool_update.
12+ * Add database indices on 'tx_out' and 'pool_update'.
713
814## 3.1.0 -- July 2020
915
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cabal-version: >= 1.10
33-- http://haskell.org/cabal/users-guide/
44
55name : cardano-db
6- version : 3.1 .0
6+ version : 4.0 .0
77synopsis : A base PostgreSQL component for the cardano-db-sync node.
88description : Code for the Cardano DB Sync node that is shared between the
99 cardano-db-node and other components.
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ services:
3838 max-file : " 10"
3939
4040 cardano-db-sync :
41- image : inputoutput/cardano-db-sync:3.1 .0
41+ image : inputoutput/cardano-db-sync:4.0 .0
4242 environment :
4343 - NETWORK=${NETWORK:-mainnet}
4444 - POSTGRES_HOST=postgres
You can’t perform that action at this time.
0 commit comments