Skip to content

Commit d048662

Browse files
committed
Tag 13.1.0.2
1 parent 5fa874a commit d048662

File tree

9 files changed

+16
-12
lines changed

9 files changed

+16
-12
lines changed

cardano-chain-gen/cardano-chain-gen.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-chain-gen
6-
version: 13.1.0.0
6+
version: 13.1.0.2
77
synopsis: A fake chain generator for testing cardano DB sync.
88
description: A fake chain generator for testing cardano DB sync.
99
homepage: https://github.com/input-output-hk/cardano-db-sync

cardano-db-sync/CHANGELOG.md

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

3+
## 13.1.0.2
4+
* Upgrade dependencies and integrates a fix in ledger internal data structures.
5+
* Integrates Cardano Haskell Packages (CHaP)
6+
37
## 13.1.0.0
48
* Avoids rollbacks on restarts, making them way faster [#1190]
59
* Syncing speed is increased

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: 13.1.0.0
6+
version: 13.1.0.2
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/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: 13.1.0.0
6+
version: 13.1.0.2
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/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: 13.1.0.0
6+
version: 13.1.0.2
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-db/test/cardano-db-test.cabal

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

55
name: cardano-db-test
6-
version: 13.1.0.0
6+
version: 13.1.0.2
77
synopsis: Tests for the base functionality of the cardano-db library
88
description: Code for the Cardano DB Sync node that is shared between the
99
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
@@ -3,7 +3,7 @@ cabal-version: 2.2
33
-- http://haskell.org/cabal/users-guide/
44

55
name: cardano-smash-server
6-
version: 13.1.0.0
6+
version: 13.1.0.2
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>

doc/migrations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ This is `a.b.c.d`. where
88
different values.
99
- `d`: no semantic change to the db.
1010

11-
## Upgrading to 13.1.0.0
11+
## Upgrading to 13.1.0.x
1212

13-
In order to upgrade from 13.0.x to 13.1.0.0 resyncing is not necessary and requires no special flags
13+
In order to upgrade from 13.0.x to 13.1.0.x resyncing is not necessary and requires no special flags
1414
from the user. DBSync will automatically spawn a fixing procedure, which fixes old values
1515
related to plutus data. After that schema migrations will run on top of the existing db.
1616

17-
Release `13.1.0.0` uses 4 stages of migrations.
17+
Release `13.1.0.x` uses 4 stages of migrations.
1818
- `stage 1`: introduces basic postgres types. These cannot be modified or extended.
19-
- `stage 2`: introduces basic tables and their constraints. `13.1.0.0` brings many
19+
- `stage 2`: introduces basic tables and their constraints. `13.1.0.x` brings many
2020
changes here, as it removes foreign, unique keys and a few fields. These files cannot
2121
be modified or extended.
2222
- `stage 3`: introduces only the indexes necessary to db-sync. Having unecessary

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: inputoutput/cardano-node:1.35.4
35+
image: inputoutput/cardano-node:1.35.5
3636
environment:
3737
- NETWORK=${NETWORK:-mainnet}
3838
volumes:
@@ -53,7 +53,7 @@ services:
5353
max-file: "10"
5454

5555
cardano-db-sync:
56-
image: inputoutput/cardano-db-sync:13.1.0.0
56+
image: inputoutput/cardano-db-sync:13.1.0.2
5757
environment:
5858
- NETWORK=${NETWORK:-mainnet}
5959
- POSTGRES_HOST=postgres

0 commit comments

Comments
 (0)