Skip to content

Commit 241f2d4

Browse files
authoredFeb 6, 2024
Fix issues with pre-encoded param names not being properly decoded (#11199)
1 parent 7c0bfde commit 241f2d4

File tree

8 files changed

+214
-140
lines changed

8 files changed

+214
-140
lines changed
 

‎.changeset/fifty-pugs-boil.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"react-router": patch
3+
"@remix-run/router": patch
4+
---
5+
6+
Fix encoding/decoding issues with pre-encoded dynamic parameter values

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@
119119
"none": "50.4 kB"
120120
},
121121
"packages/react-router/dist/react-router.production.min.js": {
122-
"none": "14.7 kB"
122+
"none": "14.73 kB"
123123
},
124124
"packages/react-router/dist/umd/react-router.production.min.js": {
125-
"none": "17.1 kB"
125+
"none": "17.2 kB"
126126
},
127127
"packages/react-router-dom/dist/react-router-dom.production.min.js": {
128128
"none": "17.0 kB"

‎packages/react-router-dom-v5-compat/lib/components.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@ export function StaticRouter({
9696
},
9797
encodeLocation(to: To) {
9898
let href = typeof to === "string" ? to : createPath(to);
99+
// Treating this as a full URL will strip any trailing spaces so we need to
100+
// pre-encode them since they might be part of a matching splat param from
101+
// an ancestor route
102+
href = href.replace(/ $/, "%20");
99103
let encoded = ABSOLUTE_URL_REGEX.test(href)
100104
? new URL(href)
101105
: new URL(href, "http://localhost");

0 commit comments

Comments
 (0)
Please sign in to comment.