This is an automated email from the ASF dual-hosted git repository.

wangzhen pushed a change to branch dev-1.2.0
in repository https://gitbox.apache.org/repos/asf/incubator-linkis.git


    from 5798cf58b Merge pull request #1955 from apache/master
     add e7e144cc0 Add codecov git action to track test coverage metrics (#1945)
     add 442325f81 Remove log4j1 and unify some related jars (#1961)
     add f84f6d532 delete dss interface (#11) (#1972)
     add ffc6615ea Dev 1.1.1 Add junit test code for [linkis-common]-Part1 
(#1740)
     add caa4f2064 Detail optimization of some pages (#1978)
     add 502ea5b87 Fix Configutration save configuration duplicate Key issue 
(#1984)
     add c1a8a8218 Fix issue #1986 that Entrance real-time log gets abnormal 
number of rows (#1988)
     add aeabbdd17 Merge pull request #1975 from apache/dev-1.1.1
     add 44f98b7a4 Adjust log reading file start line from fromLine (#2008)
     add bf1930587 Update ProgressProcessor.scala (#2010)
     add 5f470a151 Merge pull request #2012 from apache/dev-1.1.1
     add ed6f44102 Modify issues and PR notification emails to 
notificati...@linkis.apache.org
     add bef6633e7 globalHistory change datetimerange to daterange (#2020)
     add 4adb0a70e [Feature-2043] Rollback #1925, the SQL comment clearing 
logic in SQLCodeParser is duplicated with the SQL comment uninterceptor 
function (#2046)
     add 01d75c9e3 Fix the issue that the keys of put and remove in Map used in 
CliHeartbeatMonitor are not the same (#2039)
     add 9e336ccbb Merge pull request #2048 from apache/dev-1.1.1
     new 9f292c7c8 Merge pull request #2093 from apache/master

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .asf.yaml                                          |   4 +-
 .github/workflows/build.yml                        |   4 +
 linkis-commons/linkis-common/pom.xml               |  14 +-
 ...inkisComputationGovernanceErrorCodeSummary.java |   7 +-
 .../common/errorcode/ErrorCodeUtilsTest.java}      |  24 +-
 .../LinkisCommonsErrorCodeSummaryTest.java         | 103 +++++
 ...sComputationGovernanceErrorCodeSummaryTest.java | 100 +++++
 .../errorcode/LinkisErrorCodeSummaryTest.java      |  91 ++++
 .../errorcode/LinkisFrameErrorCodeSummaryTest.java |  84 ++++
 .../common/exception/ErrorExceptionTest.java       |  45 ++
 .../common/exception/ExceptionLevelTest.java       |  65 +++
 .../common/exception/ExceptionManagerTest.java     | 116 +++++
 .../common/exception/FatalExceptionTest.java       |  45 ++
 .../exception/LinkisCommonErrorExceptionTest.java} |  20 +-
 .../common/exception/LinkisExceptionTest.java      | 124 ++++++
 .../exception/LinkisRetryExceptionTest.java}       |  16 +-
 .../exception/LinkisRuntimeExceptionTest.java      | 124 ++++++
 .../linkis/common/exception/WarnExceptionTest.java |  45 ++
 .../linkis/common/utils/ArrayUtilsTest.scala       |  68 +++
 .../linkis/common/utils/ClassUtilsTest.scala       |  66 +++
 .../linkis/common/utils/OverloadUtilsTest.scala    |  57 +++
 linkis-commons/linkis-hadoop-common/pom.xml        | 203 +--------
 .../governance/common/paser/CodeParser.scala       |  14 +-
 .../common/paser/SQLCodeParserTest.scala           |  30 +-
 .../cli/heartbeat/CliHeartbeatMonitor.scala        |  82 ++--
 .../entrance/conf/EntranceConfiguration.scala      |   6 +-
 .../org/apache/linkis/entrance/log/LogReader.scala |  36 +-
 .../engineconn-plugins/flink/pom.xml               |  31 --
 .../engineconn-plugins/jdbc/pom.xml                |  12 +
 .../engineconn-plugins/spark/pom.xml               |  12 +
 .../spark/config/SparkConfiguration.scala          |   2 +-
 .../spark/factory/SparkEngineConnFactory.scala     |  14 +-
 .../operation/progress/ProgressProcessor.scala     |   3 +-
 .../metadata/restful/api/DataSourceRestfulApi.java |   5 +-
 .../service/impl/DataSourceServiceImpl.java        |   5 +-
 .../org/apache/linkis/metadata/util/HiveUtils.java |   6 +-
 .../service/ConfigurationService.scala             | 205 ++++-----
 .../udf/service/impl/UDFTreeServiceImpl.java       |  16 +-
 .../linkis-service-discovery/linkis-eureka/pom.xml |  41 --
 .../linkis-spring-cloud-gateway/pom.xml            |  10 +
 pom.xml                                            | 487 ++++++++++++++++++++-
 tool/dependencies/known-dependencies.txt           |  41 +-
 .../apps/URM/module/functionManagement/index.vue   |   6 -
 web/src/apps/URM/module/header/index.vue           |  11 -
 web/src/apps/URM/module/udfManagement/index.vue    |   6 -
 web/src/apps/linkis/i18n/common/en.json            |   4 +-
 web/src/apps/linkis/i18n/common/zh.json            |   2 +-
 .../module/globalHistoryManagement/index.scss      |   4 +
 .../module/globalHistoryManagement/index.vue       |  10 +-
 web/src/apps/linkis/module/header/index.vue        |  10 -
 web/src/apps/linkis/view/linkis/index.vue          |   2 +-
 web/src/common/config/apiPath.js                   |  24 -
 web/src/common/service/apiCommonMethod.js          |  84 ----
 web/src/common/service/mixin.js                    |  14 +-
 web/src/dss/module/header/index.vue                |  14 +-
 web/src/dss/module/header/userMenu.vue             |   8 +-
 web/src/dss/view/login/index.vue                   |  14 +-
 web/src/main.js                                    |   3 -
 58 files changed, 1935 insertions(+), 764 deletions(-)
 copy 
linkis-commons/linkis-common/src/{main/java/org/apache/linkis/common/exception/ErrorException.java
 => test/java/org/apache/linkis/common/errorcode/ErrorCodeUtilsTest.java} (62%)
 create mode 100644 
linkis-commons/linkis-common/src/test/java/org/apache/linkis/common/errorcode/LinkisCommonsErrorCodeSummaryTest.java
 create mode 100644 
linkis-commons/linkis-common/src/test/java/org/apache/linkis/common/errorcode/LinkisComputationGovernanceErrorCodeSummaryTest.java
 create mode 100644 
linkis-commons/linkis-common/src/test/java/org/apache/linkis/common/errorcode/LinkisErrorCodeSummaryTest.java
 create mode 100644 
linkis-commons/linkis-common/src/test/java/org/apache/linkis/common/errorcode/LinkisFrameErrorCodeSummaryTest.java
 create mode 100644 
linkis-commons/linkis-common/src/test/java/org/apache/linkis/common/exception/ErrorExceptionTest.java
 create mode 100644 
linkis-commons/linkis-common/src/test/java/org/apache/linkis/common/exception/ExceptionLevelTest.java
 create mode 100644 
linkis-commons/linkis-common/src/test/java/org/apache/linkis/common/exception/ExceptionManagerTest.java
 create mode 100644 
linkis-commons/linkis-common/src/test/java/org/apache/linkis/common/exception/FatalExceptionTest.java
 copy 
linkis-commons/linkis-common/src/{main/java/org/apache/linkis/common/exception/ErrorException.java
 => 
test/java/org/apache/linkis/common/exception/LinkisCommonErrorExceptionTest.java}
 (64%)
 create mode 100644 
linkis-commons/linkis-common/src/test/java/org/apache/linkis/common/exception/LinkisExceptionTest.java
 copy 
linkis-commons/linkis-common/src/{main/java/org/apache/linkis/common/exception/LinkisCommonErrorException.java
 => test/java/org/apache/linkis/common/exception/LinkisRetryExceptionTest.java} 
(71%)
 create mode 100644 
linkis-commons/linkis-common/src/test/java/org/apache/linkis/common/exception/LinkisRuntimeExceptionTest.java
 create mode 100644 
linkis-commons/linkis-common/src/test/java/org/apache/linkis/common/exception/WarnExceptionTest.java
 create mode 100644 
linkis-commons/linkis-common/src/test/scala/org/apache/linkis/common/utils/ArrayUtilsTest.scala
 create mode 100644 
linkis-commons/linkis-common/src/test/scala/org/apache/linkis/common/utils/ClassUtilsTest.scala
 create mode 100644 
linkis-commons/linkis-common/src/test/scala/org/apache/linkis/common/utils/OverloadUtilsTest.scala
 delete mode 100644 web/src/common/config/apiPath.js
 delete mode 100644 web/src/common/service/apiCommonMethod.js


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@linkis.apache.org
For additional commands, e-mail: commits-h...@linkis.apache.org

Reply via email to