Skip to content

Commit b89ccb5

Browse files
committed
release: v2.14.0
1 parent 75aeb26 commit b89ccb5

File tree

4 files changed

+28
-4
lines changed

4 files changed

+28
-4
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ body:
55
- type: markdown
66
attributes:
77
value: |
8-
感谢您使用 ContiNew Starter!请您花些时间填写这份 Bug 报告。
8+
感谢您使用 ContiNew Starter!请您花些时间填写这份 Bug 报告。**温馨提示:我们利用业余时间维护开源项目,没有额外精力及人员维护已发布版本,所以请务必检查最新版本是否正常,如已修复请自行跟进修复!**
99
- type: checkboxes
1010
id: checkboxes
1111
attributes:
@@ -14,7 +14,7 @@ body:
1414
options:
1515
- label: 重启项目和 IDE 后,仍然能够复现此问题
1616
required: true
17-
- label: 尝试 [最新版本](https://central.sonatype.com/artifact/top.continew.starter/continew-starter/versions)(还可以尝试本地编译安装 dev 分支的最新快照版本),仍有相同问题
17+
- label: 尝试 [最新版本](https://central.sonatype.com/artifact/top.continew.starter/continew-starter/versions)(也可 mvn install dev 分支的最新 SNAPSHOT 版本测试,但生产请等待下个发布版),仍有相同问题
1818
required: true
1919
- label: 查看过控制台是否有报错,如果有报错,下拉控制台到最下查找过 Caused 提示(如果有 Caused 关键字,一般其后都有直观提示,请自行翻译英文),并百度或 Google 后,仍无法解决
2020
required: true

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## [v2.14.0](https://github.com/continew-org/continew-starter/compare/v2.13.4...v2.14.0) (2025-10-03)
2+
3+
### ✨ 新特性
4+
5+
- 【security/crypto】新增 API 加/解密功能 ([26effb6](https://github.com/continew-org/continew-starter/commit/26effb6ee2a98cbedc0dd3ea1d15b453cdf0c0d8)) (Gitcode#3@lishuyanla)
6+
- 【core】MapUtils增加深度合并两个map的方法 ([5ca34ee](https://github.com/continew-org/continew-starter/commit/5ca34eebd1228b445d9882d0d2777affd4393bca)) (Github#16@luoqiz)
7+
- 【encrypt/password-encoder】新增密码编码器模块(经过考量重新拆分出来) ([e414abc](https://github.com/continew-org/continew-starter/commit/e414abc73536c57a774f2c6d5dbeff78349310ae))
8+
9+
### 💎 功能优化
10+
11+
- 【storage】重构存储模块为统一入口 ([ae1258a](https://github.com/continew-org/continew-starter/commit/ae1258aee65c534564372b6fa2a2cf37a74fc601)) ([e5002b8](https://github.com/continew-org/continew-starter/commit/e5002b8bfc4aa20b99be9f699ac55a300a2525fd)) ([7ead337](https://github.com/continew-org/continew-starter/commit/7ead337165f930771b86a1b5d36f4f4bdacfbb12)) (Gitcode#1@QAQ_Z)
12+
- 【excel/fastexcel】移除 ExcelListConverter 中的冗余注解 ([5d7c3be](https://github.com/continew-org/continew-starter/commit/5d7c3bedd74274cedbf27b31ecd9b68458ab735f))
13+
- 【extension/crud】优化树型结构字典配置相关命名及注释 DICT_TREE -> TREE_DICT ([3ee1112](https://github.com/continew-org/continew-starter/commit/3ee1112c4ce9b1acfa7ac5959a4e1ffd19ee0fce))
14+
- 【encrypt】拆分字段加密、API 加密模块 ([e9bf92e](https://github.com/continew-org/continew-starter/commit/e9bf92ea1f090068c2f849f5be36c372ffb1bf3e))
15+
- 统一过滤器配置 ([637d92b](https://github.com/continew-org/continew-starter/commit/637d92be237eced80c4c17acae344d31c4cc4eb2))
16+
- 【core】重构线程池自动配置代码 ([6889578](https://github.com/continew-org/continew-starter/commit/68895787a758606f226da7fe7478ae9b60a8926e))
17+
- 【data】移除 QueryIgnore 注解,并取消默认 eq 逻辑处理 ([e9a6f36](https://github.com/continew-org/continew-starter/commit/e9a6f36136319d65ba6379506264c94a4994d269))
18+
- 【messaging/mail】提供 JavaMailSenderImpl 默认配置,并重构 MailConfigurer 配置代码 ([75aeb26](https://github.com/continew-org/continew-starter/commit/75aeb26a4f117acab8bf6e4b60c0efbc01a5d0fb))
19+
20+
### 🐛 问题修复
21+
22+
- 【auth/satoken】修复 ConditionalOnBean 校验导致的 SaToken 持久层 Redis 实现注册失败的问题 ([61fbb04](https://github.com/continew-org/continew-starter/commit/61fbb04a331358a7b18f5373625ab169f882ae4d))
23+
- 【extension/tenant】修复多租户下开启多数据源拦截器返回结果异常的情况 ([d1db737](https://github.com/continew-org/continew-starter/commit/d1db737f7a62a8afe7585075789d05a72b9d55e9)) (Gitee#80@kiki1373639299)
24+
125
## [v2.13.4](https://github.com/continew-org/continew-starter/compare/v2.13.3...v2.13.4) (2025-07-26)
226

327
### ✨ 新特性

continew-starter-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<description>ContiNew Starter BOM</description>
1414

1515
<properties>
16-
<revision>2.13.4</revision>
16+
<revision>2.14.0</revision>
1717
</properties>
1818

1919
<dependencyManagement>

continew-starter-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<properties>
1616
<!-- Project Version -->
17-
<revision>2.13.4</revision>
17+
<revision>2.14.0</revision>
1818

1919
<!-- Core Framework Versions -->
2020
<spring-boot.version>3.3.12</spring-boot.version>

0 commit comments

Comments
 (0)