mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-26 11:39:14 +00:00
Library-specific upgrade policies were added to allow a dependency to have a less strict upgrade policy, for example so that a new minor upgrade could be applied in a maintenance release. As currently implemented, a library-specific policy that's more restrictive than the bom's policy may result in a possibl upgrade being missed. This commit updates the library-specific support to use the maximum (most permissive) upgrade policy so that possible upgrades are not hidden by a less permissive library-specific policy. See gh-46369