Skip to content

Commit 4e1e1ed

Browse files
committed
Release 0.16.0
1 parent da65f88 commit 4e1e1ed

File tree

17 files changed

+51
-43
lines changed

17 files changed

+51
-43
lines changed

CHANGELOG.md

+13-12
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,29 @@ As a minor extension, we also keep a semantic version for the `UNRELEASED`
99
changes.
1010

1111

12-
## [0.16.0] - UNRELEASED
12+
## [0.16.0] - 2024-04-03
1313

1414
- Tested with `cardano-node 8.9.0`, `cardano-cli 8.20.3.0` and `mithril 2412.0`.
1515

16+
- **BREAKING** Change to the `hydra-node` logs, monitoring and removal of `log-filter` executable:
17+
- Renamed the `Event` data types to `Input` and consequently log items like `BeginEvent` to `BeginInput`.
18+
- Changed structure of `LogicOutcome` entries.
19+
- Added node-level log entry when an input was `DroppedFromQueue`.
20+
- In course of this, the `log-filter` executable was removed as nobody is actively using it and other off-the-shelf utilities to manipulate structured JSON logs (`jq` is already quite powerful) are recommended.
21+
- Renamed prometheus metric `hydra_head_events -> hydra_head_inputs`.
22+
1623
- **BREAKING** Hydra scripts changed due to updates in the `plutus` toolchain:
1724
- Overall slight increase in script size.
1825
- 50% less memory usage in `close` and `contest` transactions.
1926
- Slightly less memory usage in `abort` and may be possible with 6 parties now.
2027

2128
- **BREAKING** Transaction serialization on hydra-node api and persisted data changed.
2229

30+
- Introduce `EventSource` and `EventSink` interfaces in `hydra-node`:
31+
- These handles can now be used as "extension points" to make the `hydra-node` store and load its state differently or expose `StateEvent`s to other, external services.
32+
- Internal refactoring of persistence mechanism as event source and sink in a backward-compatible way.
33+
- More details can be found in [ADR21](https://hydra.family/head-protocol/adr/21/)
34+
2335
- Add metadata to identify Hydra protocol transactions created by `hydra-node`.
2436

2537
- Provide more details about why a command failed. Added the state of the head logic at the point of failure.
@@ -40,17 +52,6 @@ changes.
4052
input instead of the output datum.
4153
[#1266](https://github.com/input-output-hk/hydra/pull/1266)
4254

43-
- **BREAKING** Change to the `hydra-node` logs, monitoring and removal of `log-filter` executable:
44-
- Renamed the `Event` data types to `Input` and consequently log items like `BeginEvent` to `BeginInput`.
45-
- Changed structure of `LogicOutcome` entries.
46-
- Added node-level log entry when an input was `DroppedFromQueue`.
47-
- In course of this, the `log-filter` executable was removed as nobody is actively using it and other off-the-shelf utilities to manipulate structured JSON logs (`jq` is already quite powerful) are recommended.
48-
- Renamed prometheus metric `hydra_head_events -> hydra_head_inputs`.
49-
50-
- Introduce `EventSource` and `EventSink` interfaces in `hydra-node`:
51-
- These handles can now be used as "extension points" to make the `hydra-node` store and load its state differently or expose `StateEvent`s to other, external services.
52-
- Internal refactoring of persistence mechanism as event source and sink in a backward-compatible way.
53-
- More details can be found in [ADR21](https://hydra.family/head-protocol/adr/21/)
5455

5556
## [0.15.0] - 2024-01-18
5657

CONTRIBUTING.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -197,16 +197,17 @@ During development
197197

198198
To perform a release of next `<version>`:
199199

200-
1. Publish hydra scripts onto `preview`, `preprod`, and `mainnet` using the
200+
1. Make sure all tests are passing.
201+
2. Publish hydra scripts onto `preview`, `preprod`, and `mainnet` using the
201202
[smoke test][smoke-test] and put the transaction ids as new `<version>`
202203
entries into [networks.json](./networks.json).
203-
2. Update CHANGELOG.md by replacing `UNRELEASED` with a date in
204+
3. Update CHANGELOG.md by replacing `UNRELEASED` with a date in
204205
[ISO8601](https://en.wikipedia.org/wiki/ISO_8601) and prepare contents.
205-
3. Run `./release.sh <version>`
206-
4. Check if all the bumped versions are correct. In particular, whether the demo
206+
4. Run `./release.sh <version>`
207+
5. Check if all the bumped versions are correct. In particular, whether the demo
207208
and tutorial would still work given the changelog. If everything is fine,
208209
push the branches `master`, `release` and the `<version>` tag.
209-
5. Create a github release page containing
210+
6. Create a github release page containing
210211
* The released changes (formatted) and giving credit where credit is due
211212
* Built hydra (and cardano-node) binaries to the release using naming scheme:
212213
`hydra-<platform>-<version>.zip` where `platform` is `x86_64-linux` or
@@ -281,7 +282,7 @@ To conduct this meeting and write this report:
281282
- Do not forget to record the meeting!
282283
- Ask for sharing rights after the meeting, by requesting sharing in Google Drive with yourself, and/or ask for making it publicly available.
283284

284-
3. Write the report in [this repository](https://github.com/cardano-scaling/website)
285+
3. Write the report in [this repository](https://github.com/cardano-scaling/website)
285286
- Copy monthly report from last month, update dates, links to slides and closed issues
286287
- Use slides as starting point, to provide a short and sweet written account of what happened
287288
+ The previous reports should serve as a guideline

demo/docker-compose.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323

2424
hydra-node-1:
2525
# NOTE: Make sure to use the same image in ./seed-devnet.sh
26-
image: ghcr.io/input-output-hk/hydra-node:0.15.0
26+
image: ghcr.io/input-output-hk/hydra-node:0.16.0
2727
build:
2828
context: ../
2929
target: hydra-node
@@ -60,7 +60,7 @@ services:
6060

6161
hydra-node-2:
6262
# NOTE: Make sure to use the same image in ./seed-devnet.sh
63-
image: ghcr.io/input-output-hk/hydra-node:0.15.0
63+
image: ghcr.io/input-output-hk/hydra-node:0.16.0
6464
build:
6565
context: ../
6666
target: hydra-node
@@ -97,7 +97,7 @@ services:
9797

9898
hydra-node-3:
9999
# NOTE: Make sure to use the same image in ./seed-devnet.sh
100-
image: ghcr.io/input-output-hk/hydra-node:0.15.0
100+
image: ghcr.io/input-output-hk/hydra-node:0.16.0
101101
build:
102102
context: ../
103103
target: hydra-node
@@ -133,7 +133,7 @@ services:
133133
restart: always
134134

135135
hydra-tui-1:
136-
image: ghcr.io/input-output-hk/hydra-tui:0.15.0
136+
image: ghcr.io/input-output-hk/hydra-tui:0.16.0
137137
build:
138138
context: ../
139139
target: hydra-tui
@@ -152,7 +152,7 @@ services:
152152
ipv4_address: 172.16.238.11
153153

154154
hydra-tui-2:
155-
image: ghcr.io/input-output-hk/hydra-tui:0.15.0
155+
image: ghcr.io/input-output-hk/hydra-tui:0.16.0
156156
build:
157157
context: ../
158158
target: hydra-tui
@@ -171,7 +171,7 @@ services:
171171
ipv4_address: 172.16.238.21
172172

173173
hydra-tui-3:
174-
image: ghcr.io/input-output-hk/hydra-tui:0.15.0
174+
image: ghcr.io/input-output-hk/hydra-tui:0.16.0
175175
build:
176176
context: ../
177177
target: hydra-tui

demo/seed-devnet.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function hnode() {
4949
docker run --rm -it \
5050
--pull always \
5151
-v ${SCRIPT_DIR}/devnet:/devnet \
52-
ghcr.io/input-output-hk/hydra-node:0.15.0 -- ${@}
52+
ghcr.io/input-output-hk/hydra-node:0.16.0 -- ${@}
5353
fi
5454
}
5555

docs/docs/tutorial/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ components of the Cardano ecosystem, putting them in a `bin/` directory:
4141

4242
```shell
4343
mkdir -p bin
44-
version=0.15.0
44+
version=0.16.0
4545
curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-x86_64-linux-${version}.zip
4646
unzip -d bin hydra-x86_64-linux-${version}.zip
4747
curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.9.0/cardano-node-8.9.0-linux.tar.gz \
@@ -56,7 +56,7 @@ chmod +x bin/*
5656

5757
```shell
5858
mkdir -p bin
59-
version=0.15.0
59+
version=0.16.0
6060
curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-aarch64-darwin-${version}.zip
6161
unzip -d bin hydra-aarch64-darwin-${version}.zip
6262
curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.9.0/cardano-node-8.9.0-macos.tar.gz \
@@ -396,7 +396,7 @@ Let's start the `hydra-node` with all these parameters now:
396396
<TabItem value="alice" label="Alice">
397397

398398
```shell
399-
version=0.15.0
399+
version=0.16.0
400400
hydra-node \
401401
--node-id "alice-node" \
402402
--persistence-dir persistence-alice \
@@ -419,7 +419,7 @@ hydra-node \
419419
<TabItem value="bob" label="Bob">
420420

421421
```shell
422-
version=0.15.0
422+
version=0.16.0
423423
hydra-node \
424424
--node-id "bob-node" \
425425
--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.15.0
3+
version: 0.16.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.15.0
3+
version: 0.16.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.15.0
3+
version: 0.16.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.15.0
3+
version: 0.16.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.15.0
3+
version: 0.16.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.15.0'
4+
version: '0.16.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.15.0
3+
version: 0.16.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.15.0
3+
version: 0.16.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.15.0
3+
version: 0.16.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.15.0
3+
version: 0.16.0
44
synopsis: Hydra utilities for testing, aka. "Test Prelude"
55
author: IOG
66
copyright: 2022 IOG

hydra-tui/hydra-tui.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hydra-tui
3-
version: 0.15.0
3+
version: 0.16.0
44
synopsis: TUI for managing a Hydra node
55
description: TUI for managing a Hydra node
66
author: IOG

networks.json

+9-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,22 @@
22
"mainnet": {
33
"0.13.0": "989e3ab136a2cdd3132a99975e76e02f62bcb03ba64ddbb5d2dfddffca8d390d",
44
"0.14.0": "3ac58d3f9f35d8f2cb38d39639232c10cfe0b986728f672d26ffced944d74560",
5-
"0.15.0": "7d998b617526d827dd69a495f5d5dc2c5e293b86a62ad61cb2fb5f2503cd87f0"
5+
"0.15.0": "7d998b617526d827dd69a495f5d5dc2c5e293b86a62ad61cb2fb5f2503cd87f0",
6+
"0.16.0": "2d52e5787b198daeb280f9de63e5dec126b1843b050e85b1642ff8e47cb6de73"
67
},
78
"preprod": {
89
"0.13.0": "f917dcd1fa2653e33d6d0ca5a067468595b546120c3085fab60848c34f92c265",
910
"0.14.0": "d8ba8c488f52228b200df48fe28305bc311d0507da2c2420b10835bf00d21948",
10-
"0.15.0": "8ce483e2d4b81f9254392afda1f85d1e123165665593228c39064691903f431a"
11+
"0.15.0": "8ce483e2d4b81f9254392afda1f85d1e123165665593228c39064691903f431a",
12+
"0.16.0": "6264cee4d5eab3fb58ab67f3899ecbcc0d7e72732a2d9c1c5d638115db6ca711"
1113
},
1214
"preview": {
1315
"0.13.0": "1e00c627ec4b2ad0b4aa68068d3818ca0e41338c87e5504cda118c4050a98763",
1416
"0.14.0": "64deee72cd424d957ea0fddf71508429ecb65fea83a041fe9b708fc2ca973a8e",
15-
"0.15.0": "c21b70a719112f76d318abcfee95499a27556ef4a18b1c62bc38e4b9c07ae3a6"
17+
"0.15.0": "c21b70a719112f76d318abcfee95499a27556ef4a18b1c62bc38e4b9c07ae3a6",
18+
"0.16.0": "1f34e4ee2404a5e4fc8ef970b7b8717af34c1a5a22107b82cde79c5d11da93b9"
19+
},
20+
"sanchonet": {
21+
"0.16.0": "af37f4f6bf7459d2ae1d6b2a1a2e4049465b62a8ebc308f3d6d6af68240a4419"
1622
}
1723
}

0 commit comments

Comments
 (0)