Skip to content

Commit 74425d2

Browse files
committed
Prepare release 13.2.0.2
1 parent 8e05252 commit 74425d2

File tree

9 files changed

+12
-10
lines changed

9 files changed

+12
-10
lines changed

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.2.0.1
4+
version: 13.2.0.2
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.2.0.1
4+
version: 13.2.0.2
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.2.0.1
4+
version: 13.2.0.2
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/cardano-db.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
4-
version: 13.2.0.1
4+
version: 13.2.0.2
55
synopsis: A base PostgreSQL component for the cardano-db-sync node.
66
description: Code for the Cardano DB Sync node that is shared between the
77
cardano-db-node and other components.

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.2.0.1
4+
version: 13.2.0.2
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.

cardano-smash-server/cardano-smash-server.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-smash-server
4-
version: 13.2.0.1
4+
version: 13.2.0.2
55
synopsis: The Cardano smash server
66
description: Please see the README on GitHub at
77
<https://github.com/IntersectMBO/cardano-db-sync/cardano-smash-server/#readme>

doc/migrations.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@ different values.
99
- `d`: no semantic change to the db.
1010

1111
## Upgrading to 13.2.0.x
12+
- Upgrading from 13.2.0.1 to 13.2.0.2 causes no resyncs, since the releases are identical.
1213

13-
In order to upgrade from 13.1.x.x to 13.2.0.x resyncing is not necessary and no special
14+
- In order to upgrade from 13.1.x.x to 13.2.0.x resyncing is not necessary and no special
1415
flags are required from the user. DBSync will automatically perform the new migrations under `schema`
1516
directory. Details about these migrations can be found in the release `Changelog.md`, in the `schema.md`
1617
annotated as `13.2` or in the schema files directly. New stage 1 files starts from 1-10 and stage 2 starts from 2-26.
1718
These migrations takes a couple minutes, mosty because the instant rewards are moved from the `reward` table to a
1819
new `instant_reward` table. After that there is a ledger replay (read below), which takes a few hours.
1920

20-
Upgrading from 13.0.x to 13.2.0.x should be possible but hasn't been tested.
21+
- Upgrading from 13.0.x to 13.2.0.x should be possible but hasn't been tested.
2122

2223
### Ledger replay
2324

doc/schema.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Schema Documentation for cardano-db-sync
22

3+
Schema version: 13.2.0.2
34
**Note:** This file is auto-generated from the documentation in cardano-db/src/Cardano/Db/Schema.hs by the command `cabal run -- gen-schema-docs doc/schema.md`. This document should only be updated during the release process and updated on the release branch.
45

56
### `schema_version`

docker-compose.yml

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

3434
cardano-node:
35-
image: ghcr.io/intersectmbo/cardano-node:8.11.0-sancho
35+
image: ghcr.io/intersectmbo/cardano-node:8.9.3
3636
environment:
3737
- NETWORK=${NETWORK:-mainnet}
3838
volumes:
@@ -53,7 +53,7 @@ services:
5353
max-file: "10"
5454

5555
cardano-db-sync:
56-
image: ghcr.io/intersectmbo/cardano-db-sync:sancho-4-3-0
56+
image: ghcr.io/intersectmbo/cardano-db-sync:13.2.0.2
5757
environment:
5858
- DISABLE_LEDGER=${DISABLE_LEDGER}
5959
- NETWORK=${NETWORK:-mainnet}

0 commit comments

Comments
 (0)