File tree Expand file tree Collapse file tree 7 files changed +26
-5
lines changed Expand file tree Collapse file tree 7 files changed +26
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Revision history for cardano-db-sync-extended
2
2
3
+ ## 7.1.0
4
+ * Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from
5
+ 6.0.x and earlier will require it.
6
+ * Update dependencies.
7
+ * Support for the Mary era (ie multi-asset support).
8
+ * Fix issues with transactions invalidBefore/invalidHereafter fields.
9
+
3
10
## 7.0.0
4
11
* Note that this release requires the database to be dropped and recreated.
5
12
* Update dependencies.
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 : 7.0 .0
6
+ version : 7.1 .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
+ ## 7.1.0
4
+ * Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from
5
+ 6.0.x and earlier will require it.
6
+ * Update dependencies.
7
+ * Support for the Mary era (ie multi-asset support).
8
+ * Fix issues with transactions invalidBefore/invalidHereafter fields.
9
+
3
10
## 7.0.0
4
11
* Note that this release requires the database to be dropped and recreated.
5
12
* Update dependencies.
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 : 7.0 .0
6
+ version : 7.1 .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
+ ## 7.1.0
4
+ * Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from
5
+ 6.0.x and earlier will require it.
6
+ * Update dependencies.
7
+ * Support for the Mary era (ie multi-asset support).
8
+ * Fix issues with transactions invalidBefore/invalidHereafter fields.
9
+
3
10
## 7.0.0
4
11
* Note that this release requires the database to be dropped and recreated.
5
12
* Update dependencies.
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 : 7.0 .0
6
+ version : 7.1 .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 @@ -24,7 +24,7 @@ services:
24
24
max-file : " 10"
25
25
26
26
cardano-node :
27
- image : inputoutput/cardano-node:1.23.0
27
+ image : inputoutput/cardano-node:1.24.2
28
28
environment :
29
29
- NETWORK=${NETWORK:-mainnet}
30
30
volumes :
@@ -38,7 +38,7 @@ services:
38
38
max-file : " 10"
39
39
40
40
cardano-db-sync :
41
- image : inputoutput/cardano-db-sync:7.0 .0
41
+ image : inputoutput/cardano-db-sync:7.1 .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