Skip to content

Commit

Permalink
Release version 2.5.1 (#2339)
Browse files Browse the repository at this point in the history
  • Loading branch information
shiyuhang0 authored May 16, 2022
1 parent 8a8cee1 commit 0b26eab
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 12 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# TiSpark Changelog
All notable changes to this project will be documented in this file.

## [TiSpark 2.5.0] 2022-05-16
### Fixes
- Fix limit not push down bug [#2335](https://github.com/pingcap/tispark/pull/2335)
- Fix ClassCastException when cluster index with type Timestamp and Date [#2323](https://github.com/pingcap/tispark/pull/2323)
- Upgrade jackson-databind from 2.9.10.8 to 2.12.6.1 [#2288](https://github.com/pingcap/tispark/pull/2288)
- Fix the wrong result of _tidb_rowid [#2278](https://github.com/pingcap/tispark/pull/2278)
- Fix set catalog throw NoSuchElementException [#2254](https://github.com/pingcap/tispark/pull/2254)

### Documents
- Add limitation: TLS is not supported [#2281](https://github.com/pingcap/tispark/pull/2281)
- Add limitation: new collations are not supported [#2251](https://github.com/pingcap/tispark/pull/2251)
- Update communication channels [#2244](https://github.com/pingcap/tispark/pull/2244)

## [TiSpark 2.5.0] 2022-01-25
### New feature
- Support Spark 3.1.x and 3.0.x version.
Expand Down
4 changes: 2 additions & 2 deletions assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-parent</artifactId>
<version>2.5.0</version>
<version>2.5.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>tispark-assembly</artifactId>
<artifactId>tispark-assembly-${spark.version.release}</artifactId>
<packaging>pom</packaging>
<name>TiSpark Project Assembly</name>
<url>http://github.copm/pingcap/tispark</url>
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>2.5.0</version>
<version>2.5.1</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>2.5.0</version>
<version>2.5.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion core/scripts/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

TISPARK_HOME="$(cd "`dirname "$0"`"/../..; pwd)"

TiSparkReleaseVersion=2.5.0
TiSparkReleaseVersion=2.5.1
TiSparkBuildTS=`date -u '+%Y-%m-%d %I:%M:%S'`
TiSparkGitHash=`git rev-parse HEAD`
TiSparkGitBranch=`git rev-parse --abbrev-ref HEAD`
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>2.5.0</version>
<version>2.5.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
19 changes: 16 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>2.5.0</version>
<version>2.5.1</version>
<packaging>pom</packaging>
<name>TiSpark Project Parent POM</name>
<url>http://github.copm/pingcap/tispark</url>
Expand Down Expand Up @@ -70,6 +70,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<protobuf.version>3.1.0</protobuf.version>
<spark.version.release>3.0</spark.version.release>
<spark.version.compile>3.0.2</spark.version.compile>
<spark.version.test>3.0.2</spark.version.test>
<scala.binary.version>2.12</scala.binary.version>
Expand All @@ -79,7 +80,7 @@
<scalatest.version>3.0.8</scalatest.version>
<argLine>-Dfile.encoding=UTF-8 -Duser.timezone=GMT+8</argLine>
<mysql.connector.version>5.1.44</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 @@ -177,10 +178,22 @@
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<spark.version.release>3.1</spark.version.release>
<spark.version.compile>3.1.1</spark.version.compile>
<spark.version.test>3.1.1</spark.version.test>
</properties>
</profile>
<profile>
<id>spark-3.0.2</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<spark.version.release>3.0</spark.version.release>
<spark.version.compile>3.0.2</spark.version.compile>
<spark.version.test>3.0.2</spark.version.test>
</properties>
</profile>
<profile>
<id>jenkins</id>
<modules>
Expand Down Expand Up @@ -262,7 +275,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>2.5.0</version>
<version>2.5.1</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>2.5.0</version>
<version>2.5.1</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>2.5.0</version>
<version>2.5.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit 0b26eab

Please sign in to comment.