1. 08 11月, 2019 1 次提交
  2. 30 10月, 2019 1 次提交
  3. 28 10月, 2019 3 次提交
  4. 25 10月, 2019 5 次提交
  5. 23 10月, 2019 1 次提交
  6. 30 9月, 2019 2 次提交
  7. 28 9月, 2019 1 次提交
  8. 26 9月, 2019 3 次提交
  9. 25 9月, 2019 8 次提交
  10. 19 9月, 2019 2 次提交
    • S
      Stop using libs-release · e06d2a9c
      Stephane Nicoll 提交于
      This commit makes sure we narrow down dependencies of the Spring
      Framework to only Maven central. Optional dependencies that are not
      available on Maven Central are now served from a more specific
      repository (`libs-spring-framework-build`).
      
      Closes gh-23124
      e06d2a9c
    • B
      Use Reactor's new Schedulers.boundedElastic() · 74897bc5
      Brian Clozel 提交于
      Prior to this commit, Spring Framework would use `Schedulers.elastic()`
      in places where we needed to process blocking tasks in a reactive
      environment.
      
      With reactor/reactor-core#1804, a new `Schedulers.boundedElastic()`
      scheduler is available and achieves the same goal with added security;
      it guarantees that resources are bounded.
      
      This commit uses that new scheduler in the standard websocket client,
      since the underlying API is blocking for the connection phase and we
      need to schedule that off a web server thread.
      
      Closes gh-23661
      See gh-23665
      74897bc5
  11. 11 9月, 2019 2 次提交
    • A
      Upgrade to com.gradle.build-scan 2.4.2 · 2b4316cf
      Andy Wilkinson 提交于
      Closes gh-23619
      2b4316cf
    • A
      Disable caching of changing modules and dynamic versions · b730597c
      Andy Wilkinson 提交于
      Previously, changing modules (snapshots) and dynamic versions were
      cached for Gradle's default period of 24 hours and
      --refresh-dependencies was used to pick up the latest artifacts. This
      approach has a notable downside. --refresh-dependencies causes all
      dependencies to be refreshed, irrespective of whether they are
      expected to change. At a minimum, this results in a HEAD request for
      every dependency in the build. Running an up-to-date build without
      --refresh-dependencies takes in the region of 6 seconds:
      
      $ ./gradlew build
      
      BUILD SUCCESSFUL in 6s
      203 actionable tasks: 203 up-to-date
      
      The same build with --refresh-dependencies takes almost ten times as
      long:
      
      $ ./gradlew build --refresh-dependencies
      
      BUILD SUCCESSFUL in 58s
      203 actionable tasks: 203 up-to-date
      
      This commit replaces the manual usage of --refresh-dependencies on
      the command line with a 0 second caching period for changing modules
      and dynamic versions. This should remove the need to use
      --refresh-dependencies both locally and on CI, saving almost 1 minute
      per full build.
      b730597c
  12. 09 9月, 2019 1 次提交
  13. 08 9月, 2019 2 次提交
    • S
      Downgrade to JUnit 4.12 · 665e8aa5
      Sam Brannen 提交于
      Since it does not appear that JUnit 4.13 will be released before Spring
      Framework 5.2 GA, I am reverting back to JUnit 4.12 for the time being.
      
      See gh-22894
      665e8aa5
    • S
      Update comment · 683fe9ed
      Sam Brannen 提交于
      See gh-23604
      683fe9ed
  14. 05 9月, 2019 3 次提交
    • A
      Add opt-in build scan integration with Gradle Enterprise · 35b967a8
      Andy Wilkinson 提交于
      This commit adds opt-in build scan integration with Gradle Enterprise.
      When the GRADLE_ENTERPRISE_URL environment variable is set on a
      developer's machine or on CI, a build scan will be automatically
      uploaded to Gradle Enterprise at the end of the build.
      
      This initial integration will establish a baseline for Spring
      Framework builds. Once that baseline has been established we can use
      the build scans to identify ways in which the build can be optimized
      and updated to make use of Gradle's build caching which should reduce
      build times, significantly so for changes that only affect tasks near
      the leaf nodes of the task graph.
      35b967a8
    • S
      Upgrade to Kotlin Coroutines 1.3.1 · aa81fdc6
      Sebastien Deleuze 提交于
      aa81fdc6
    • S
      Ensure spring-test test tasks are UP-TO-DATE · a7aecbb4
      Sam Brannen 提交于
      See also: 69214429 and eec183ef
      a7aecbb4
  15. 04 9月, 2019 3 次提交
  16. 03 9月, 2019 2 次提交