Skip to content
Draft
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
57d6f40
fix(app-router): align server action routing
james-elicx Jul 4, 2026
0c07055
perf(app-router): cache action ownership discovery
james-elicx Jul 4, 2026
c90145a
fix(app-router): retain client-bound action owners
james-elicx Jul 4, 2026
f698182
fix(app-router): harden action owner forwarding
james-elicx Jul 4, 2026
2dcf18a
fix(app-router): escape action owner metadata
james-elicx Jul 4, 2026
577afff
fix(routing): parse route parameters linearly
james-elicx Jul 4, 2026
ba44206
perf(app-router): collect action owners during RSC scans
james-elicx Jul 6, 2026
206e84c
Merge remote-tracking branch 'origin/main' into codex/fix-action-runt…
james-elicx Jul 6, 2026
6423c6b
perf(app-router): reuse RSC action consumer metadata
james-elicx Jul 6, 2026
c9e6041
perf(app-router): narrow RSC action metadata patch
james-elicx Jul 6, 2026
09feead
perf(app-router): move action edge analysis into vinext
james-elicx Jul 6, 2026
13f9f0c
fix(app-router): finalize action scan observer integration
james-elicx Jul 6, 2026
e3630a8
fix(app-router): preserve original action scan metadata
james-elicx Jul 6, 2026
2dc5a3a
fix(app-router): retain imported inline action ownership
james-elicx Jul 6, 2026
81b60d0
test(actions): cover production action ownership edge cases
james-elicx Jul 6, 2026
ddbfbdd
Merge remote-tracking branch 'origin/main' into codex/fix-action-runt…
james-elicx Jul 6, 2026
efcbf32
fix(build): resolve action runtimes from generated entries
james-elicx Jul 6, 2026
2c444f7
test(actions): cover nested client form actions
james-elicx Jul 6, 2026
d596a09
test(actions): cover same-named non-action exports
james-elicx Jul 6, 2026
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
8 changes: 8 additions & 0 deletions packages/vinext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,14 @@
"types": "./dist/server/app-rsc-handler.d.ts",
"import": "./dist/server/app-rsc-handler.js"
},
"./internal/server/app-action-forwarding": {
"types": "./dist/server/app-action-forwarding.d.ts",
"import": "./dist/server/app-action-forwarding.js"
},
"./internal/server/app-server-action-execution": {
"types": "./dist/server/app-server-action-execution.d.ts",
"import": "./dist/server/app-server-action-execution.js"
},
"./config/config-matchers": {
"types": "./dist/config/config-matchers.d.ts",
"import": "./dist/config/config-matchers.js"
Expand Down
Loading
Loading