1. 27 Aug, 2019 2 commits
  2. 26 Aug, 2019 1 commit
    • Phillip Webb's avatar
      Only add management error page for Spring MVC · 4c446c38
      Phillip Webb authored
      Move management `ErrorPage` registration from the
      `WebMvcEndpointChildContextConfiguration` to
      `WebMvcEndpointChildContextConfiguration` and only add it when the
      error controller is registered.
      
      Fixes gh-17938
      4c446c38
  3. 24 Aug, 2019 3 commits
  4. 23 Aug, 2019 4 commits
    • Andy Wilkinson's avatar
      608228d6
    • Andy Wilkinson's avatar
      Fix spying on scoped beans with @SpyBean · 52050c17
      Andy Wilkinson authored
      Previously, when spying on a scoped bean the creation of the spy
      would be performed using the scoped proxy. This would result in
      the spy being unable to spy on any of the target bean's methods as
      the scoped proxy's implementations of those methods would be final.
      
      This commit updates MockitoPostProcessor so that the creation of the
      spy and injection of the @SpyBean-annotated field is performed using
      the scoped target. The scoped target has not be proxied so this
      allows Mockito to spy on all of its methods.
      
      Closes gh-17817
      52050c17
    • Andy Wilkinson's avatar
      Deprecate jackson.version in favour of new jackson-bom.version · 0fb0eb6e
      Andy Wilkinson authored
      The versions of Jackon's bom and the versions of Jackson are often
      not the same. For example, at the time of writing, the latest bom
      version is 2.9.9.20190807 but the latest version of Jackson's core
      is 2.9.9 and the latest version of Jackson's databind is 2.9.9.3.
      
      spring-boot-dependencies using a property, jackson.version, to control
      the version of jackson-bom that is imported. To make it clear that the
      version property controls the version of Jackson's bom and not of
      Jackson itself, this commit deprecates jackson.version in favour of
      a new jackson-bom.version property.
      
      An additional benefit of this change is that it addresses a problem
      when using Gradle and the dependency management plugin. Jackson's bom
      uses a jackson.version property to control the version
      of core Jackson modules. This names clashes with the name of the
      property used by spring-boot-dependencies. Specifying a custom
      jackson.version to control the version of the bom that is imported
      would also have the unwanted side-effect of customizing the version of
      the core Jackson modules declared in Jackson's bom.
      
      Fixes gh-17808
      0fb0eb6e
    • Andy Wilkinson's avatar
      Tolerate LCEMFB with null JpaVendorAdapter in JPA auto-config · ac0a22d6
      Andy Wilkinson authored
      Closes gh-17935
      ac0a22d6
  5. 21 Aug, 2019 1 commit
  6. 19 Aug, 2019 2 commits
  7. 17 Aug, 2019 4 commits
  8. 16 Aug, 2019 6 commits
  9. 15 Aug, 2019 3 commits
  10. 13 Aug, 2019 5 commits
  11. 12 Aug, 2019 3 commits
  12. 08 Aug, 2019 6 commits