[PR #494] [MERGED] enhance & new providers #971

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

📋 Pull Request Information

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

Base: mainHead: main


📝 Commits (6)

  • 6ccbdeb feat(ui): update default standard workflow template
  • 29dda4e feat: add 1panel deployer
  • 1e2e88e feat: allow insecure connections on deployment to some self-hosted services
  • 1d4b883 feat: add aliyun fc deployer
  • 563a32e fix: #495
  • c7ad61e feat: add tencentcloud scf deployer

📊 Changes

75 files changed (+2069 additions, -102 deletions)

View changed files

📝 go.mod (+5 -0)
📝 go.sum (+12 -0)
📝 internal/deployer/providers.go (+74 -16)
📝 internal/domain/access.go (+14 -5)
📝 internal/domain/provider.go (+5 -1)
📝 internal/notify/providers.go (+2 -1)
internal/pkg/core/deployer/providers/1panel-console/1panel_console.go (+95 -0)
internal/pkg/core/deployer/providers/1panel-console/1panel_console_test.go (+72 -0)
internal/pkg/core/deployer/providers/1panel-site/1panel_site.go (+127 -0)
internal/pkg/core/deployer/providers/1panel-site/1panel_site_test.go (+76 -0)
📝 internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb.go (+2 -2)
📝 internal/pkg/core/deployer/providers/aliyun-cas-deploy/aliyun_cas_deploy.go (+1 -1)
📝 internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb.go (+1 -1)
📝 internal/pkg/core/deployer/providers/aliyun-esa/aliyun_esa.go (+1 -1)
📝 internal/pkg/core/deployer/providers/aliyun-esa/aliyun_esa_test.go (+1 -1)
internal/pkg/core/deployer/providers/aliyun-fc/aliyun_fc.go (+186 -0)
internal/pkg/core/deployer/providers/aliyun-fc/aliyun_fc_test.go (+80 -0)
📝 internal/pkg/core/deployer/providers/aliyun-live/aliyun_live.go (+1 -1)
📝 internal/pkg/core/deployer/providers/aliyun-nlb/aliyun_nlb.go (+1 -1)
📝 internal/pkg/core/deployer/providers/aliyun-oss/aliyun_oss.go (+1 -1)

...and 55 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 新增部署提供商:1Panel。
  • feat: 新增部署提供商:阿里云函数计算 FC。
  • feat: 新增部署提供商:腾讯云云函数 SCF。
  • feat: 允许 1Panel、宝塔、雷池、Webhook 等私有部署的服务忽略 SSL 证书错误,以避免无法访问使用自签名证书或 HTTPS+IP URL 的问题。关闭 #491
  • feat: 调整默认的工作流标准模板,增加失败分支。

🔄 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/494 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 3/7/2025 **Status:** ✅ Merged **Merged:** 3/8/2025 **Merged by:** [@usual2970](https://github.com/usual2970) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (6) - [`6ccbdeb`](https://github.com/certimate-go/certimate/commit/6ccbdeb89a6b5639a537ca72bd75f807f686a8a5) feat(ui): update default standard workflow template - [`29dda4e`](https://github.com/certimate-go/certimate/commit/29dda4ec66f529d93fe3625e25e95e2541453ca6) feat: add 1panel deployer - [`1e2e88e`](https://github.com/certimate-go/certimate/commit/1e2e88e299c7ac74656cc9e029fd09a5ba6e9735) feat: allow insecure connections on deployment to some self-hosted services - [`1d4b883`](https://github.com/certimate-go/certimate/commit/1d4b88339e3427d4ab5a7d7a9656a7397fc06985) feat: add aliyun fc deployer - [`563a32e`](https://github.com/certimate-go/certimate/commit/563a32ed629fa2199ee9065346fea8196be5a552) fix: #495 - [`c7ad61e`](https://github.com/certimate-go/certimate/commit/c7ad61e3195c6fb711d8283122d0690965d099a8) feat: add tencentcloud scf deployer ### 📊 Changes **75 files changed** (+2069 additions, -102 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+5 -0) 📝 `go.sum` (+12 -0) 📝 `internal/deployer/providers.go` (+74 -16) 📝 `internal/domain/access.go` (+14 -5) 📝 `internal/domain/provider.go` (+5 -1) 📝 `internal/notify/providers.go` (+2 -1) ➕ `internal/pkg/core/deployer/providers/1panel-console/1panel_console.go` (+95 -0) ➕ `internal/pkg/core/deployer/providers/1panel-console/1panel_console_test.go` (+72 -0) ➕ `internal/pkg/core/deployer/providers/1panel-site/1panel_site.go` (+127 -0) ➕ `internal/pkg/core/deployer/providers/1panel-site/1panel_site_test.go` (+76 -0) 📝 `internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb.go` (+2 -2) 📝 `internal/pkg/core/deployer/providers/aliyun-cas-deploy/aliyun_cas_deploy.go` (+1 -1) 📝 `internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb.go` (+1 -1) 📝 `internal/pkg/core/deployer/providers/aliyun-esa/aliyun_esa.go` (+1 -1) 📝 `internal/pkg/core/deployer/providers/aliyun-esa/aliyun_esa_test.go` (+1 -1) ➕ `internal/pkg/core/deployer/providers/aliyun-fc/aliyun_fc.go` (+186 -0) ➕ `internal/pkg/core/deployer/providers/aliyun-fc/aliyun_fc_test.go` (+80 -0) 📝 `internal/pkg/core/deployer/providers/aliyun-live/aliyun_live.go` (+1 -1) 📝 `internal/pkg/core/deployer/providers/aliyun-nlb/aliyun_nlb.go` (+1 -1) 📝 `internal/pkg/core/deployer/providers/aliyun-oss/aliyun_oss.go` (+1 -1) _...and 55 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 新增部署提供商:1Panel。 - **feat**: 新增部署提供商:阿里云函数计算 FC。 - **feat**: 新增部署提供商:腾讯云云函数 SCF。 - **feat**: 允许 1Panel、宝塔、雷池、Webhook 等私有部署的服务忽略 SSL 证书错误,以避免无法访问使用自签名证书或 HTTPS+IP URL 的问题。关闭 #491 - **feat**: 调整默认的工作流标准模板,增加失败分支。 --- <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:05 +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#971
No description provided.