Not sure if it is intentional or typo but spring-cloud-openfeign Version 3.0.5 has as parent spring-cloud-build Version 3.0.4
As a consequence some of dependencies are still on old version, despite update to v3.0.5, e.g.:
org.springframework.cloud:spring-cloud-openfeign-core:3.0.4
Comment From: OlgaMaciaszek
SC build was 3.0.4 on purpose, however spring-cloud-openfeign-core should be 3.0.5, and this is what is in the pom.
Comment From: spring-cloud-issues
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed.
Comment From: ewoks
Thanks for the answer @OlgaMaciaszek . However, I am still not sure is this configuration issue on my side or something is wrong with the build. As you see in a screenshot, I got 3.0.4 that leaked in although spring-cloud-starter-openfeign is 3.0.5
Comment From: OlgaMaciaszek
That probably comes from dependency management. As a workaround could you add:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-openfeign-core</artifactId>
<version>3.0.5</version>
</dependency>
to your pom till the new release train version is published?
Comment From: spring-cloud-issues
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed.
Comment From: spring-cloud-issues
Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open the issue.