1. 10 Mar, 2016 2 commits
  2. 09 Mar, 2016 4 commits
  3. 08 Mar, 2016 5 commits
  4. 07 Mar, 2016 4 commits
  5. 04 Mar, 2016 5 commits
  6. 03 Mar, 2016 4 commits
  7. 02 Mar, 2016 4 commits
  8. 01 Mar, 2016 2 commits
  9. 29 Feb, 2016 1 commit
  10. 26 Feb, 2016 2 commits
  11. 25 Feb, 2016 4 commits
  12. 24 Feb, 2016 3 commits
    • Use default instanceid for sidecar · 46fa2110
      Spencer Gibb authored
      fixes gh-847
    • Add HTTP basic back to Eureka client · ca81f567
      Dave Syer authored
      Latest Eureka from Netflix uses a different HTTP client, and it
      ignores the HTTP basic credentials in a service URL. This change
      partially restores the old behaviour by providing an interceptor
      (ClientFilter) that has a single, global username/password
      taken from the first serviceUrl that contains credentials.
      
      Fixes gh-849
    • Exclude jackson XML from eureka client by default · bc0eef9a
      Dave Syer authored
      Any client that wants to can include it back again, but generally
      it only causes problems (XML returned from apps instead of
      JSON by Spring MVC for instance). In general it only causes problems
      for services whose clients use "Accept: application/xml,*/*", for
      instance (like a browser).
      
      See gh-306