buildmaster
4e6c1b2d04
Bumping versions to 2.1.4.BUILD-SNAPSHOT after release
2019-09-09 19:16:42 +00:00
buildmaster
d8cdade30f
Going back to snapshots
2019-09-09 19:16:42 +00:00
buildmaster
b16904f15e
Update SNAPSHOT to 2.1.3.RELEASE
2019-09-09 19:15:23 +00:00
Olga Maciaszek-Sharma
96ae8479aa
Remove unused jersey dependency. Add dependency version for okhttp.
2019-08-30 16:34:25 +02:00
Spencer Gibb
27380898a8
Updates to 2.1.3.BUILD-SNAPSHOT and build to 2.1.7
2019-06-21 12:26:25 -04:00
buildmaster
d5031f8618
Bumping versions to 2.1.4.BUILD-SNAPSHOT after release
2019-06-20 17:08:40 +00:00
buildmaster
b5539198e6
Going back to snapshots
2019-06-20 17:08:40 +00:00
buildmaster
36d63a1b9f
Update SNAPSHOT to 2.1.2.RELEASE
2019-06-20 17:07:59 +00:00
buildmaster
c4284683ad
Bumping versions to 2.1.3.BUILD-SNAPSHOT after release
2019-06-11 19:20:31 +00:00
buildmaster
21805a9989
Going back to snapshots
2019-06-11 19:20:30 +00:00
buildmaster
b1a8917796
Update SNAPSHOT to 2.1.2.RELEASE
2019-06-11 19:19:38 +00:00
Spring Operator
09f9382a51
URL Cleanup ( #163 )
...
This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener).
# Fixed URLs
## Fixed But Review Recommended
These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended.
* [ ] http://www.puppycrawl.com/dtds/suppressions_1_1.dtd (404) with 1 occurrences migrated to:
https://www.puppycrawl.com/dtds/suppressions_1_1.dtd ([https](https://www.puppycrawl.com/dtds/suppressions_1_1.dtd ) result 404).
## Fixed Success
These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended.
* [ ] http://maven.apache.org/xsd/maven-4.0.0.xsd with 5 occurrences migrated to:
https://maven.apache.org/xsd/maven-4.0.0.xsd ([https](https://maven.apache.org/xsd/maven-4.0.0.xsd ) result 200).
# Ignored
These URLs were intentionally ignored.
* http://maven.apache.org/POM/4.0.0 with 10 occurrences
* http://www.w3.org/2001/XMLSchema-instance with 5 occurrences
2019-03-28 12:52:33 -04:00
buildmaster
6f9e1f63dc
Bumping versions to 2.1.2.BUILD-SNAPSHOT after release
2019-03-05 17:48:02 +00:00
buildmaster
7a6c0a42f6
Going back to snapshots
2019-03-05 17:48:02 +00:00
buildmaster
d73c61f0f0
Update SNAPSHOT to 2.1.1.RELEASE
2019-03-05 17:47:11 +00:00
Spencer Gibb
d01bcdf29c
Adds support for Iterable but not Collection parameters.
...
This was removed as part of #48 .
fixes gh-135
2019-03-04 17:48:23 -05:00
charliemordant
f8352de786
merge conflicts
2019-02-10 18:16:29 +01:00
Marcin Grzejszczak
c8c7452848
Added checkstyle
2019-02-05 18:46:31 +01:00
charliemordant
505a83e6a4
registers PageJacksonModule in FeignClientConfiguration
2019-01-28 13:05:26 +01:00
charliemordant
76dbc7d21f
Merge branch 'master' of github.com:spring-cloud/spring-cloud-openfeign into 1604
2019-01-28 09:29:26 +01:00
buildmaster
eb7e4d3082
Bumping versions to 2.1.1.BUILD-SNAPSHOT after release
2019-01-22 18:34:21 +00:00
buildmaster
c76b02b8a3
Going back to snapshots
2019-01-22 18:34:20 +00:00
buildmaster
c1418bafee
Update SNAPSHOT to 2.1.0.RELEASE
2019-01-22 18:33:41 +00:00
charliemordant
642d3e6961
Spring data pageable support
2018-12-30 01:47:55 +01:00
buildmaster
3051c4c1fd
Going back to snapshots
2018-12-20 21:12:44 +00:00
buildmaster
fb6676d634
Update SNAPSHOT to 2.1.0.RC3
2018-12-20 21:11:11 +00:00
buildmaster
b9cb792820
Going back to snapshots
2018-12-11 21:52:28 +00:00
buildmaster
a38ebe40c8
Update SNAPSHOT to 2.1.0.RC2
2018-12-11 21:51:44 +00:00
buildmaster
a064530141
Going back to snapshots
2018-12-11 16:38:12 +00:00
buildmaster
61afb5dcd6
Update SNAPSHOT to 2.1.0.RC1
2018-12-11 16:37:40 +00:00
buildmaster
cc2fe823c3
Going back to snapshots
2018-11-18 09:42:08 +00:00
buildmaster
f1975e5200
Update SNAPSHOT to 2.1.0.M2
2018-11-18 09:41:37 +00:00
buildmaster
71675455a3
Going back to snapshots
2018-09-21 21:40:58 +00:00
buildmaster
a39e6316b5
Update SNAPSHOT to Greenwich.M1
2018-09-21 21:40:12 +00:00
Spencer Gibb
15bda96e91
Merge branch '2.0.x'
2018-09-05 16:09:38 -04:00
Eugene
e0bf63bed1
Added support for MultipartFile ( #66 )
...
Fixes gh-62
### Notes
The solution is based on
```
<dependency>
<groupId>io.github.openfeign.form</groupId>
<artifactId>feign-form-spring</artifactId>
<version>3.3.0</version>
</dependency>
```
Class `feign.form.spring.SpringFormEncoder` was added inside `org.springframework.cloud.openfeign.support.SpringEncoder` because it's doesn't has some checks:
1. Check of `bodyType` on null.
`org.springframework.cloud.openfeign.support.SpringEncoder#encode` don't handle situation when `bodyType` is null.
2. No check for content type `multipart/form-data` in header.
`feign.form.FormEncoder` requires `multipart/form-data` in header for proper processing.
All this checks added and tests are passed.
2018-09-05 16:07:56 -04:00
Nicklas Holm
a33fd6d869
Add spring boot configuration processor. Fixes #63 ( #64 )
2018-09-05 10:01:53 -04:00
Spencer Gibb
88fae41f02
Updates to work with boot 2.1.0
2018-08-03 15:04:17 -04:00
buildmaster
34cb91bc4c
Bumping versions to 2.0.2.BUILD-SNAPSHOT after release
2018-07-31 19:06:45 +00:00
buildmaster
58dc45d230
Going back to snapshots
2018-07-31 19:06:45 +00:00
buildmaster
80af701ccf
Update SNAPSHOT to 2.0.1.RELEASE
2018-07-31 19:04:57 +00:00
Ryan Baxter
69461d4385
Adding spring boot autoconfigure processor. Fixes #43 .
2018-07-09 09:31:35 -04:00
buildmaster
51ad63231d
Bumping versions to 2.0.1.BUILD-SNAPSHOT after release
2018-06-18 20:33:23 +00:00
buildmaster
6c09501d77
Going back to snapshots
2018-06-18 20:33:22 +00:00
buildmaster
7e1c91c8b8
Update SNAPSHOT to 2.0.0.RELEASE
2018-06-18 20:31:53 +00:00
Ryan Baxter
01a2cda776
Remove misplaced StringEncoder setting when dealing with protobuf. Porting change from sc-netflix #2453
2018-05-18 13:53:58 -04:00
buildmaster
f4fc531857
Going back to snapshots
2018-04-20 20:31:00 +00:00
buildmaster
596b42291f
Update SNAPSHOT to 2.0.0.RC1
2018-04-20 20:30:19 +00:00
buildmaster
17fa94f704
Going back to snapshots
2018-03-22 21:22:08 +00:00
buildmaster
baf92c8226
Update SNAPSHOT to 2.0.0.M2
2018-03-22 21:21:31 +00:00