This is an automated email from the ASF dual-hosted git repository.
kezhenxu94 pushed a change to branch cve
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
discard 85200811c1 Bump up dependencies to fix cves
add 31ba49ac02 Update doc according to recent update of Spring / Swagger
(#11755)
add f8d46a26c1 [Feature-11530] add state history for process instance
(#11757)
add d0d481d10f [Fix][UI] Add the task name entry when the workflow
instance detail page goes to the task instance page. (#11761)
new 4078d16a61 Bump up dependencies to fix cves
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (85200811c1)
\
N -- N -- N refs/heads/cve (4078d16a61)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
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:
.../en/contribute/development-environment-setup.md | 12 +--
docs/docs/en/faq.md | 5 +-
docs/docs/en/guide/open-api.md | 11 +--
.../zh/contribute/development-environment-setup.md | 8 +-
docs/docs/zh/faq.md | 22 ++++-
docs/docs/zh/guide/open-api.md | 12 ++-
.../api/service/impl/ExecutorServiceImpl.java | 8 +-
.../service/impl/ProcessInstanceServiceImpl.java | 6 +-
.../api/service/ProcessInstanceServiceTest.java | 6 +-
.../dolphinscheduler/dao/DaoConfiguration.java | 2 +-
.../dao/entity/ProcessInstance.java | 46 +++++++++++
.../dao/repository/ProcessInstanceDao.java | 19 +++--
.../repository/impl/ProcessInstanceDaoImpl.java | 55 +++++++++++++
.../dao/mapper/ProcessInstanceMapper.xml | 4 +-
.../src/main/resources/sql/dolphinscheduler_h2.sql | 1 +
.../main/resources/sql/dolphinscheduler_mysql.sql | 1 +
.../resources/sql/dolphinscheduler_postgresql.sql | 1 +
.../3.1.1_schema/mysql/dolphinscheduler_ddl.sql | 2 +
.../postgresql/dolphinscheduler_ddl.sql | 4 +-
.../master/runner/MasterSchedulerBootstrap.java | 49 ++++++-----
.../master/runner/WorkflowExecuteRunnable.java | 16 ++--
.../master/runner/task/BaseTaskProcessor.java | 4 +
.../master/runner/task/BlockingTaskProcessor.java | 2 +-
.../master/runner/task/SubTaskProcessor.java | 8 +-
.../master/runner/WorkflowExecuteRunnableTest.java | 20 ++---
.../service/process/ProcessService.java | 6 --
.../service/process/ProcessServiceImpl.java | 94 +++++++---------------
.../service/process/ProcessServiceTest.java | 3 +
.../projects/task/components/node/detail-modal.tsx | 5 +-
.../src/views/projects/task/instance/use-table.ts | 3 +-
30 files changed, 280 insertions(+), 155 deletions(-)
copy
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/dto/ProcessInstanceDto.java
=>
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/repository/ProcessInstanceDao.java
(66%)
create mode 100644
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/repository/impl/ProcessInstanceDaoImpl.java