This is an automated email from the ASF dual-hosted git repository.
liudongkai pushed a change to branch 3.0.0-beta-2-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
from 3259efc673 Add dolphinscheduler-task-all in api module (#10350)
new ab7a843201 issues-10354: upgrade commons-io to fix CVE (#10355)
new 67f6c003f7 issue-10356: upgrade logback to fix cve (#10357)
new 7a240fb807 Upgrade log4j in E2E (#10359)
new 478463fe6a [Docs] Upgrade license. (#10365)
new f7b18fd59d [fix][deploy]fix run on kubernetes bug (#10379)
new ed02db213e [Bug][Tools] Add datasource url for mysql profile in tools
application.yaml (#10399)
new 248a85daab [Doc] Add how to set the alarm mailbox in faq (#10401)
new df0735273b [Fix-10412] [Standalone] Failed to start standalone server
according to the official document (#10414)
new deb1c594e5 Update chart.yaml dependencies version (#10420)
new ba2f2ba64d [fix-10386]LDAP user create with status enable (#10426)
new 476f2395dc [fix][Python] Support same task name in project defferent
process definition (#10428)
new 55e39eedfa [Fix-10425]Recovery LDAP Config (#10429)
new 4d608a7d8f [DolphinScheduler] Fix wrong class name in doc (#10438)
new 788e334329 [Fix][UI] Add loading before file modification data is
returned. (#10450)
new 6edb3412a9 [fix][python] Correct variable type of SQL type (#10464)
new ac5179be73 fix rename form not init bug in file manange (#10471)
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:
deploy/kubernetes/dolphinscheduler/Chart.yaml | 4 +-
.../dolphinscheduler/templates/_helpers.tpl | 2 +-
deploy/kubernetes/dolphinscheduler/values.yaml | 2 +
docs/docs/en/architecture/configuration.md | 8 +-
.../development/development-environment-setup.md | 2 +-
docs/docs/en/faq.md | 3 +-
docs/docs/en/guide/alert/email.md | 6 +
docs/docs/zh/architecture/configuration.md | 9 +-
.../development/development-environment-setup.md | 2 +-
docs/docs/zh/faq.md | 3 +-
docs/docs/zh/guide/alert/email.md | 6 +
docs/img/alert/email-alter-setup1-en.png | Bin 0 -> 27742 bytes
docs/img/alert/email-alter-setup2-en.png | Bin 0 -> 47734 bytes
docs/img/alert/email-alter-setup3-en.png | Bin 0 -> 43983 bytes
.../dolphinscheduler/api/python/PythonGateway.java | 14 ++-
.../api/security/impl/ldap/LdapService.java | 12 +-
.../api/service/TaskDefinitionService.java | 2 +
.../service/impl/TaskDefinitionServiceImpl.java | 5 +-
.../api/service/impl/UsersServiceImpl.java | 1 +
.../src/main/resources/application.yaml | 16 +++
.../api/python/PythonGatewayTest.java | 123 +++++++++++++++++++++
.../security/impl/ldap/LdapAuthenticatorTest.java | 26 ++---
.../api/security/impl/ldap/LdapServiceTest.java | 12 +-
.../api/service/TaskDefinitionServiceImplTest.java | 6 +-
.../dao/mapper/TaskDefinitionMapper.java | 2 +
.../dao/mapper/TaskDefinitionMapper.xml | 20 +++-
.../dao/mapper/TaskDefinitionMapperTest.java | 25 ++++-
dolphinscheduler-dist/release-docs/LICENSE | 42 +++----
dolphinscheduler-e2e/pom.xml | 2 +-
.../src/pydolphinscheduler/core/task.py | 2 +-
.../src/pydolphinscheduler/tasks/sql.py | 8 +-
.../pydolphinscheduler/tests/tasks/test_sql.py | 4 +-
.../src/main/bin/start.sh | 1 +
.../src/main/dist-bin/start.sh | 1 +
.../src/main/resources/application.yaml | 21 ++++
.../src/main/resources/application.yaml | 1 +
.../src/views/resource/file/edit/index.tsx | 83 +++++++-------
.../src/views/resource/file/edit/use-edit.ts | 3 +-
.../src/views/resource/file/rename/index.tsx | 2 +-
pom.xml | 6 +-
tools/dependencies/known-dependencies.txt | 8 +-
41 files changed, 370 insertions(+), 125 deletions(-)
create mode 100644 docs/docs/en/guide/alert/email.md
create mode 100644 docs/docs/zh/guide/alert/email.md
create mode 100644 docs/img/alert/email-alter-setup1-en.png
create mode 100644 docs/img/alert/email-alter-setup2-en.png
create mode 100644 docs/img/alert/email-alter-setup3-en.png
create mode 100644
dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/python/PythonGatewayTest.java