This is an automated email from the ASF dual-hosted git repository.
zhongjiajie pushed a change to branch 3.0.0-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
from dd34a1da67 [fix] data quality dml error
new f7ed6ef850 [Fix] Parameter values disappear when editing Zeppelin task
(#11115)
new a8b1b61bd2 [Bug-11071] fix local params (#11184)
new 59f3bce232 add Feishu alert doc and configure email alert doc to the
docsdev.js (#11173)
new ab73121401 [python] Add directly install without clone source code
(#11179)
new 9281f2b650 [ci] Make cluster test work on release branch (#11199)
new 7821d3ce7e fix nodeSize is not a function bug (#11200)
new d550f9917e fix error (#11206)
new 68a73b04a2 [Fix-11007] [Master] fix forced_success bug (#11088)
new 7dc8aab821 [doc] Fix installation typo (#11220)
new 072672a127 Fix recovery from failed task will dead loop (#11239)
new 2c469224dd fix bug where confirm disable error (#11251)
The 11 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:
.github/workflows/backend.yml | 2 +-
.github/workflows/cluster-test/mysql/Dockerfile | 8 +-
.github/workflows/cluster-test/mysql/deploy.sh | 2 +-
.../workflows/cluster-test/mysql/install_env.sh | 2 +-
.../workflows/cluster-test/mysql/running_test.sh | 4 +-
.../workflows/cluster-test/postgresql/Dockerfile | 8 +-
.../workflows/cluster-test/postgresql/deploy.sh | 2 +-
.../cluster-test/postgresql/install_env.sh | 2 +-
.../cluster-test/postgresql/running_test.sh | 4 +-
docs/configs/docsdev.js | 16 +
docs/docs/en/guide/alert/feishu.md | 17 +
docs/docs/en/guide/installation/pseudo-cluster.md | 2 +-
docs/docs/en/guide/installation/standalone.md | 2 +-
docs/docs/zh/guide/alert/feishu.md | 14 +
docs/docs/zh/guide/installation/pseudo-cluster.md | 2 +-
docs/docs/zh/guide/installation/standalone.md | 2 +-
docs/img/new_ui/dev/alert/alert_feishu.png | Bin 0 -> 18181 bytes
docs/img/new_ui/dev/alert/alert_feishu_webhook.png | Bin 0 -> 25193 bytes
.../api/service/impl/TaskInstanceServiceImpl.java | 3 +
dolphinscheduler-dist/release-docs/LICENSE | 2 +-
.../master/runner/WorkflowExecuteRunnable.java | 14 +-
.../pydolphinscheduler/docs/source/start.rst | 8 +
.../service/process/ProcessService.java | 2 +
.../service/process/ProcessServiceImpl.java | 38 +-
.../plugin/task/api/TaskExecutionContext.java | 3 +-
.../task/api/parameters/AbstractParameters.java | 5 +-
.../api/parameters/AbstractParametersTest.java | 54 +
dolphinscheduler-ui/package.json | 2 +-
dolphinscheduler-ui/pnpm-lock.yaml | 1143 +++++++++++---------
.../task/components/node/fields/use-zeppelin.ts | 4 +-
.../projects/task/components/node/format-data.ts | 4 +-
.../task-group/option/components/form-modal.tsx | 11 +-
.../server/worker/runner/TaskExecuteThread.java | 6 +-
33 files changed, 830 insertions(+), 558 deletions(-)
create mode 100644 docs/docs/en/guide/alert/feishu.md
create mode 100644 docs/docs/zh/guide/alert/feishu.md
create mode 100644 docs/img/new_ui/dev/alert/alert_feishu.png
create mode 100644 docs/img/new_ui/dev/alert/alert_feishu_webhook.png
create mode 100644
dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/test/java/org/apache/dolphinscheduler/plugin/task/api/parameters/AbstractParametersTest.java