1. 02 Aug, 2016 1 commit
  2. 26 Jul, 2016 1 commit
  3. 21 Jul, 2016 4 commits
  4. 16 Jul, 2016 1 commit
  5. 14 Jul, 2016 2 commits
  6. 13 Jul, 2016 2 commits
  7. 12 Jul, 2016 1 commit
  8. 11 Jul, 2016 1 commit
  9. 09 Jul, 2016 1 commit
  10. 08 Jul, 2016 1 commit
  11. 01 Jul, 2016 4 commits
  12. 29 Jun, 2016 2 commits
  13. 28 Jun, 2016 2 commits
  14. 27 Jun, 2016 1 commit
    • Adds a RibbonRequestCustomizer. · 46b2e45f
      Spencer Gibb authored
      This allows developers to customize the request builders for zuul requests to inject headers or modify the request in general.  Each zuul request type (RestClient, Apache HttpClient and OkHttp) is supported.
      
      fixes gh-1141
  15. 24 Jun, 2016 11 commits
  16. 23 Jun, 2016 3 commits
  17. 22 Jun, 2016 2 commits
    • upgrade feign to v8.17.0 · 398c5aa0
      Spencer Gibb authored
      fixes gh-1081
    • Set entity contentLength to 0 for GET requests. · 7a90c0cd
      Spencer Gibb authored
      Zuul sets an empty entity for GET requests. The apache http client either sets transfer encoding to chunked or a content length header. This change sets the apache entity contentLength to 0 (not the header), to that in RequestContent the "content-length" header is set to 0 rathern than transfer encoding.
      
      See gh-1042