1. 11 Dec, 2014 1 commit
  2. 10 Dec, 2014 2 commits
  3. 09 Dec, 2014 1 commit
    • Phillip Webb's avatar
      Fix session timeout default value · 1c031abd
      Phillip Webb authored
      Update DEFAULT_SESSION_TIMEOUT to use TimeUnit.MINUTES.toSeconds(30)
      rather than TimeUnit.SECONDS.toMinutes(30) which would always return
      0.
      
      See gh-2084
      (cherry picked from commit b33bbd56)
      1c031abd
  4. 08 Dec, 2014 5 commits
  5. 05 Dec, 2014 2 commits
  6. 02 Dec, 2014 1 commit
    • Andy Wilkinson's avatar
      Make Security auto-config conditional on spring-security-config · 3b78aa94
      Andy Wilkinson authored
      SecurityAutoConfiguration, via its import of
      AuthenticationManagerConfiguration, requires spring-security-config
      to be on the classpath as AuthenticationManagerConfiguration extends
      GlobalAuthenticationConfigurerAdapter from spring-security-config.
      
      This commit makes SecurityAutoConfiguration conditional on the
      presence of GlobalAuthenticationConfigurerAdapter so that the
      auto-configuration will be disabled in its absence rather than causing
      an app to fail to start.
      
      Closes gh-2046
      3b78aa94
  7. 01 Dec, 2014 4 commits
  8. 26 Nov, 2014 2 commits
  9. 25 Nov, 2014 5 commits
  10. 24 Nov, 2014 1 commit
    • Andy Wilkinson's avatar
      Use relative paths so index is unaffected by its context path · ccbc606d
      Andy Wilkinson authored
      Previously, index.html used absolute paths to load its CSS and
      JavaScript. This meant that it had to be deployed to /. This commit
      updates the HTML to use relative paths for its CSS and JavaScript,
      thereby ensuring that they can be loaded irrespective of the context
      path to which the application is deployed.
      
      Closes gh-1988
      ccbc606d
  11. 20 Nov, 2014 4 commits
    • Michael Freedman's avatar
      Fix copy in README · 3bad6349
      Michael Freedman authored
      (cherry picked from commit d4bf221f)
      3bad6349
    • Brian Clozel's avatar
      Minor fixes in howto documentation re:SSL config · 404153a7
      Brian Clozel authored
      Fixes a couple of typos in the documentation:
      * `x-forwarded-protocol` is not the standard name for this header
      * `require_https` is not an existing property, but rather `require_ssl`
      404153a7
    • Dave Syer's avatar
      Ensure java.io.tmpdir is available before using it · 23e7028a
      Dave Syer authored
      Some environments do not have a tmpdir so it can be null.
      23e7028a
    • Andy Wilkinson's avatar
      When Logback is the logging system, ensure that JBoss logging uses it · 59ebc3b3
      Andy Wilkinson authored
      Previously, if Logback was being used as Boot's logging system, but
      Log4J was also on the classpath before SLF4J and Logback, JBoss
      Logging would use Log4J for its logging. This lead to warning messages
      being produced as Log4J was not configured:
      
      log4j:WARN No appenders could be found for logger (org.jboss.logging).
      log4j:WARN Please initialize the log4j system properly.
      
      This commit updates LogbackLoggingSystem to set the
      org.jboss.logging.provider to "slf4j". This ensure that JBoss Logging
      will use SLF4J and Logback as intended even when Log4J is also on the
      classpath.
      
      Closes gh-1928
      59ebc3b3
  12. 19 Nov, 2014 1 commit
    • Phillip Webb's avatar
      Update license details · 9059c757
      Phillip Webb authored
      Add LICENSE.txt file and make it clear in the README file that we
      are Apache 2.0
      
      Fixes gh-1952
      9059c757
  13. 18 Nov, 2014 11 commits