Spring Operator
11098e9a99
URL Cleanup ( #155 )
...
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 Success
These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended.
* [ ] http://www.apache.org/licenses/ with 1 occurrences migrated to:
https://www.apache.org/licenses/ ([https](https://www.apache.org/licenses/ ) result 200).
* [ ] http://www.apache.org/licenses/LICENSE-2.0 with 102 occurrences migrated to:
https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0 ) result 200).
2019-03-21 16:35:33 -04:00
Spring Operator
36cc521a81
URL Cleanup ( #148 )
...
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 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).
* http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch with 1 occurrences migrated to:
https://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch ([https](https://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch ) result 200).
* http://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin with 1 occurrences migrated to:
https://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin ([https](https://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin ) result 200).
* http://www.apache.org/licenses/LICENSE-2.0 with 2 occurrences migrated to:
https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0 ) 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-16 11:52:56 -04:00
buildmaster
3a79850467
Bumping versions to 2.0.4.BUILD-SNAPSHOT after release
2019-02-22 15:48:44 +00:00
buildmaster
117e2c2b01
Going back to snapshots
2019-02-22 15:48:43 +00:00
buildmaster
80de4e6b66
Update SNAPSHOT to 2.0.3.RELEASE
2019-02-22 15:47:07 +00:00
Ryan Baxter
a693c30930
Add null check for retry policy. Fixes #101
2019-01-07 09:49:36 -05:00
Ryan Baxter
4e7e187323
Fix bug where host contains protocol characters ( #97 )
...
Fixes #94
2018-12-18 14:48:31 -05:00
buildmaster
5ddd771ed5
Bumping versions to 2.0.3.BUILD-SNAPSHOT after release
2018-10-23 18:11:07 +00:00
buildmaster
9f9c41ab59
Going back to snapshots
2018-10-23 18:11:06 +00:00
buildmaster
4dd68ca2f2
Update SNAPSHOT to 2.0.2.RELEASE
2018-10-23 18:08:54 +00:00
Ryan Baxter
77cdd40f7d
Add missing properties to additional-spring-configuration-metadata. Fixes #61
2018-10-02 13:07:19 -04:00
sdoeringNew
750cb35e6a
Add builder for feign clients. ( #56 )
...
Utilizes the logic from the registrar and the factory bean. The changes to them have been made minimal invasive.
Fixes gh-42
2018-09-19 09:37:51 -04:00
Kerwin Bryant
b512c451fd
optimized automatic configuration ( #70 )
2018-09-19 09:35:01 -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
Ryan Baxter
06ccb9d1e5
Remove code which was calling FallbackFactory with RuntimeException. Fixes #41 ( #58 )
2018-08-17 10:23:37 -04:00
Ryan Baxter
d57cea265e
Fix invalid URI error when Feign request URI does not end in /. See sc-netflix #3136
2018-08-13 14:26:24 -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
7dcb696ec4
Use OK Http client bean instead of instance variable. Fixes #46
2018-07-24 09:44:45 -04:00
Ryan Baxter
69461d4385
Adding spring boot autoconfigure processor. Fixes #43 .
2018-07-09 09:31:35 -04:00
Matt Benson
8364b16b8e
expose configuration metadata for property 'feign.hystrix.enabled' ( #40 )
2018-06-28 07:28:32 -04:00
Ian Hu
6d4686624e
Fix typo in comments ( #38 )
2018-06-26 07:10:51 -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
Fernando F D Bittencourt
a57c416d4a
Explaining the return in case of exception. ( #32 )
2018-06-01 16:44:09 -04:00
Karl Nicholas
ffd4290e06
Update package to correct package in two test files. ( #30 )
2018-05-31 15:58:09 -04:00
Ryan Baxter
e27d4d38e5
Fixing compatibility issues between netflix and openfeign as well as boot 1.5.x and 2.0.x
2018-05-18 14:17:09 -04: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
Ryan Baxter
9ac36c7f3f
Use type parameter instead of class. Fixes problem when OK HTTP is not on the classpath.
2018-05-02 15:52:36 -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
Ryan Baxter
042244428f
Fix NPE when body is empty. Fixes #12 .
2018-03-13 16:33:59 -04:00
Ryan Baxter
485583dad8
Refactor spring retry code ( #10 )
2018-03-12 22:16:44 -04:00
MCoulombe727
c45f1532da
Fix the race condition with the GC since the ConcurrentReferenceHashMap holds soft references to clients. ( #6 )
...
Fixes gh-5
2018-03-09 12:39:58 -05:00
Ryan Baxter
139cc9dab4
Changes and new tests from Netflix
2018-02-22 15:43:04 -05:00
Ryan Baxter
30d9245821
Updated from netflix
2018-02-20 15:34:38 -05:00
Ryan Baxter
26d8e6450b
Moving new code over from netflix
2018-02-20 14:27:38 -05:00
Ryan Baxter
217443048f
openfeign project
2018-02-05 20:25:44 -05:00