docs: mark hydration covered + parity status summary#41
Merged
Conversation
- hydration -> ✅ (already covered natively: ~30 test/fuzz funcs in internal/runtime hydration_*_test.go) - add a Status section: every applicable test with a GWC analog is ported and passing; remaining non-✅ are architectural N/As or the one area where GWC's own feature (out-of-order Suspense streaming) is incomplete. Doc-only. No version bump. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
monstercameron
pushed a commit
that referenced
this pull request
Jul 6, 2026
…ern (#41) The unreachable-route warning used a single representative concrete path (one sentinel segment) to test subsumption, which made a fixed-arity pattern like "/users/:id" look like it shadowed the unbounded wildcard "/users/*" — a false positive, since "/users/*" still matches deeper paths ("/users/a/b") the param route cannot. A trailing-* wildcard can only be shadowed by another wildcard; guard patternShadows accordingly. Assessment of the rest of #41: pattern specificity precedence is a deliberate registration-order design (like Express) backed by this shadow warning; exact/static routes are matched before patterns (router_render.go), so static-vs-param shadowing cannot occur. No auto-sort is introduced (it would silently change documented ordering). Pinned by new TestPatternShadows cases (param/static do not shadow a wildcard; broad wildcard shadows narrow) — verified failing without the guard. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Doc-only: hydration->✅ (already covered natively), add a Status section confirming every applicable test with a GWC analog is ported+passing; remaining are N/As or GWC-incomplete (Suspense streaming). No version bump.
🤖 Generated with Claude Code