1. 26 May, 2020 2 commits
    • Andy Wilkinson's avatar
      Configure attributes on productionRuntimeClasspath · ba233684
      Andy Wilkinson authored
      Previously, the productionRuntimeClasspath configuration was created
      without any attributes. This caused problems with multi-project
      dependency resolution as there was insufficient information for Gradle
      to determine which variant of a dependency should be used by the
      productionRuntimeClasspath configuration.
      
      This commit updates the configuration to have three attributes, each
      configured with the same values as those of Gradle's own
      runtimeClasspathConfiguration.
      
      Fixes gh-21549
      ba233684
    • Stephane Nicoll's avatar
      Map connection and read timeouts for New Relic again · 069c31a0
      Stephane Nicoll authored
      Closes gh-21440
      069c31a0
  2. 25 May, 2020 13 commits
  3. 22 May, 2020 3 commits
    • Brian Clozel's avatar
      Document health probes config property in Actuator section · 18e0db63
      Brian Clozel authored
      This commit mentions the `management.health.probes.enabled`
      configuration property in the Kubernetes Probes section of the Actuator
      chapter.
      
      Enabling this property is required if we need to expose Kubernetes
      Probes in a non-Kubernetes environment.
      
      Fixes gh-21505
      18e0db63
    • Brian Clozel's avatar
      Optimize UrlPathHelper configuration for Spring MVC · a12a3054
      Brian Clozel authored
      Prior to this commit, Spring Boot would auto-configure Spring MVC and
      would keep the default `UrlPathHelper` configuration.
      Since Spring Boot is in charge of configuring the `DispatcherServlet`
      and its mapping, it is in a position to optimally configure the
      `UrlPathHelper` depending on the chosen mapping.
      
      This commit sets the `alwaysUseFullPath` property of `UrlPathHelper` if
      the Servlet mapping is `"/"`. This is more efficient since this
      configuration requires less processing of the request path.
      
      Closes gh-21499
      a12a3054
    • Brian Clozel's avatar
      Add welcome page support for Spring WebFlux · 525e03d3
      Brian Clozel authored
      This commit adds the support for static and templated welcome pages with
      Spring WebFlux. The implementation is backed by a `RouterFunction`
      that's serving a static `index.html` file or rendering an `index` view.
      
      Closes gh-9785
      525e03d3
  4. 21 May, 2020 6 commits
  5. 20 May, 2020 13 commits
  6. 18 May, 2020 3 commits