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

1.11.4-2022.0.1
Haotian Zhang 2 years ago
parent 51663a037d
commit 0a32603a97

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

@ -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%" />
@ -31,7 +32,7 @@ Spring Cloud Tencent 集成 Spring Cloud 和北极星。北极星是一个支持
- [北极星 Github](https://github.com/polarismesh/polaris)
Spring Cloud 集成北极星可以解决以下问题:
Spring Cloud 集成北极星可以解决以下问题:
- 服务管理:服务发现、服务发现、健康检查
- 流量控制:可自定义的流量路由、负载均衡、限频限流、访问控制
@ -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-2022.0.1</version>
<version>1.11.4-2022.0.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>

@ -21,17 +21,19 @@ 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)
Spring Cloud with Polaris can solve these problem:
Spring Cloud with Polaris can solve these problem:
- service management: service discovery, service registry and health check
- traffic control: customizable routing, load balance, rate limiting and access control
@ -78,7 +80,7 @@ For example:
<groupId>com.tencent.cloud</groupId>
<artifactId>spring-cloud-tencent-dependencies</artifactId>
<!--version number-->
<version>1.11.0-2022.0.1</version>
<version>1.11.4-2022.0.1</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/974)

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

@ -70,10 +70,10 @@
</developers>
<properties>
<revision>1.11.2-2022.0.1</revision>
<revision>1.11.4-2022.0.1</revision>
<!-- Dependencies -->
<polaris.version>1.12.2</polaris.version>
<polaris.version>1.12.5</polaris.version>
<guava.version>31.1-jre</guava.version>
<mocktio.version>4.9.0</mocktio.version>
<byte-buddy.version>1.12.19</byte-buddy.version>

Loading…
Cancel
Save