From 3cf868ec8c06265e4b670ac737af640d716e5ef7 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Thu, 10 Dec 2020 09:18:17 +1100 Subject: [PATCH] Version 7.1.0 --- cardano-db-sync-extended/CHANGELOG.md | 7 +++++++ cardano-db-sync-extended/cardano-db-sync-extended.cabal | 2 +- cardano-db-sync/CHANGELOG.md | 7 +++++++ cardano-db-sync/cardano-db-sync.cabal | 2 +- cardano-db/CHANGELOG.md | 7 +++++++ cardano-db/cardano-db.cabal | 2 +- docker-compose.yml | 4 ++-- 7 files changed, 26 insertions(+), 5 deletions(-) diff --git a/cardano-db-sync-extended/CHANGELOG.md b/cardano-db-sync-extended/CHANGELOG.md index 311980500..d2b7ffe8d 100644 --- a/cardano-db-sync-extended/CHANGELOG.md +++ b/cardano-db-sync-extended/CHANGELOG.md @@ -1,5 +1,12 @@ # Revision history for cardano-db-sync-extended +## 7.1.0 +* Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from + 6.0.x and earlier will require it. +* Update dependencies. +* Support for the Mary era (ie multi-asset support). +* Fix issues with transactions invalidBefore/invalidHereafter fields. + ## 7.0.0 * Note that this release requires the database to be dropped and recreated. * Update dependencies. diff --git a/cardano-db-sync-extended/cardano-db-sync-extended.cabal b/cardano-db-sync-extended/cardano-db-sync-extended.cabal index eec38e655..7f4f2dbd4 100644 --- a/cardano-db-sync-extended/cardano-db-sync-extended.cabal +++ b/cardano-db-sync-extended/cardano-db-sync-extended.cabal @@ -3,7 +3,7 @@ cabal-version: >= 1.10 -- http://haskell.org/cabal/users-guide/ name: cardano-db-sync-extended -version: 7.0.0 +version: 7.1.0 synopsis: The Extended Cardano DB Sync node description: A Cardano node that follows the Cardano chain and inserts data from the chain into a PostgresQL database. It is "extended" because it maintains an diff --git a/cardano-db-sync/CHANGELOG.md b/cardano-db-sync/CHANGELOG.md index e14010d9a..7be7b750a 100644 --- a/cardano-db-sync/CHANGELOG.md +++ b/cardano-db-sync/CHANGELOG.md @@ -1,5 +1,12 @@ # Revision history for cardano-db-sync node +## 7.1.0 +* Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from + 6.0.x and earlier will require it. +* Update dependencies. +* Support for the Mary era (ie multi-asset support). +* Fix issues with transactions invalidBefore/invalidHereafter fields. + ## 7.0.0 * Note that this release requires the database to be dropped and recreated. * Update dependencies. diff --git a/cardano-db-sync/cardano-db-sync.cabal b/cardano-db-sync/cardano-db-sync.cabal index 009f52c6e..7a8fee4b6 100644 --- a/cardano-db-sync/cardano-db-sync.cabal +++ b/cardano-db-sync/cardano-db-sync.cabal @@ -3,7 +3,7 @@ cabal-version: >= 1.10 -- http://haskell.org/cabal/users-guide/ name: cardano-db-sync -version: 7.0.0 +version: 7.1.0 synopsis: The Cardano DB Sync node description: A Cardano node that follows the Cardano chain and inserts data from the chain into a PostgresQL database. diff --git a/cardano-db/CHANGELOG.md b/cardano-db/CHANGELOG.md index ff4cf2522..3228f6121 100644 --- a/cardano-db/CHANGELOG.md +++ b/cardano-db/CHANGELOG.md @@ -1,5 +1,12 @@ # Revision history for cardano-db +## 7.1.0 +* Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from + 6.0.x and earlier will require it. +* Update dependencies. +* Support for the Mary era (ie multi-asset support). +* Fix issues with transactions invalidBefore/invalidHereafter fields. + ## 7.0.0 * Note that this release requires the database to be dropped and recreated. * Update dependencies. diff --git a/cardano-db/cardano-db.cabal b/cardano-db/cardano-db.cabal index 4c90c93ec..801cb1479 100644 --- a/cardano-db/cardano-db.cabal +++ b/cardano-db/cardano-db.cabal @@ -3,7 +3,7 @@ cabal-version: >= 1.10 -- http://haskell.org/cabal/users-guide/ name: cardano-db -version: 7.0.0 +version: 7.1.0 synopsis: A base PostgreSQL component for the cardano-db-sync node. description: Code for the Cardano DB Sync node that is shared between the cardano-db-node and other components. diff --git a/docker-compose.yml b/docker-compose.yml index e39982eb4..09ae97d3c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -24,7 +24,7 @@ services: max-file: "10" cardano-node: - image: inputoutput/cardano-node:1.23.0 + image: inputoutput/cardano-node:1.24.2 environment: - NETWORK=${NETWORK:-mainnet} volumes: @@ -38,7 +38,7 @@ services: max-file: "10" cardano-db-sync: - image: inputoutput/cardano-db-sync:7.0.0 + image: inputoutput/cardano-db-sync:7.1.0 environment: - NETWORK=${NETWORK:-mainnet} - POSTGRES_HOST=postgres