fix:fix reportClient not working bug when using push-gateway strategy;shutdown grpc connection gracefully.

1.11.4-2020.0.6
Haotian Zhang 2 years ago
parent 2f9e09fc09
commit a53434deea

@ -1,4 +1,4 @@
# Change Log
---
- [fix: custom spi metadata loaded bug.](https://github.com/Tencent/spring-cloud-tencent/pull/972)

@ -21,7 +21,8 @@ README:
## 介绍
Spring Cloud Tencent 是基于 Spring Cloud SPI 实现的一站式微服务解决方案。通过集成 Spring Cloud 和腾讯中间件,让分布式服务和微服务的开发、测试、发布和运维变得更加简单。
Spring Cloud Tencent 是基于 Spring Cloud SPI 实现的一站式微服务解决方案。通过集成 Spring Cloud
和腾讯中间件,让分布式服务和微服务的开发、测试、发布和运维变得更加简单。
<img src="https://user-images.githubusercontent.com/4991116/170412323-ecaf544c-1d7b-45db-9cf0-591544e50c64.png" width="80%" />
@ -77,7 +78,7 @@ Spring Cloud Tencent 所有组件都已上传到 Maven 中央仓库,只需要
<groupId>com.tencent.cloud</groupId>
<artifactId>spring-cloud-tencent-dependencies</artifactId>
<!--version number-->
<version>1.11.0-2020.0.6</version>
<version>1.11.4-2020.0.6</version>
<type>pom</type>
<scope>import</scope>
</dependency>

@ -21,13 +21,15 @@ Visit [Wiki](https://github.com/Tencent/spring-cloud-tencent/wiki) to learn more
## Introduction
Spring Cloud Tencent is an one-stop microservice solution which implements the standard Spring Cloud SPI. It integrates Spring Cloud with Tencent middlewares and makes it easy to develop microservice.
Spring Cloud Tencent is an one-stop microservice solution which implements the standard Spring Cloud SPI. It integrates
Spring Cloud with Tencent middlewares and makes it easy to develop microservice.
<img src="https://user-images.githubusercontent.com/4991116/170412596-692f8dae-42f7-495f-a451-01396e381eb0.png" width="80%" />
**Service discovery and governance**
Spring Cloud Tencent integrates Spring Cloud with Polaris which is an open source system for service discovery and governance.
Spring Cloud Tencent integrates Spring Cloud with Polaris which is an open source system for service discovery and
governance.
- [Polaris Github](https://github.com/polarismesh/polaris)
@ -78,7 +80,7 @@ For example:
<groupId>com.tencent.cloud</groupId>
<artifactId>spring-cloud-tencent-dependencies</artifactId>
<!--version number-->
<version>1.11.0-2020.0.6</version>
<version>1.11.4-2020.0.6</version>
<type>pom</type>
<scope>import</scope>
</dependency>

@ -0,0 +1,4 @@
# Change Log
---
- [fix: custom spi metadata loaded bug.](https://github.com/Tencent/spring-cloud-tencent/pull/972)

@ -88,7 +88,7 @@
<properties>
<!-- Project revision -->
<revision>1.11.2-2020.0.6</revision>
<revision>1.11.4-2020.0.6</revision>
<!-- Spring Framework -->
<spring.framework.version>5.3.25</spring.framework.version>

@ -70,10 +70,10 @@
</developers>
<properties>
<revision>1.11.2-2020.0.6</revision>
<revision>1.11.4-2020.0.6</revision>
<!-- Dependencies -->
<polaris.version>1.12.2</polaris.version>
<polaris.version>1.12.5</polaris.version>
<guava.version>31.0.1-jre</guava.version>
<logback.version>1.2.11</logback.version>
<mocktio.version>4.5.1</mocktio.version>

Loading…
Cancel
Save