Skip to content

Commit

Permalink
build: 发布 1.4.11 版本
Browse files Browse the repository at this point in the history
- feat(swagger): 增加 SpringDoc 的注解配置,把 Swagger/SpringDoc 的注解依赖范围从 传递依赖
改为仅在编译时有效
- fix: 适配 SpringBoot 3.0.0 ,修复在 3.0.0 下启动失败和路径访问效果跟 2.7.x
不一致的问题
- feat: 支持在已引入 Redis 的场景下通过配置文件指定使用本地 Map 来存储字典数据信息,不强制必须用 Redis
来存储字典数据
- feat: 字典MQ不指定Redis时,不再自动创建 RedisMessageListenerContainer 对象
-
feat: 增加 DictUtil#setDictStore 方法在运行期间动态设置字典存储对象

**Full Changelog**: v1.4.10...v1.4.11
  • Loading branch information
houkunlin committed Dec 12, 2022
1 parent 51dbb5c commit 35e1bae
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group = 'com.houkunlin'
version = '1.4.10.1'
version = '1.4.11'
description = """
系统数据字典自动翻译成字典文本。可集合系统数据库中存储的用户数据字典,也可使用枚举做系统数据字典,主要用在返回数据给前端时自动把字典值翻译成字典文本信息;
The system data dictionary is automatically translated into dictionary text.
Expand Down
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# 更改日志

## 1.4.11 版本

- feat(swagger): 增加 SpringDoc 的注解配置,把 Swagger/SpringDoc 的注解依赖范围从 传递依赖 改为仅在编译时有效
- fix: 适配 SpringBoot 3.0.0 ,修复在 3.0.0 下启动失败和路径访问效果跟 2.7.x 不一致的问题
- feat: 支持在已引入 Redis 的场景下通过配置文件指定使用本地 Map 来存储字典数据信息,不强制必须用 Redis 来存储字典数据
- feat: 字典MQ不指定Redis时,不再自动创建 RedisMessageListenerContainer 对象
- feat: 增加 DictUtil#setDictStore 方法在运行期间动态设置字典存储对象

## 1.4.10 版本

- fix(bytecode/javassist): 修复在SpringBoot热加载时重新生成转换器报错问题
Expand Down

0 comments on commit 35e1bae

Please sign in to comment.