Marcin Grzejszczak
cf0c3bda92
Deploying documentation to proper folder
...
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/ )
9 years ago
Coramo
2db2a033ab
add 'RibbonRequest' test
9 years ago
Coramo
cf72184883
Merge branch 'master' of https://github.com/spring-cloud/spring-cloud-netflix
9 years ago
Stéphane Lagraulet
62344dccda
Merge branch 'master' into zuul_hystrix_threadpool
9 years ago
Stéphane Lagraulet
03caa1b8ce
Remove deprecated and unused constructors for RibbonCommandContext and RestClientRibbonCommand
9 years ago
Coramo
97c8f4c026
fix 'RibbonRequest' cannot to encode issues
9 years ago
Spencer Gibb
674e45f473
Add Client to list of feign objects that can be customized.
9 years ago
Ryan Baxter
36fec07a17
Merge pull request #1093 from daniellavoie/hystrix-security
...
Expose security context to any Hystrix command.
9 years ago
Spencer Gibb
0c694a018c
Merge pull request #1242 from mikexliu/master
...
* pull1242:
Add @Qualifier customization for @FeignClient
9 years ago
Mike Liu
f37b513f21
Add @Qualifier customization for @FeignClient
...
Changed test to use @Qualifier .
Add documentation to reference the new attribute.
9 years ago
Spencer Gibb
56c7466e64
Merge branch 'Egencia-master'
9 years ago
libetl
519be4db06
MetricsInterceptorConfiguration modifies potenially unmodifiable list.
...
fixes gh-1240
9 years ago
Spencer Gibb
4255c5578b
Merge pull request #1244 from cah-oster/master
...
* pull1244:
Fixed double-encoding issue in RibbonClientConfiguration
9 years ago
Scott Oster
5e698278a8
Fixed double-encoding issue in RibbonClientConfiguration
...
fixes gh-1241
9 years ago
Ryan Baxter
b09b0bcdbd
Added Codacy badge to README
9 years ago
Spencer Gibb
909a51000f
Remove @Ignore
...
fixes gh-1157
9 years ago
Spencer Gibb
306b43624b
update readme
9 years ago
Ryan Baxter
ec22c23bc5
Added CircleCI and Codecov badges
9 years ago
Ryan Baxter
a4ba11eabb
Updated sonar profile configuration
9 years ago
Stéphane Lagraulet
58559aff16
Add documentation for new zuul.ribbonIsolationStrategy property
9 years ago
Ryan Baxter
3e3511ac44
merge
9 years ago
Ryan Baxter
36ae029c18
circleci updates
9 years ago
Stéphane Lagraulet
4dc016f3e5
Merge branch 'master' into zuul_hystrix_threadpool
...
Conflicts:
spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/zuul/filters/route/support/AbstractRibbonCommand.java
9 years ago
Ryan Baxter
d90e99216b
Merge pull request #1225 from coveord/fix-content-length
...
Content-length not properly set when using the FormBodyWrapperFilter
9 years ago
Stéphane Lagraulet
67838807e8
Add zuulProperties as a method parameter
9 years ago
Jacques-Etienne Beaudet
dc2cdd55c0
Merge branch 'master' into fix-content-length
9 years ago
Daniel Lavoie
5b0f6013e8
Expose security context to any Hystrix command.
...
Fix issue gh-1054
9 years ago
Ryan Baxter
52c956831e
circleci updates
9 years ago
Ryan Baxter
4f93897b71
more circle ci configuration
9 years ago
Ryan Baxter
5676c8f753
added artifacts directory to circle config
9 years ago
Ryan Baxter
eed72600c5
initial commit for circleci build
9 years ago
Stéphane Lagraulet
35ca9691d2
Merge branch 'master' into zuul_hystrix_threadpool
...
Conflicts:
spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/zuul/filters/route/okhttp/OkHttpRibbonCommandIntegrationTests.java
9 years ago
Stéphane Lagraulet
072f7760a4
Use request content length RibbonRoutingFilter
9 years ago
Ryan Baxter
3c1599a1f4
Merge pull request #1213 from mhartle/master
...
FormBodyWrapperFilter may add multiples of every multipart part to a request
9 years ago
Ryan Baxter
90808124f5
Merge pull request #1206 from daniellavoie/spring-boot-test-1.4
...
Migrate tests to Spring Boot Test 1.4
9 years ago
Stéphane Lagraulet
3c96fcc888
Get content length from Headers when RibbonCommandContext is built + add tests
9 years ago
Jacques-Etienne Beaudet
d21a7ef8e2
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 AbstractRibbonCommand. 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 years ago
Stéphane Lagraulet
b1ec12af43
Add a check to current context as contentLength is already in the context
9 years ago
Stéphane Lagraulet
7929dfec0f
Add a zuul property to customize Hystrix ExecutionIsolationStrategy
9 years ago
Michael Hartle
8bb223f6e3
Added a minimal test for FormBodyWrapperFilter handling multiple part names with multiple parts
9 years ago
Ryan Baxter
8b911e6074
Merge pull request #1217 from ryanjbaxter/move-to-open-feign
...
Changed version and group id to use latest OpenFeign release
9 years ago
Ryan Baxter
10a3d1df69
Changed version and group id to use latest OpenFeign release. Fixes #1189 .
9 years ago
Dave Syer
8cf581d496
Correct description of cloud foundry instance id
...
Fixes gh-1214
9 years ago
Michael Hartle
0095ba8984
Fixed an issue where the pre FormBodyWrapperFilter adds multiples of every multipart part to a request
9 years ago
Daniel Lavoie
6f32aa95a7
Migrate tests to Spring Boot Test 1.4
...
Fixes gh-1205
9 years ago
Dave Syer
afb43c5883
Actually fix the feign client validation issue
...
We need to still assert that the FeignClient is valid (no name and
value specified together for instance). Added missing tests.
9 years ago
Dave Syer
85ef54a9a1
Fix Feign validation for Spring 4.2 and 4.3
...
There is a utility method in Spring that we can use to merge all
the aliases. That way 4.2 and 4.3 behave the same way.
Fixes gh-1192
9 years ago
Dave Syer
2f581a1181
Use JUnit assertions
9 years ago
Dave Syer
110f872779
Fix generic type signature (otherwise breaks with Spring 4.3)
9 years ago
Spencer Gibb
54931afa8b
Remove assertion that fails in spring 4.3.x
...
Need to make this class 4.2.x compatible.
see gh-1192
9 years ago