1. 22 Aug, 2016 3 commits
  2. 19 Aug, 2016 1 commit
  3. 18 Aug, 2016 1 commit
  4. 17 Aug, 2016 3 commits
  5. 16 Aug, 2016 1 commit
    • Deploying documentation to proper folder · 4552b33a
      Marcin Grzejszczak authored
      What we're missing ATM is different documentation versions for different application versions. What this change does is that it's:
      
      - finding out what is the current branch (e.g. 1.0.x)
      - finding out out what is the name of the main adoc file (e.g. spring-cloud-sleuth)
      - pulling the changes from gh-pages after checkout
      - finding out what is the list of comma separated whitelisted branches (via the `docs.whitelisted.branches` prop)
      - in gh-pages creating a folder with name of the branch  (e.g. /1.0.x)
      copying all the docs/target/generated-docs/ to that folder
      - if the branch from which we're calling the script is NOT master then we're changing the ${main.adoc}.html to index.html so that it's easier to access the docs (e.g. http://cloud.spring.io/spring-cloud-sleuth/1.0.x/)
  6. 10 Aug, 2016 2 commits
  7. 09 Aug, 2016 4 commits
  8. 03 Aug, 2016 1 commit
    • Fix an issue where the FormBodyWrapperFilter would encode the form parameters… · 8c4a49be
      Jacques-Etienne Beaudet authored
      Fix an issue where the FormBodyWrapperFilter would encode the form parameters differently than on the original request.
      
      The FormBodyWrapperFilter handles the application/x-www-form-urlencoded. In the case of requests received by curl or javascript, the FormHttpMessageConverter will reencode the parameters differently (for example, '(' will be encoded while it's not with the javascript encodeURIComponent method).
      
      While this doesn't create any problem, the content length was not properly set in HttpClientRibbonCommand. This causes the form params being stripped or the backend server would wait a long time for additional bytes depending on if the content length header was bigger/smaller than the actual data.
  9. 22 Jul, 2016 3 commits
  10. 21 Jul, 2016 4 commits
  11. 15 Jul, 2016 2 commits
  12. 14 Jul, 2016 1 commit
  13. 13 Jul, 2016 2 commits
  14. 12 Jul, 2016 1 commit
  15. 08 Jul, 2016 2 commits
  16. 07 Jul, 2016 3 commits
  17. 30 Jun, 2016 2 commits
  18. 29 Jun, 2016 1 commit
  19. 28 Jun, 2016 1 commit
  20. 24 Jun, 2016 2 commits
    • Split ProxyRequestHelper to function without Actuator. · a9c0fc15
      Spencer Gibb authored
      Previously ProxyRequestHelper contained a TraceRepository field. This caused zuul apps to fail with a class not found exception if they excluded actuator. This splits TraceRepository functionality into a new TraceProxyRequestHelper that extends ProxyRequestHelper. Auto configuration creates the appropriate ProxyRequestHelper based on the existence or not of actuator classes.
      
      fixes gh-1135
    • add .shelf to .gitignore · 9dafae6c
      Spencer Gibb authored