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 1
1
# Revision history for cardano-db-sync-extended
2
2
3
- ## 3.2.0 -- ???
3
+ ## 4.0.0
4
4
5
5
* Note that this release requires the database to be dropped and recreated.
6
6
* 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.
7
17
8
18
## 3.1.0 -- July 2020
9
19
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cabal-version: >= 1.10
3
3
-- http://haskell.org/cabal/users-guide/
4
4
5
5
name : cardano-db-sync-extended
6
- version : 3.1 .0
6
+ version : 4.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 node
2
2
3
- ## 3.2.0 -- ???
3
+ ## 4.0.0
4
4
5
5
* Note that this release requires the database to be dropped and recreated.
6
6
* Add and populate 'tx_metadata' table.
10
10
* Fix certificate ordering issues that resulted in an abort if a MIR certificate was
11
11
found whose output was a stake address that was inserted later in the same tx (#237 ).
12
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.
13
17
14
18
## 3.1.0 -- July 2020
15
19
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cabal-version: >= 1.10
3
3
-- http://haskell.org/cabal/users-guide/
4
4
5
5
name : cardano-db-sync
6
- version : 3.1 .0
6
+ version : 4.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
2
2
3
- ## 3.2.0 -- ???
3
+ ## 4.0.0
4
4
5
5
* Note that this release requires the database to be dropped and recreated.
6
6
* 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'.
7
13
8
14
## 3.1.0 -- July 2020
9
15
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cabal-version: >= 1.10
3
3
-- http://haskell.org/cabal/users-guide/
4
4
5
5
name : cardano-db
6
- version : 3.1 .0
6
+ version : 4.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 @@ -38,7 +38,7 @@ services:
38
38
max-file : " 10"
39
39
40
40
cardano-db-sync :
41
- image : inputoutput/cardano-db-sync:3.1 .0
41
+ image : inputoutput/cardano-db-sync:4.0 .0
42
42
environment :
43
43
- NETWORK=${NETWORK:-mainnet}
44
44
- POSTGRES_HOST=postgres
You can’t perform that action at this time.
0 commit comments