mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-21 16:19:42 +00:00
Update `AutoConfigurationSorter` so that all `@AutoConfigureBefore` and `@AutoConfigureAfter` classes are considered even if they are ultimately not part of the requested set. Prior to this commit, given classes ordered with annotations such that A -> B -> C a call to sort only [A, B] could return the incorrect order. Fixes gh-12660