Commit 784cb92
feat(spec): every metadata.endpoints.* switch gates exactly the face its name states, and the whole-store operations get their own key
* wip(rest): maintenance switch + per-item radius
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
* wip: ledger, pins, checklist, changeset
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
* chore(spec): regenerate reference docs and liveness counts
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
* feat(spec): ADR-0087 D3 entry for the endpoints radius move; re-anchor system-context
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
* fix(qa): teach the authz blind-spot population rule the registerPerItemRoute spelling
The per-item family's later members register through a switch-carrying local
helper instead of a direct `this.routeManager.register(` call. The census rule
knew only the direct spelling, so it read population 73 / reachable 12 against a
recorded 80 / 19 and the Dogfood Regression Gate went red.
Re-recording 73/12 was the wrong repair: those 8 routes are still mounted and
still registered inside `registerMetadataEndpoints`, so the lower number would
have ratified a false population and encoded a 7-route blind spot in the census
named for finding them. The rule now counts both spellings, excluding the
helper's own forwarding call so it is not double-counted: 72 direct + 8
helper-routed = 80, and 11 + 8 = 19 reachable.
Reachability was checked before the count was widened. `registerPerItemRoute`
reads `this.routeManager` at call time and every call site is inside
`registerMetadataEndpointsInner`, which runs under the anonymous-deny
`guardedRouteManager` swap — so the helper hides nothing from the probe. That is
now measured rather than argued: rest-meta-auth.test.ts drives an anonymous
`GET /meta/:type/:name/history` to 401 with the history read never reached.
Both halves of the new rule carry exact positive controls so neither can go
silently to zero.
Also completes the changeset's BREAKING paragraph: `MetadataEndpointsConfigParsed`
gained a required `maintenance: boolean` on the parsed (output) side — an
ADR-0087 D8 compiler-carried narrowing that was implemented but not written down.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01T6HeZvT9wdSJD1ZxJb5Eno
---------
Co-authored-by: Claude <noreply@anthropic.com>maintenance (#16243)1 parent 4a1a3b0 commit 784cb92
16 files changed
Lines changed: 661 additions & 85 deletions
File tree
- .changeset
- content/docs
- permissions
- references/api
- docs/qa/platform-checklist
- areas
- packages
- qa/dogfood/test
- rest/src
- spec
- liveness
- src
- api
- migrations
- entries/semantic
Lines changed: 105 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | | - | |
| 67 | + | |
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
| |||
103 | 103 | | |
104 | 104 | | |
105 | 105 | | |
106 | | - | |
| 106 | + | |
107 | 107 | | |
108 | 108 | | |
109 | 109 | | |
| |||
158 | 158 | | |
159 | 159 | | |
160 | 160 | | |
161 | | - | |
| 161 | + | |
162 | 162 | | |
163 | 163 | | |
164 | 164 | | |
| |||
199 | 199 | | |
200 | 200 | | |
201 | 201 | | |
202 | | - | |
| 202 | + | |
203 | 203 | | |
204 | 204 | | |
205 | 205 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
175 | 175 | | |
176 | 176 | | |
177 | 177 | | |
178 | | - | |
| 178 | + | |
179 | 179 | | |
180 | 180 | | |
181 | 181 | | |
182 | 182 | | |
183 | 183 | | |
184 | | - | |
185 | | - | |
186 | | - | |
187 | | - | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
188 | 189 | | |
189 | 190 | | |
190 | 191 | | |
| |||
284 | 285 | | |
285 | 286 | | |
286 | 287 | | |
287 | | - | |
| 288 | + | |
288 | 289 | | |
289 | 290 | | |
290 | 291 | | |
| |||
0 commit comments