1. 15 Aug, 2016 3 commits
  2. 14 Aug, 2016 2 commits
  3. 13 Aug, 2016 3 commits
  4. 12 Aug, 2016 12 commits
  5. 11 Aug, 2016 5 commits
  6. 10 Aug, 2016 9 commits
    • Andy Wilkinson's avatar
      Load FailureAnalyzers defensively · b2420be8
      Andy Wilkinson authored
      Previously, if a single FailureAnalyzer failed to load, no failure
      analysis would be performed. This commit updates FailureAnalyzers to
      load the analysers defensively so that all but the problematic analyzer
      are used for analysis.
      
      Closes gh-6606
      b2420be8
    • Andy Wilkinson's avatar
      Break GaugeWriter dependency cycle in MetricExportAutoConfiguration · 22ac6bcb
      Andy Wilkinson authored
      Previously, MetricExportAutoConfiguration consumed
      ExportMetricWriter-annotated GaugeWriter beans in its constructor and
      also produced such a bean from one of its @Bean methods. This cycle
      caused a BeanCurrentlyInCreationException to be thrown when the
      bean method was active (the spring.metrics.export.statsd.host property
      was set).
      
      This commit break the cycle by moving the bean method into a separate,
      nested configuration class. It also updates the existing test for
      auto-configuration of a Statsd writer to catch any possible cycles
      and to verify that the writer has be registered with the
      MetricsExporter.
      
      Closes gh-6544
      22ac6bcb
    • Andy Wilkinson's avatar
      Remove META-INF/INDEX.LIST when repackaging a jar file · 899b851c
      Andy Wilkinson authored
      META-INF/INDEX.LIST files are pointless in an executable jar and
      moving application classes from the root of the jar to
      BOOT-INF/classes breaks the index, resulting in an
      InvalidJarIndexException being thrown.
      
      This commit updates the Repackager to automatically remove a
      META-INF/INDEX.LIST file from a jar file that is being repackaged.
      
      Closes gh-6601
      899b851c
    • Andy Wilkinson's avatar
      Use factoryBeanObjectType attribute to find factory bean to replace · f4985abf
      Andy Wilkinson authored
      Previously, MockitoPostProcessor would fail to replace a factory bean
      with a mock if the factory bean didn't return a matching type from
      getObjectType(). This prevented Spring Data respoitories from being
      replaced with a mock as Spring Data's repository factory beans
      generally do not know the specific repository type that they will
      produce when MockPostProcesser (a bean factory post-processor) is
      running.
      
      Spring Data has been updated to add a factoryBeanObjectType attribute
      to its factory bean definitions. MockitoPostProcessor has been updated
      to look for FactoryBeans with this attribute and to use its value
      to determine whether or not the factory bean produces a bean of the
      required type and, therefore, should be replaced with a mock.
      
      Closes gh-6541
      f4985abf
    • Stephane Nicoll's avatar
      Polish documentation · 5fcadcee
      Stephane Nicoll authored
      Closes gh-6576
      5fcadcee
    • Stephane Nicoll's avatar
      Merge pull request #6589 from drumonii:doc-webjar-locator-jboss · 45bc63a7
      Stephane Nicoll authored
      * pr/6589:
        Document webjar-locator usage with JBoss
      45bc63a7
    • drumonii's avatar
      Document webjar-locator usage with JBoss · 80b5789d
      drumonii authored
      Closes gh-6589
      80b5789d
    • Stephane Nicoll's avatar
      Merge pull request #6600 from nagarajasr:master · fc636c1d
      Stephane Nicoll authored
      * pr/6600:
        Apply sytem properties on HttpClient
      fc636c1d
    • nagarajasr's avatar
      Apply sytem properties on HttpClient · 0996615a
      nagarajasr authored
      Closes gh-6600
      0996615a
  7. 09 Aug, 2016 1 commit
  8. 08 Aug, 2016 5 commits