You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/overlays/overlay-express/CHANGELOG.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file. The format
5
5
## Table of Contents
6
6
7
7
-[Unreleased](#unreleased)
8
+
-[2.3.0](#230-2026-05-28)
8
9
-[0.7.11](#0711-2025-08-13)
9
10
10
11
## [Unreleased]
@@ -29,6 +30,18 @@ All notable changes to this project will be documented in this file. The format
29
30
30
31
---
31
32
33
+
## [2.3.0] - 2026-05-28
34
+
35
+
### Added
36
+
- Added `OverlayMonitor`, a reusable worker for probing Overlay Express `/lookup`
37
+
responses and reporting BEEF proof-shape bloat.
38
+
39
+
### Fixed
40
+
- ARC broadcasts now include an explicit `/arc-ingest` callback URL, with optional
41
+
callback-token validation for deployments that configure one.
42
+
43
+
---
44
+
32
45
## [0.7.11] - 2025-08-13
33
46
34
47
### Added
@@ -62,4 +75,4 @@ Replace `X.X.X` with the new version number and `YYYY-MM-DD` with the release da
62
75
-
63
76
```
64
77
65
-
Use this template as the starting point for each new version. Always update the "Unreleased" section with changes as they're implemented, and then move them under the new version header when that version is released.
78
+
Use this template as the starting point for each new version. Always update the "Unreleased" section with changes as they're implemented, and then move them under the new version header when that version is released.
Copy file name to clipboardExpand all lines: packages/overlays/overlay-express/README.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,6 +116,39 @@ server.registerHealthCheck({
116
116
117
117
The janitor service also understands the richer `/health` response format, so existing SHIP/SLAP health validation remains compatible.
118
118
119
+
### Overlay Monitor
120
+
121
+
`OverlayMonitor` provides a reusable worker for monitoring Overlay Express lookup behavior. It posts configured `/lookup` probes to any Overlay Express deployment, measures response size, parses returned BEEF, and reports whether responsive output transactions have direct Merkle proofs or are being served with deeper proof ancestry.
122
+
123
+
This is intended to be run by deployments as a long-running monitor process or by cluster scheduling. It is not tied to a specific deployment platform.
0 commit comments