-
Notifications
You must be signed in to change notification settings - Fork 38.4k
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: spring-projects/spring-framework
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.2.11.RELEASE
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: spring-projects/spring-framework
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.2.12.RELEASE
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
7
contributors
Commits on Nov 10, 2020
-
Configuration menu - View commit details
-
Copy full SHA for a637f6a - Browse repository at this point
Copy the full SHA a637f6aView commit details -
Configuration menu - View commit details
-
Copy full SHA for d3d8f1a - Browse repository at this point
Copy the full SHA d3d8f1aView commit details
Commits on Nov 12, 2020
-
Configuration menu - View commit details
-
Copy full SHA for d8b7a59 - Browse repository at this point
Copy the full SHA d8b7a59View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9949a91 - Browse repository at this point
Copy the full SHA 9949a91View commit details -
Configuration menu - View commit details
-
Copy full SHA for 25cbc26 - Browse repository at this point
Copy the full SHA 25cbc26View commit details
Commits on Nov 13, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 763fa98 - Browse repository at this point
Copy the full SHA 763fa98View commit details
Commits on Nov 16, 2020
-
Configuration menu - View commit details
-
Copy full SHA for db27862 - Browse repository at this point
Copy the full SHA db27862View commit details -
Configuration menu - View commit details
-
Copy full SHA for 240cfb1 - Browse repository at this point
Copy the full SHA 240cfb1View commit details -
Upgrade to Reactor Dysprosium-SR14, OpenPDF 1.3.23, AssertJ 3.18.1, M…
…ockK 1.10.2, Checkstyle 8.37
Configuration menu - View commit details
-
Copy full SHA for fdab75a - Browse repository at this point
Copy the full SHA fdab75aView commit details
Commits on Nov 17, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 4e720e8 - Browse repository at this point
Copy the full SHA 4e720e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 322babc - Browse repository at this point
Copy the full SHA 322babcView commit details
Commits on Nov 19, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 37bda56 - Browse repository at this point
Copy the full SHA 37bda56View commit details -
Configuration menu - View commit details
-
Copy full SHA for 990c74b - Browse repository at this point
Copy the full SHA 990c74bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e99fd5 - Browse repository at this point
Copy the full SHA 9e99fd5View commit details
Commits on Nov 20, 2020
-
Configuration menu - View commit details
-
Copy full SHA for e238c8a - Browse repository at this point
Copy the full SHA e238c8aView commit details
Commits on Nov 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 346445e - Browse repository at this point
Copy the full SHA 346445eView commit details
Commits on Nov 26, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 50803ce - Browse repository at this point
Copy the full SHA 50803ceView commit details -
Remove unused package-private class o.s.w.u.p.SubSequence
(cherry picked from commit 42216b7)
Configuration menu - View commit details
-
Copy full SHA for b929edb - Browse repository at this point
Copy the full SHA b929edbView commit details -
MessageHeaderAccessor handle self-copy correctly
1. Revert changes in setHeader from 5.2.9 that caused regression on self-copy. 2. Update copyHeaders/IfAbsent to ensure a copy of native headers. 3. Exit if source and target are the same instance, as an optimization. Closes gh-26155
Configuration menu - View commit details
-
Copy full SHA for 3703be5 - Browse repository at this point
Copy the full SHA 3703be5View commit details
Commits on Nov 27, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 81c1b60 - Browse repository at this point
Copy the full SHA 81c1b60View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7c33c70 - Browse repository at this point
Copy the full SHA 7c33c70View commit details
Commits on Nov 30, 2020
-
Configuration menu - View commit details
-
Copy full SHA for a495bd6 - Browse repository at this point
Copy the full SHA a495bd6View commit details
Commits on Dec 1, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 736af46 - Browse repository at this point
Copy the full SHA 736af46View commit details
Commits on Dec 2, 2020
-
Configuration menu - View commit details
-
Copy full SHA for ce67b89 - Browse repository at this point
Copy the full SHA ce67b89View commit details -
Configuration menu - View commit details
-
Copy full SHA for f7605ea - Browse repository at this point
Copy the full SHA f7605eaView commit details
Commits on Dec 7, 2020
-
Configuration menu - View commit details
-
Copy full SHA for a7efa96 - Browse repository at this point
Copy the full SHA a7efa96View commit details -
Configuration menu - View commit details
-
Copy full SHA for b0c6e5e - Browse repository at this point
Copy the full SHA b0c6e5eView commit details
Commits on Dec 8, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 085825f - Browse repository at this point
Copy the full SHA 085825fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 396fdf1 - Browse repository at this point
Copy the full SHA 396fdf1View commit details -
Avoid closing Jackson JsonGenerator for error cases
Prior to this commit, a change introduced in gh-25910 would close the `JsonGenerator` after it's been used for JSON serialization. This would not only close it and recycle resources, but also flush the underlyning buffer to the output. In a case where the JSON serialization process would throw an exception, the buffer would be still flushed to the response output. Before the change introduced in gh-25910, the response body could be still empty at that point and error handling could write an error body instead. This commits only closes the `JsonGenerator` when serialization has been successful. Note that we're changing this in the spirit of backwards compatibility in the 5.2.x line, but change this won't be merged forward on the 5.3.x line, for several reasons: * this behavior is not consistent. If the JSON output exceeds a certain size, or if Jackson has been configured to flush after each write, the response output might still contain an incomplete JSON payload (just like before this change) * this behavior is not consistent with the WebFlux and Messaging codecs, which are flushing or closing the generator * not closing the generator for error cases prevents resources from being recycled as expected by Jackson Fixes gh-26246
Configuration menu - View commit details
-
Copy full SHA for a8091b9 - Browse repository at this point
Copy the full SHA a8091b9View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 33476a2 - Browse repository at this point
Copy the full SHA 33476a2View commit details
Commits on Dec 9, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 1c5e9fa - Browse repository at this point
Copy the full SHA 1c5e9faView commit details
There are no files selected for viewing