...
 
Commits (2)
    https://gitcode.net/mica/mica/-/commit/d793cd5858927a0eaa8e2738c572135d8dd3b437 :arrow_up: Upgrading dependencies. 2021-12-30T11:14:11+08:00 浅梦 1101766085@qq.com https://gitcode.net/mica/mica/-/commit/924e86c5feb9a7997bd962794ecde829c531c75d :bookmark: 2.5.8 2021-12-30T20:18:40+08:00 如梦技术 596392912@qq.com
# 变更记录
## 发行版本
### v2.5.8 - 2021-12-30
- :sparkles: mica-xss 添加一个使用场景。
- :sparkles: JsonUtil 新增支持 java.io.Reader 转换操作 感谢 @caiqyxyx
- :memo: fix Comment error close #I4K6LZ
- :arrow_up: spring boot 到 2.5.8
- :arrow_up: spring cloud 到 2020.0.5
- :arrow_up: jetCache 到 2.6.2
### v2.5.7 - 2021-11-28
- :sparkles: mica-redis 优化,方便自定义序列化。
- :sparkles: mica-xss 优化,避免 xss 关闭时被类扫描,导致 bean 找不到异常。
......
......@@ -14,7 +14,7 @@
| 最新版本 | mica 版本 | spring boot 版本 | spring cloud 版本 |
| ----------- | ---------------- | ---------------- | ----------------- |
| 2.6.0 | mica 2.6.x | 2.6.x | 2021 |
| 2.5.7 | mica 2.5.x | 2.5.x | 2020 |
| 2.5.8 | mica 2.5.x | 2.5.x | 2020 |
| 2.4.11 | mica 2.4.x | 2.4.x | 2020 |
| 2.1.1-GA | mica 2.0.x~2.1.x | 2.2.x ~ 2.3.x | Hoxton |
......
......@@ -16,7 +16,7 @@ English | [简体中文](README.md)
| Latest version | mica version | spring boot version | spring cloud version |
| -------------- | ---------------- | ------------------- | -------------------- |
| 2.6.0 | mica 2.6.x | 2.6.x | 2021 |
| 2.5.7 | mica 2.5.x | 2.5.x | 2020 |
| 2.5.8 | mica 2.5.x | 2.5.x | 2020 |
| 2.4.11 | mica 2.4.x | 2.4.x | 2020 |
| 2.1.1-GA | mica 2.0.x~2.1.x | 2.2.x ~ 2.3.x | Hoxton |
......
......@@ -4,7 +4,7 @@ plugins {
ext {
javaVersion = JavaVersion.VERSION_1_8
springBootVersion = "2.5.7"
springBootVersion = "2.5.8"
springNativeVersion = "0.10.5"
springCloudVersion = "2020.0.5"
micaAutoVersion = "2.1.3"
......@@ -22,7 +22,7 @@ ext {
logstashVersion = "6.6"
lokiLogbackAppender = "1.2.0"
zxingVersion = "3.4.1"
jetCacheVersion = "2.6.0"
jetCacheVersion = "2.6.2"
jfinalVersion = "4.9.16"
}
......
VERSION=2.5.8-SNAPSHOT
VERSION=2.5.8
GROUPID=net.dreamlu
SONAR_TOKEN=***
......