Skip to content

Commit ec04907

Browse files
authored
release 1.7.0 (#5211)
1 parent 40d8c1d commit ec04907

File tree

11 files changed

+13
-20
lines changed

11 files changed

+13
-20
lines changed

.github/workflows/integration-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
TAG: ${{ github.sha }}
4646
SKIP_TEST: true
4747
HUB: ghcr.io/apache/linkis
48-
LINKIS_VERSION: 1.6.0
48+
LINKIS_VERSION: 1.7.0
4949
steps:
5050
- name: Free up disk space
5151
run: |

.github/workflows/publish-docker.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
TAG: ${{ github.sha }}
3535
SKIP_TEST: true
3636
HUB: ghcr.io/apache/linkis
37-
LINKIS_VERSION: 1.6.0
37+
LINKIS_VERSION: 1.7.0
3838
steps:
3939
- name: Checkout
4040
uses: actions/checkout@v4

linkis-computation-governance/linkis-manager/linkis-label-common/src/main/java/org/apache/linkis/manager/label/conf/LabelCommonConfig.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ public class LabelCommonConfig {
3434
CommonVars.apply("wds.linkis.label.entity.packages", "");
3535

3636
public static final CommonVars<String> SPARK_ENGINE_VERSION =
37-
CommonVars.apply("wds.linkis.spark.engine.version", "2.4.3");
37+
CommonVars.apply("wds.linkis.spark.engine.version", "3.2.1");
3838

3939
public static final CommonVars<String> HIVE_ENGINE_VERSION =
40-
CommonVars.apply("wds.linkis.hive.engine.version", "2.3.3");
40+
CommonVars.apply("wds.linkis.hive.engine.version", "3.1.3");
4141

4242
public static final CommonVars<String> PYTHON_ENGINE_VERSION =
4343
CommonVars.apply("wds.linkis.python.engine.version", "python2");
@@ -64,7 +64,7 @@ public class LabelCommonConfig {
6464
CommonVars.apply("wds.linkis.appconn.engine.version", "1");
6565

6666
public static final CommonVars<String> FLINK_ENGINE_VERSION =
67-
CommonVars.apply("wds.linkis.flink.engine.version", "1.12.2");
67+
CommonVars.apply("wds.linkis.flink.engine.version", "1.16.2");
6868

6969
public static final CommonVars<String> SQOOP_ENGINE_VERSION =
7070
CommonVars.apply("wds.linkis.sqoop.engine.version", "1.4.6");

linkis-dist/deploy-config/linkis-env.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export SERVER_HEAP_SIZE="512M"
167167
##The extended lib such mysql-connector-java-*.jar
168168
#LINKIS_EXTENDED_LIB=/appcom/common/linkisExtendedLib
169169

170-
LINKIS_VERSION=1.5.0
170+
LINKIS_VERSION=1.7.0
171171

172172
# for install
173173
LINKIS_PUBLIC_MODULE=lib/linkis-commons/public-module

linkis-dist/docker/ldh.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ARG SPARK_HADOOP_VERSION=3.2
3434
ARG FLINK_VERSION=1.12.2
3535
ARG ZOOKEEPER_VERSION=3.5.9
3636

37-
ARG LINKIS_VERSION=0.0.0
37+
ARG LINKIS_VERSION=1.7.0
3838

3939
RUN useradd -r -s /bin/bash -u 100001 -g root -G wheel hadoop
4040

linkis-dist/docker/linkis.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ ENV TZ="Asia/Shanghai"
5656
######################################################################
5757
FROM linkis-base as linkis
5858

59-
ARG LINKIS_VERSION=0.0.0
59+
ARG LINKIS_VERSION=1.7.0
6060
ARG LINKIS_SYSTEM_USER="hadoop"
6161
ARG LINKIS_SYSTEM_UID="9001"
6262

@@ -106,7 +106,7 @@ ENTRYPOINT ["/bin/bash"]
106106
######################################################################
107107
FROM ${IMAGE_BASE_WEB} as linkis-web
108108

109-
ARG LINKIS_VERSION=0.0.0
109+
ARG LINKIS_VERSION=1.7.0
110110
ARG LINKIS_HOME=/opt/linkis
111111

112112
ENV LINKIS_WEB_ROOT ${LINKIS_HOME}-web

linkis-engineconn-plugins/jdbc/src/main/scala/org/apache/linkis/manager/engineplugin/jdbc/executor/JDBCMultiDatasourceParser.scala

-7
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,6 @@ object JDBCMultiDatasourceParser extends Logging {
126126
)
127127
}
128128

129-
// check dbType
130-
if (!DS_TYPES_TO_EXECUTE_TASK_BY_JDBC.contains(dbType)) {
131-
throw new JDBCGetDatasourceInfoException(
132-
UNSUPPORTED_DS_TYPE.getErrorCode,
133-
MessageFormat.format(UNSUPPORTED_DS_TYPE.getErrorDesc, dbType)
134-
)
135-
}
136129
if (CHANGE_DS_TYPE_TO_MYSQL) {
137130
dbType = "mysql"
138131
}

linkis-engineconn-plugins/spark/src/main/scala/org/apache/linkis/engineplugin/spark/config/SparkConfiguration.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ object SparkConfiguration extends Logging {
121121
val LINKIS_SPARK_USEHIVECONTEXT = CommonVars[Boolean]("wds.linkis.spark.useHiveContext", true)
122122

123123
val DEFAULT_SPARK_JAR_NAME =
124-
CommonVars[String]("wds.linkis.ecp.spark.default.jar", "linkis-engineconn-core-1.3.2.jar")
124+
CommonVars[String]("wds.linkis.ecp.spark.default.jar", "linkis-engineconn-core-1.7.0.jar")
125125

126126
val ENGINE_JAR = CommonVars[String]("wds.linkis.enginemanager.core.jar", getMainJarName)
127127

linkis-web/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ VUE_APP_HOST=
22
BACKEND_URL=http://127.0.0.1:9001
33
VUE_APP_MN_CONFIG_PREFIX=
44
VUE_APP_MN_CONFIG_SOCKET=/ws/api/entrance/connect
5-
VUE_APP_VERSION=1.6.0
5+
VUE_APP_VERSION=1.7.0

linkis-web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkis",
3-
"version": "1.6.0",
3+
"version": "1.7.0",
44
"private": true,
55
"scripts": {
66
"serve": "vue-cli-service serve",

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
</snapshotRepository>
103103
</distributionManagement>
104104
<properties>
105-
<revision>1.6.0</revision>
105+
<revision>1.7.0</revision>
106106

107107
<zookeeper.version>3.9.2</zookeeper.version>
108108
<curator.version>4.2.0</curator.version>

0 commit comments

Comments
 (0)