Skip to content

Commit 6b1860d

Browse files
✨ feat: v3.3.3.1
- 主要更新 - [新增] 新增分布式枚举数据字典聚合功能,基于 Spring Customizer 模式设计支持跨模块定义。微服务架构和单体架构均支持。 - [新增] 新增数据字典“随用随取”模式,去除原有登录时全部加载至前端模式 - 其它更新 - [重构] 从主工程迁移部分代码至核心代码库,提升代码的内聚性。 - [重构] 重构核心类 ServiceContextHolder,调用时不再必须使用 getInstance() 方法 - [重构] 前端工程主要组件不再采用 AutoImport 方式,改为传统手工导入,代码逻辑更清晰。 - [重构] 重构前端数据字典以及后端枚举值显示方式,去除之前使用的重复代码。 - [修复] 修复主工程部分模块包名不统一错误 - [修复] 修复手动关闭动态认证监听逻辑错误 - [修复] 修复数据字典前端支持顺序错误问题 - [升级] minio docker 镜像版本升级至 RELEASE.2024-08-29T01-40-52Z - 依赖更新 - [升级] software.amazon.awssdk 版本升级至 2.27.15 - [升级] software.amazon.awssdk.crt 版本升级至 0.30.9 - [升级] alipay-sdk-java 版本升级至 4.39.190.ALL
1 parent c3922fb commit 6b1860d

File tree

32 files changed

+31
-31
lines changed

32 files changed

+31
-31
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<a href="https://nacos.io/zh-cn/index.html" target="_blank"><img src="https://img.shields.io/badge/Nacos-2.4.1-brightgreen.svg?logo=alibabadotcom" alt="Nacos 2.4.1"></a>
1414
</p>
1515
<p align="center">
16-
<a href="#" target="_blank"><img src="https://img.shields.io/badge/Version-3.3.3.0-red.svg?logo=spring" alt="Version 3.3.3.0"></a>
17-
<a href="https://www.herodotus.cn" target="_blank"><img src="https://img.shields.io/badge/Dante%20Engine-3.3.3.0-red.svg?logo=spring" alt="Dante Engine 3.3.3.0"></a>
18-
<a href="https://gitee.com/herodotus/dante-oss" target="_blank"><img src="https://img.shields.io/badge/Dante%20OSS-3.3.3.0-red.svg?logo=spring" alt="Dante OSS 3.3.3.0"></a>
16+
<a href="#" target="_blank"><img src="https://img.shields.io/badge/Version-3.3.3.1-red.svg?logo=spring" alt="Version 3.3.3.1"></a>
17+
<a href="https://www.herodotus.cn" target="_blank"><img src="https://img.shields.io/badge/Dante%20Engine-3.3.3.1-red.svg?logo=spring" alt="Dante Engine 3.3.3.1"></a>
18+
<a href="https://gitee.com/herodotus/dante-oss" target="_blank"><img src="https://img.shields.io/badge/Dante%20OSS-3.3.3.1-red.svg?logo=spring" alt="Dante OSS 3.3.3.1"></a>
1919
<a href="https://bell-sw.com/pages/downloads/#downloads" target="_blank"><img src="https://img.shields.io/badge/JDK-17%2B-green.svg?logo=openjdk" alt="Java 17"></a>
2020
<a href="./LICENSE"><img src="https://img.shields.io/badge/License-AGPL--3.0-blue.svg?logo=apache" alt="License AGPL 3.0"></a>
2121
<a href="https://www.herodotus.cn"><img src="https://visitor-badge.laobi.icu/badge?page_id=dante-cloud&title=Total%20Visits" alt="Total Visits"></a>
Binary file not shown.
Binary file not shown.

configurations/docker/docker-compose/linux/herodotus/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=3.3.3.0
1+
VERSION=3.3.3.1
22
SPRING_PROFILES_ACTIVE=alibaba
33
PROFILE=development
44
DATABASE=postgresql

configurations/docker/docker-compose/linux/herodotus/env.oss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
minio:
3-
image: quay.io/minio/minio:RELEASE.2024-08-17T01-24-54Z
3+
image: quay.io/minio/minio:RELEASE.2024-08-29T01-40-52Z
44
container_name: minio
55
hostname: minio
66
ports:

configurations/docker/docker-compose/windows/herodotus/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=3.3.3.0
1+
VERSION=3.3.3.1
22
SPRING_PROFILES_ACTIVE=alibaba
33
PROFILE=development
44
DATABASE=postgresql

configurations/docker/docker-compose/windows/herodotus/env.oss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
minio:
3-
image: quay.io/minio/minio:RELEASE.2024-08-17T01-24-54Z
3+
image: quay.io/minio/minio:RELEASE.2024-08-29T01-40-52Z
44
container_name: minio
55
hostname: minio
66
ports:

dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>cn.herodotus.engine</groupId>
3030
<artifactId>dependencies</artifactId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
<relativePath/>
3333
</parent>
3434

modules/dante-module-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<artifactId>modules</artifactId>
3030
<groupId>cn.herodotus.dante</groupId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
</parent>
3333

3434
<artifactId>dante-module-common</artifactId>

modules/dante-module-metadata/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<artifactId>modules</artifactId>
3030
<groupId>cn.herodotus.dante</groupId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
</parent>
3333

3434
<artifactId>dante-module-metadata</artifactId>

modules/dante-module-social/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<artifactId>modules</artifactId>
3030
<groupId>cn.herodotus.dante</groupId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
</parent>
3333

3434
<artifactId>dante-module-social</artifactId>

modules/dante-module-strategy/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<artifactId>modules</artifactId>
3030
<groupId>cn.herodotus.dante</groupId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
</parent>
3333

3434
<artifactId>dante-module-strategy</artifactId>

modules/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<artifactId>dante-cloud</artifactId>
3030
<groupId>cn.herodotus.dante</groupId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
</parent>
3333

3434
<artifactId>modules</artifactId>

packages/authentication-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<artifactId>packages</artifactId>
3030
<groupId>cn.herodotus.dante</groupId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
</parent>
3333

3434
<artifactId>authentication-spring-boot-starter</artifactId>

packages/facility-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<artifactId>packages</artifactId>
2828
<groupId>cn.herodotus.dante</groupId>
29-
<version>3.3.3.0</version>
29+
<version>3.3.3.1</version>
3030
</parent>
3131
<modelVersion>4.0.0</modelVersion>
3232

packages/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<artifactId>dante-cloud</artifactId>
3030
<groupId>cn.herodotus.dante</groupId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
</parent>
3333

3434
<artifactId>packages</artifactId>

packages/service-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<artifactId>packages</artifactId>
3030
<groupId>cn.herodotus.dante</groupId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
</parent>
3333

3434
<artifactId>service-spring-boot-starter</artifactId>

platform/dante-cloud-gateway/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<artifactId>platform</artifactId>
3030
<groupId>cn.herodotus.dante</groupId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
</parent>
3333

3434
<artifactId>dante-cloud-gateway</artifactId>

platform/dante-cloud-message/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>cn.herodotus.dante</groupId>
2929
<artifactId>platform</artifactId>
30-
<version>3.3.3.0</version>
30+
<version>3.3.3.1</version>
3131
</parent>
3232

3333
<artifactId>dante-cloud-message</artifactId>

platform/dante-cloud-monitor/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
<parent>
2727
<artifactId>platform</artifactId>
2828
<groupId>cn.herodotus.dante</groupId>
29-
<version>3.3.3.0</version>
29+
<version>3.3.3.1</version>
3030
</parent>
3131

3232
<artifactId>dante-cloud-monitor</artifactId>
33-
<version>3.3.3.0</version>
33+
<version>3.3.3.1</version>
3434
<name>dante-cloud-monitor</name>
3535
<description>dante-cloud-monitor</description>
3636
<dependencies>

platform/dante-cloud-uaa/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<artifactId>platform</artifactId>
3030
<groupId>cn.herodotus.dante</groupId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
</parent>
3333

3434
<artifactId>dante-cloud-uaa</artifactId>

platform/dante-cloud-upms/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
<parent>
2727
<artifactId>platform</artifactId>
2828
<groupId>cn.herodotus.dante</groupId>
29-
<version>3.3.3.0</version>
29+
<version>3.3.3.1</version>
3030
</parent>
3131
<modelVersion>4.0.0</modelVersion>
3232

3333
<artifactId>dante-cloud-upms</artifactId>
34-
<version>3.3.3.0</version>
34+
<version>3.3.3.1</version>
3535

3636
<dependencies>
3737
<dependency>

platform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<artifactId>dante-cloud</artifactId>
3030
<groupId>cn.herodotus.dante</groupId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
</parent>
3333

3434
<artifactId>platform</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>cn.herodotus.dante</groupId>
3030
<artifactId>dependencies</artifactId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
<relativePath>dependencies/pom.xml</relativePath>
3333
</parent>
3434

services/dante-cloud-bpmn-ability/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
<parent>
2828
<artifactId>services</artifactId>
2929
<groupId>cn.herodotus.dante</groupId>
30-
<version>3.3.3.0</version>
30+
<version>3.3.3.1</version>
3131
</parent>
3232

3333
<artifactId>dante-cloud-bpmn-ability</artifactId>
34-
<version>3.3.3.0</version>
34+
<version>3.3.3.1</version>
3535

3636
<name>dante-cloud-bpmn-ability</name>
3737
<description>基于Camunda工作流的服务</description>

services/dante-cloud-bpmn-logic/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<artifactId>services</artifactId>
3030
<groupId>cn.herodotus.dante</groupId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
</parent>
3333

3434
<artifactId>dante-cloud-bpmn-logic</artifactId>

services/dante-cloud-oss-ability/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>cn.herodotus.dante</groupId>
2929
<artifactId>services</artifactId>
30-
<version>3.3.3.0</version>
30+
<version>3.3.3.1</version>
3131
</parent>
3232

3333
<artifactId>dante-cloud-oss-ability</artifactId>

services/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<artifactId>dante-cloud</artifactId>
3030
<groupId>cn.herodotus.dante</groupId>
31-
<version>3.3.3.0</version>
31+
<version>3.3.3.1</version>
3232
</parent>
3333

3434
<artifactId>services</artifactId>

0 commit comments

Comments
 (0)