1. 15 Mar, 2016 1 commit
  2. 08 Mar, 2016 3 commits
  3. 02 Mar, 2016 2 commits
    • Andy Wilkinson's avatar
      Add dependency management for logback-core · 49779057
      Andy Wilkinson authored
      Previously, only dependency management for logback-classic was
      provided. This meant that it was possible for logback-core, upon
      which logback-classic depends, to have a different version.
      
      This commit adds dependency management for logback-core, thereby
      ensuring that the two dependencies will have the same version.
      
      Closes gh-5304
      49779057
    • Andy Wilkinson's avatar
      Improve DevTools non-embedded in-memory DB shutdown handling · 40ffe416
      Andy Wilkinson authored
      Shutdown handling has been improved so that it will run after any
      EntityManagerFactory beans have been closed. This ensures that Hibernate
      can, if configured to do so, drop its schema during restart processing.
      Without this change, a benign exception could be logged if the database
      was shutdown before Hibernate.
      
      Closes gh-5305
      40ffe416
  4. 01 Mar, 2016 1 commit
  5. 29 Feb, 2016 5 commits
    • Dave Syer's avatar
      Accumulate state in a local variable, not a field in the instance · baf7dda0
      Dave Syer authored
      State is accumulating unnecessarily in AST tranformation instances.
      We can fix the ones we have implemented so far just by using a
      local variable and passing it into the methods where it is used.
      All the methods are private so this change is safe in a point release.
      
      Fixes gh-5283
      baf7dda0
    • Dave Syer's avatar
      Fix apostrophe · 0dd3531f
      Dave Syer authored
      0dd3531f
    • Andy Wilkinson's avatar
      Enable Animal Sniffer checking of spring-boot-loader-tools · bb473c32
      Andy Wilkinson authored
      Previously, Animal Sniffer checking of spring-boot-loader-tools
      was disabled as it failed with an NPE. This has been fixed in
      Animal Sniffer 1.15.
      
      This commit upgrades Animal Sniffer to 1.15 and adds the necessary
      annotations to suppress failures for safe usage of sun.* and Java 7
      APIs.
      
      Note that UsesUnsafeJava has been copied from spring-boot and made
      package-private. This retains the clearer intent of the custom
      annotation (versus @IgnoreJRERequirement) while avoiding the change
      in the build order that would be necessary for
      spring-boot-loader-tools to use the annotation from spring-boot.
      
      Closes gh-5284
      bb473c32
    • Andy Wilkinson's avatar
      4eda91d6
    • Andy Wilkinson's avatar
      Make DevTools DataSource auto-config back off without DataSourceProperties · 7a4e061d
      Andy Wilkinson authored
      Previously, if DataSourceAutoConfiguration had been explicitly excluded,
      DevToolsDataSourceAutoConfiguration would cause refresh to fail due to
      a missing DataSourceProperties bean. This commit corrects the condition
      so that the auto-configuration is conditional on a DataSource bean and
      a DataSourceProperties bean rather than only being conditional on one or
      the other.
      
      Closes gh-5269
      7a4e061d
  6. 26 Feb, 2016 4 commits
  7. 25 Feb, 2016 4 commits
  8. 24 Feb, 2016 20 commits