diff --git a/README.md b/README.md
index bba2a8ce7..4d58f0e08 100644
--- a/README.md
+++ b/README.md
@@ -147,7 +147,7 @@ ps:核心功能已经实现,正在对接微信小程序中...
| [MyBatis Plus](https://mp.baomidou.com/) | MyBatis 增强工具包 | 3.4.3.4 | [文档](http://www.iocoder.cn/Spring-Boot/MyBatis/?yudao) |
| [Dynamic Datasource](https://dynamic-datasource.com/) | 动态数据源 | 3.5.0 | [文档](http://www.iocoder.cn/Spring-Boot/datasource-pool/?yudao) |
| [Redis](https://redis.io/) | key-value 数据库 | 5.0 | |
-| [Redisson](https://github.com/redisson/redisson) | Redis 客户端 | 3.16.6 | [文档](http://www.iocoder.cn/Spring-Boot/Redis/?yudao) |
+| [Redisson](https://github.com/redisson/redisson) | Redis 客户端 | 3.16.8 | [文档](http://www.iocoder.cn/Spring-Boot/Redis/?yudao) |
| [Spring MVC](https://github.com/spring-projects/spring-framework/tree/master/spring-webmvc) | MVC 框架 | 5.3.15 | [文档](http://www.iocoder.cn/SpringMVC/MVC/?yudao) |
| [Spring Security](https://github.com/spring-projects/spring-security) | Spring 安全框架 | 5.5.4 | [文档](http://www.iocoder.cn/Spring-Boot/Spring-Security/?yudao) |
| [Hibernate Validator](https://github.com/hibernate/hibernate-validator) | 参数校验组件 | 6.2.0 | [文档](http://www.iocoder.cn/Spring-Boot/Validation/?yudao) |
diff --git a/yudao-dependencies/pom.xml b/yudao-dependencies/pom.xml
index 9d588e296..4b994eab7 100644
--- a/yudao-dependencies/pom.xml
+++ b/yudao-dependencies/pom.xml
@@ -35,7 +35,7 @@
1.7.0
8.7.0
- 2.3.1
+ 2.6.2
0.31.0
7.2.6.RELEASE
@@ -392,6 +392,12 @@
activiti-image-generator
${activiti.version}
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-activiti
+ ${revision}
+
org.flowable
@@ -518,13 +524,6 @@
${justauth.version}
-
-
- cn.iocoder.boot
- yudao-spring-boot-starter-activiti
- ${revision}
-
-
diff --git a/yudao-server/src/main/resources/application-local.yaml b/yudao-server/src/main/resources/application-local.yaml
index 109fa3515..18f1795a9 100644
--- a/yudao-server/src/main/resources/application-local.yaml
+++ b/yudao-server/src/main/resources/application-local.yaml
@@ -169,6 +169,7 @@ logging:
cn.iocoder.yudao.module.pay.dal.mysql: debug
cn.iocoder.yudao.module.system.dal.mysql: debug
cn.iocoder.yudao.module.tool.dal.mysql: debug
+ cn.iocoder.yudao.module.member.dal.mysql: debug
--- #################### 微信公众号相关配置 ####################
wx: # 参见 https://github.com/Wechat-Group/WxJava/blob/develop/spring-boot-starters/wx-java-mp-spring-boot-starter/README.md 文档
@@ -193,7 +194,7 @@ yudao:
token-secret: abcdefghijklmnopqrstuvwxyz
token-timeout: 1d
# session-timeout: 30m
- session-timeout: 10s
+ session-timeout: 1d
mock-enable: true
mock-secret: test
file:
diff --git a/更新日志.md b/更新日志.md
index b0d1f3343..2d07d2cb3 100644
--- a/更新日志.md
+++ b/更新日志.md
@@ -24,12 +24,12 @@ TODO 待统计
### ⭐ New Features
* 【重构】大模块按照多 Maven Module 的方式拆分,提升可维护性,为后续重构 onemall 提供基础
+* 【移除】将 `yudao-core-service` 模块移除,替换成每个 Maven Module 暴露对应的 `yudao-module-***-api` 模块
* 【新增】Spring Security 支持读取多种用户类型,从不同的数据库表,从而实现单项目提供管理后台、用户 APP 的不同 RESTful API 接口
* 【新增】Spring Security 新增 AuthorizeRequestsCustomizer 抽象类, 自定义每个 Maven Module 的 URL 的安全配置
* 【新增】代码生成器支持多 Maven Module 的方式生成代码,支持管理后台、用户 APP 两种场景的 RESTful API 的生成,支持 H2 SQL 脚本的生成
* 【重构】将数据库文档调整到 tool 模块,更加明确
* 【优化】代码生成器的前端展示效果,例如说 Java 包路径合并
-* 【移除】将 `yudao-core-service` 模块移除,替换成每个 Maven Module 暴露对应的 `yudao-module-***-api` 模块
### 🐞 Bug Fixes
@@ -40,8 +40,10 @@ TODO 待统计
### 🔨 Dependency Upgrades
-*【升级】spring-boot from 2.4.12 to 2.5.9,最新的 Spring Boot 2.6.X 在等更流行一些,稳定第一
-*【移除】Apache FreeMarker 依赖,修改 Screw 使用 Velocity 作为模板引擎
+* 【升级】spring-boot from 2.4.12 to 2.5.9,最新的 Spring Boot 2.6.X 在等更流行一些,稳定第一
+* 【升级】Spring Boot Admin from 2.3.2 to 2.6.2,提供更好的监控能力
+* 【移除】Apache FreeMarker 依赖,修改 Screw 使用 Velocity 作为模板引擎
+* 【升级】redisson from 3.16.6 to 3.16.8
## [v1.3.0] 2022.01.24