From ae50a8e389b63e66894d18c6f0fa0595e1abd8ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=81=E5=8C=A0=E5=90=9B?= Date: Fri, 24 Oct 2025 22:03:20 +0800 Subject: [PATCH 1/5] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E6=95=B0=E6=8D=AE=E5=BA=93=E8=84=9A?= =?UTF-8?q?=E6=9C=AC=E4=B8=AD=EF=BC=8C=E6=9D=83=E9=99=90=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=20SQL=20=E4=B8=8D=E5=A4=9F=E7=B2=BE=E5=87=86=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/sqls/oss-data-mysql.sql | 4 ++-- .../src/main/resources/sqls/oss-data-postgresql.sql | 4 ++-- .../src/main/resources/sqls/oss-data-mysql.sql | 4 ++-- .../src/main/resources/sqls/oss-data-postgresql.sql | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/services/dante-cloud-oss-ability/src/main/resources/sqls/oss-data-mysql.sql b/services/dante-cloud-oss-ability/src/main/resources/sqls/oss-data-mysql.sql index d1c8e259..4260558c 100644 --- a/services/dante-cloud-oss-ability/src/main/resources/sqls/oss-data-mysql.sql +++ b/services/dante-cloud-oss-ability/src/main/resources/sqls/oss-data-mysql.sql @@ -350,8 +350,8 @@ FROM `sys_attribute` sa WHERE sa.url = '/security/element/tree' + OR sa.url = '/security/dictionary/items/{category}' OR sa.url = '/oauth2/sign-out' - OR sa.url LIKE'%enum%' OR sa.url LIKE'%message%' UNION SELECT '2' AS permission_id, @@ -368,7 +368,7 @@ FROM `sys_attribute` sa WHERE sa.url LIKE'%security%' - AND (sa.url != '/security/element/tree' OR sa.url != '/security/dictionary/items/{category}') UNION + AND sa.url != '/security/element/tree' AND sa.url != '/security/dictionary/items/{category}' UNION SELECT '4' AS permission_id, sa.attribute_id diff --git a/services/dante-cloud-oss-ability/src/main/resources/sqls/oss-data-postgresql.sql b/services/dante-cloud-oss-ability/src/main/resources/sqls/oss-data-postgresql.sql index 59ca720d..164e0219 100644 --- a/services/dante-cloud-oss-ability/src/main/resources/sqls/oss-data-postgresql.sql +++ b/services/dante-cloud-oss-ability/src/main/resources/sqls/oss-data-postgresql.sql @@ -351,8 +351,8 @@ FROM "sys_attribute" sa WHERE sa.url = '/security/element/tree' + OR sa.url = '/security/dictionary/items/{category}' OR sa.url = '/oauth2/sign-out' - OR sa.url LIKE'%enum%' OR sa.url LIKE'%message%' UNION SELECT '2' AS permission_id, @@ -369,7 +369,7 @@ FROM "sys_attribute" sa WHERE sa.url LIKE'%security%' - AND (sa.url != '/security/element/tree' OR sa.url != '/security/dictionary/items/{category}') UNION + AND sa.url != '/security/element/tree' AND sa.url != '/security/dictionary/items/{category}' UNION SELECT '4' AS permission_id, sa.attribute_id diff --git a/services/dante-monomer-application/src/main/resources/sqls/oss-data-mysql.sql b/services/dante-monomer-application/src/main/resources/sqls/oss-data-mysql.sql index dd2effc3..e6ff1c08 100644 --- a/services/dante-monomer-application/src/main/resources/sqls/oss-data-mysql.sql +++ b/services/dante-monomer-application/src/main/resources/sqls/oss-data-mysql.sql @@ -352,8 +352,8 @@ FROM `sys_attribute` sa WHERE sa.url = '/security/element/tree' + OR sa.url = '/security/dictionary/items/{category}' OR sa.url = '/oauth2/sign-out' - OR sa.url LIKE'%enum%' OR sa.url LIKE'%message%' UNION SELECT '2' AS permission_id, @@ -370,7 +370,7 @@ FROM `sys_attribute` sa WHERE sa.url LIKE'%security%' - AND (sa.url != '/security/element/tree' OR sa.url != '/security/dictionary/items/{category}') UNION + AND sa.url != '/security/element/tree' AND sa.url != '/security/dictionary/items/{category}' UNION SELECT '4' AS permission_id, sa.attribute_id diff --git a/services/dante-monomer-application/src/main/resources/sqls/oss-data-postgresql.sql b/services/dante-monomer-application/src/main/resources/sqls/oss-data-postgresql.sql index d3afe551..d1d7ecb8 100644 --- a/services/dante-monomer-application/src/main/resources/sqls/oss-data-postgresql.sql +++ b/services/dante-monomer-application/src/main/resources/sqls/oss-data-postgresql.sql @@ -352,9 +352,9 @@ FROM FROM "sys_attribute" sa WHERE - sa.url = '/security/element/tree' + sa.url = '/security/element/tree' OR sa.url = '/oauth2/sign-out' - OR sa.url LIKE'%enum%' + OR sa.url = '/security/dictionary/items/{category}' OR sa.url LIKE'%message%' UNION SELECT '2' AS permission_id, @@ -371,7 +371,7 @@ FROM "sys_attribute" sa WHERE sa.url LIKE'%security%' - AND (sa.url != '/security/element/tree' OR sa.url != '/security/dictionary/items/{category}') UNION + AND sa.url != '/security/element/tree' AND sa.url != '/security/dictionary/items/{category}' UNION SELECT '4' AS permission_id, sa.attribute_id -- Gitee From 7feca6dce8814439b69e2a392e2c96cbabe2359f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=81=E5=8C=A0=E5=90=9B?= Date: Sat, 25 Oct 2025 15:31:16 +0800 Subject: [PATCH 2/5] =?UTF-8?q?[=E4=BC=98=E5=8C=96]=20Docker=20=E5=9F=BA?= =?UTF-8?q?=E7=A1=80=E9=95=9C=E5=83=8F=20jre=20=E5=8F=98=E6=9B=B4=E4=B8=BA?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=20cds=20=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- configurations/docker/context/development/Dockerfile | 2 +- configurations/docker/context/development/Dockerfile-Monitor | 2 +- configurations/docker/context/production/Dockerfile | 2 +- configurations/docker/context/production/Dockerfile-Monitor | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configurations/docker/context/development/Dockerfile b/configurations/docker/context/development/Dockerfile index e23f4577..944a231a 100644 --- a/configurations/docker/context/development/Dockerfile +++ b/configurations/docker/context/development/Dockerfile @@ -9,7 +9,7 @@ ### 在 debian 下则没有这问题。以目前了解的情况看,猜测 alpine 下,为了缩小体系,缺失的内容应该不只是字体库,还有其它内容。 ### 当然也可能是个人能力有限,一直没有找到正确解决的办法。如果你有更好的解决办法,欢迎提 ISSUE 和 PR。 -FROM quay.io/herodotus-cloud/liberica-openjre-debian17.0.17-11 +FROM quay.io/herodotus-cloud/liberica-openjre-debian:17.0.17-11-cds # 作者 LABEL maintainer="herodotus@aliyun.com" diff --git a/configurations/docker/context/development/Dockerfile-Monitor b/configurations/docker/context/development/Dockerfile-Monitor index 8c301caf..68d354c8 100644 --- a/configurations/docker/context/development/Dockerfile-Monitor +++ b/configurations/docker/context/development/Dockerfile-Monitor @@ -9,7 +9,7 @@ ### 在 debian 下则没有这问题。以目前了解的情况看,猜测 alpine 下,为了缩小体系,缺失的内容应该不只是字体库,还有其它内容。 ### 当然也可能是个人能力有限,一直没有找到正确解决的办法。如果你有更好的解决办法,欢迎提 ISSUE 和 PR。 -FROM quay.io/herodotus-cloud/liberica-openjre-debian17.0.17-11 +FROM quay.io/herodotus-cloud/liberica-openjre-debian:17.0.17-11-cds #FROM openjdk:17-jdk # 作者 LABEL maintainer="herodotus@aliyun.com" diff --git a/configurations/docker/context/production/Dockerfile b/configurations/docker/context/production/Dockerfile index ba5ffd72..f9ab0169 100644 --- a/configurations/docker/context/production/Dockerfile +++ b/configurations/docker/context/production/Dockerfile @@ -9,7 +9,7 @@ ### 在 debian 下则没有这问题。以目前了解的情况看,猜测 alpine 下,为了缩小体系,缺失的内容应该不只是字体库,还有其它内容。 ### 当然也可能是个人能力有限,一直没有找到正确解决的办法。如果你有更好的解决办法,欢迎提 ISSUE 和 PR。 -FROM quay.io/herodotus-cloud/liberica-openjre-debian17.0.17-11 +FROM quay.io/herodotus-cloud/liberica-openjre-debian:17.0.17-11-cds # 作者 LABEL maintainer="herodotus@aliyun.com" diff --git a/configurations/docker/context/production/Dockerfile-Monitor b/configurations/docker/context/production/Dockerfile-Monitor index 8c301caf..68d354c8 100644 --- a/configurations/docker/context/production/Dockerfile-Monitor +++ b/configurations/docker/context/production/Dockerfile-Monitor @@ -9,7 +9,7 @@ ### 在 debian 下则没有这问题。以目前了解的情况看,猜测 alpine 下,为了缩小体系,缺失的内容应该不只是字体库,还有其它内容。 ### 当然也可能是个人能力有限,一直没有找到正确解决的办法。如果你有更好的解决办法,欢迎提 ISSUE 和 PR。 -FROM quay.io/herodotus-cloud/liberica-openjre-debian17.0.17-11 +FROM quay.io/herodotus-cloud/liberica-openjre-debian:17.0.17-11-cds #FROM openjdk:17-jdk # 作者 LABEL maintainer="herodotus@aliyun.com" -- Gitee From 192743d1c205769a79e21b036e6e69a52be49d4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=81=E5=8C=A0=E5=90=9B?= Date: Tue, 28 Oct 2025 21:27:16 +0800 Subject: [PATCH 3/5] =?UTF-8?q?[=E5=8D=87=E7=BA=A7]=20Spring=20Cloud=20Ten?= =?UTF-8?q?cent=20=E7=89=88=E6=9C=AC=E5=8D=87=E7=BA=A7=E8=87=B3=202.1.0.0-?= =?UTF-8?q?2024.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 448926cd..3d7ad1b4 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Spring Boot 3.5.7 Spring Cloud 2025.0.0 Spring Cloud Alibaba 2025.0.0.0 - Spring Cloud Tencent 2.0.2.2--2024.0.1 + Spring Cloud Tencent 2.1.0.0--2024.0.2 Nacos 3.1.0

-- Gitee From db86d392f00b184a3b6d839863d179d6fbaf4e74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=81=E5=8C=A0=E5=90=9B?= Date: Tue, 28 Oct 2025 21:28:03 +0800 Subject: [PATCH 4/5] =?UTF-8?q?[=E5=8D=87=E7=BA=A7]=20Debezium=20=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=8D=87=E7=BA=A7=E8=87=B3=203.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../docker-compose/linux/herodotus/env.full.debezium.yml | 6 +++--- .../docker-compose/linux/herodotus/env.full.tencent.yml | 4 ++-- .../docker-compose/windows/herodotus/env.full.debezium.yml | 6 +++--- .../docker-compose/windows/herodotus/env.full.tencent.yml | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/configurations/docker/docker-compose/linux/herodotus/env.full.debezium.yml b/configurations/docker/docker-compose/linux/herodotus/env.full.debezium.yml index 170ed1d2..c23cd532 100644 --- a/configurations/docker/docker-compose/linux/herodotus/env.full.debezium.yml +++ b/configurations/docker/docker-compose/linux/herodotus/env.full.debezium.yml @@ -34,7 +34,7 @@ services: - "9849:9849" zookeeper: - image: debezium/zookeeper:3.2 + image: debezium/zookeeper:3.3 container_name: zookeeper hostname: zookeeper restart: always @@ -46,7 +46,7 @@ services: - "3888:3888" kafka: - image: debezium/kafka:3.2 + image: debezium/kafka:3.3 container_name: kafka hostname: kafka restart: always @@ -65,7 +65,7 @@ services: - zookeeper connect: - image: debezium/connect:3.2 + image: debezium/connect:3.3 container_name: connect hostname: connect restart: always diff --git a/configurations/docker/docker-compose/linux/herodotus/env.full.tencent.yml b/configurations/docker/docker-compose/linux/herodotus/env.full.tencent.yml index bf8f712c..986ee461 100644 --- a/configurations/docker/docker-compose/linux/herodotus/env.full.tencent.yml +++ b/configurations/docker/docker-compose/linux/herodotus/env.full.tencent.yml @@ -15,7 +15,7 @@ services: - "9091:9091" zookeeper: - image: debezium/zookeeper:3.2 + image: debezium/zookeeper:3.3 container_name: zookeeper hostname: zookeeper environment: @@ -26,7 +26,7 @@ services: - "3888:3888" kafka: - image: debezium/kafka:3.2 + image: debezium/kafka:3.3 container_name: kafka hostname: kafka ports: diff --git a/configurations/docker/docker-compose/windows/herodotus/env.full.debezium.yml b/configurations/docker/docker-compose/windows/herodotus/env.full.debezium.yml index 1f317dd0..2bd79853 100644 --- a/configurations/docker/docker-compose/windows/herodotus/env.full.debezium.yml +++ b/configurations/docker/docker-compose/windows/herodotus/env.full.debezium.yml @@ -34,7 +34,7 @@ services: - "9849:9849" zookeeper: - image: debezium/zookeeper:3.2 + image: debezium/zookeeper:3.3 container_name: zookeeper hostname: zookeeper restart: always @@ -46,7 +46,7 @@ services: - "3888:3888" kafka: - image: debezium/kafka:3.2 + image: debezium/kafka:3.3 container_name: kafka hostname: kafka restart: always @@ -65,7 +65,7 @@ services: - zookeeper connect: - image: debezium/connect:3.2 + image: debezium/connect:3.3 container_name: connect hostname: connect restart: always diff --git a/configurations/docker/docker-compose/windows/herodotus/env.full.tencent.yml b/configurations/docker/docker-compose/windows/herodotus/env.full.tencent.yml index b9279963..648f18c3 100644 --- a/configurations/docker/docker-compose/windows/herodotus/env.full.tencent.yml +++ b/configurations/docker/docker-compose/windows/herodotus/env.full.tencent.yml @@ -15,7 +15,7 @@ services: - "9091:9091" zookeeper: - image: debezium/zookeeper:3.2 + image: debezium/zookeeper:3.3 container_name: zookeeper environment: ZOOKEEPER_SERVER_ID: 1 @@ -25,7 +25,7 @@ services: - "3888:3888" kafka: - image: debezium/kafka:3.2 + image: debezium/kafka:3.3 container_name: kafka ports: - "9092:9092" -- Gitee From c093d96e737172c704e6043af78f177714318daf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=81=E5=8C=A0=E5=90=9B?= Date: Thu, 30 Oct 2025 22:01:04 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=F0=9F=A7=B1=20refactor:=20v3.5.7.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 主要更新 - [升级] Spring Cloud Tencent 版本升级至 2.1.0.0-2024.0.2 - [升级] Debezium 版本升级至 3.3 - 其它更新 - [新增] 服务打包为 Docker 镜像,新增 CDS 支持,提升启动性能 - [修复] 修复初始化数据库脚本中,权限相关 SQL 不够精准问题 - [修复] 修复单体预览镜像构建脚本因 sh 文件格式在 windows 环境下变化,导致镜像无法正常启动问题 - [修复] 修复单体预览版 H2 初始数据库文件与当前功能不匹配问题 - [修复] 修复在调试代码状态后端重启时,前端未关闭频繁链接后端,出现使用空值异常问题 - [优化] 大幅优化在配置了 ContextPath 的环境下,权限扫描和权限校验的逻辑,采用更通用的方式支持 ContextPath 环境 - [优化] 优化服务打包以及 Docker 打包配置,进一步支持镜像分层,提升构建效率 - [优化] Docker 基础镜像 jre 变更为使用 cds 版本 - [升级] ip 地址数据库更新至 2025.10.29 - 依赖更新 - [升级] protobuf-maven-plugin 版本升级至 4.0.1 - [升级] alipay-sdk-java 版本升级至 4.40.498.ALL - [升级] fastjson2 版本升级至 2.0.60 - [升级] json-schema-validator 版本升级至 2.0.0 - [升级] logstash-logback-encoder 版本升级至 9.0 - [升级] mysql 版本升级至 9.5.0 - [升级] software.amazon.awssdk 版本升级至 2.36.3 - [升级] software.amazon.awssdk.crt 版本升级至 0.39.4 - [升级] weixin java 版本升级至 4.7.8-20251030.194408 --- README.md | 6 +++--- .../nacos_config_export_20251010223156.zip | Bin .../polaris_config_202405311904.zip | Bin .../docker/docker-compose/linux/herodotus/.env | 2 +- .../docker/docker-compose/windows/herodotus/.env | 2 +- dependencies/pom.xml | 2 +- modules/dante-module-common/pom.xml | 2 +- modules/dante-monomer-autoconfigure/pom.xml | 2 +- modules/pom.xml | 2 +- packages/authentication-spring-boot-starter/pom.xml | 2 +- .../pom.xml | 2 +- packages/facility-spring-boot-starter/pom.xml | 2 +- packages/pom.xml | 2 +- packages/rpc-client-uaa-spring-boot-starter/pom.xml | 2 +- .../rpc-server-upms-spring-boot-starter/pom.xml | 2 +- platform/dante-cloud-gateway/pom.xml | 2 +- platform/dante-cloud-message/pom.xml | 2 +- platform/dante-cloud-monitor/pom.xml | 4 ++-- platform/dante-cloud-uaa/pom.xml | 2 +- platform/dante-cloud-upms/pom.xml | 4 ++-- platform/pom.xml | 2 +- pom.xml | 2 +- services/dante-cloud-bpmn-ability/pom.xml | 4 ++-- services/dante-cloud-bpmn-logic/pom.xml | 2 +- services/dante-cloud-oss-ability/pom.xml | 2 +- services/dante-monomer-application/pom.xml | 2 +- services/pom.xml | 2 +- 27 files changed, 30 insertions(+), 30 deletions(-) rename configurations/backup/alibaba/{3.5.6.3 => 3.5.7.1}/nacos_config_export_20251010223156.zip (100%) rename configurations/backup/tencent/{3.5.6.3 => 3.5.7.1}/polaris_config_202405311904.zip (100%) diff --git a/README.md b/README.md index 3d7ad1b4..7d9671ec 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ Nacos 3.1.0

- Version 3.5.7.0 - Dante Engine 3.5.7.0 - Dante OSS 3.5.7.0 + Version 3.5.7.1 + Dante Engine 3.5.7.1 + Dante OSS 3.5.7.1 Java 17 License Apache 2.0 码匠君 diff --git a/configurations/backup/alibaba/3.5.6.3/nacos_config_export_20251010223156.zip b/configurations/backup/alibaba/3.5.7.1/nacos_config_export_20251010223156.zip similarity index 100% rename from configurations/backup/alibaba/3.5.6.3/nacos_config_export_20251010223156.zip rename to configurations/backup/alibaba/3.5.7.1/nacos_config_export_20251010223156.zip diff --git a/configurations/backup/tencent/3.5.6.3/polaris_config_202405311904.zip b/configurations/backup/tencent/3.5.7.1/polaris_config_202405311904.zip similarity index 100% rename from configurations/backup/tencent/3.5.6.3/polaris_config_202405311904.zip rename to configurations/backup/tencent/3.5.7.1/polaris_config_202405311904.zip diff --git a/configurations/docker/docker-compose/linux/herodotus/.env b/configurations/docker/docker-compose/linux/herodotus/.env index 9e0d8454..ccfd89ed 100644 --- a/configurations/docker/docker-compose/linux/herodotus/.env +++ b/configurations/docker/docker-compose/linux/herodotus/.env @@ -1,4 +1,4 @@ -VERSION=3.5.7.0 +VERSION=3.5.7.1 SPRING_PROFILES_ACTIVE=alibaba PROFILE=development DATABASE=postgresql diff --git a/configurations/docker/docker-compose/windows/herodotus/.env b/configurations/docker/docker-compose/windows/herodotus/.env index ae7f9fbd..bb3fc1b9 100644 --- a/configurations/docker/docker-compose/windows/herodotus/.env +++ b/configurations/docker/docker-compose/windows/herodotus/.env @@ -1,4 +1,4 @@ -VERSION=3.5.7.0 +VERSION=3.5.7.1 SPRING_PROFILES_ACTIVE=alibaba PROFILE=development DATABASE=postgresql diff --git a/dependencies/pom.xml b/dependencies/pom.xml index 2c269350..d2c62f61 100644 --- a/dependencies/pom.xml +++ b/dependencies/pom.xml @@ -28,7 +28,7 @@ cn.herodotus.engine dependencies - 3.5.7.0 + 3.5.7.1 diff --git a/modules/dante-module-common/pom.xml b/modules/dante-module-common/pom.xml index b919cb61..5bc4d40f 100644 --- a/modules/dante-module-common/pom.xml +++ b/modules/dante-module-common/pom.xml @@ -32,7 +32,7 @@ modules org.dromara.dante - 3.5.7.0 + 3.5.7.1 dante-module-common diff --git a/modules/dante-monomer-autoconfigure/pom.xml b/modules/dante-monomer-autoconfigure/pom.xml index 6de89f1f..097cf380 100644 --- a/modules/dante-monomer-autoconfigure/pom.xml +++ b/modules/dante-monomer-autoconfigure/pom.xml @@ -27,7 +27,7 @@ org.dromara.dante modules - 3.5.7.0 + 3.5.7.1 dante-monomer-autoconfigure diff --git a/modules/pom.xml b/modules/pom.xml index 49d0e414..91d7eaf0 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -32,7 +32,7 @@ dante-cloud org.dromara.dante - 3.5.7.0 + 3.5.7.1 modules diff --git a/packages/authentication-spring-boot-starter/pom.xml b/packages/authentication-spring-boot-starter/pom.xml index 99d59b6a..6eff8c7c 100644 --- a/packages/authentication-spring-boot-starter/pom.xml +++ b/packages/authentication-spring-boot-starter/pom.xml @@ -32,7 +32,7 @@ packages org.dromara.dante - 3.5.7.0 + 3.5.7.1 authentication-spring-boot-starter diff --git a/packages/authorization-servlet-spring-boot-starter/pom.xml b/packages/authorization-servlet-spring-boot-starter/pom.xml index 53b043af..bad1967b 100644 --- a/packages/authorization-servlet-spring-boot-starter/pom.xml +++ b/packages/authorization-servlet-spring-boot-starter/pom.xml @@ -32,7 +32,7 @@ packages org.dromara.dante - 3.5.7.0 + 3.5.7.1 authorization-servlet-spring-boot-starter diff --git a/packages/facility-spring-boot-starter/pom.xml b/packages/facility-spring-boot-starter/pom.xml index 84c594e9..b06ba709 100644 --- a/packages/facility-spring-boot-starter/pom.xml +++ b/packages/facility-spring-boot-starter/pom.xml @@ -30,7 +30,7 @@ packages org.dromara.dante - 3.5.7.0 + 3.5.7.1 4.0.0 diff --git a/packages/pom.xml b/packages/pom.xml index a8150f92..6ca97ff4 100644 --- a/packages/pom.xml +++ b/packages/pom.xml @@ -32,7 +32,7 @@ dante-cloud org.dromara.dante - 3.5.7.0 + 3.5.7.1 packages diff --git a/packages/rpc-client-uaa-spring-boot-starter/pom.xml b/packages/rpc-client-uaa-spring-boot-starter/pom.xml index 83096f3d..4e1d17d6 100644 --- a/packages/rpc-client-uaa-spring-boot-starter/pom.xml +++ b/packages/rpc-client-uaa-spring-boot-starter/pom.xml @@ -31,7 +31,7 @@ org.dromara.dante packages - 3.5.7.0 + 3.5.7.1 rpc-client-uaa-spring-boot-starter diff --git a/packages/rpc-server-upms-spring-boot-starter/pom.xml b/packages/rpc-server-upms-spring-boot-starter/pom.xml index 63a46ccc..eda6bb13 100644 --- a/packages/rpc-server-upms-spring-boot-starter/pom.xml +++ b/packages/rpc-server-upms-spring-boot-starter/pom.xml @@ -31,7 +31,7 @@ org.dromara.dante packages - 3.5.7.0 + 3.5.7.1 rpc-server-upms-spring-boot-starter diff --git a/platform/dante-cloud-gateway/pom.xml b/platform/dante-cloud-gateway/pom.xml index 28826dc1..cc244e99 100644 --- a/platform/dante-cloud-gateway/pom.xml +++ b/platform/dante-cloud-gateway/pom.xml @@ -32,7 +32,7 @@ platform org.dromara.dante - 3.5.7.0 + 3.5.7.1 dante-cloud-gateway diff --git a/platform/dante-cloud-message/pom.xml b/platform/dante-cloud-message/pom.xml index 2d3550a6..73344a6b 100644 --- a/platform/dante-cloud-message/pom.xml +++ b/platform/dante-cloud-message/pom.xml @@ -31,7 +31,7 @@ org.dromara.dante platform - 3.5.7.0 + 3.5.7.1 dante-cloud-message diff --git a/platform/dante-cloud-monitor/pom.xml b/platform/dante-cloud-monitor/pom.xml index f7a89066..5be022aa 100644 --- a/platform/dante-cloud-monitor/pom.xml +++ b/platform/dante-cloud-monitor/pom.xml @@ -30,11 +30,11 @@ platform org.dromara.dante - 3.5.7.0 + 3.5.7.1 dante-cloud-monitor - 3.5.7.0 + 3.5.7.1 dante-cloud-monitor dante-cloud-monitor diff --git a/platform/dante-cloud-uaa/pom.xml b/platform/dante-cloud-uaa/pom.xml index bc2b4f82..ba41b4ff 100644 --- a/platform/dante-cloud-uaa/pom.xml +++ b/platform/dante-cloud-uaa/pom.xml @@ -32,7 +32,7 @@ platform org.dromara.dante - 3.5.7.0 + 3.5.7.1 dante-cloud-uaa diff --git a/platform/dante-cloud-upms/pom.xml b/platform/dante-cloud-upms/pom.xml index 7117b380..26ef6606 100644 --- a/platform/dante-cloud-upms/pom.xml +++ b/platform/dante-cloud-upms/pom.xml @@ -30,12 +30,12 @@ platform org.dromara.dante - 3.5.7.0 + 3.5.7.1 4.0.0 dante-cloud-upms - 3.5.7.0 + 3.5.7.1 diff --git a/platform/pom.xml b/platform/pom.xml index 693dc32f..7b36a2ca 100644 --- a/platform/pom.xml +++ b/platform/pom.xml @@ -32,7 +32,7 @@ dante-cloud org.dromara.dante - 3.5.7.0 + 3.5.7.1 platform diff --git a/pom.xml b/pom.xml index c56510ff..5fa0adae 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ org.dromara.dante dependencies - 3.5.7.0 + 3.5.7.1 dependencies/pom.xml diff --git a/services/dante-cloud-bpmn-ability/pom.xml b/services/dante-cloud-bpmn-ability/pom.xml index af40dad4..fa2093b4 100644 --- a/services/dante-cloud-bpmn-ability/pom.xml +++ b/services/dante-cloud-bpmn-ability/pom.xml @@ -31,11 +31,11 @@ services org.dromara.dante - 3.5.7.0 + 3.5.7.1 dante-cloud-bpmn-ability - 3.5.7.0 + 3.5.7.1 dante-cloud-bpmn-ability 基于Camunda工作流的服务 diff --git a/services/dante-cloud-bpmn-logic/pom.xml b/services/dante-cloud-bpmn-logic/pom.xml index 8d5d8272..9a20e479 100644 --- a/services/dante-cloud-bpmn-logic/pom.xml +++ b/services/dante-cloud-bpmn-logic/pom.xml @@ -32,7 +32,7 @@ services org.dromara.dante - 3.5.7.0 + 3.5.7.1 dante-cloud-bpmn-logic diff --git a/services/dante-cloud-oss-ability/pom.xml b/services/dante-cloud-oss-ability/pom.xml index 65f44f96..b03799b5 100644 --- a/services/dante-cloud-oss-ability/pom.xml +++ b/services/dante-cloud-oss-ability/pom.xml @@ -31,7 +31,7 @@ org.dromara.dante services - 3.5.7.0 + 3.5.7.1 dante-cloud-oss-ability diff --git a/services/dante-monomer-application/pom.xml b/services/dante-monomer-application/pom.xml index b69f532c..f465771c 100644 --- a/services/dante-monomer-application/pom.xml +++ b/services/dante-monomer-application/pom.xml @@ -31,7 +31,7 @@ org.dromara.dante services - 3.5.7.0 + 3.5.7.1 dante-monomer-application diff --git a/services/pom.xml b/services/pom.xml index 83a69d97..c56f4272 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -32,7 +32,7 @@ dante-cloud org.dromara.dante - 3.5.7.0 + 3.5.7.1 services -- Gitee