1. 03 Apr, 2014 8 commits
  2. 02 Apr, 2014 3 commits
  3. 01 Apr, 2014 20 commits
  4. 31 Mar, 2014 1 commit
  5. 28 Mar, 2014 2 commits
  6. 27 Mar, 2014 6 commits
    • Phillip Webb's avatar
      Upgrade some third party dependencies · 1664cef4
      Phillip Webb authored
      Upgrade Jackson and Reactor
      
      Fixes gh-597
      1664cef4
    • Phillip Webb's avatar
      Rename RestTemplates to TestRestTemplate · aca67066
      Phillip Webb authored
      Rename the RestTemplates to TestRestTemplate to help indicate that it's
      primarily intended for testing. Also now extend RestTemplate to allow
      direct use, rather than via factory methods.
      
      Fixes gh-599
      aca67066
    • Phillip Webb's avatar
      Polish · d117a6b2
      Phillip Webb authored
      d117a6b2
    • Dave Syer's avatar
      Return actual status code not 200 to machine client · 71c2c69c
      Dave Syer authored
      Machine clients are much more fussy than browsers and we
      should take care to preserve the HTTP status for them.
      
      Fixes gh-596
      71c2c69c
    • Dave Syer's avatar
      Switch default query to 'select 1' · d13827c4
      Dave Syer authored
      Fixes gh-555
      d13827c4
    • Andy Wilkinson's avatar
      Work around Groovy compiler bug that can name classes incorrectly · 46fc5c05
      Andy Wilkinson authored
      If a source URL is added to a CompilationUnit and that source URL does
      not contain any slashes, the resulting ClassNode in the AST will be
      incorrectly named. For example, a URL of 'file:foo.groovy' will produce
      a ClassNode named 'file:foo'. The expected name is 'foo'.
      
      This commit works around this problem by adding any URL sources with a
      file protocol to the compilation unit as File instances. Any URL sources
      that do not have a file protocol continue to be added as URL instances.
      Such URLs are still prone to this bug should we be dealing with one
      that contains no slashes. A fix for the underlying Groovy bug will
      address this possibility.
      
      Fixes #594
      46fc5c05