Skip to content

Commit 8dd9217

Browse files
committed
Update version to 2.1.7
1 parent 90635fc commit 8dd9217

File tree

60 files changed

+90
-75
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+90
-75
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ print_logo() {
116116
printf ' %s ___/ / /_/ / / __/ /_/ / / / / / / /_/ / /_/ / / / ,< %s\n' $PRIMARY $RESET
117117
printf ' %s /____/\__/_/ \___/\__,_/_/ /_/ /_/ ____/\__,_/_/ /_/|_| %s\n' $PRIMARY $RESET
118118
printf ' %s /_/ %s\n\n' $PRIMARY $RESET
119-
printf ' %s Version: 2.1.6 %s\n' $BLUE $RESET
119+
printf ' %s Version: 2.1.7 %s\n' $BLUE $RESET
120120
printf ' %s WebSite: https://streampark.apache.org%s\n' $BLUE $RESET
121121
printf ' %s GitHub : http://github.com/apache/streampark%s\n\n' $BLUE $RESET
122122
printf ' %s ──────── Apache StreamPark, Make stream processing easier ô~ô!%s\n\n' $PRIMARY $RESET

docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The latest image tag will be written to [docker-compose.yaml](./docker-compose.y
77
version: '3.8'
88
services:
99
streampark:
10-
image: apache/streampark:2.1.6
10+
image: apache/streampark:2.1.7
1111
```
1212
1313
### 2. docker-compose up

docker/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ version: '3.8'
1818

1919
services:
2020
streampark:
21-
image: apache/streampark:2.1.6
21+
image: apache/streampark:2.1.7
2222
ports:
2323
- "10000:10000"
2424
environment:

helm/streampark/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ description: A Helm chart for the Apache StreamPark
2020
home: https://streampark.apache.org
2121
icon: https://streampark.apache.org/image/logo_name.png
2222
type: application
23-
version: 2.1.6
24-
appVersion: 2.1.6
23+
version: 2.1.7
24+
appVersion: 2.1.7

helm/streampark/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
image:
1919
repository: "apache/streampark"
2020
pullPolicy: "IfNotPresent"
21-
tag: "2.1.6"
21+
tag: "2.1.7"
2222
pullSecret: ""
2323

2424
rbac:

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<groupId>org.apache.streampark</groupId>
2828
<artifactId>streampark</artifactId>
29-
<version>2.1.6</version>
29+
<version>2.1.7</version>
3030
<packaging>pom</packaging>
3131
<name>StreamPark Project Parent POM</name>
3232

streampark-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.streampark</groupId>
2323
<artifactId>streampark</artifactId>
24-
<version>2.1.6</version>
24+
<version>2.1.7</version>
2525
</parent>
2626

2727
<artifactId>streampark-common_${scala.binary.version}</artifactId>

streampark-common/src/main/scala/org/apache/streampark/common/conf/ConfigConst.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ object ConfigConst {
203203
println(" ___/ / /_/ / / __/ /_/ / / / / / / /_/ / /_/ / / / ,< ")
204204
println(" /____/\\__/_/ \\___/\\__,_/_/ /_/ /_/ ____/\\__,_/_/ /_/|_| ")
205205
println(" /_/ \n\n")
206-
println(" Version: 2.1.6 ")
206+
println(" Version: 2.1.7 ")
207207
println(" WebSite: https://streampark.apache.org ")
208208
println(" GitHub : https://github.com/apache/streampark ")
209209
println(s" Info : $info ")

streampark-common/src/main/scala/org/apache/streampark/common/util/YarnUtils.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ object YarnUtils extends Logger {
5454
"kerberos".equalsIgnoreCase(yarnHttpAuth)
5555
}
5656

57-
private lazy val hasYarnHttpSimpleAuth: Boolean = {
57+
lazy val hasYarnHttpSimpleAuth: Boolean = {
5858
val yarnHttpAuth: String = InternalConfigHolder.get[String](CommonConfig.STREAMPARK_YARN_AUTH)
5959
"simple".equalsIgnoreCase(yarnHttpAuth)
6060
}

streampark-console/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.streampark</groupId>
2424
<artifactId>streampark</artifactId>
25-
<version>2.1.6</version>
25+
<version>2.1.7</version>
2626
</parent>
2727

2828
<artifactId>streampark-console</artifactId>

0 commit comments

Comments
 (0)