Skip to content

Commit 9d01805

Browse files
committed
Version 12.0.0
1 parent 947b887 commit 9d01805

File tree

14 files changed

+96
-14
lines changed

14 files changed

+96
-14
lines changed

cardano-db-sync-extended/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Revision history for cardano-db-sync-extended
22

3+
## 12.0.0
4+
* Note that this release requires the database to be dropped and recreated.
5+
* Update `rewardtype` enum (used in `reward` table) to include a pool deposit refund type.
6+
* Include `json` and (raw) `bytes` fields to `script` table.
7+
* Add `cost_model`, `datum` and `redeemer` tables.
8+
* Update `cost_model*` fields of `param_proposal` and `epoch_param` tables to reference `cost_model`
9+
table.
10+
* Unify SQL types of epoch_stake.epoch_no and epoch.no (#811).
11+
* Fix missing and inconsistent rewards issues (#791, #796, #805. #882, #826, #918, #921, #923, #939,
12+
#947).
13+
* Handle the empty list case in insertManyUncheckedUnique (#869).
14+
* Add a `multi_asset` table with `policy`, `name` and asset `fingerprint` columns (#868).
15+
* Drop the `policy` and `name` columns of `ma_tx_mint` and `ma_tx_out` tables, replacing those
16+
columns with a reference to the `multi_asset` table.
17+
* Fix handling of transactions which have contracts which fail second stage validation (#883).
18+
* Update system requirements (#951).
19+
320
## 11.0.4
421
* Fix race condition on insertion of pool offline data or error response (#806, #823, #858).
522

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

55
name: cardano-db-sync-extended
6-
version: 11.0.4
6+
version: 12.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: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Revision history for cardano-db-sync
22

3+
## 12.0.0
4+
* Note that this release requires the database to be dropped and recreated.
5+
* Update `rewardtype` enum (used in `reward` table) to include a pool deposit refund type.
6+
* Include `json` and (raw) `bytes` fields to `script` table.
7+
* Add `cost_model`, `datum` and `redeemer` tables.
8+
* Update `cost_model*` fields of `param_proposal` and `epoch_param` tables to reference `cost_model`
9+
table.
10+
* Unify SQL types of epoch_stake.epoch_no and epoch.no (#811).
11+
* Fix missing and inconsistent rewards issues (#791, #796, #805. #882, #826, #918, #921, #923, #939,
12+
#947).
13+
* Handle the empty list case in insertManyUncheckedUnique (#869).
14+
* Add a `multi_asset` table with `policy`, `name` and asset `fingerprint` columns (#868).
15+
* Drop the `policy` and `name` columns of `ma_tx_mint` and `ma_tx_out` tables, replacing those
16+
columns with a reference to the `multi_asset` table.
17+
* Stop supporting test configs which don't initiate Shelley properly.
18+
* Fix handling of transactions which have contracts which fail second stage validation (#883).
19+
* Update system requirements (#951).
20+
321
## 11.0.4
422
* Fix race condition on insertion of pool offline data or error response (#806, #823, #858).
523

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

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Revision history for cardano-db-tool
22

3+
## 12.0.0
4+
* Note that this release requires the database to be dropped and recreated.
5+
* Update `rewardtype` enum (used in `reward` table) to include a pool deposit refund type.
6+
* Include `json` and (raw) `bytes` fields to `script` table.
7+
* Add `cost_model`, `datum` and `redeemer` tables.
8+
* Update `cost_model*` fields of `param_proposal` and `epoch_param` tables to reference `cost_model`
9+
table.
10+
* Unify SQL types of epoch_stake.epoch_no and epoch.no (#811).
11+
* Fix missing and inconsistent rewards issues (#791, #796, #805. #882, #826, #918, #921, #923, #939,
12+
#947).
13+
* Handle the empty list case in insertManyUncheckedUnique (#869).
14+
* Add a `multi_asset` table with `policy`, `name` and asset `fingerprint` columns (#868).
15+
* Drop the `policy` and `name` columns of `ma_tx_mint` and `ma_tx_out` tables, replacing those
16+
columns with a reference to the `multi_asset` table.
17+
* Fix the git SHA hash in the version subcommand (#844).
18+
* Update system requirements (#951).
19+
320
## 11.0.4
421
* Fix race condition on insertion of pool offline data or error response (#806, #823, #858).
522

cardano-db-tool/cardano-db-tool.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cabal-version: 2.2
33
-- http://haskell.org/cabal/users-guide/
44

55
name: cardano-db-tool
6-
version: 11.0.4
6+
version: 12.0.0
77
synopsis: Utilities to manage the cardano-db-sync databases.
88
description: Utilities and executable, used to manage and validate the
99
PostgreSQL db and the ledger database of the cardano-db-sync node

cardano-db/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Revision history for cardano-db
22

3+
## 12.0.0
4+
* Note that this release requires the database to be dropped and recreated.
5+
* Update `rewardtype` enum (used in `reward` table) to include a pool deposit refund type.
6+
* Include `json` and (raw) `bytes` fields to `script` table.
7+
* Add `cost_model`, `datum` and `redeemer` tables.
8+
* Update `cost_model*` fields of `param_proposal` and `epoch_param` tables to reference `cost_model`
9+
table.
10+
* Unify SQL types of epoch_stake.epoch_no and epoch.no (#811).
11+
* Fix missing and inconsistent rewards issues (#791, #796, #805. #882, #826, #918, #921, #923, #939,
12+
#947).
13+
* Handle the empty list case in insertManyUncheckedUnique (#869).
14+
* Add a `multi_asset` table with `policy`, `name` and asset `fingerprint` columns (#868).
15+
* Drop the `policy` and `name` columns of `ma_tx_mint` and `ma_tx_out` tables, replacing those
16+
columns with a reference to the `multi_asset` table.
17+
* Update system requirements (#951).
18+
319
## 11.0.4
420
* Fix race condition on insertion of pool offline data or error response (#806, #823, #858).
521

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

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

cardano-smash-server/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Revision history for cardano-smash-server
22

3-
## 11.0.0
4-
* Porting standalone smash to db-sync
3+
## 12.0.0
4+
* Port standalone smash to db-sync.

cardano-smash-server/cardano-smash-server.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cabal-version: 2.2
33
-- http://haskell.org/cabal/users-guide/
44

55
name: cardano-smash-server
6-
version: 11.0.0
6+
version: 12.0.0
77
synopsis: The Cardano smash server
88
description: Please see the README on GitHub at
99
<https://github.com/input-output-hk/cardano-db-sync/cardano-smash-server/#readme>

0 commit comments

Comments
 (0)