Skip to content

Commit 8591851

Browse files
authored
Merge pull request #247 from input-output-hk/erikd/changelog
Update changelog entries and version
2 parents 3fa5ecf + c8ce0f5 commit 8591851

File tree

7 files changed

+27
-7
lines changed

7 files changed

+27
-7
lines changed

cardano-db-sync-extended/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
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

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

55
name: cardano-db-sync-extended
6-
version: 3.1.0
6+
version: 4.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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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.
@@ -10,6 +10,10 @@
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

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

55
name: cardano-db-sync
6-
version: 3.1.0
6+
version: 4.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/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
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

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

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

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)