Skip to content

Commit 1ae6839

Browse files
committed
Release 0.18.0
Signed-off-by: Sasha Bogicevic <[email protected]>
1 parent a1b5f23 commit 1ae6839

File tree

16 files changed

+40
-36
lines changed

16 files changed

+40
-36
lines changed

.github/workflows/explorer/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
restart: always
1818

1919
hydra-explorer:
20-
image: ghcr.io/cardano-scaling/hydra-explorer:0.17.0
20+
image: ghcr.io/cardano-scaling/hydra-explorer:0.18.0
2121
volumes:
2222
- /srv/var/cardano/state-preview:/data
2323
ports:

CHANGELOG.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
As a minor extension, we also keep a semantic version for the `UNRELEASED`
99
changes.
1010

11-
## [0.18.0] - Unreleased
11+
## [0.18.0] - 2024-08-08
1212

1313
- Tested with `cardano-node 9.1.0` and `cardano-cli 9.2.1.0`.
1414

15-
- Fixed fee calculation of the internal wallet when the network switches to `Conway`. This allows heads to be opened in `Babbage` and closed/finalized in `Conway`.
15+
- Fixed fee calculation of the internal wallet when the network switches to `Conway`. This allows heads to be opened in `Babbage` and closed/finalized in `Conway`. [1553](https://github.com/cardano-scaling/hydra/pull/1553)
1616

1717
- **BREAKING** Changes to the `hydra-node` API `/commit` endpoint [#1463](https://github.com/cardano-scaling/hydra/pull/1463):
1818
- Removed the check that prevented committing UTxOs from an internal `hydra-node` wallet.
1919
- `SpendingNodeUtxoForbidden` error was removed.
2020

21-
- Add capability to move UTxO out of an open Head to the Cardano main chain:
21+
- Add capability to move UTxO out of an open Head to the Cardano main chain: [1344](https://github.com/cardano-scaling/hydra/pull/1344)
2222
- Submitting a decommit transaction to `POST /decommit` or as `Decommit` command through websocket, requests removal of this transactions' outputs from the head.
2323
- When successful, `DecommitApproved` and `DecommitFinalized` indicate that all outputs are made available on the layer one.
2424
- Invalid transactions are explained through a `DecommitInvalid` server output.
2525

26-
- Change `--start-chain-from` to always use the newer point when also a head state is known.
26+
- Change `--start-chain-from` to always use the newer point when also a head state is known. [1471](https://github.com/cardano-scaling/hydra/pull/1471)
2727

28-
- Moved several pages from "core concepts" into the user manual and developer docs to futher improve user journey.
28+
- Moved several pages from "core concepts" into the user manual and developer docs to futher improve user journey. [1486](https://github.com/cardano-scaling/hydra/pull/1486)
2929

30-
- Offline mode of `hydra-node` uses `--node-id` to derive an artificial offline `headId`.
30+
- Offline mode of `hydra-node` uses `--node-id` to derive an artificial offline `headId`. [1551](https://github.com/cardano-scaling/hydra/pull/1551)
3131

3232
## [0.17.0] - 2024-05-20
3333

demo/docker-compose.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121

2222
hydra-node-1:
2323
# NOTE: Make sure to use the same image in ./seed-devnet.sh
24-
image: ghcr.io/cardano-scaling/hydra-node:unstable
24+
image: ghcr.io/cardano-scaling/hydra-node:0.18.0
2525
build:
2626
context: ../
2727
target: hydra-node
@@ -56,7 +56,7 @@ services:
5656

5757
hydra-node-2:
5858
# NOTE: Make sure to use the same image in ./seed-devnet.sh
59-
image: ghcr.io/cardano-scaling/hydra-node:unstable
59+
image: ghcr.io/cardano-scaling/hydra-node:0.18.0
6060
build:
6161
context: ../
6262
target: hydra-node
@@ -91,7 +91,7 @@ services:
9191

9292
hydra-node-3:
9393
# NOTE: Make sure to use the same image in ./seed-devnet.sh
94-
image: ghcr.io/cardano-scaling/hydra-node:unstable
94+
image: ghcr.io/cardano-scaling/hydra-node:0.18.0
9595
build:
9696
context: ../
9797
target: hydra-node
@@ -125,7 +125,7 @@ services:
125125
restart: always
126126

127127
hydra-tui-1:
128-
image: ghcr.io/cardano-scaling/hydra-tui:0.17.0
128+
image: ghcr.io/cardano-scaling/hydra-tui:0.18.0
129129
build:
130130
context: ../
131131
target: hydra-tui
@@ -142,7 +142,7 @@ services:
142142
ipv4_address: 172.16.238.11
143143

144144
hydra-tui-2:
145-
image: ghcr.io/cardano-scaling/hydra-tui:0.17.0
145+
image: ghcr.io/cardano-scaling/hydra-tui:0.18.0
146146
build:
147147
context: ../
148148
target: hydra-tui
@@ -159,7 +159,7 @@ services:
159159
ipv4_address: 172.16.238.21
160160

161161
hydra-tui-3:
162-
image: ghcr.io/cardano-scaling/hydra-tui:0.17.0
162+
image: ghcr.io/cardano-scaling/hydra-tui:0.18.0
163163
build:
164164
context: ../
165165
target: hydra-tui

demo/seed-devnet.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function hnode() {
5151
docker run --rm -it \
5252
--pull always \
5353
-v ${SCRIPT_DIR}/devnet:/devnet \
54-
ghcr.io/cardano-scaling/hydra-node:unstable -- ${@}
54+
ghcr.io/cardano-scaling/hydra-node:0.18.0 -- ${@}
5555
fi
5656
}
5757

docs/docs/tutorial/index.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ After ensuring the tools above are available, begin by downloading pre-built bin
3131

3232
```shell
3333
mkdir -p bin
34-
version=0.17.0
35-
mithril_version=2423.0
36-
node_version=9.0.0
34+
version=0.18.0
35+
mithril_version=2428.0
36+
node_version=9.1.0
3737
curl -L -O https://github.com/cardano-scaling/hydra/releases/download/${version}/hydra-x86_64-linux-${version}.zip
3838
unzip -d bin hydra-x86_64-linux-${version}.zip
3939
curl -L -O https://github.com/IntersectMBO/cardano-node/releases/download/${node_version}/cardano-node-${node_version}-linux.tar.gz
@@ -49,9 +49,9 @@ chmod +x bin/*
4949

5050
```shell
5151
mkdir -p bin
52-
version=0.17.0
53-
mithril_version=2423.0
54-
node_version=9.0.0
52+
version=0.18.0
53+
mithril_version=2428.0
54+
node_version=9.1.0
5555
curl -L -O https://github.com/cardano-scaling/hydra/releases/download/${version}/hydra-aarch64-darwin-${version}.zip
5656
unzip -d bin hydra-aarch64-darwin-${version}.zip
5757
curl -L -O https://github.com/IntersectMBO/cardano-node/releases/download/${node_version}/cardano-node-${node_version}-macos.tar.gz
@@ -381,7 +381,7 @@ Start the `hydra-node` using these parameters:
381381
<TabItem value="alice" label="Alice">
382382

383383
```shell
384-
version=0.17.0
384+
version=0.18.0
385385
hydra-node \
386386
--node-id "alice-node" \
387387
--persistence-dir persistence-alice \
@@ -404,7 +404,7 @@ hydra-node \
404404
<TabItem value="bob" label="Bob">
405405

406406
```shell
407-
version=0.17.0
407+
version=0.18.0
408408
hydra-node \
409409
--node-id "bob-node" \
410410
--persistence-dir persistence-bob \

hydra-cardano-api/hydra-cardano-api.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-cardano-api
3-
version: 0.17.0
3+
version: 0.18.0
44
synopsis: A Haskell API for Cardano, tailored to the Hydra project.
55
author: IOG
66
copyright: 2022 IOG

hydra-chain-observer/hydra-chain-observer.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hydra-chain-observer
3-
version: 0.17.0
3+
version: 0.18.0
44
synopsis: Hydra Chain Observer
55
author: IOG
66
copyright: 2023 IOG

hydra-cluster/hydra-cluster.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-cluster
3-
version: 0.17.0
3+
version: 0.18.0
44
synopsis:
55
Integration test suite using a local cluster of cardano and hydra nodes
66

hydra-explorer/hydra-explorer.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-explorer
3-
version: 0.17.0
3+
version: 0.18.0
44
synopsis: Hydra Explorer
55
author: IOG
66
copyright: 2023 IOG

hydra-node/hydra-node.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-node
3-
version: 0.17.0
3+
version: 0.18.0
44
synopsis: The Hydra node
55
author: IOG
66
copyright: 2022 IOG

hydra-node/json-schemas/api.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
asyncapi: '2.3.0'
22
info:
33
title: Hydra Node API
4-
version: '0.17.0'
4+
version: '0.18.0'
55
description: |
66
WebSocket/HTTP API for administrating & interacting with Hydra Heads: multi-party isomorphic state-channels for Cardano.
77

hydra-plutus-extras/hydra-plutus-extras.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-plutus-extras
3-
version: 0.17.0
3+
version: 0.18.0
44
synopsis:
55
Several extras and extensions of plutus-tx and plutus-ledger-api
66

hydra-plutus/hydra-plutus.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hydra-plutus
3-
version: 0.17.0
3+
version: 0.18.0
44
synopsis: Hydra Plutus Contracts
55
author: IOG
66
copyright: 2022 IOG

hydra-prelude/hydra-prelude.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hydra-prelude
3-
version: 0.17.0
3+
version: 0.18.0
44
synopsis: Custom Hydra Prelude used across other Hydra packages.
55
author: IOG
66
copyright: 2022 IOG

hydra-test-utils/hydra-test-utils.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-test-utils
3-
version: 0.17.0
3+
version: 0.18.0
44
synopsis: Hydra utilities for testing, aka. "Test Prelude"
55
author: IOG
66
copyright: 2022 IOG

networks.json

+8-4
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,28 @@
44
"0.14.0": "3ac58d3f9f35d8f2cb38d39639232c10cfe0b986728f672d26ffced944d74560",
55
"0.15.0": "7d998b617526d827dd69a495f5d5dc2c5e293b86a62ad61cb2fb5f2503cd87f0",
66
"0.16.0": "2d52e5787b198daeb280f9de63e5dec126b1843b050e85b1642ff8e47cb6de73",
7-
"0.17.0": "0d2eca8c8daf23061f5ba24a8f3113afba52a2e26318dc78c5583d9fc86b7b85"
7+
"0.17.0": "0d2eca8c8daf23061f5ba24a8f3113afba52a2e26318dc78c5583d9fc86b7b85",
8+
"0.18.0": "747c39eb53a4092fd46e10b417beef9781bf336a4fc1fd439e7492fe3876a1ba"
89
},
910
"preprod": {
1011
"0.13.0": "f917dcd1fa2653e33d6d0ca5a067468595b546120c3085fab60848c34f92c265",
1112
"0.14.0": "d8ba8c488f52228b200df48fe28305bc311d0507da2c2420b10835bf00d21948",
1213
"0.15.0": "8ce483e2d4b81f9254392afda1f85d1e123165665593228c39064691903f431a",
1314
"0.16.0": "6264cee4d5eab3fb58ab67f3899ecbcc0d7e72732a2d9c1c5d638115db6ca711",
14-
"0.17.0": "c7b9db4986611d0ce7ff8546ef5d42af68566783a40604c372182342c4124e7d"
15+
"0.17.0": "c7b9db4986611d0ce7ff8546ef5d42af68566783a40604c372182342c4124e7d",
16+
"0.18.0": "976b28bc716490fbaa4e17d7bf33b04f27fcfafef58c436c4f2644adeeb48829"
1517
},
1618
"preview": {
1719
"0.13.0": "1e00c627ec4b2ad0b4aa68068d3818ca0e41338c87e5504cda118c4050a98763",
1820
"0.14.0": "64deee72cd424d957ea0fddf71508429ecb65fea83a041fe9b708fc2ca973a8e",
1921
"0.15.0": "c21b70a719112f76d318abcfee95499a27556ef4a18b1c62bc38e4b9c07ae3a6",
2022
"0.16.0": "1f34e4ee2404a5e4fc8ef970b7b8717af34c1a5a22107b82cde79c5d11da93b9",
21-
"0.17.0": "6d3f02bc648c1b62bb90fc221a8476fc47d4faaea4a293b00e58ac40c3377b85"
23+
"0.17.0": "6d3f02bc648c1b62bb90fc221a8476fc47d4faaea4a293b00e58ac40c3377b85",
24+
"0.18.0": "19d25f489ffa66ba3568342657fe441f47a417d4e31585b5f0278ebe619ecf41"
2225
},
2326
"sanchonet": {
2427
"0.16.0": "af37f4f6bf7459d2ae1d6b2a1a2e4049465b62a8ebc308f3d6d6af68240a4419",
25-
"0.17.0": ""
28+
"0.17.0": "",
29+
"0.18.0": ""
2630
}
2731
}

0 commit comments

Comments
 (0)