Skip to content

Commit

Permalink
feat: release 3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
huayanYu committed May 15, 2021
1 parent 545d8c0 commit a1e6bba
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 14 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# v3.3.3
# v3.3.4

- fix: 修复上个版本更改Advisor引起的数据源不能切换严重错误。
- feat: 新增beecp连接池支持。
- fix: ItemDataSource的wrap修复,获得真实连接。

# v3.3.3 严重BUG版本不能使用

- feat:重要更新-Druid不用再手动排除。
- spel解析新增beanFactory。

# v3.3.2

Expand Down
33 changes: 20 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
<version>3.3.3</version>
<version>3.3.4</version>
<packaging>jar</packaging>

<name>dynamic-datasource-spring-boot-starter</name>
Expand Down Expand Up @@ -71,12 +71,6 @@
<artifactId>spring-boot-starter-web</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.2.4</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
Expand All @@ -90,14 +84,20 @@
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.2.6</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.18</version>
<groupId>com.github.chris2018998</groupId>
<artifactId>beecp</artifactId>
<version>3.2.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
Expand All @@ -109,7 +109,7 @@
<dependency>
<groupId>io.seata</groupId>
<artifactId>seata-all</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
<exclusions>
<exclusion>
<artifactId>druid</artifactId>
Expand All @@ -118,6 +118,13 @@
</exclusions>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit a1e6bba

Please sign in to comment.