[PR #488] [MERGED] serveral bugfix #969

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

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/488
Author: @fudiwei
Created: 3/6/2025
Status: Merged
Merged: 3/6/2025
Merged by: @usual2970

Base: mainHead: bugfix


📝 Commits (10+)

📊 Changes

18 files changed (+684 additions, -614 deletions)

View changed files

📝 go.mod (+45 -50)
📝 go.sum (+98 -100)
📝 internal/pkg/vendors/cmcc-sdk/README.md (+0 -1)
📝 internal/repository/statistics.go (+3 -3)
📝 ui/package-lock.json (+410 -376)
📝 ui/package.json (+20 -20)
📝 ui/src/components/notification/NotifyChannelEditFormBarkFields.tsx (+1 -2)
📝 ui/src/components/notification/NotifyChannelEditFormDingTalkFields.tsx (+2 -4)
📝 ui/src/components/notification/NotifyChannelEditFormWeComFields.tsx (+1 -4)
📝 ui/src/components/workflow/WorkflowElementsContainer.tsx (+6 -2)
📝 ui/src/components/workflow/node/DeployNodeConfigFormTencentCloudSSLDeployConfig.tsx (+9 -0)
📝 ui/src/components/workflow/node/_SharedNode.tsx (+3 -2)
📝 ui/src/domain/workflow.ts (+65 -27)
📝 ui/src/i18n/locales/en/nls.workflow.nodes.json (+8 -5)
📝 ui/src/i18n/locales/zh/nls.workflow.nodes.json (+6 -6)
📝 ui/src/pages/dashboard/Dashboard.tsx (+1 -1)
📝 ui/src/stores/workflow/index.ts (+2 -2)
📝 ui/src/utils/cron.ts (+4 -9)

📄 Description

该 PR 包含以下内容的变更:

  • fix: 修复钉钉消息通知参数过长无法保存的问题。关闭 #478
  • fix: 修复仪表盘证书数量未剔除已删除证书的问题。关闭 #482
  • fix: 修复通过腾讯云 SSL 证书服务创建部署任务参数缺失的问题。关闭 #492
  • fix: 修复存在嵌套分支时工作流节点配置无法修改的问题。关闭 #485、#489
  • chore: 升级 gomod & npm 第三方依赖。

🔄 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/488 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 3/6/2025 **Status:** ✅ Merged **Merged:** 3/6/2025 **Merged by:** [@usual2970](https://github.com/usual2970) **Base:** `main` ← **Head:** `bugfix` --- ### 📝 Commits (10+) - [`b17dd04`](https://github.com/certimate-go/certimate/commit/b17dd0432948cc1537ad66542d6b6bea54ca5119) chore(deps): upgrade gomod dependencies - [`e2fdc29`](https://github.com/certimate-go/certimate/commit/e2fdc29ca0fc2d694a7726ef659ac60b3408ebd2) chore(deps): upgrade npm dependencies - [`6d612f4`](https://github.com/certimate-go/certimate/commit/6d612f42a8c7f5ba39c97172d339378afb5c28b9) fix: #482 - [`9aaf3ff`](https://github.com/certimate-go/certimate/commit/9aaf3ff5d8f0b30e5ce41f815480e23f50b7e718) fix: #478 - [`8a113e2`](https://github.com/certimate-go/certimate/commit/8a113e2bcb166e197f8552ea1403b0c2df60a0a9) fix: missing parameter on deployment to tencentcloud ssl - [`5b2bc6b`](https://github.com/certimate-go/certimate/commit/5b2bc6bff95e3576aec4262523f71d4b215afa3d) chore(ui): improve i18n - [`574ad04`](https://github.com/certimate-go/certimate/commit/574ad0445e551c6ce1fbae5ace53d39a84aff9ef) refactor(ui): clean code - [`411c39b`](https://github.com/certimate-go/certimate/commit/411c39b1482e2ab24a05ac0aaec400688e9225ab) fix: #485 - [`52e9341`](https://github.com/certimate-go/certimate/commit/52e9341dab01d9fda78eb3e8d50def8651af8e34) fix: inappropriate workflow node config unsaved reminder - [`48f3cc4`](https://github.com/certimate-go/certimate/commit/48f3cc419b2b293ef078ccbdf265c1261c6c7fc3) chore(ui): upgrade cron-parser ### 📊 Changes **18 files changed** (+684 additions, -614 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+45 -50) 📝 `go.sum` (+98 -100) 📝 `internal/pkg/vendors/cmcc-sdk/README.md` (+0 -1) 📝 `internal/repository/statistics.go` (+3 -3) 📝 `ui/package-lock.json` (+410 -376) 📝 `ui/package.json` (+20 -20) 📝 `ui/src/components/notification/NotifyChannelEditFormBarkFields.tsx` (+1 -2) 📝 `ui/src/components/notification/NotifyChannelEditFormDingTalkFields.tsx` (+2 -4) 📝 `ui/src/components/notification/NotifyChannelEditFormWeComFields.tsx` (+1 -4) 📝 `ui/src/components/workflow/WorkflowElementsContainer.tsx` (+6 -2) 📝 `ui/src/components/workflow/node/DeployNodeConfigFormTencentCloudSSLDeployConfig.tsx` (+9 -0) 📝 `ui/src/components/workflow/node/_SharedNode.tsx` (+3 -2) 📝 `ui/src/domain/workflow.ts` (+65 -27) 📝 `ui/src/i18n/locales/en/nls.workflow.nodes.json` (+8 -5) 📝 `ui/src/i18n/locales/zh/nls.workflow.nodes.json` (+6 -6) 📝 `ui/src/pages/dashboard/Dashboard.tsx` (+1 -1) 📝 `ui/src/stores/workflow/index.ts` (+2 -2) 📝 `ui/src/utils/cron.ts` (+4 -9) </details> ### 📄 Description 该 PR 包含以下内容的变更: - **fix**: 修复钉钉消息通知参数过长无法保存的问题。关闭 #478 - **fix**: 修复仪表盘证书数量未剔除已删除证书的问题。关闭 #482 - **fix**: 修复通过腾讯云 SSL 证书服务创建部署任务参数缺失的问题。关闭 #492 - **fix**: 修复存在嵌套分支时工作流节点配置无法修改的问题。关闭 #485、#489 - **chore**: 升级 gomod & npm 第三方依赖。 --- <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:04 +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#969
No description provided.