Skip to content

Commit

Permalink
relase version 3.0.2 (#2529)
Browse files Browse the repository at this point in the history
  • Loading branch information
qidi1 authored Sep 5, 2022
1 parent 49cecb4 commit 3f14a71
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 12 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
# TiSpark Changelog
All notable changes to this project will be documented in this file.

## [TiSpark 3.0.2] 2022-08-29
### Compatibility Changes
- We will not provide the mysql-connector-java dependency because of the limit of the GPL license [#2460](https://github.com/pingcap/tispark/pull/2460)

### Fixes
- Fix the bug that single column condition is in the incorrect `if branch` [#2395](https://github.com/pingcap/tispark/pull/2395)
- Fix when TiDB has more than 10,000 tables in one Database, TiSpark may throw Table not found exceptions [#2440](https://github.com/pingcap/tispark/pull/2440)
- Fix the bug that count/avg can not push down [#2470](https://github.com/pingcap/tispark/pull/2470)
- Fix the bug that when the primary key is not integer type, the two rows with null unique index will conflict and the bug that when the unique index conflicts, the conflicting unique index column cannot be deleted correctly [#2515](https://github.com/pingcap/tispark/pull/2515)
- Fix exception would through when the size of pdAddresse is > 1 [#2478](https://github.com/pingcap/tispark/pull/2478)
- Fix the bug that Count(bit) should not be pushed down before TiKV 6.0.0 [#2485](https://github.com/pingcap/tispark/pull/2485)
- Upgraded Spark3.1 support version from 3.0.2 to 3.0.3,Upgraded Spark3.1 support version from 3.1.1 to 3.1.3,Upgraded Spark3.2 support version from 3.2.1 to 3.2.2 [#2488](https://github.com/pingcap/tispark/pull/2488)
- Only do auth check for tables in TiDB [#2500](https://github.com/pingcap/tispark/pull/2500)
- Changed profile [#2518](https://github.com/pingcap/tispark/pull/2518)

## [TiSpark 3.0.1] 2022-06-23
## Fixes
### Fixes
- Fix the bug that the single column condition is in the incorrect if branch [#2395](https://github.com/pingcap/tispark/pull/2395)
- Fix the bug that the spark-shell is stuck when exiting [#2402](https://github.com/pingcap/tispark/pull/2402)
- Fix the bug that the maven dependency of TiSpark 3.0.0 can not be imported [#2401](https://github.com/pingcap/tispark/pull/2401)
Expand Down
2 changes: 1 addition & 1 deletion assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-parent</artifactId>
<version>3.0.2-SNAPSHOT</version>
<version>3.0.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion core-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-parent</artifactId>
<version>3.0.2-SNAPSHOT</version>
<version>3.0.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-parent</artifactId>
<version>3.0.2-SNAPSHOT</version>
<version>3.0.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion db-random-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-parent</artifactId>
<version>3.0.2-SNAPSHOT</version>
<version>3.0.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-parent</artifactId>
<version>3.0.2-SNAPSHOT</version>
<version>3.0.2</version>
<packaging>pom</packaging>
<name>TiSpark Project Parent POM</name>
<url>http://github.copm/pingcap/tispark</url>
Expand Down Expand Up @@ -81,7 +81,7 @@
<scalatest.version>3.0.8</scalatest.version>
<argLine>-Dfile.encoding=UTF-8 -Duser.timezone=GMT+8</argLine>
<mysql.connector.version>8.0.29</mysql.connector.version>
<gpg.keyname>fake gpg keyname</gpg.keyname>
<gpg.pub.key>fake gpg keyname</gpg.pub.key>
<gpg.skip>true</gpg.skip>
<javadoc.skip>true</javadoc.skip>
<skipFetchTestData>false</skipFetchTestData>
Expand Down Expand Up @@ -277,7 +277,7 @@
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<configuration>
<keyname>${gpg.keyname}</keyname>
<keyname>${gpg.pub.key}</keyname>
<skip>${gpg.skip}</skip>
</configuration>
<executions>
Expand Down
2 changes: 1 addition & 1 deletion spark-wrapper/spark-3.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-parent</artifactId>
<version>3.0.2-SNAPSHOT</version>
<version>3.0.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion spark-wrapper/spark-3.1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-parent</artifactId>
<version>3.0.2-SNAPSHOT</version>
<version>3.0.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion spark-wrapper/spark-3.2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-parent</artifactId>
<version>3.0.2-SNAPSHOT</version>
<version>3.0.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion tikv-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-parent</artifactId>
<version>3.0.2-SNAPSHOT</version>
<version>3.0.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit 3f14a71

Please sign in to comment.