1. 16 Aug, 2018 4 commits
  2. 13 Aug, 2018 4 commits
  3. 10 Aug, 2018 1 commit
  4. 08 Aug, 2018 2 commits
  5. 03 Aug, 2018 1 commit
  6. 02 Aug, 2018 2 commits
  7. 30 Jul, 2018 2 commits
  8. 27 Jul, 2018 2 commits
  9. 26 Jul, 2018 2 commits
  10. 25 Jul, 2018 1 commit
  11. 24 Jul, 2018 2 commits
  12. 20 Jul, 2018 4 commits
  13. 18 Jul, 2018 2 commits
  14. 17 Jul, 2018 3 commits
  15. 16 Jul, 2018 2 commits
  16. 13 Jul, 2018 2 commits
  17. 12 Jul, 2018 2 commits
  18. 11 Jul, 2018 2 commits
    • Andy Wilkinson's avatar
      Update view of bean types when an override is detected · 6dc14af9
      Andy Wilkinson authored
      Previously, when a bean was overridden and its type changes,
      BeanTypeRegistry could be left with a stale view of the bean's type.
      This would lead to incorrect bean condition evaluation as conditions
      would match or not match based on the bean's old type.
      
      This commit updates the type registry to refresh its view of a bean's
      type when its definition changes.
      
      Closes gh-13588
      6dc14af9
    • Andy Wilkinson's avatar
      Delay property source initialization till LoggingSystem is initialized · 57ebdab2
      Andy Wilkinson authored
      Previously, the initialization of StandardServletEnvironment's
      property sources in SpringBootServletInitializer led to debug logging
      calls being made before the LoggingSystem had been initialized. As a
      result, the system's default configuration was used and, in the case
      of Logback at least, the debug logging was output to System.out
      in a war deployment.
      
      This commit updates SpringBootServletInitializer to delay the
      initialization of StandardServletEnvironment's property sources until
      after the LoggingSystem has been initialized, but still in time for
      active profiles to be configured via servlet context parameters
      (see gh-9972).
      
      Closes gh-13736
      57ebdab2