Skip to content

Commit f15a4c8

Browse files
committed
Prepare release 13.4.0.0
1 parent b9e8aca commit f15a4c8

File tree

7 files changed

+29
-9
lines changed

7 files changed

+29
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
## 13.4.0.0
44

5-
* Added `tx.treasury_donation`
5+
- Voting metadata parsing falls back to CIP-100 when CIP-108 or CIP-119 is not followed [#1779]
6+
- Extended the voting_anchor.type anchorType with vote, committee_dereg and constitution
7+
- Fixed `only-utxo` missing multi-assets [#1788]
8+
- Config can now override presets [pr #1775]
9+
- Fixed Script bytes mismatch false negative check [#1646]
10+
- Fixed an issue where some pool metadata were missing [#1805]
11+
- Fix: docker snapshot restoration [pr #1776]
612

713
## 13.3.0.0
814
* Support for Conway (see schema docs)
@@ -12,6 +18,7 @@
1218
* Added an optional feature to store CBOR serialized transactions in `tx_cbor` table [#1723]
1319
* Added an optional feature to store pool stats per epoch transactions in `pool_stat` table
1420
* EnableFutureGenesis is now true by default
21+
* Added `tx.treasury_donation`
1522

1623
## 13.2.0.2
1724
* Support node 8.9.x

cardano-chain-gen/cardano-chain-gen.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.6
22

33
name: cardano-chain-gen
4-
version: 13.3.0.0
4+
version: 13.4.0.0
55
synopsis: A fake chain generator for testing cardano DB sync.
66
description: A fake chain generator for testing cardano DB sync.
77
homepage: https://github.com/IntersectMBO/cardano-db-sync

cardano-db-sync/cardano-db-sync.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.6
22

33
name: cardano-db-sync
4-
version: 13.3.0.0
4+
version: 13.4.0.0
55
synopsis: The Cardano DB Sync node
66
description: A Cardano node that follows the Cardano chain and inserts data from the
77
chain into a PostgresQL database.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.6
22

33
name: cardano-db-tool
4-
version: 13.3.0.1
4+
version: 13.4.0.0
55
synopsis: Utilities to manage the cardano-db-sync databases.
66
description: Utilities and executable, used to manage and validate the
77
PostgreSQL db and the ledger database of the cardano-db-sync node

cardano-db/test/cardano-db-test.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.6
22

33
name: cardano-db-test
4-
version: 13.3.0.0
4+
version: 13.4.0.0
55
synopsis: Tests for the base functionality of the cardano-db library
66
description: Code for the Cardano DB Sync node that is shared between the
77
cardano-db-node and other components.

doc/schema.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ A table for every Anchor that appears on Governance Actions. These are pointers
897897
| `block_id` | integer (64) | The Block table index of the tx that includes this anchor. This only exists to facilitate rollbacks |
898898
| `data_hash` | blob | A hash of the contents of the metadata URL |
899899
| `url` | varchar | A URL to a JSON payload of metadata |
900-
| `type` | anchorType | |
900+
| `type` | anchorType | The type of the anchor. It can be gov_action, drep, other, vote, committee_dereg, constitution |
901901

902902
### `gov_action_proposal`
903903

@@ -964,7 +964,7 @@ A table for members of the committee. A committee can have multiple members. New
964964

965965
### `constitution`
966966

967-
A table for constitutiona attached to a GovActionProposal. New in 13.2-Conway.
967+
A table for constitution attached to a GovActionProposal. New in 13.2-Conway.
968968

969969
* Primary Id: `id`
970970

@@ -993,6 +993,7 @@ A table for voting procedures, aka GovVote. A Vote can be Yes No or Abstain. New
993993
| `pool_voter` | integer (64) | A reference to the pool hash entry that voted |
994994
| `vote` | vote | The Vote. Can be one of Yes, No, Abstain. |
995995
| `voting_anchor_id` | integer (64) | The VotingAnchor table index associated with this VotingProcedure. |
996+
| `invalid` | integer (64) | TODO: This is currently not implemented and always stays null. Not null if the vote is invalid. |
996997

997998
### `drep_distr`
998999

@@ -1022,6 +1023,18 @@ Table with governance (and in the future other) stats per epoch.
10221023
| `constitution_id` | integer (64) | The reference to the current constitution. Should never be null. |
10231024
| `epoch_no` | word31type | The epoch in question. |
10241025

1026+
### `event_info`
1027+
1028+
* Primary Id: `id`
1029+
1030+
| Column name | Type | Description |
1031+
|-|-|-|
1032+
| `id` | integer (64) | |
1033+
| `tx_id` | integer (64) | |
1034+
| `epoch` | word31type | |
1035+
| `type` | string | |
1036+
| `explanation` | string | |
1037+
10251038
### `off_chain_pool_data`
10261039

10271040
The pool offchain (ie not on chain) for a stake pool.

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ services:
3333
max-file: "10"
3434

3535
cardano-node:
36-
image: ghcr.io/intersectmbo/cardano-node:9.0.0
36+
image: ghcr.io/intersectmbo/cardano-node:9.1.0
3737
environment:
3838
- NETWORK=${NETWORK:-mainnet}
3939
volumes:
@@ -54,7 +54,7 @@ services:
5454
max-file: "10"
5555

5656
cardano-db-sync:
57-
image: ghcr.io/intersectmbo/cardano-db-sync:13.3.0.0
57+
image: ghcr.io/intersectmbo/cardano-db-sync:13.4.0.0
5858
environment:
5959
- DB_SYNC_CONFIG=${DB_SYNC_CONFIG:-}
6060
- DISABLE_LEDGER=${DISABLE_LEDGER}

0 commit comments

Comments
 (0)