1. 31 Aug, 2019 27 commits
  2. 30 Aug, 2019 6 commits
  3. 29 Aug, 2019 6 commits
    • Phillip Webb's avatar
      Reformat documentation to one sentence per line · 64d4bf82
      Phillip Webb authored
      Update reference documentation to use one sentence per line formatting
      as recommended by the Asciidoctor team.
      
      Closes gh-12445
      64d4bf82
    • Andy Wilkinson's avatar
      Merge pull request #17976 from nebhale · aa632610
      Andy Wilkinson authored
      * gh-17976:
        Use exec when launching the JVM in CLI's shell script
      
      Closes gh-17976
      aa632610
    • Ben Hale's avatar
      Use exec when launching the JVM in CLI's shell script · 2a04d94c
      Ben Hale authored
      Previously, when the Spring Boot CLI ran the Java command line for an
      application it did a straight invocation which suppressed propagation of
      signals to the JVM in certain circumstances (e.g within Docker containers).
      
      This change prepends the command with exec which causes the Java process to
      replace the script process in a shell ensuring that signals are propagated to
      the Java process without suppression.
      
      See gh-17976
      Signed-off-by: 's avatarBen Hale <bhale@pivotal.io>
      2a04d94c
    • Andy Wilkinson's avatar
      Merge pull request #17984 from dreis2211 · bd9f7a13
      Andy Wilkinson authored
      * gh-17984:
        Test the Gradle Plugin against Gradle 5.6.1
      
      Closes gh-17984
      bd9f7a13
    • dreis2211's avatar
      Test the Gradle Plugin against Gradle 5.6.1 · 26a22fa5
      dreis2211 authored
      See gh-17984
      
      Closes gh-17984
      26a22fa5
    • Andy Wilkinson's avatar
      Improve handling of reserved characters in MetaInfResourceManager · 9961647c
      Andy Wilkinson authored
      Previously, MetaInfResourceManager that we use with Undertow to serve
      static resources from jar's META-INF/resources did not correctly
      handle characters in the path that should be percent-encoded when
      used in a URL.
      
      This commit updates MetaInfResourceManager to encode the path before
      it is used to create a URL. Prior to this encoding, encoded slashes
      (%2F) are decoded as, unlike other encoded characters in the request's
      URL, encoded slashes are not decoded prior to calling the
      ResourceManager.
      
      Fixes gh-17853
      9961647c
  4. 28 Aug, 2019 1 commit