-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate client proxies for http-proxy-middleware 2.0.6 to 3.0.3 - Remove wild cards/Fix Logout 404 #14443
Conversation
Bundle StatsHey there, this message comes from a GitHub action that helps you and reviewers to understand how these changes affect the size of this project's bundle. As this PR is updated, I'll keep you updated on how the bundle size is impacted. Total
Changeset No files were changed View detailed bundle breakdownAdded No assets were added Removed No assets were removed Bigger No assets were bigger Smaller No assets were smaller Unchanged
|
@ajlusk @danieljordan-caci @taeJungCaci @loganwc @paulstonebraker is this ready to go.. ?? |
No idea, but I like this one because the wildcards are taken out |
Initial PR
Summary
Removes the wild cards that came with our 2.0 syntax because they are causing a 404 when attempting to logout.
With the wild cards and a logger turned on I was seeing requests to
/auth/**/logout
.From what I can tell from the commit history and docs of old versions of libraries the wild cards were never really necessary.
Verification Steps for the Author
These are to be checked by the author.
Verification Steps for Reviewers
These are to be checked by a reviewer.
Setup to Run the Code
How to test
Frontend
officeApp
class or custommin-width
styling is used to hide any states the would not be visible to the user.Backend
Database
Any new migrations/schema changes:
Screenshots
Log result with both wild cards, the first one appears to truncate anything after
/auth
and the second one just acts as plain text.Log result with just the first wild card, as mentioned above, results in dropping everything after
/auth
.Log result with just the second wild card, acting as plain text,
Log result with no wildcards == desired behavior == this PR.
Log result before the library upgrade, the logging changed too but matches the behavior in this PR.