-
Notifications
You must be signed in to change notification settings - Fork 38.9k
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.3.33
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.3.34
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 19 commits
- 46 files changed
- 5 contributors
Commits on Mar 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0c17d25 - Browse repository at this point
Copy the full SHA 0c17d25View commit details
Commits on Mar 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 17650e0 - Browse repository at this point
Copy the full SHA 17650e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for a653b85 - Browse repository at this point
Copy the full SHA a653b85View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ff8a00 - Browse repository at this point
Copy the full SHA 2ff8a00View commit details -
Configuration menu - View commit details
-
Copy full SHA for 61f7087 - Browse repository at this point
Copy the full SHA 61f7087View commit details -
Configuration menu - View commit details
-
Copy full SHA for 51d70dc - Browse repository at this point
Copy the full SHA 51d70dcView commit details
Commits on Mar 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1cb0c7c - Browse repository at this point
Copy the full SHA 1cb0c7cView commit details -
Configuration menu - View commit details
-
Copy full SHA for f7f1028 - Browse repository at this point
Copy the full SHA f7f1028View commit details
Commits on Mar 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d21100f - Browse repository at this point
Copy the full SHA d21100fView commit details
Commits on Mar 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f6205d4 - Browse repository at this point
Copy the full SHA f6205d4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0628b47 - Browse repository at this point
Copy the full SHA 0628b47View commit details -
Configuration menu - View commit details
-
Copy full SHA for 76c0017 - Browse repository at this point
Copy the full SHA 76c0017View commit details
Commits on Mar 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2395945 - Browse repository at this point
Copy the full SHA 2395945View commit details
Commits on Apr 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1d2daa5 - Browse repository at this point
Copy the full SHA 1d2daa5View commit details -
Configuration menu - View commit details
-
Copy full SHA for a0ae96d - Browse repository at this point
Copy the full SHA a0ae96dView commit details -
Detect bridge methods across ApplicationContexts in MethodIntrospector
Prior to this commit, MethodIntrospector failed to properly detect bridge methods for subsequent invocations of selectMethods() with the same targetType and MetadataLookup, if such subsequent invocations occurred after the ApplicationContext had been refreshed. The reason this occurs is due to the following. - Class#getDeclaredMethods() always returns "child copies" of the underlying Method instances -- which means that `equals()` should be used instead of `==` whenever the compared Method instances can come from different sources (such as the static caches mentioned below). - BridgeMethodResolver caches resolved bridge methods in a static cache -- which is never cleared. - ReflectionUtils caches declared methods in a static cache -- which gets cleared when an ApplicationContext is refreshed. Consequently, if you attempt to load an ApplicationContext twice in the same ClassLoader, the second attempt uses the existing, populated cache for bridged methods but a cleared, empty cache for declared methods. This results in new invocations of Class#getDeclaredMethods(), and identity checks with `==` then fail to detect equivalent bridge methods. This commit addresses this by additionally comparing bridge methods using `equals()` in MethodIntrospector.selectMethods(). Note that the `==` checks remain in place as an optimization for when `equals()` is unnecessary. Closes gh-32586 (cherry picked from commit e702733)
Configuration menu - View commit details
-
Copy full SHA for 7609727 - Browse repository at this point
Copy the full SHA 7609727View commit details -
Configuration menu - View commit details
-
Copy full SHA for 510ff87 - Browse repository at this point
Copy the full SHA 510ff87View commit details
Commits on Apr 11, 2024
-
Refine UriComponentsBuilder parsing
This commit refines the expressions for the scheme, user info, host and port parts of the URL in UriComponentsBuilder to better conform to RFC 3986. Fixes gh-32618
Configuration menu - View commit details
-
Copy full SHA for 7678286 - Browse repository at this point
Copy the full SHA 7678286View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb9a56f - Browse repository at this point
Copy the full SHA fb9a56fView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v5.3.33...v5.3.34