Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache DolphinScheduler
Copyright 2019-2024 The Apache Software Foundation
Copyright 2019-2026 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/.env
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.
#
HUB=apache
TAG=dev
TAG=3.4.0

TZ=Asia/Shanghai
DATABASE=postgresql
Expand Down
4 changes: 2 additions & 2 deletions deploy/kubernetes/dolphinscheduler/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 3.1.0
version: 3.4.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 3.1.0
appVersion: 3.4.0

dependencies:
- name: postgresql
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/dolphinscheduler/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ image:
# -- Docker image repository for the DolphinScheduler
registry: apache
# -- Docker image version for the DolphinScheduler
tag: latest
tag: 3.4.0
# -- Image pull policy. Options: Always, Never, IfNotPresent
pullPolicy: "IfNotPresent"
# -- Specify a imagePullSecrets
Expand Down
592 changes: 296 additions & 296 deletions docs/configs/docsdev.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions docs/docs/en/history-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

#### Setup instructions, are available for each stable version of Apache DolphinScheduler below:

### Versions: 3.4.0

#### Links: [3.4.0 Document](../3.4.0/user_doc/about/introduction.md)

### Versions: 3.3.2

#### Links: [3.3.2 Document](../3.3.2/user_doc/about/introduction.md)
Expand Down
4 changes: 4 additions & 0 deletions docs/docs/zh/history-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

#### 以下是Apache DolphinScheduler每个稳定版本的设置说明。

### Versions: 3.4.0

#### Links: [3.4.0 Document](../3.4.0/user_doc/about/introduction.md)

### Versions: 3.3.2

#### Links: [3.3.2 Document](../3.3.2/user_doc/about/introduction.md)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1082,7 +1082,7 @@ CREATE TABLE t_ds_version
-- Records of t_ds_version
-- ----------------------------
INSERT INTO t_ds_version
VALUES ('1', '3.3.0');
VALUES ('1', '3.4.0');


-- ----------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1064,7 +1064,7 @@ CREATE TABLE `t_ds_version` (
-- ----------------------------
-- Records of t_ds_version
-- ----------------------------
INSERT IGNORE INTO `t_ds_version` VALUES ('1', '3.3.0');
INSERT IGNORE INTO `t_ds_version` VALUES ('1', '3.4.0');


-- ----------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1099,7 +1099,7 @@ INSERT INTO t_ds_queue(queue_name, queue, create_time, update_time)
VALUES ('default', 'default', '2018-11-29 10:22:33', '2018-11-29 10:22:33');

-- Records of t_ds_queue,default queue name : default
INSERT INTO t_ds_version(version) VALUES ('3.3.0');
INSERT INTO t_ds_version(version) VALUES ('3.4.0');

--
-- Table structure for table t_ds_plugin_define
Expand Down
2 changes: 1 addition & 1 deletion dolphinscheduler-dao/src/main/resources/sql/soft_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
3.4.0
2 changes: 1 addition & 1 deletion dolphinscheduler-dist/release-docs/NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache DolphinScheduler
Copyright 2019-2024 The Apache Software Foundation
Copyright 2019-2026 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
Expand Down
2 changes: 1 addition & 1 deletion script/install-plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ set -eo pipefail
DOLPHINSCHEDULER_HOME=$(cd $(dirname $0);cd ../;pwd)

# plugins default version is dev-SNAPSHOT, you can also choose a custom version. eg: dev-SNAPSHOT: bash install-plugins.sh dev-SNAPSHOT
version=dev-SNAPSHOT
version=3.4.0

if [ -n "$1" ]; then
version="$1"
Expand Down
Loading