Skip to content

Releases: dromara/easy-query

0.9.8

27 May 06:38
Compare
Choose a tag to compare

优化

  • 添加事务注册监听器
  • 优化生成sql别名问题,用户无需考虑 alias表达式内唯一
  • orderby groupby支持api返回多参数queryable
  • 优化聚合模型已出不必要的参数,优化多线程超时模型

0.9.7

25 May 16:19
Compare
Choose a tag to compare

升级

  • ⬆️升级优化分片下可能会有长时间block的deadlock问题

0.9.4

24 May 23:59
Compare
Choose a tag to compare

修复

  • 修复springboot依赖注入路由规则失效的bug

0.9.2

24 May 05:20
Compare
Choose a tag to compare

调整异常

  • 🔃调整EasyQueryNotFoundException调整为EasyQueryFirstOrNotNullException

0.9.1

24 May 03:14
Compare
Choose a tag to compare

调整

  • 🔃调整将原先聚合函数设置别名api改成xxxAs
  • 🔃调整检查spring事务是否已经开启兼容防止嵌套事务,检查spring事务在链接完成后关闭检测是否重复开启事务
  • 🔃调整框架默认maxShardingRouteCount:128,springboot下executorQueueSize:1024
  • 🔃调整新增whereByIds接口,对elete添加 Interceptable
  • 🔃调整EasyQuerySQLException调整为EasyQuerySQLCommandException EasyQuerySqlExecuteException调整为EasyQuerySQLException close资源释放接口调整为throws SQLException减少EasyQueryException的异常包裹次数
  • 🔃调整优化toValue逻辑,是否为null都应该进入转换器
  • 🔃调整枚举命名空间LogicDeleteStrategyEnum

0.9.0

23 May 05:08
Compare
Choose a tag to compare

调整接口

  • 🔃调整columnCountcolumnSumcolumnMaxcolumnMincolumnAvgcolumnLen在使用别名时api改为columnCountAscolumnSumAscolumnMaxAscolumnMinAscolumnAvgAscolumnLenAs
  • 🔃调整allowDeleteCommand接口修改为allowDeleteStatement

0.8.13

22 May 08:22
Compare
Choose a tag to compare

修复

  • 修复springboot 3.x自动装配问题 [#124 ] 感谢 @kuolemax 提供bug

0.8.10

22 May 02:12
Compare
Choose a tag to compare

添加

  • 添加修改select where order group下column列的方法函数,可以由外部实现

0.8.1

20 May 23:17
Compare
Choose a tag to compare

修改

  • 修改部分对外接口名

0.7.5

20 May 11:04
Compare
Choose a tag to compare

支持

  • 支持select *,(select count(1) from a where a.id=b.id) from b where xxx,并且支持该sql的分片查询