-
Notifications
You must be signed in to change notification settings - Fork 26.4k
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
Fix #11767, restore the original parameter pair instead of giving default value when doing URL.parse. #11781
Conversation
Codecov Report
@@ Coverage Diff @@
## 3.1 #11781 +/- ##
============================================
- Coverage 64.74% 64.73% -0.01%
Complexity 14 14
============================================
Files 1431 1431
Lines 60034 60034
Branches 8827 8827
============================================
- Hits 38867 38864 -3
+ Misses 17100 17098 -2
- Partials 4067 4072 +5
... and 17 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Kudos, SonarCloud Quality Gate passed! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
* origin/3.2: (25 commits) Bump bytebuddy.version from 1.14.1 to 1.14.2 (apache#11814) Dynamically generate native image config (apache#11795) Remove redundant synchronized (apache#11811) fix remove unused param (apache#11787) Bump bytebuddy.version from 1.14.0 to 1.14.1 (apache#11808) Reuse qos port for metrics (apache#11719) 🐛 fix thread pool metrics be gc recycle problem (apache#11793) Bump protobuf-java from 3.22.0 to 3.22.2 (apache#11802) Bump spring-security-bom from 5.8.1 to 5.8.2 (apache#11801) Bump byte-buddy from 1.14.0 to 1.14.1 (apache#11804) Cert npe bug fix (apache#11800) Fix uts Fix lock acquire blocked Fix hessian list Fix metrics publisher NPE Fix ut Fix bug apache#11767 (apache#11781) Fix uts Sync when destroy (apache#11783) Fix recreate client after destroy (apache#11780) ...
* origin/3.2: (28 commits) Bump bytebuddy.version from 1.14.1 to 1.14.2 (apache#11814) Dynamically generate native image config (apache#11795) Remove redundant synchronized (apache#11811) fix remove unused param (apache#11787) Bump bytebuddy.version from 1.14.0 to 1.14.1 (apache#11808) Reuse qos port for metrics (apache#11719) 🐛 fix thread pool metrics be gc recycle problem (apache#11793) Bump protobuf-java from 3.22.0 to 3.22.2 (apache#11802) Bump spring-security-bom from 5.8.1 to 5.8.2 (apache#11801) Bump byte-buddy from 1.14.0 to 1.14.1 (apache#11804) Cert npe bug fix (apache#11800) Fix uts Fix lock acquire blocked Fix hessian list Fix metrics publisher NPE Fix ut Fix bug apache#11767 (apache#11781) Fix uts Sync when destroy (apache#11783) Fix recreate client after destroy (apache#11780) ...
What is the purpose of the change
When value has no value, make sure value is an empty string, rather than assigning the value of name to value
For key-value pair
key_name=
, the generated URL parameter should be 'key_name=' rather thankey_name=key_ name
Brief changelog
Verifying this change
Checklist