This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch docs
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/docs by this push:
new 8930bdce3e Add 10.0.0 release note for the RRPC POST-dispatch fix
8930bdce3e is described below
commit 8930bdce3eeb7b59d047bf223bd4567632d3dd0c
Author: James Bognar <[email protected]>
AuthorDate: Sun Jul 26 07:16:30 2026 -0400
Add 10.0.0 release note for the RRPC POST-dispatch fix
---
pages/release-notes/10.0.0.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pages/release-notes/10.0.0.md b/pages/release-notes/10.0.0.md
index d30205b9a2..a523aa7865 100644
--- a/pages/release-notes/10.0.0.md
+++ b/pages/release-notes/10.0.0.md
@@ -629,7 +629,7 @@ constants (see Breaking Changes below). The
[Marshallers](/docs/topics/Marshalle
### Bug Fixes
-_TBD — to be filled in as development continues._
+- **Fixed RRPC method calls never dispatching over POST.** Every HTTP POST to
an `@RestOp(method="RRPC")` operation previously returned a 404 instead of
reaching the target method. `RrpcRestOpSession` derived the RRPC method key by
splitting the request path on the last `/`, but RRPC keys are of the form
`methodName/(paramTypes)` and themselves contain a `/`, so the method name was
stripped off and the lookup always fell through to `NotFound`. The key is now
derived from the already-comp [...]
### Breaking Changes