[PR #935] [MERGED] v0.4 workflow enhance #1078

Closed
opened 2026-03-03 01:07:35 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/935
Author: @fudiwei
Created: 8/22/2025
Status: Merged
Merged: 8/26/2025
Merged by: @fudiwei

Base: nextHead: dev


📝 Commits (8)

  • 752fc72 chore(deps): upgrade gomod dependencies
  • 625e13e feat: delay node
  • 628aff9 feat: disable node
  • 6f28b40 feat(ui): modify workflow creation template
  • 9d1dc85 feat: optimize workflow engine error handling
  • 5f04277 feat: import/export workflow graph
  • 7b71593 feat: optimize data list fetching without unnecessary fields
  • 0c7ba05 feat(ui): enhance WorkflowRunDetail

📊 Changes

83 files changed (+2313 additions, -779 deletions)

View changed files

📝 go.mod (+48 -46)
📝 go.sum (+108 -0)
📝 internal/certificate/service_deps.go (+1 -1)
📝 internal/domain/statistics.go (+3 -3)
📝 internal/domain/workflow.go (+32 -20)
📝 internal/repository/certificate.go (+1 -1)
📝 internal/repository/statistics.go (+3 -3)
📝 internal/rest/handlers/workflow.go (+5 -0)
📝 internal/workflow/dispatcher/dispatcher.go (+4 -0)
📝 internal/workflow/engine/engine.go (+14 -4)
📝 internal/workflow/engine/errors.go (+6 -1)
📝 internal/workflow/engine/executor.go (+1 -1)
📝 internal/workflow/engine/executor_condition.go (+3 -3)
internal/workflow/engine/executor_delay.go (+28 -0)
📝 internal/workflow/engine/executor_end.go (+4 -2)
📝 internal/workflow/engine/executor_start.go (+3 -1)
📝 internal/workflow/engine/executor_trycatch.go (+8 -9)
📝 internal/workflow/engine/models.go (+1 -0)
📝 internal/workflow/engine/state.go (+0 -1)
📝 internal/workflow/service.go (+1 -1)

...and 63 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 新加入节点类型:延迟等待。
  • feat: 可在工作流中单独禁用一个节点。关闭 #708
  • feat: 工作流编排导入/导出。
  • feat: 优化工作流运行记录的 UI 显示。
  • feat: 优化工作流、工作流运行列表等接口,不再返回无需在表格中显示的大字段(如 graph 等)。
  • chore: 升级 go mod 依赖项。

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/certimate-go/certimate/pull/935 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 8/22/2025 **Status:** ✅ Merged **Merged:** 8/26/2025 **Merged by:** [@fudiwei](https://github.com/fudiwei) **Base:** `next` ← **Head:** `dev` --- ### 📝 Commits (8) - [`752fc72`](https://github.com/certimate-go/certimate/commit/752fc72d6c5591a4fe00af140dccaecef5551034) chore(deps): upgrade gomod dependencies - [`625e13e`](https://github.com/certimate-go/certimate/commit/625e13ece3a8499cfc904d3e67727bab1bd58906) feat: delay node - [`628aff9`](https://github.com/certimate-go/certimate/commit/628aff9dddb4b24c9dcb2d2ab3b91f741ff1e21c) feat: disable node - [`6f28b40`](https://github.com/certimate-go/certimate/commit/6f28b4066e0d86cde90bfe5c70de7ff40a6f5736) feat(ui): modify workflow creation template - [`9d1dc85`](https://github.com/certimate-go/certimate/commit/9d1dc8564fb1e7f276b284ebc010c42fc8c64dad) feat: optimize workflow engine error handling - [`5f04277`](https://github.com/certimate-go/certimate/commit/5f04277badd0008bbf75b7401a5f85aac962b7ba) feat: import/export workflow graph - [`7b71593`](https://github.com/certimate-go/certimate/commit/7b71593ad3dfdb9c5c1b368173661155d0f257e1) feat: optimize data list fetching without unnecessary fields - [`0c7ba05`](https://github.com/certimate-go/certimate/commit/0c7ba0503f80f25060f1ecea69199d13ddc285f2) feat(ui): enhance WorkflowRunDetail ### 📊 Changes **83 files changed** (+2313 additions, -779 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+48 -46) 📝 `go.sum` (+108 -0) 📝 `internal/certificate/service_deps.go` (+1 -1) 📝 `internal/domain/statistics.go` (+3 -3) 📝 `internal/domain/workflow.go` (+32 -20) 📝 `internal/repository/certificate.go` (+1 -1) 📝 `internal/repository/statistics.go` (+3 -3) 📝 `internal/rest/handlers/workflow.go` (+5 -0) 📝 `internal/workflow/dispatcher/dispatcher.go` (+4 -0) 📝 `internal/workflow/engine/engine.go` (+14 -4) 📝 `internal/workflow/engine/errors.go` (+6 -1) 📝 `internal/workflow/engine/executor.go` (+1 -1) 📝 `internal/workflow/engine/executor_condition.go` (+3 -3) ➕ `internal/workflow/engine/executor_delay.go` (+28 -0) 📝 `internal/workflow/engine/executor_end.go` (+4 -2) 📝 `internal/workflow/engine/executor_start.go` (+3 -1) 📝 `internal/workflow/engine/executor_trycatch.go` (+8 -9) 📝 `internal/workflow/engine/models.go` (+1 -0) 📝 `internal/workflow/engine/state.go` (+0 -1) 📝 `internal/workflow/service.go` (+1 -1) _...and 63 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - [x] **feat**: 新加入节点类型:延迟等待。 - [x] **feat**: 可在工作流中单独禁用一个节点。关闭 #708 - [x] **feat**: 工作流编排导入/导出。 - [x] **feat**: 优化工作流运行记录的 UI 显示。 - [x] **feat**: 优化工作流、工作流运行列表等接口,不再返回无需在表格中显示的大字段(如 `graph` 等)。 - [x] **chore**: 升级 go mod 依赖项。 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 01:07:35 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/certimate#1078
No description provided.