After upgrading from 3.7.0 to 3.8.0, routes that contain a url encoded forward slash no longer work.
Example route: /auth/{code}
Example url: /auth/4%2FGtXcKpxJQk97MyRtHOy_6sPKrLz74-nDkKG6-iz-PIc
This route will no longer be triggered for that URL. I think the culprit is c2d7ae4, which started URL decoding the URI.
I'm working around this issue currently by double URL encoding the parameter (so the example url from above would be 4%252FGtXcKpxJQk97MyRtHOy_6sPKrLz74-nDkKG6-iz-PIc).
After upgrading from 3.7.0 to 3.8.0, routes that contain a url encoded forward slash no longer work.
Example route: /auth/{code}
Example url: /auth/4%2FGtXcKpxJQk97MyRtHOy_6sPKrLz74-nDkKG6-iz-PIc
This route will no longer be triggered for that URL. I think the culprit is c2d7ae4, which started URL decoding the URI.
I'm working around this issue currently by double URL encoding the parameter (so the example url from above would be 4%252FGtXcKpxJQk97MyRtHOy_6sPKrLz74-nDkKG6-iz-PIc).