1. 07 Jun, 2021 4 commits
    • Stephane Nicoll's avatar
      Upgrade to Ehcache3 3.9.4 · 16ff9318
      Stephane Nicoll authored
      Closes gh-26785
      16ff9318
    • Stephane Nicoll's avatar
      Upgrade to Dropwizard Metrics 4.1.22 · 90f96e2d
      Stephane Nicoll authored
      Closes gh-26784
      90f96e2d
    • Stephane Nicoll's avatar
      Upgrade to AppEngine SDK 1.9.89 · cfaab090
      Stephane Nicoll authored
      Closes gh-26783
      cfaab090
    • Phillip Webb's avatar
      Fix property ordering within '.' and '/config' · 7396e1e7
      Phillip Webb authored
      Allow groups to be used with standard locations so that order of
      profile-specific files is consistent.
      
      Prior to this commit, the default search locations considered for
      application properties/yaml files was the following:
      
      	optional:classpath:/
      	optional:classpath:/config/
      	optional:file:./
      	optional:file:./config/
      	optional:file:./config/*/
      
      Each of these locations was independent which could cause confusion
      if certain combinations were used. For example, if profile-specific
      files were added to `classpath:/` and `classpath:/config/` then the
      latter would always override the former regardless of the profile
      ordering.
      
      This commit updates `StandardConfigDataLocationResolver` so that a
      group of locations can be specified for each item. This allows us to
      define the following set of search locations which provide more logical
      ordering for profile-specific files
      
      	optional:classpath:/;optional:classpath:/config/
      	optional:file:./;optional:file:./config/;optional:file:./config/*/
      
      Closes gh-26593
      7396e1e7
  2. 06 Jun, 2021 7 commits
  3. 05 Jun, 2021 4 commits
  4. 04 Jun, 2021 7 commits
  5. 03 Jun, 2021 5 commits
  6. 02 Jun, 2021 6 commits
  7. 01 Jun, 2021 2 commits
    • Stephane Nicoll's avatar
      Merge branch '2.3.x' into 2.4.x · c8959180
      Stephane Nicoll authored
      Closes gh-26724
      c8959180
    • Stephane Nicoll's avatar
      Properly guard LogbackLoggingSystem · 7e4defbc
      Stephane Nicoll authored
      Previously, LoggingSystem#get would chose Logback by the sole presence
      of a class in logback-core, with the assumption that logback-classic is
      also on the classpath. An app that only had the former would therefore
      fail.
      
      This commit updates the condition to check for a class in
      logback-classic instead.
      
      Closes gh-26711
      7e4defbc
  8. 31 May, 2021 3 commits
  9. 28 May, 2021 2 commits