Skip to content

Commit

Permalink
chore: 完善 1.5.0 的日志说明内容
Browse files Browse the repository at this point in the history
  • Loading branch information
houkunlin committed Sep 28, 2023
1 parent 9783ade commit c3beccf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

**`v1.4.8` 版本已在 `JDK8` `JDK11` `JDK17` 环境下跑通所有单元测试样例**

**`v1.5.0` 版本产生了一些破坏性变更,请谨慎升级**
**`v1.4.11``v1.5.0` 版本产生了一些破坏性变更,请谨慎升级。移除了 DictText.Type 改为使用 DictBoolType;修改了 Redis 存储字典文本的方式,改为 Redis Hash 存储字典文本内容。**

**Maven**

Expand All @@ -34,6 +34,7 @@ implementation "com.houkunlin:system-dict-starter:${latest.release}"


#### 详细使用文档请点击查看 [基础用法文档](./usage.md)
#### 系统更新日志 [系统更新日志](./changelog.md)

## 如何启用?

Expand All @@ -50,7 +51,7 @@ public class Application {
}
```

**`v1.5.0` 版本产生了一些破坏性变更,请谨慎升级**
**`v1.4.11``v1.5.0` 版本产生了一些破坏性变更,请谨慎升级。移除了 DictText.Type 改为使用 DictBoolType;修改了 Redis 存储字典文本的方式,改为 Redis Hash 存储字典文本内容。**



Expand Down
4 changes: 0 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,12 @@ configurations {
}

repositories {
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://repo.spring.io/release' }
mavenCentral()
}

dependencies {
compileOnly 'org.springframework.boot:spring-boot-starter-actuator'
compileOnly 'org.springframework.boot:spring-boot-starter-jdbc'
// compileOnly 'org.springframework.boot:spring-boot-starter-data-jpa'
compileOnly 'com.baomidou:mybatis-plus-boot-starter:3.5.3.1'
testImplementation 'org.springframework.boot:spring-boot-starter-actuator'
compileOnly 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-web'
Expand Down
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

## 1.5.0 版本

产生了一些破坏性变更,请谨慎升级
产生了一些破坏性变更,请谨慎升级。移除了 DictText.Type 改为使用 DictBoolType;修改了 Redis 存储字典文本的方式,改为 Redis Hash 存储字典文本内容。

- refactor: 重构 Jackson 序列化器,抽出一个基类序列化器,把 DictText.Type 提取为 DictBoolType 对象
- perf: 优化 Jackson 序列化器对于集合字典的处理
- feat: 防止系统字典值重复加入缓存
Expand Down

0 comments on commit c3beccf

Please sign in to comment.