1. 22 Oct, 2019 4 commits
  2. 21 Oct, 2019 2 commits
  3. 18 Oct, 2019 2 commits
  4. 16 Oct, 2019 4 commits
    • Brian Clozel's avatar
      Polish · 9c5ee112
      Brian Clozel authored
      See gh-18473
      9c5ee112
    • Brian Clozel's avatar
      Deprecate server.connection-timeout property · e4fa9ce8
      Brian Clozel authored
      Prior to this commit, all supported servers would share the same
      configuration property `server.connection-timeout`. Unfortunately, in
      many cases the behavior of this timeout changes depending on the server.
      From actual connection setup timeout, to detecting and closing idle
      connections, this property cannot be properly translated from one server
      implementation to another.
      
      This commit deprecates this configuration property and introduces server
      specific properties:
      
      * `server.jetty.connection-idle-timeout`
      (Time that the connection can be idle before it is closed.)
      * `server.netty.connection-timeout`
      (Connection timeout of the Netty channel.)
      * `server.tomcat.connection-timeout`
      (Amount of time the connector will wait, after accepting a connection,
      for the request URI line to be presented.)
      * `server.undertow.no-request-timeout`
      (Amount of time a connection can sit idle without processing a request,
      before it is closed by the server.)
      
      `server.connection-timeout` is now deprecated and will be removed in a
      future release.
      
      Fixes gh-18473
      e4fa9ce8
    • Stephane Nicoll's avatar
      Merge pull request #18612 from contextshuffling · 4eaa3873
      Stephane Nicoll authored
      * pr/18612:
        Use LinkedHashSet for deterministic order in test assertion
      
      Closes gh-18612
      4eaa3873
    • contextshuffling's avatar
      Use LinkedHashSet for deterministic order in test assertion · a8c65401
      contextshuffling authored
      See gh-18612
      a8c65401
  5. 15 Oct, 2019 12 commits
  6. 14 Oct, 2019 2 commits
  7. 13 Oct, 2019 2 commits
  8. 10 Oct, 2019 2 commits
  9. 03 Oct, 2019 1 commit
  10. 02 Oct, 2019 2 commits
    • Spring Buildmaster's avatar
      24232751
    • Andy Wilkinson's avatar
      Correct SCM URLs in published poms · 3d4157ad
      Andy Wilkinson authored
      Previously, Maven's default behaviour was relied up which resulted
      in the artifact ID being appended to each URL as it was inherited.
      This behaviour can only be disabled in Maven 3.6 and later, a version
      that we cannot use due to an incompatibility with the Flatten Plugin.
      
      This commit works around Maven's default behaviour by defining
      properties for the SCM URL, connection, and developer connection and
      then explicitly defining the settings in each pom using these
      properties. The explicit definition of the properties in each pom
      prevents them being inherited from the parent, thereby disabling the
      unwanted appending of the artifact ID to the URL.
      
      Fixes gh-18328
      3d4157ad
  11. 01 Oct, 2019 7 commits