fix:update spring boot version. (#1333)

pull/1408/head
Fishtail 5 months ago committed by GitHub
parent 81d67b44b3
commit 170e91dc99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -15,3 +15,4 @@
- [feat:upgrade jacoco version.](https://github.com/Tencent/spring-cloud-tencent/pull/1310) - [feat:upgrade jacoco version.](https://github.com/Tencent/spring-cloud-tencent/pull/1310)
- [fix:fix no registry when lossless is disabled.](https://github.com/Tencent/spring-cloud-tencent/pull/1312) - [fix:fix no registry when lossless is disabled.](https://github.com/Tencent/spring-cloud-tencent/pull/1312)
- [fix:fix the ratelimit bug for 2023](https://github.com/Tencent/spring-cloud-tencent/pull/1316) - [fix:fix the ratelimit bug for 2023](https://github.com/Tencent/spring-cloud-tencent/pull/1316)
- [fix:update spring boot version](https://github.com/Tencent/spring-cloud-tencent/pull/1333)

@ -95,7 +95,7 @@
<spring.framework.version>6.1.6</spring.framework.version> <spring.framework.version>6.1.6</spring.framework.version>
<!-- Spring Boot --> <!-- Spring Boot -->
<spring.boot.version>3.2.4</spring.boot.version> <spring.boot.version>3.3.1</spring.boot.version>
<!-- Spring Cloud --> <!-- Spring Cloud -->
<spring.cloud.version>2023.0.1</spring.cloud.version> <spring.cloud.version>2023.0.1</spring.cloud.version>

@ -17,21 +17,21 @@
"name": "spring.cloud.polaris.namespace", "name": "spring.cloud.polaris.namespace",
"type": "java.lang.String", "type": "java.lang.String",
"description": "polaris namespace", "description": "polaris namespace",
"default": "default", "defaultValue": "default",
"sourceType": "com.tencent.cloud.polaris.context.config.PolarisContextProperties" "sourceType": "com.tencent.cloud.polaris.context.config.PolarisContextProperties"
}, },
{ {
"name": "spring.cloud.polaris.service", "name": "spring.cloud.polaris.service",
"type": "java.lang.String", "type": "java.lang.String",
"description": "polaris service name", "description": "polaris service name",
"default": "${spring.application.name}", "defaultValue": "${spring.application.name}",
"sourceType": "com.tencent.cloud.polaris.context.config.PolarisContextProperties" "sourceType": "com.tencent.cloud.polaris.context.config.PolarisContextProperties"
}, },
{ {
"name": "spring.cloud.polaris.enabled", "name": "spring.cloud.polaris.enabled",
"type": "java.lang.Boolean", "type": "java.lang.Boolean",
"description": "polaris enabled", "description": "polaris enabled",
"default": "true", "defaultValue": "true",
"sourceType": "com.tencent.cloud.polaris.context.config.PolarisContextProperties" "sourceType": "com.tencent.cloud.polaris.context.config.PolarisContextProperties"
}, },
{ {

Loading…
Cancel
Save