Skip to content

Commit

Permalink
build: v4.1.5 release (^.^)YYa!!
Browse files Browse the repository at this point in the history
  • Loading branch information
yangfuhai committed Sep 8, 2023
1 parent 1e75097 commit b664a45
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Jboot 是一个基于 JFinal、Dubbo、Seata、Sentinel、ShardingSphere、Nacos
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>4.1.4</version>
<version>4.1.5</version>
</dependency>
```

Expand Down
10 changes: 10 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
jboot v4.1.5 2023-09-08:
优化:MockProxy 由 Java Proxy 替换 cblib
优化:增加 Hikari 连接池配置参数 keepaliveTime 配置功能,感谢 @赵锋
优化:设置 SentinelInterceptor 返回自定义的 json 串,感谢 @caoyuan
优化:SentinelConfig 新增 set 方法,方便用户自己通过代码注入,感谢 @caoyuan
优化:修改方法的 wrap 与 toUpperCase 方法为public ,方便重写时决定SQL是否需要加引号与大小写,感谢 @HingLo-C
优化:升级相关依赖到最新版本



jboot v4.1.3 2023-06-21:
优化:线程池同一使用 NamedThreadPools.java 进行构建
优化:修改版错别字 taked 为 took
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>4.1.4</version>
<version>4.1.5</version>
<packaging>jar</packaging>

<name>jboot</name>
Expand Down Expand Up @@ -41,7 +41,7 @@


<properties>
<jfinal.version>5.1.1</jfinal.version>
<jfinal.version>5.1.2</jfinal.version>
<jfinal-cos.version>2022.2</jfinal-cos.version>
<jfinal-undertow.version>3.5</jfinal-undertow.version>
<jfinal-weixin.version>3.4</jfinal-weixin.version>
Expand All @@ -55,13 +55,13 @@
<fst.version>2.57</fst.version>
<fastjson.version>1.2.83</fastjson.version>
<!-- <fastjson.version>2.0.12</fastjson.version>-->
<guava.version>32.1.1-jre</guava.version>
<guava.version>32.1.2-jre</guava.version>
<cron4j.version>2.2.5</cron4j.version>
<jedis.version>3.8.0</jedis.version>
<jsoup.version>1.16.1</jsoup.version>
<ehcache.version>2.10.9.2</ehcache.version>
<caffeine.version>2.9.3</caffeine.version>
<commons-lang3.version>3.12.0</commons-lang3.version>
<commons-lang3.version>3.13.0</commons-lang3.version>
<commons-io.version>2.13.0</commons-io.version>
<commons-codec.version>1.15</commons-codec.version>
<httpclient.version>4.5.12</httpclient.version>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/jboot/JbootConsts.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/
public class JbootConsts {

public static String VERSION = "4.1.4";
public static String VERSION = "4.1.5";


public static final String ATTR_CONTEXT_PATH = "CPATH";
Expand Down

0 comments on commit b664a45

Please sign in to comment.