What’s New in Spring Cloud 2020.0.5? Detailed Release Notes and Component Versions

Spring Cloud 2020.0.5, a bug‑fix release compatible with Spring Boot 2.4.x and 2.5.x, introduces updated components such as Netflix/Eureka 1.10.17, new Config support for HTTPS proxy and AWS/Redis/CredHub, enhanced Gateway metrics, Kubernetes client proxy, OpenFeign pagination, and Vault token handling, with a full component version list.

Java Architecture Diary
Java Architecture Diary
Java Architecture Diary
What’s New in Spring Cloud 2020.0.5? Detailed Release Notes and Component Versions

Spring Cloud 2020.0.5 has been officially released as a bug‑fix version. It is compatible with Spring Boot 2.4.x and 2.5.x, but not with 2.6.x (use Spring Cloud 2021 for that).

The BOM can be imported from the central repository with the following coordinates:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>2020.0.5</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>
<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-config</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
    </dependency>
    ...
</dependencies>

Release notes

Spring Cloud Netflix

Updated to Netflix/Eureka 1.10.17.

Spring Cloud Config

Git configuration files now support HTTPS proxy.

Added support for AWS, Redis, and CredHub repositories.

Spring Cloud Gateway

New monitoring metrics: Netty connection count, path tags, and number of route definitions.

Spring Cloud Kubernetes

Kubernetes API client can be configured with a proxy.

Active profile parameter is now optional.

Upgraded Kubernetes Java Client to 11.0.3.

Spring Cloud OpenFeign

PageJacksonModule now supports pagination with size = 0.

Spring Cloud Sleuth

Added a cache executor wrapper.

Spring Cloud Vault

Token can be read from ~/.vault_token.

New property spring.cloud.vault.reactive.enabled added.

Support for generating multiple database keys.

Component versions

Spring Cloud Netflix: 3.0.5

Spring Cloud Config: 3.0.6

Spring Cloud Sleuth: 3.0.5

Spring Cloud Gateway: 3.0.6

Spring Cloud Cloudfoundry: 3.0.3

Spring Cloud Contract: 3.0.5

Spring Cloud Kubernetes: 2.0.5

Spring Cloud Zookeeper: 3.0.5

Spring Cloud CLI: 3.0.4

Spring Cloud Task: 2.3.5

Spring Cloud Starter Build: 2020.0.5

Spring Cloud OpenFeign: 3.0.6

Spring Cloud Vault: 3.0.5

Spring Cloud Commons: 3.0.5

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

cloud-nativebackend-developmentspring-bootspring-cloudrelease-notes
Java Architecture Diary
Written by

Java Architecture Diary

Committed to sharing original, high‑quality technical articles; no fluff or promotional content.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.