Skip to content

Commit

Permalink
build: 发布 1.4.8 版本
Browse files Browse the repository at this point in the history
  • Loading branch information
houkunlin committed May 3, 2022
1 parent 0cf88c5 commit dd1520b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ plugins {
}

group = 'com.houkunlin'
version = '1.4.7'
sourceCompatibility = '1.8'
version = '1.4.8'
description = """
系统数据字典自动翻译成字典文本。可集合系统数据库中存储的用户数据字典,也可使用枚举做系统数据字典,主要用在返回数据给前端时自动把字典值翻译成字典文本信息;
The system data dictionary is automatically translated into dictionary text.
Expand Down Expand Up @@ -52,10 +51,10 @@ dependencies {
compileOnly 'org.springframework.boot:spring-boot-starter-amqp'
// testImplementation 'org.springframework.boot:spring-boot-starter-amqp'
// https://mvnrepository.com/artifact/com.google.guava/guava
api 'com.google.guava:guava:31.0.1-jre'
api 'com.google.guava:guava:31.1-jre'
api 'com.github.ben-manes.caffeine:caffeine'
api 'org.javassist:javassist:3.28.0-GA'
api 'io.swagger:swagger-annotations:1.6.2'
api 'io.swagger:swagger-annotations:1.6.6'

annotationProcessor 'org.projectlombok:lombok-mapstruct-binding:0.2.0'
testAnnotationProcessor 'org.projectlombok:lombok-mapstruct-binding:0.2.0'
Expand Down
17 changes: 17 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# 更改日志

## 1.4.8 版本

- fix: 修复 JDK17 下运行失败问题
- feat: 重构使用字节码生成 Converter 转换器,增加 ASM 字节码支持
- feat: 增加配置支持切换字节码工具:ASM/JAVASSIST

## 1.4.7 版本

- feat: 增加 DictText#dictTypeHandler 字典类型代码处理器支持,可以动态设置字段的字典类型代码
- feat: 支持自定义缓存键前缀

## 1.4.6.3 版本

- feat: 增加树结构数据访问深度限制,防止陷入死循环
- feat: DictType 注解可重复使用,支持把一个枚举做成多个字典,同时支持把多个枚举字典合并到一个字典中
- fix: 修复字段值为 null 时被序列化成 "null" 字符串的问题

## 1.4.6.2 版本

- fix: 修复某些场景下获取不到 RedisTemplate<String, DictTypeVo> 导致启动失败问题
Expand Down

0 comments on commit dd1520b

Please sign in to comment.