Skip to content

Commit ab8366a

Browse files
committed
Updated changelog files
1 parent 4e6422c commit ab8366a

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

ouroboros-network-api/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
### Non-breaking changes
88

99
* `IsLedgerPeer` added to `Ouroboros.Network.LedgerPeers.Types` module.
10+
* Derived `Bounded` instance for `SizeInBytes`.
1011

1112
## 0.13.0.0 -- 2025-02-25
1213

ouroboros-network-protocols/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
### Breaking changes
66

7+
* `CollectPipelined` constructor for `TxSubmission2.Server` was modified: now
8+
one can run a monadic action in the continuation when no message is available.
9+
710
### Non-breaking changes
811

912
## 0.14.0.0 -- 2025-02-25

ouroboros-network-testing/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
### Non-breaking changes
88

9+
* `renderRanges`: print a range using math notation for open/closed intervals.
10+
* Pretty print `WithName` using `Show` instance.
11+
* Pretty print `WithTime` using `Show` instance.
12+
913
## 0.8.1.0 -- 2025-02-25
1014

1115
### Non-breaking changes

ouroboros-network/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
are captured by the `DNSPeersKind` type, which also distinguishes the type
1111
of ledger peer.
1212
* Added `dispatchLookupWithTTL`
13+
* Added `Ouroboros.Network.TxSubmission.Inbound.V2`.
1314

1415
### Breaking changes
1516

@@ -38,6 +39,10 @@
3839
- Renamed `Applications` to `DiffusionApplications`
3940
- `runM` function now receives `ExtraParameters` as an argument
4041
- Configurable Mux Egress Poll Interval
42+
- `Ouroboros.Network.TxSubmission.Inbound` moved to `Ouroboros.Network.TxSubmission.Inbound.V1`
43+
- `Ouroboros.Network.TxSubmission.Inbound.V1.txSubmissionInbound` takes extra argument: `TxSubmissionInitDelay` (previously configurable through `cabal` flags).
44+
- Removed the `txsubmission-delay` cabal flag.
45+
- `ProtocolErrorRequestedTooManyTxids` includes number of unacked txids.
4146

4247
## 0.20.1.0 -- 2025-03-13
4348

ouroboros-network/ouroboros-network.cabal

-8
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@ flag asserts
2020
manual: False
2121
default: False
2222

23-
flag txsubmission-delay
24-
description: Delay initial request for transactions from outbound/client peer
25-
manual: True
26-
default: True
27-
2823
source-repository head
2924
type: git
3025
location: https://github.com/intersectmbo/ouroboros-network
@@ -188,9 +183,6 @@ library
188183
if flag(asserts)
189184
ghc-options: -fno-ignore-asserts
190185

191-
if flag(txsubmission-delay)
192-
cpp-options: -DTXSUBMISSION_DELAY
193-
194186
library ouroboros-orphan-instances
195187
import: ghc-options
196188
visibility: public

0 commit comments

Comments
 (0)