发布 3.4.3.1

This commit is contained in:
hubin 2021-06-16 01:45:55 +08:00
parent 7e0b1e2912
commit 96df0fc124
2 changed files with 28 additions and 3 deletions

View File

@ -1,5 +1,30 @@
# CHANGELOG
## [v3.4.3.1] 2021.06.15
- 支持多重继承获取泛型
- 应要求 pageDto 修改为 PageDTO
- 分页排序优化
- TableField 新增 ResultMapping#property 注解支持
- fixed github pull/3550 优化排序
- fix #I3T0LA
- 开放KtUpdateChainWrapper、KtQueryChainWrapper的继承
- 新增 exists 方法判断 count 存在
- 优化数据方言获取方式减少对象创建
- feat GlobalConfig增加whereStrategy属性和适配selectStrategy的getWhereStrategy()方法
- 扩展 p6spy 优化
- fix github#3390 SqlRunner.selectPage()方法未释放连接克隆
- 优化 JDK 默认不推荐泛型数组
- perf: 替换为 JVM 中本身的方法
- 当用户指定ID时不用自动生成不指定时自增
- Github Merge pull request #3549 #3555 #3565 #3571 #3587 #3591 #3592 #3595 #3599 #3605 #3606
- 提供处理Map多key取值工具方法
- 调整 page 注解泛型 E 为 P 方便阅读
- Pattern定义为静态常量优化正则匹配速度
- Fix 主键添加@OrderBy无效
- 去除addMappedStatement日志打印
- NoKeyGenerator Jdbc3KeyGenerator shared instance
## [v3.4.3] 2021.05.21
- 增加瀚高数据库支持

View File

@ -2,7 +2,7 @@ import java.time.LocalDateTime
allprojects {
group = 'com.baomidou'
version = "3.4.3"
version = "3.4.3.1"
}
ext {
@ -184,8 +184,8 @@ subprojects {
publishing {
repositories {
maven {
def userName = System.getProperty("un")
def passWord = System.getProperty("ps")
def userName = "andto"
def passWord = "243194995"
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl