[PR #684] [MERGED] enhance & bugfix #1011

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

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/684
Author: @fudiwei
Created: 5/13/2025
Status: Merged
Merged: 5/15/2025
Merged by: @fudiwei

Base: mainHead: main


📝 Commits (10+)

  • 82bdccf feat(ui): move settings page entry from topbar to sider-menu
  • 1fee156 chore(deps): upgrade npm dependencies
  • a1fc384 chore(deps): upgrade gomod dependencies
  • 07037e8 feat: support replacing old certificate on deployment to gcore cdn
  • 0c42bb8 feat(ui): AccessProviderPicker
  • 7d57c5a feat(ui): show search on AccessSelect
  • 989fd1e feat(ui): max content height on AccessEditModal
  • 709684d fix(ui): scale origin
  • 2ec4adf fix(ui): tsc build error
  • 4b226d7 Merge branch 'usual2970:main' into main

📊 Changes

41 files changed (+1103 additions, -337 deletions)

View changed files

📝 internal/deployer/providers.go (+31 -26)
📝 internal/domain/access.go (+1 -0)
📝 internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb.go (+1 -14)
📝 internal/pkg/core/deployer/providers/edgio-applications/edgio_applications.go (+3 -3)
📝 internal/pkg/core/deployer/providers/gcore-cdn/gcore_cdn.go (+1 -1)
📝 internal/pkg/core/deployer/providers/goedge/goedge.go (+11 -5)
📝 internal/pkg/core/deployer/providers/local/local.go (+26 -0)
📝 internal/pkg/core/deployer/providers/ssh/ssh.go (+26 -0)
📝 internal/pkg/core/deployer/providers/webhook/webhook.go (+8 -0)
📝 internal/pkg/sdk3rd/goedge/api.go (+1 -1)
📝 internal/pkg/sdk3rd/goedge/client.go (+3 -3)
📝 internal/pkg/utils/cert/extractor.go (+5 -5)
migrations/1747314000_upgrade.go (+44 -0)
📝 ui/package-lock.json (+277 -0)
📝 ui/package.json (+7 -0)
ui/src/components/CodeInput.tsx (+97 -0)
ui/src/components/TextFileInput.tsx (+51 -0)
📝 ui/src/components/access/AccessFormGoEdgeConfig.tsx (+9 -1)
📝 ui/src/components/access/AccessFormKubernetesConfig.tsx (+5 -28)
📝 ui/src/components/access/AccessFormSSHConfig.tsx (+32 -64)

...and 21 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 部署到本地、SSH、Webhook 等时支持单独上传服务器证书和中间证书。关闭 #674
  • feat: 部署到 SSH 时添加替换群晖 DSM 证书的预设脚本。
  • feat: 部署到 SSH 时添加替换飞牛 fnOS 证书的预设脚本。
  • feat: 部署到 GoEdge 时支持使用系统管理员的授权信息。
  • feat: KubeConfig、SSH 密钥等文件内容支持以文本形式编辑。
  • feat: Webhook、脚本命令等输入框支持代码高亮和行号显示。
  • fix: 修复新建授权时提供商选择器可选中内置提供商的问题。
  • fix: 修正 Webhook 引导文案错误。
  • fix: 关闭 #681
  • fix: 关闭 #686

🔄 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/684 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 5/13/2025 **Status:** ✅ Merged **Merged:** 5/15/2025 **Merged by:** [@fudiwei](https://github.com/fudiwei) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`82bdccf`](https://github.com/certimate-go/certimate/commit/82bdccf7e7a514d259c99217906104c3cb16919d) feat(ui): move settings page entry from topbar to sider-menu - [`1fee156`](https://github.com/certimate-go/certimate/commit/1fee1564574324e4a5bc5c7a493dd7cc2e948ed2) chore(deps): upgrade npm dependencies - [`a1fc384`](https://github.com/certimate-go/certimate/commit/a1fc3841dfffc0349d3b952abe54102bcad65490) chore(deps): upgrade gomod dependencies - [`07037e8`](https://github.com/certimate-go/certimate/commit/07037e8d49c138c738df7fec771eea284c655dfc) feat: support replacing old certificate on deployment to gcore cdn - [`0c42bb8`](https://github.com/certimate-go/certimate/commit/0c42bb845dbff3bc654834f541870ea035b99940) feat(ui): AccessProviderPicker - [`7d57c5a`](https://github.com/certimate-go/certimate/commit/7d57c5abc0ec17aceb54f6e8ba2e58fd8316f72f) feat(ui): show search on AccessSelect - [`989fd1e`](https://github.com/certimate-go/certimate/commit/989fd1ec6d1dd65a4aec303a3368944d99d21a32) feat(ui): max content height on AccessEditModal - [`709684d`](https://github.com/certimate-go/certimate/commit/709684d00f8eca5cf4ddf0ecac03a7f7c882caec) fix(ui): scale origin - [`2ec4adf`](https://github.com/certimate-go/certimate/commit/2ec4adf7d522e5815d83877cab18fbd4652697c9) fix(ui): tsc build error - [`4b226d7`](https://github.com/certimate-go/certimate/commit/4b226d77305c182a25c8ef8386ac6b4a44887e31) Merge branch 'usual2970:main' into main ### 📊 Changes **41 files changed** (+1103 additions, -337 deletions) <details> <summary>View changed files</summary> 📝 `internal/deployer/providers.go` (+31 -26) 📝 `internal/domain/access.go` (+1 -0) 📝 `internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb.go` (+1 -14) 📝 `internal/pkg/core/deployer/providers/edgio-applications/edgio_applications.go` (+3 -3) 📝 `internal/pkg/core/deployer/providers/gcore-cdn/gcore_cdn.go` (+1 -1) 📝 `internal/pkg/core/deployer/providers/goedge/goedge.go` (+11 -5) 📝 `internal/pkg/core/deployer/providers/local/local.go` (+26 -0) 📝 `internal/pkg/core/deployer/providers/ssh/ssh.go` (+26 -0) 📝 `internal/pkg/core/deployer/providers/webhook/webhook.go` (+8 -0) 📝 `internal/pkg/sdk3rd/goedge/api.go` (+1 -1) 📝 `internal/pkg/sdk3rd/goedge/client.go` (+3 -3) 📝 `internal/pkg/utils/cert/extractor.go` (+5 -5) ➕ `migrations/1747314000_upgrade.go` (+44 -0) 📝 `ui/package-lock.json` (+277 -0) 📝 `ui/package.json` (+7 -0) ➕ `ui/src/components/CodeInput.tsx` (+97 -0) ➕ `ui/src/components/TextFileInput.tsx` (+51 -0) 📝 `ui/src/components/access/AccessFormGoEdgeConfig.tsx` (+9 -1) 📝 `ui/src/components/access/AccessFormKubernetesConfig.tsx` (+5 -28) 📝 `ui/src/components/access/AccessFormSSHConfig.tsx` (+32 -64) _...and 21 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 部署到本地、SSH、Webhook 等时支持单独上传服务器证书和中间证书。关闭 #674 - **feat**: 部署到 SSH 时添加替换群晖 DSM 证书的预设脚本。 - **feat**: 部署到 SSH 时添加替换飞牛 fnOS 证书的预设脚本。 - **feat**: 部署到 GoEdge 时支持使用系统管理员的授权信息。 - **feat**: KubeConfig、SSH 密钥等文件内容支持以文本形式编辑。 - **feat**: Webhook、脚本命令等输入框支持代码高亮和行号显示。 - **fix**: 修复新建授权时提供商选择器可选中内置提供商的问题。 - **fix**: 修正 Webhook 引导文案错误。 - **fix**: 关闭 #681 - **fix**: 关闭 #686 --- <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:16 +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#1011
No description provided.