From ee1e6c3f19d92b575439c2f6618db88055ec4827 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=81=E5=8C=A0=E5=90=9B?= Date: Thu, 15 Aug 2024 11:43:24 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=94=20feat:=20v3.3.2.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 主要更新 - [新增] 新增物模型 TSL 核心实体及 JSON 解析 - [新增] 新增物模型数据接收并转换为 ApplicationEvent 机制。 - [新增] 新增物联网业务逻辑模块 - 其它更新 - [修复] 修复 Emqx 自动配置错误,导致代码中 ClientManager Bean 飘红问题 - [修复] 修复 Emqx Webhook 转成 ApplicationEvent 配置错误 - [优化] 优化消息系统消息发送事件命名,清晰事件用途和定位。 - [优化] 优化Event Integration 配置,定义统一使用的 ApplicationEvent消息发送配置,减少重复定义。 - [升级] minio docker 镜像版本升级至 RELEASE.2024-08-03T04-33-23Z - [升级] kafka docker 镜像版本升级至 3.8.0 - 依赖更新 - [升级] mapstruct-processor 版本升级至 1.6.0 - [升级] maven-gpg-plugin 版本升级至 3.2.5 - [升级] influxdb-client 版本升级至 7.2.0 - [升级] skywalking 相关 Agent 版本升级至 9.3.0 - [升级] software.amazon.awssdk 版本升级至 2.27.5 - [升级] software.amazon.awssdk.crt 版本升级至 0.30.8 - [升级] hutool 6.x 版本升级至 6.0.0-M15 - [升级] hutool 5.x 版本升级至 5.8.31 - [升级] camunda 版本升级至 7.22.0-alpha4 - [升级] sms4j 版本升级至 3.3.2 - [升级] blaze-persistence 版本升级至 1.16.12 - [升级] quasar webjars 版本升级至 2.16.8 - [升级] sweetalert2 版本升级至 11.12.4 - [升级] vue 版本升级至 3.4.37 - [升级] checker-qual 版本升级至 3.46.0 - [升级] snappy-java 版本升级至 1.1.10.6 --- README.md | 2 +- oss-bom/pom.xml | 2 +- oss-dialect/dialect-autoconfigure/pom.xml | 2 +- oss-dialect/dialect-core/pom.xml | 2 +- oss-dialect/dialect-sdk-aliyun/pom.xml | 2 +- oss-dialect/dialect-sdk-minio/pom.xml | 2 +- oss-dialect/dialect-sdk-s3/pom.xml | 2 +- oss-dialect/pom.xml | 2 +- oss-rest/pom.xml | 2 +- oss-rest/rest-sdk-minio/pom.xml | 2 +- oss-rest/rest-sdk-specification/pom.xml | 2 +- oss-solution/pom.xml | 2 +- oss-specification/pom.xml | 2 +- oss-starter/oss-aliyun-spring-boot-starter/pom.xml | 2 +- oss-starter/oss-minio-spring-boot-starter/pom.xml | 2 +- oss-starter/oss-s3-spring-boot-starter/pom.xml | 2 +- oss-starter/oss-spring-boot-starter/pom.xml | 2 +- oss-starter/pom.xml | 2 +- pom.xml | 2 +- 19 files changed, 19 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 0b12296e..c324b713 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@

Spring Boot 3.3.2 - Version 3.3.2.1 + Version 3.3.2.2 Java 17 License Apache 2.0 Total Visits diff --git a/oss-bom/pom.xml b/oss-bom/pom.xml index 6536f16e..b74d24a3 100644 --- a/oss-bom/pom.xml +++ b/oss-bom/pom.xml @@ -32,7 +32,7 @@ cn.herodotus.engine dependencies - 3.3.2.1 + 3.3.2.2 diff --git a/oss-dialect/dialect-autoconfigure/pom.xml b/oss-dialect/dialect-autoconfigure/pom.xml index 8885a3c4..73576e9e 100644 --- a/oss-dialect/dialect-autoconfigure/pom.xml +++ b/oss-dialect/dialect-autoconfigure/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss oss-dialect - 3.3.2.1 + 3.3.2.2 dialect-autoconfigure diff --git a/oss-dialect/dialect-core/pom.xml b/oss-dialect/dialect-core/pom.xml index c2deb33e..42fe9335 100644 --- a/oss-dialect/dialect-core/pom.xml +++ b/oss-dialect/dialect-core/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss oss-dialect - 3.3.2.1 + 3.3.2.2 dialect-core diff --git a/oss-dialect/dialect-sdk-aliyun/pom.xml b/oss-dialect/dialect-sdk-aliyun/pom.xml index d70e94e2..0918b22f 100644 --- a/oss-dialect/dialect-sdk-aliyun/pom.xml +++ b/oss-dialect/dialect-sdk-aliyun/pom.xml @@ -32,7 +32,7 @@ cn.herodotus.oss oss-dialect - 3.3.2.1 + 3.3.2.2 dialect-sdk-aliyun diff --git a/oss-dialect/dialect-sdk-minio/pom.xml b/oss-dialect/dialect-sdk-minio/pom.xml index 988f8198..eccce58c 100644 --- a/oss-dialect/dialect-sdk-minio/pom.xml +++ b/oss-dialect/dialect-sdk-minio/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss oss-dialect - 3.3.2.1 + 3.3.2.2 dialect-sdk-minio diff --git a/oss-dialect/dialect-sdk-s3/pom.xml b/oss-dialect/dialect-sdk-s3/pom.xml index 5989f10e..005a447d 100644 --- a/oss-dialect/dialect-sdk-s3/pom.xml +++ b/oss-dialect/dialect-sdk-s3/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss oss-dialect - 3.3.2.1 + 3.3.2.2 dialect-sdk-s3 diff --git a/oss-dialect/pom.xml b/oss-dialect/pom.xml index f20d297a..79dceb1a 100644 --- a/oss-dialect/pom.xml +++ b/oss-dialect/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss dante-oss - 3.3.2.1 + 3.3.2.2 oss-dialect diff --git a/oss-rest/pom.xml b/oss-rest/pom.xml index 9e8d0ee9..0d0193d4 100644 --- a/oss-rest/pom.xml +++ b/oss-rest/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss dante-oss - 3.3.2.1 + 3.3.2.2 oss-rest diff --git a/oss-rest/rest-sdk-minio/pom.xml b/oss-rest/rest-sdk-minio/pom.xml index 4f725330..0fc45feb 100644 --- a/oss-rest/rest-sdk-minio/pom.xml +++ b/oss-rest/rest-sdk-minio/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss oss-rest - 3.3.2.1 + 3.3.2.2 rest-sdk-minio diff --git a/oss-rest/rest-sdk-specification/pom.xml b/oss-rest/rest-sdk-specification/pom.xml index 4fba81c3..93e7c01d 100644 --- a/oss-rest/rest-sdk-specification/pom.xml +++ b/oss-rest/rest-sdk-specification/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss oss-rest - 3.3.2.1 + 3.3.2.2 rest-sdk-specification diff --git a/oss-solution/pom.xml b/oss-solution/pom.xml index d0148ed5..9787ed99 100644 --- a/oss-solution/pom.xml +++ b/oss-solution/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss dante-oss - 3.3.2.1 + 3.3.2.2 oss-solution diff --git a/oss-specification/pom.xml b/oss-specification/pom.xml index b19748ac..85663e61 100644 --- a/oss-specification/pom.xml +++ b/oss-specification/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss dante-oss - 3.3.2.1 + 3.3.2.2 oss-specification diff --git a/oss-starter/oss-aliyun-spring-boot-starter/pom.xml b/oss-starter/oss-aliyun-spring-boot-starter/pom.xml index d1471baf..66546e7d 100644 --- a/oss-starter/oss-aliyun-spring-boot-starter/pom.xml +++ b/oss-starter/oss-aliyun-spring-boot-starter/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss oss-starter - 3.3.2.1 + 3.3.2.2 oss-aliyun-spring-boot-starter diff --git a/oss-starter/oss-minio-spring-boot-starter/pom.xml b/oss-starter/oss-minio-spring-boot-starter/pom.xml index 5415d623..e6c187ad 100644 --- a/oss-starter/oss-minio-spring-boot-starter/pom.xml +++ b/oss-starter/oss-minio-spring-boot-starter/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss oss-starter - 3.3.2.1 + 3.3.2.2 oss-minio-spring-boot-starter diff --git a/oss-starter/oss-s3-spring-boot-starter/pom.xml b/oss-starter/oss-s3-spring-boot-starter/pom.xml index d4fb9b68..f8115b43 100644 --- a/oss-starter/oss-s3-spring-boot-starter/pom.xml +++ b/oss-starter/oss-s3-spring-boot-starter/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss oss-starter - 3.3.2.1 + 3.3.2.2 oss-s3-spring-boot-starter diff --git a/oss-starter/oss-spring-boot-starter/pom.xml b/oss-starter/oss-spring-boot-starter/pom.xml index f68b4932..0f29a60e 100644 --- a/oss-starter/oss-spring-boot-starter/pom.xml +++ b/oss-starter/oss-spring-boot-starter/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss oss-starter - 3.3.2.1 + 3.3.2.2 oss-spring-boot-starter diff --git a/oss-starter/pom.xml b/oss-starter/pom.xml index 48fcfa1f..66ea9997 100644 --- a/oss-starter/pom.xml +++ b/oss-starter/pom.xml @@ -31,7 +31,7 @@ cn.herodotus.oss dante-oss - 3.3.2.1 + 3.3.2.2 oss-starter diff --git a/pom.xml b/pom.xml index f221a4ec..c5061e7e 100644 --- a/pom.xml +++ b/pom.xml @@ -32,7 +32,7 @@ cn.herodotus.oss oss-bom - 3.3.2.1 + 3.3.2.2 oss-bom/pom.xml