Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions dmq-node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,37 @@

<!-- scriv-insert-here -->

<a id='changelog-0.7.0.0'></a>
## 0.7.0.0 -- 2026-07-03

### Breaking

- Using `KeepAliveRegistry` instead of `FetchClientRegistry` introduced in
a recent `ouroboros-network` PR. The `fetchClientRegistry` field of
`NodeKernel` was replaced with `keepAliveRegistry` field.

- Lower `minSigBodySize` to `90` bytes.

### Non-Breaking

- Added `PrettyShow` instances for
- `NodeToNodeVersion`
- `NodeToNodeVersionData`
- `NodeToClientVersion`
- `NodeToClientVersionData`
- Signature validation changed, we're no longer using the `mark set`, pools
with no stake will be able to mint signatures as long as they have non zero
stake in the `set set`.

- Fixes local state query application to correctly query the cardano-node's
ledger era and re-uses that information for the relevant queries. Previous
implementation was hardcoded to Conway era, which would cause a crash on
a transition.

- Bugfix: don't set block point slot to maxBound for big ledger peers in local state query client

- Added `--min-sig-delay` internal flag. One cannot use it on the mainnet.

<a id='changelog-0.6.0.0'></a>
## 0.6.0.0 -- 2026-06-04

Expand Down

This file was deleted.

This file was deleted.

23 changes: 0 additions & 23 deletions dmq-node/changelog.d/20260622_194001_crocodile-dentist.md

This file was deleted.

23 changes: 0 additions & 23 deletions dmq-node/changelog.d/20260629_134054_coot_payload_lower_bound.md

This file was deleted.

23 changes: 0 additions & 23 deletions dmq-node/changelog.d/20260701_124008_coot_min_sig_delay.md

This file was deleted.

2 changes: 1 addition & 1 deletion dmq-node/dmq-node.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.4
name: dmq-node
version: 0.6.0.0
version: 0.7.0.0
synopsis: Decentralised Message Queue Node
description:
Decentralised Message Queue Node based on Cardano Diffusion
Expand Down
4 changes: 2 additions & 2 deletions scripts/release-to-chap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ if [[ $REPORT == 1 ]] then
for cbl in $(fd -e cabal); do
v=$(grep '^version:' $cbl | awk '{print $2}')
n=$(dirname $cbl)
x=$(git --no-pager log --oneline $n-$v.. -- $(dirname $cbl) || true | wc -l)
x=$(git --no-pager log --oneline $v.. -- $(dirname $cbl) || true | wc -l)
if [[ !($x == "0") ]]; then
trace "$n changes since $v"
git --no-pager log --oneline --graph $n-$v.. -- $(dirname $cbl) || true
git --no-pager log --oneline --graph $v.. -- $(dirname $cbl) || true
fi
done
else
Expand Down
Loading