Cloud Native 4 min read

What’s New in Spring Cloud 2020.0.5? Full Release Notes and Upgrade Guide

Spring Cloud 2020.0.5, a bug‑fix release compatible with Spring Boot 2.4.x and 2.5.x, is now available from the central repository, and includes updated dependencies, component version tables, and detailed changelogs for modules such as Netflix, Config, Gateway, Kubernetes, OpenFeign, Sleuth, and Vault.

Programmer DD
Programmer DD
Programmer DD
What’s New in Spring Cloud 2020.0.5? Full Release Notes and Upgrade Guide

Spring Cloud 2020.0.5 is 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).

It can now be retrieved from the central repository with the following Maven 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>

Changelog

Spring Cloud Netflix

Updated to Netflix/Eureka 1.10.17

Spring Cloud Config

Git configuration files now support HTTPS proxy.

Added storage support for AWS, Redis, and CredHub (ordering support).

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 serialization now supports size = 0 pagination settings.

Spring Cloud Sleuth

Added cache execution wrapper.

Spring Cloud Vault

Token can be read from ~/.vault_token.

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

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.

JavaSpring BootSpring Cloud
Programmer DD
Written by

Programmer DD

A tinkering programmer and author of "Spring Cloud Microservices in Action"

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.