diff --git a/.gitee/ISSUE_TEMPLATE/question.yml b/.gitee/ISSUE_TEMPLATE/question.yml index f20499a0..6e93c7ac 100644 --- a/.gitee/ISSUE_TEMPLATE/question.yml +++ b/.gitee/ISSUE_TEMPLATE/question.yml @@ -13,7 +13,7 @@ body: attributes: label: 这个问题是否已经存在: options: - - label: 我确定已经把 MyBatis-Flex 升级到最新版本 v1.9.4,并已搜索过现有的问题 (https://gitee.com/mybatis-flex/mybatis-flex/issues) + - label: 我确定已经把 MyBatis-Flex 升级到最新版本 v1.9.6,并已搜索过现有的问题 (https://gitee.com/mybatis-flex/mybatis-flex/issues) required: true - type: textarea id: question-description diff --git a/docs/zh/changes.md b/docs/zh/changes.md index ecfd3c53..ef832021 100644 --- a/docs/zh/changes.md +++ b/docs/zh/changes.md @@ -2,6 +2,17 @@ 查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。 +## v1.9.6 20240818 +- 新增:Mapper 新增 insertBatchSelective 方法 +- 新增:新增 SQL SERVER 返回当前日期和时间,感谢 @macy0122 +- 优化:Mapper 的批量操作方法,由 List 修改为 Collection +- 修复:Sql Server 多表关联查询,主表去重,执行SQL异常,感谢 @macy0122 +- 修复:processor 回退到 v1.9.3 +- 修复:TableInfoFactory 在某些极端的使用场景可能出现 NPE 的问题 +- 修复:修复分页包含 having 语句时,语法依然被优化问题,感谢 @cearnach +- 测试:优化一些测试的 DbType 冲突的问题 + + ## v1.9.5 20240801 - 新增:ID 主键生成策略新增 ULID 算法,感谢 @dh-free