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

zhongjiajie pushed a change to branch 3.0.0-beta-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


    from 69a76e8658 [refactor][perf] cache compiled regex pattern (#10099)
     new b598b27c08 [Doc] Add complie supporting system (#10188)
     new 232a7bdb60 [Fix][UI] Fix data-quality component multi-language 
support. (#10202)
     new 1f8ee855f0 [doc] Update delete workflow description (#10203)
     new 9a966e4cb2 [Fix-10199] [Workflow/Workflow Definition] After deleting 
messages in batches, the error message is repeated (#10201)
     new 03e5ac6964 [Bug][Deploy]Fix worker-server path in script scp-hosts.sh 
(#10208) (#10209)
     new 424ef27257 fix#10214 Delete online workflows in batches, prompt 
information is accurate (#10215)
     new 80ebe4a334 [python] Fix process definition attr release state not work 
(#10151)
     new 844ce4cdd7 [Fix][UI] add assignment of totalPage (#10165)
     new f7f3305569 [doc] Update task DataX document (#10218)
     new 944be34177 [Feature-9474] [CI] Add cluster test script verify on shell 
script (#9997)
     new 5d8679fba9 [Fix-10103][k8s]Fix k8s Change DataSource Error (#10128)
     new f28890e139 [Fix][UI] Fix the problem of multi-language support of 
workflow instance host in Chinese state. (#10223)
     new 00e1162286 [doc] Update kubernetes' FAQ (#10221)
     new b320743980 [doc] Refactor local parameter docment (#10119)
     new 9eaac1e1b4 [fix-10207] When the registered alarm plugin is empty, the 
error message is not clear (#10224)
     new eedf2ba001 [Fix][UI] Fix issue with treemap depth in workflow 
relationships. (#10229)

The 16 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                      |  31 ++++-
 .github/workflows/cluster-test/mysql/Dockerfile    |  47 ++++++++
 .../workflows/cluster-test/mysql/deploy.sh         |  42 ++++---
 .../cluster-test/mysql/docker-compose-base.yaml    |  61 +++++-----
 .../cluster-test/mysql/docker-compose-cluster.yaml |  20 ++--
 .../cluster-test/mysql}/dolphinscheduler_env.sh    |  14 +--
 .../workflows/cluster-test/mysql}/install_env.sh   |  12 +-
 .../workflows/cluster-test/mysql/running_test.sh   |  81 +++++++++++++
 .../development/development-environment-setup.md   |   6 +-
 docs/docs/en/guide/installation/kubernetes.md      |  89 +++++++--------
 docs/docs/en/guide/installation/pseudo-cluster.md  |   6 +-
 docs/docs/en/guide/parameter/local.md              |  25 ++--
 docs/docs/en/guide/project/workflow-definition.md  |   2 +-
 docs/docs/en/guide/task/datax.md                   | 126 ++++++++++-----------
 .../development/development-environment-setup.md   |   6 +-
 docs/docs/zh/guide/installation/kubernetes.md      |  91 +++++++--------
 docs/docs/zh/guide/installation/pseudo-cluster.md  |   6 +-
 docs/docs/zh/guide/parameter/local.md              |  25 ++--
 docs/docs/zh/guide/project/workflow-definition.md  |   2 +-
 docs/docs/zh/guide/task/datax.md                   | 122 ++++++++++----------
 docs/img/datax_edit.png                            | Bin 478215 -> 0 bytes
 docs/img/global_parameter_en.png                   | Bin 219165 -> 0 bytes
 .../img/new_ui/dev/parameter/local_parameter01.png | Bin 0 -> 642098 bytes
 .../img/new_ui/dev/parameter/local_parameter02.png | Bin 0 -> 303057 bytes
 docs/img/supplement_local_parameter.png            | Bin 228552 -> 0 bytes
 docs/img/supplement_local_parameter_en.png         | Bin 246045 -> 0 bytes
 .../controller/ProcessDefinitionController.java    |  14 +--
 .../apache/dolphinscheduler/api/enums/Status.java  |   2 +-
 .../dolphinscheduler/api/python/PythonGateway.java |   3 +-
 .../service/impl/ProcessDefinitionServiceImpl.java |   2 +-
 .../pydolphinscheduler/docs/source/config.rst      |  68 +++++------
 .../src/pydolphinscheduler/constants.py            |   7 --
 .../src/pydolphinscheduler/core/configuration.py   |   3 +
 .../pydolphinscheduler/core/default_config.yaml    |   6 +
 .../pydolphinscheduler/core/process_definition.py  |  26 ++++-
 .../tests/core/test_process_definition.py          |  41 ++++++-
 .../tests/utils/test_yaml_parser.py                |   9 +-
 .../src/main/bin/create-schema.sh                  |  28 -----
 .../src/main/bin/upgrade-schema.sh                 |   5 +-
 .../tools/datasource/CreateDolphinScheduler.java   |  55 ---------
 .../tools/datasource/InitDolphinScheduler.java     |   2 +
 .../tools/datasource/UpgradeDolphinScheduler.java  |  11 +-
 .../src/main/resources/application.yaml            |   9 +-
 .../src/components/chart/modules/Tree.tsx          |   2 +-
 dolphinscheduler-ui/src/locales/modules/en_US.ts   |   9 +-
 dolphinscheduler-ui/src/locales/modules/zh_CN.ts   |  11 +-
 .../src/views/data-quality/rule/use-table.ts       |   1 +
 .../views/data-quality/task-result/use-table.ts    |   1 +
 .../monitor/statistics/audit-log/use-table.ts      |   1 +
 .../task/components/node/fields/use-rules.ts       |   5 +-
 .../src/main/resources/application.yaml            |  10 ++
 script/scp-hosts.sh                                |   4 +-
 script/start-all.sh                                |   8 +-
 script/stop-all.sh                                 |   8 +-
 54 files changed, 675 insertions(+), 490 deletions(-)
 create mode 100644 .github/workflows/cluster-test/mysql/Dockerfile
 copy script/install.sh => .github/workflows/cluster-test/mysql/deploy.sh (52%)
 mode change 100755 => 100644
 copy 
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/resources/docker/datasource-mysql/docker-compose.yaml
 => .github/workflows/cluster-test/mysql/docker-compose-base.yaml (58%)
 copy 
dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-script/src/test/script/shell/test.sh
 => .github/workflows/cluster-test/mysql/docker-compose-cluster.yaml (80%)
 mode change 100755 => 100644
 copy {script/env => 
.github/workflows/cluster-test/mysql}/dolphinscheduler_env.sh (83%)
 copy {script/env => .github/workflows/cluster-test/mysql}/install_env.sh (92%)
 create mode 100644 .github/workflows/cluster-test/mysql/running_test.sh
 delete mode 100644 docs/img/datax_edit.png
 delete mode 100644 docs/img/global_parameter_en.png
 create mode 100644 docs/img/new_ui/dev/parameter/local_parameter01.png
 create mode 100644 docs/img/new_ui/dev/parameter/local_parameter02.png
 delete mode 100644 docs/img/supplement_local_parameter.png
 delete mode 100644 docs/img/supplement_local_parameter_en.png
 delete mode 100755 dolphinscheduler-tools/src/main/bin/create-schema.sh
 delete mode 100644 
dolphinscheduler-tools/src/main/java/org/apache/dolphinscheduler/tools/datasource/CreateDolphinScheduler.java

Reply via email to