Skip to content

Commit cac2de1

Browse files
[Feature] Version from 2.3.10 to 2.3.11 (#9058)
1 parent d1c0e05 commit cac2de1

File tree

10 files changed

+47
-47
lines changed

10 files changed

+47
-47
lines changed

Diff for: bin/install-plugin.cmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ REM Get seatunnel home
2222
set "SEATUNNEL_HOME=%~dp0..\"
2323
echo Set SEATUNNEL_HOME to [%SEATUNNEL_HOME%]
2424

25-
REM Connector default version is 2.3.10, you can also choose a custom version. eg: 2.3.10: install-plugin.bat 2.3.10
26-
set "version=2.3.10"
25+
REM Connector default version is 2.3.11, you can also choose a custom version. eg: 2.3.11: install-plugin.bat 2.3.11
26+
set "version=2.3.11"
2727
if not "%~1"=="" set "version=%~1"
2828

2929
REM Create the lib directory

Diff for: bin/install-plugin.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
# get seatunnel home
2424
SEATUNNEL_HOME=$(cd $(dirname $0);cd ../;pwd)
2525

26-
# connector default version is 2.3.10, you can also choose a custom version. eg: 2.3.10: sh install-plugin.sh 2.3.10
27-
version=2.3.10
26+
# connector default version is 2.3.11, you can also choose a custom version. eg: 2.3.11: sh install-plugin.sh 2.3.11
27+
version=2.3.11
2828

2929
if [ -n "$1" ]; then
3030
version="$1"

Diff for: docs/en/seatunnel-engine/download-seatunnel.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Go to the [Seatunnel Download Page](https://seatunnel.apache.org/download) to do
2020
Or you can also download it through the terminal.
2121

2222
```shell
23-
export version="2.3.10"
23+
export version="2.3.11"
2424
wget "https://archive.apache.org/dist/seatunnel/${version}/apache-seatunnel-${version}-bin.tar.gz"
2525
tar -xzvf "apache-seatunnel-${version}-bin.tar.gz"
2626
```
@@ -33,10 +33,10 @@ Starting from the 2.2.0-beta version, the binary package no longer provides the
3333
sh bin/install-plugin.sh
3434
```
3535

36-
If you need a specific connector version, taking 2.3.10 as an example, you need to execute the following command.
36+
If you need a specific connector version, taking 2.3.11 as an example, you need to execute the following command.
3737

3838
```bash
39-
sh bin/install-plugin.sh 2.3.10
39+
sh bin/install-plugin.sh 2.3.11
4040
```
4141

4242
Usually you don't need all the connector plugins, so you can specify the plugins you need through configuring `config/plugin_config`, for example, if you only need the `connector-console` plugin, then you can modify the plugin.properties configuration file as follows.

Diff for: docs/en/start-v2/docker/docker.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ You can download the source code from the [download page](https://seatunnel.apac
4040
```shell
4141
cd seatunnel
4242
# Use already sett maven profile
43-
sh ./mvnw -B clean install -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dlicense.skipAddThirdParty=true -D"docker.build.skip"=false -D"docker.verify.skip"=false -D"docker.push.skip"=true -D"docker.tag"=2.3.10 -Dmaven.deploy.skip -D"skip.spotless"=true --no-snapshot-updates -Pdocker,seatunnel
43+
sh ./mvnw -B clean install -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dlicense.skipAddThirdParty=true -D"docker.build.skip"=false -D"docker.verify.skip"=false -D"docker.push.skip"=true -D"docker.tag"=2.3.11 -Dmaven.deploy.skip -D"skip.spotless"=true --no-snapshot-updates -Pdocker,seatunnel
4444

4545
# Check the docker image
4646
docker images | grep apache/seatunnel
@@ -53,10 +53,10 @@ sh ./mvnw clean package -DskipTests -Dskip.spotless=true
5353

5454
# Build docker image
5555
cd seatunnel-dist
56-
docker build -f src/main/docker/Dockerfile --build-arg VERSION=2.3.10 -t apache/seatunnel:2.3.10 .
56+
docker build -f src/main/docker/Dockerfile --build-arg VERSION=2.3.11 -t apache/seatunnel:2.3.11 .
5757

5858
# If you build from dev branch, you should add SNAPSHOT suffix to the version
59-
docker build -f src/main/docker/Dockerfile --build-arg VERSION=2.3.10-SNAPSHOT -t apache/seatunnel:2.3.10-SNAPSHOT .
59+
docker build -f src/main/docker/Dockerfile --build-arg VERSION=2.3.11-SNAPSHOT -t apache/seatunnel:2.3.11-SNAPSHOT .
6060

6161
# Check the docker image
6262
docker images | grep apache/seatunnel

Diff for: docs/en/start-v2/kubernetes/kubernetes.mdx

+18-18
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ To run the image with SeaTunnel, first create a `Dockerfile`:
4444
```Dockerfile
4545
FROM flink:1.13
4646

47-
ENV SEATUNNEL_VERSION="2.3.10"
47+
ENV SEATUNNEL_VERSION="2.3.11"
4848
ENV SEATUNNEL_HOME="/opt/seatunnel"
4949

5050
RUN wget https://dlcdn.apache.org/seatunnel/${SEATUNNEL_VERSION}/apache-seatunnel-${SEATUNNEL_VERSION}-bin.tar.gz
@@ -56,13 +56,13 @@ RUN cd ${SEATUNNEL_HOME} && sh bin/install-plugin.sh ${SEATUNNEL_VERSION}
5656

5757
Then run the following commands to build the image:
5858
```bash
59-
docker build -t seatunnel:2.3.10-flink-1.13 -f Dockerfile .
59+
docker build -t seatunnel:2.3.11-flink-1.13 -f Dockerfile .
6060
```
61-
Image `seatunnel:2.3.10-flink-1.13` needs to be present in the host (minikube) so that the deployment can take place.
61+
Image `seatunnel:2.3.11-flink-1.13` needs to be present in the host (minikube) so that the deployment can take place.
6262

6363
Load image to minikube via:
6464
```bash
65-
minikube image load seatunnel:2.3.10-flink-1.13
65+
minikube image load seatunnel:2.3.11-flink-1.13
6666
```
6767

6868
</TabItem>
@@ -72,7 +72,7 @@ minikube image load seatunnel:2.3.10-flink-1.13
7272
```Dockerfile
7373
FROM openjdk:8
7474

75-
ENV SEATUNNEL_VERSION="2.3.10"
75+
ENV SEATUNNEL_VERSION="2.3.11"
7676
ENV SEATUNNEL_HOME="/opt/seatunnel"
7777

7878
RUN wget https://dlcdn.apache.org/seatunnel/${SEATUNNEL_VERSION}/apache-seatunnel-${SEATUNNEL_VERSION}-bin.tar.gz
@@ -84,13 +84,13 @@ RUN cd ${SEATUNNEL_HOME} && sh bin/install-plugin.sh ${SEATUNNEL_VERSION}
8484

8585
Then run the following commands to build the image:
8686
```bash
87-
docker build -t seatunnel:2.3.10 -f Dockerfile .
87+
docker build -t seatunnel:2.3.11 -f Dockerfile .
8888
```
89-
Image `seatunnel:2.3.10` need to be present in the host (minikube) so that the deployment can take place.
89+
Image `seatunnel:2.3.11` need to be present in the host (minikube) so that the deployment can take place.
9090

9191
Load image to minikube via:
9292
```bash
93-
minikube image load seatunnel:2.3.10
93+
minikube image load seatunnel:2.3.11
9494
```
9595

9696
</TabItem>
@@ -100,7 +100,7 @@ minikube image load seatunnel:2.3.10
100100
```Dockerfile
101101
FROM openjdk:8
102102

103-
ENV SEATUNNEL_VERSION="2.3.10"
103+
ENV SEATUNNEL_VERSION="2.3.11"
104104
ENV SEATUNNEL_HOME="/opt/seatunnel"
105105

106106
RUN wget https://dlcdn.apache.org/seatunnel/${SEATUNNEL_VERSION}/apache-seatunnel-${SEATUNNEL_VERSION}-bin.tar.gz
@@ -112,13 +112,13 @@ RUN cd ${SEATUNNEL_HOME} && sh bin/install-plugin.sh ${SEATUNNEL_VERSION}
112112

113113
Then run the following commands to build the image:
114114
```bash
115-
docker build -t seatunnel:2.3.10 -f Dockerfile .
115+
docker build -t seatunnel:2.3.11 -f Dockerfile .
116116
```
117-
Image `seatunnel:2.3.10` needs to be present in the host (minikube) so that the deployment can take place.
117+
Image `seatunnel:2.3.11` needs to be present in the host (minikube) so that the deployment can take place.
118118

119119
Load image to minikube via:
120120
```bash
121-
minikube image load seatunnel:2.3.10
121+
minikube image load seatunnel:2.3.11
122122
```
123123

124124
</TabItem>
@@ -191,7 +191,7 @@ none
191191
]}>
192192
<TabItem value="flink">
193193

194-
In this guide we will use [seatunnel.streaming.conf](https://github.com/apache/seatunnel/blob/2.3.10-release/config/v2.streaming.conf.template):
194+
In this guide we will use [seatunnel.streaming.conf](https://github.com/apache/seatunnel/blob/2.3.11-release/config/v2.streaming.conf.template):
195195

196196
```conf
197197
env {
@@ -245,7 +245,7 @@ kind: FlinkDeployment
245245
metadata:
246246
name: seatunnel-flink-streaming-example
247247
spec:
248-
image: seatunnel:2.3.10-flink-1.13
248+
image: seatunnel:2.3.11-flink-1.13
249249
flinkVersion: v1_13
250250
flinkConfiguration:
251251
taskmanager.numberOfTaskSlots: "2"
@@ -291,7 +291,7 @@ kubectl apply -f seatunnel-flink.yaml
291291

292292
<TabItem value="Zeta (local-mode)">
293293

294-
In this guide we will use [seatunnel.streaming.conf](https://github.com/apache/seatunnel/blob/2.3.10-release/config/v2.streaming.conf.template):
294+
In this guide we will use [seatunnel.streaming.conf](https://github.com/apache/seatunnel/blob/2.3.11-release/config/v2.streaming.conf.template):
295295

296296
```conf
297297
env {
@@ -334,7 +334,7 @@ metadata:
334334
spec:
335335
containers:
336336
- name: seatunnel
337-
image: seatunnel:2.3.10
337+
image: seatunnel:2.3.11
338338
command: ["/bin/sh","-c","/opt/seatunnel/bin/seatunnel.sh --config /data/seatunnel.streaming.conf -e local"]
339339
resources:
340340
limits:
@@ -366,7 +366,7 @@ kubectl apply -f seatunnel.yaml
366366

367367
<TabItem value="Zeta (cluster-mode)">
368368

369-
In this guide we will use [seatunnel.streaming.conf](https://github.com/apache/seatunnel/blob/2.3.10-release/config/v2.streaming.conf.template):
369+
In this guide we will use [seatunnel.streaming.conf](https://github.com/apache/seatunnel/blob/2.3.11-release/config/v2.streaming.conf.template):
370370

371371
```conf
372372
env {
@@ -524,7 +524,7 @@ spec:
524524
spec:
525525
containers:
526526
- name: seatunnel
527-
image: seatunnel:2.3.10
527+
image: seatunnel:2.3.11
528528
imagePullPolicy: IfNotPresent
529529
ports:
530530
- containerPort: 5801

Diff for: docs/en/start-v2/locally/deployment.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Visit the [SeaTunnel Download Page](https://seatunnel.apache.org/download) to do
2222
Or you can also download it through the terminal:
2323

2424
```shell
25-
export version="2.3.10"
25+
export version="2.3.11"
2626
wget "https://archive.apache.org/dist/seatunnel/${version}/apache-seatunnel-${version}-bin.tar.gz"
2727
tar -xzvf "apache-seatunnel-${version}-bin.tar.gz"
2828
```
@@ -35,10 +35,10 @@ Starting from version 2.2.0-beta, the binary package no longer provides connecto
3535
sh bin/install-plugin.sh
3636
```
3737

38-
If you need a specific connector version, taking 2.3.10 as an example, you need to execute the following command:
38+
If you need a specific connector version, taking 2.3.11 as an example, you need to execute the following command:
3939

4040
```bash
41-
sh bin/install-plugin.sh 2.3.10
41+
sh bin/install-plugin.sh 2.3.11
4242
```
4343

4444
Typically, you do not need all the connector plugins. You can specify the required plugins by configuring `config/plugin_config`. For example, if you want the sample application to work properly, you will need the `connector-console` and `connector-fake` plugins. You can modify the `plugin_config` configuration file as follows:
@@ -71,7 +71,7 @@ You can download the source code from the [download page](https://seatunnel.apac
7171
cd seatunnel
7272
sh ./mvnw clean install -DskipTests -Dskip.spotless=true
7373
# get the binary package
74-
cp seatunnel-dist/target/apache-seatunnel-2.3.10-bin.tar.gz /The-Path-You-Want-To-Copy
74+
cp seatunnel-dist/target/apache-seatunnel-2.3.11-bin.tar.gz /The-Path-You-Want-To-Copy
7575

7676
cd /The-Path-You-Want-To-Copy
7777
tar -xzvf "apache-seatunnel-${version}-bin.tar.gz"

Diff for: docs/zh/seatunnel-engine/download-seatunnel.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import TabItem from '@theme/TabItem';
2020
或者您也可以通过终端下载
2121

2222
```shell
23-
export version="2.3.10"
23+
export version="2.3.11"
2424
wget "https://archive.apache.org/dist/seatunnel/${version}/apache-seatunnel-${version}-bin.tar.gz"
2525
tar -xzvf "apache-seatunnel-${version}-bin.tar.gz"
2626
```
@@ -30,13 +30,13 @@ tar -xzvf "apache-seatunnel-${version}-bin.tar.gz"
3030
从2.2.0-beta版本开始,二进制包不再默认提供连接器依赖,因此在第一次使用它时,您需要执行以下命令来安装连接器:(当然,您也可以从 [Apache Maven Repository](https://repo.maven.apache.org/maven2/org/apache/seatunnel/) 手动下载连接器,然后将其移动至`connectors/seatunnel`目录下)。
3131

3232
```bash
33-
sh bin/install-plugin.sh 2.3.10
33+
sh bin/install-plugin.sh 2.3.11
3434
```
3535

36-
如果您需要指定的连接器版本,以2.3.10为例,您需要执行如下命令
36+
如果您需要指定的连接器版本,以2.3.11为例,您需要执行如下命令
3737

3838
```bash
39-
sh bin/install-plugin.sh 2.3.10
39+
sh bin/install-plugin.sh 2.3.11
4040
```
4141

4242
通常您并不需要所有的连接器插件,所以您可以通过配置`config/plugin_config`来指定您所需要的插件,例如,您只需要`connector-console`插件,那么您可以修改plugin.properties配置文件如下

Diff for: docs/zh/start-v2/locally/deployment.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import TabItem from '@theme/TabItem';
2222
或者您也可以通过终端下载:
2323

2424
```shell
25-
export version="2.3.10"
25+
export version="2.3.11"
2626
wget "https://archive.apache.org/dist/seatunnel/${version}/apache-seatunnel-${version}-bin.tar.gz"
2727
tar -xzvf "apache-seatunnel-${version}-bin.tar.gz"
2828
```
@@ -35,10 +35,10 @@ tar -xzvf "apache-seatunnel-${version}-bin.tar.gz"
3535
sh bin/install-plugin.sh
3636
```
3737

38-
如果您需要指定的连接器版本,以2.3.10为例,您需要执行如下命令:
38+
如果您需要指定的连接器版本,以2.3.11为例,您需要执行如下命令:
3939

4040
```bash
41-
sh bin/install-plugin.sh 2.3.10
41+
sh bin/install-plugin.sh 2.3.11
4242
```
4343

4444
通常情况下,你不需要所有的连接器插件。你可以通过配置`config/plugin_config`来指定所需的插件。例如,如果你想让示例应用程序正常工作,你将需要`connector-console``connector-fake`插件。你可以修改`plugin_config`配置文件,如下所示:
@@ -71,7 +71,7 @@ connector-console
7171
cd seatunnel
7272
sh ./mvnw clean install -DskipTests -Dskip.spotless=true
7373
# 获取构建好的二进制包
74-
cp seatunnel-dist/target/apache-seatunnel-2.3.10-bin.tar.gz /The-Path-You-Want-To-Copy
74+
cp seatunnel-dist/target/apache-seatunnel-2.3.11-bin.tar.gz /The-Path-You-Want-To-Copy
7575

7676
cd /The-Path-You-Want-To-Copy
7777
tar -xzvf "apache-seatunnel-${version}-bin.tar.gz"

Diff for: pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
<properties>
5959
<!--todo The classification is too confusing, reclassify by type-->
60-
<revision>2.3.10-SNAPSHOT</revision>
60+
<revision>2.3.11-SNAPSHOT</revision>
6161
<seatunnel.config.shade.version>2.1.1</seatunnel.config.shade.version>
6262
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6363
<java.version>1.8</java.version>

Diff for: tools/dependencies/known-dependencies.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ protostuff-collectionschema-1.8.0.jar
2626
protostuff-core-1.8.0.jar
2727
protostuff-runtime-1.8.0.jar
2828
scala-library-2.12.15.jar
29-
seatunnel-jackson-2.3.10-SNAPSHOT-optional.jar
30-
seatunnel-guava-2.3.10-SNAPSHOT-optional.jar
31-
seatunnel-hazelcast-shade-2.3.10-SNAPSHOT-optional.jar
29+
seatunnel-jackson-2.3.11-SNAPSHOT-optional.jar
30+
seatunnel-guava-2.3.11-SNAPSHOT-optional.jar
31+
seatunnel-hazelcast-shade-2.3.11-SNAPSHOT-optional.jar
3232
slf4j-api-1.7.36.jar
3333
jsqlparser-4.9.jar
3434
animal-sniffer-annotations-1.17.jar
@@ -46,7 +46,7 @@ accessors-smart-2.4.7.jar
4646
asm-9.1.jar
4747
avro-1.11.1.jar
4848
groovy-4.0.16.jar
49-
seatunnel-janino-2.3.10-SNAPSHOT-optional.jar
49+
seatunnel-janino-2.3.11-SNAPSHOT-optional.jar
5050
protobuf-java-util-3.25.3.jar
5151
protobuf-java-3.25.3.jar
5252
protoc-jar-3.11.4.jar
@@ -69,7 +69,7 @@ jetty-util-9.4.20.v20190813.jar
6969
jetty-util-9.4.56.v20240826.jar
7070
jetty-util-ajax-9.4.56.v20240826.jar
7171
javax.servlet-api-3.1.0.jar
72-
seatunnel-jetty9-9.4.56-2.3.10-SNAPSHOT-optional.jar
72+
seatunnel-jetty9-9.4.56-2.3.11-SNAPSHOT-optional.jar
7373
jna-5.15.0.jar
7474
jna-platform-5.15.0.jar
7575
oshi-core-6.6.5.jar
@@ -82,4 +82,4 @@ eclipse-collections-api-11.1.0.jar
8282
flatbuffers-java-23.5.26.jar
8383
netty-buffer-4.1.104.Final.jar
8484
netty-common-4.1.104.Final.jar
85-
seatunnel-arrow-2.3.10-SNAPSHOT-optional.jar
85+
seatunnel-arrow-2.3.11-SNAPSHOT-optional.jar

0 commit comments

Comments
 (0)