-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Improve] Sync code from 2.1.3 (#3608)
* [Improve] 2.1.3 ddl * [Improve] docker|email check improvements * [Improve] new icons * [Improve] new icons * [Improve] alert-message minor improvement * [Improve] scrollbar style improvements * [Improve] method name improvements * [Improve] job state style improvements * [Improve] job state improvements * [Improve] component import improvements * [Improve] check-style issue improvements * [Improve] delete SECURITY.md --------- Co-authored-by: benjobs <[email protected]>
- Loading branch information
Showing
43 changed files
with
892 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...mpark-console/streampark-console-service/src/main/assembly/script/upgrade/mysql/2.1.2.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
use streampark; | ||
|
||
set names utf8mb4; | ||
set foreign_key_checks = 0; | ||
|
||
alter table `t_flink_app` | ||
add column `dependency` text collate utf8mb4_general_ci default null after `main_class`, | ||
modify column `modify_time` datetime not null comment 'modify time'; | ||
|
||
set foreign_key_checks = 1; |
46 changes: 46 additions & 0 deletions
46
...mpark-console/streampark-console-service/src/main/assembly/script/upgrade/mysql/2.1.3.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
use streampark; | ||
|
||
set names utf8mb4; | ||
set foreign_key_checks = 0; | ||
|
||
update `t_menu` set menu_name='Apache Flink',order_num=1 where menu_id = 120000; | ||
update `t_menu` set order_num=3 where menu_id = 110000; | ||
update `t_menu` set order_num=2 where menu_id = 130000; | ||
delete from `t_menu` where menu_id=110300; | ||
|
||
alter table `t_flink_app` | ||
modify column `args` longtext, | ||
modify column `dynamic_properties` longtext, | ||
modify column `k8s_pod_template` longtext, | ||
modify column `k8s_jm_pod_template` longtext, | ||
modify column `k8s_tm_pod_template` longtext, | ||
modify column `options` longtext comment 'json form of parameter collection ', | ||
modify column `modify_time` datetime default null comment 'modify time'; | ||
|
||
alter table `t_flink_cluster` | ||
modify column `options` longtext comment 'json form of parameter collection ', | ||
modify column `dynamic_properties` longtext comment 'allows specifying multiple generic configuration options', | ||
modify column `exception` longtext comment 'exception information'; | ||
|
||
alter table `t_message` modify column `context` longtext; | ||
|
||
alter table `t_flink_project` drop column `git_credential`; | ||
|
||
set foreign_key_checks = 1; |
19 changes: 19 additions & 0 deletions
19
...mpark-console/streampark-console-service/src/main/assembly/script/upgrade/pgsql/2.1.2.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
alter table "public"."t_flink_app" | ||
add column "dependency" text collate "pg_catalog"."default"; |
24 changes: 24 additions & 0 deletions
24
...mpark-console/streampark-console-service/src/main/assembly/script/upgrade/pgsql/2.1.3.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
alter table "public"."t_flink_project" | ||
drop column "git_credential"; | ||
|
||
update "public"."t_menu" set menu_name='Apache Flink',order_num=1 where menu_id = 120000; | ||
update "public"."t_menu" set order_num=3 where menu_id = 110000; | ||
update "public"."t_menu" set order_num=2 where menu_id = 130000; | ||
delete from "public"."t_menu" where menu_id=110300; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
streampark-console/streampark-console-webapp/src/assets/icons/edit.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.