[PR #666] [MERGED] new providers #1009

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/666
Author: @fudiwei
Created: 5/7/2025
Status: Merged
Merged: 5/9/2025
Merged by: @fudiwei

Base: mainHead: feat/providers


📝 Commits (7)

  • 12c208c feat: new deployment provider: aliyun ddoscoo
  • 5cb0463 feat: set the default max workers to the number of available CPU cores
  • e5805a0 feat: new acme dns-01 provider: aliyun esa
  • 1499c63 feat: new deployment provider: goedge
  • 809f231 feat: set the default max workers to the number of available CPU cores
  • a4d397f fix: fix typo
  • 0a73ba1 feat: add preset scripts

📊 Changes

49 files changed (+1632 additions, -213 deletions)

View changed files

📝 go.mod (+1 -0)
📝 go.sum (+2 -0)
📝 internal/applicant/providers.go (+25 -8)
📝 internal/deployer/providers.go (+29 -1)
📝 internal/domain/access.go (+6 -0)
📝 internal/domain/provider.go (+6 -3)
internal/pkg/core/applicant/acme-dns-01/lego-providers/aliyun-esa/aliyun_esa.go (+40 -0)
internal/pkg/core/applicant/acme-dns-01/lego-providers/aliyun-esa/internal/lego.go (+266 -0)
📝 internal/pkg/core/applicant/acme-dns-01/lego-providers/baiducloud/internal/lego.go (+3 -3)
📝 internal/pkg/core/applicant/acme-dns-01/lego-providers/dynv6/internal/lego.go (+3 -3)
📝 internal/pkg/core/applicant/acme-dns-01/lego-providers/gname/internal/lego.go (+3 -3)
📝 internal/pkg/core/applicant/acme-dns-01/lego-providers/tencentcloud-eo/internal/lego.go (+14 -13)
📝 internal/pkg/core/applicant/acme-dns-01/lego-providers/tencentcloud-eo/tencentcloud_eo.go (+1 -1)
📝 internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb.go (+1 -1)
📝 internal/pkg/core/deployer/providers/aliyun-apigw/aliyun_apigw.go (+1 -1)
📝 internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb.go (+23 -5)
internal/pkg/core/deployer/providers/aliyun-ddos/aliyun_ddos.go (+137 -0)
internal/pkg/core/deployer/providers/aliyun-ddos/aliyun_ddos_test.go (+80 -0)
📝 internal/pkg/core/deployer/providers/aliyun-esa/aliyun_esa.go (+1 -1)
📝 internal/pkg/core/deployer/providers/aliyun-nlb/aliyun_nlb.go (+1 -1)

...and 29 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 新增 DNS-01 提供商:阿里云 ESA NS 模式。关闭 #647
  • feat: 新增部署提供商:阿里云 DDoS 高防。关闭 #642
  • feat: 新增部署提供商:GoEdge。关闭 #613
  • feat: 部署到 SSH 时支持更多的预设脚本(如导入到 IIS 等),与部署到本地保持一致
  • feat: 调整工作流最大并发上限的默认值为 CPU 可用核心数

🔄 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/666 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 5/7/2025 **Status:** ✅ Merged **Merged:** 5/9/2025 **Merged by:** [@fudiwei](https://github.com/fudiwei) **Base:** `main` ← **Head:** `feat/providers` --- ### 📝 Commits (7) - [`12c208c`](https://github.com/certimate-go/certimate/commit/12c208cad44566cc689fd7936f4a61a46bec7675) feat: new deployment provider: aliyun ddoscoo - [`5cb0463`](https://github.com/certimate-go/certimate/commit/5cb0463cf66d95492c2f939cfeed276ac3f1b9dd) feat: set the default max workers to the number of available CPU cores - [`e5805a0`](https://github.com/certimate-go/certimate/commit/e5805a028b6be0cc46ff418f01fc50c929af1a6a) feat: new acme dns-01 provider: aliyun esa - [`1499c63`](https://github.com/certimate-go/certimate/commit/1499c637ee4c528081c1010b8b385b506024557f) feat: new deployment provider: goedge - [`809f231`](https://github.com/certimate-go/certimate/commit/809f2319811f55bb801b781459c019e36cbb9dad) feat: set the default max workers to the number of available CPU cores - [`a4d397f`](https://github.com/certimate-go/certimate/commit/a4d397f24b362061871b6cfb613af5e69c07ed25) fix: fix typo - [`0a73ba1`](https://github.com/certimate-go/certimate/commit/0a73ba1a53cc413e08d51f20bce5313a35a919ec) feat: add preset scripts ### 📊 Changes **49 files changed** (+1632 additions, -213 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+1 -0) 📝 `go.sum` (+2 -0) 📝 `internal/applicant/providers.go` (+25 -8) 📝 `internal/deployer/providers.go` (+29 -1) 📝 `internal/domain/access.go` (+6 -0) 📝 `internal/domain/provider.go` (+6 -3) ➕ `internal/pkg/core/applicant/acme-dns-01/lego-providers/aliyun-esa/aliyun_esa.go` (+40 -0) ➕ `internal/pkg/core/applicant/acme-dns-01/lego-providers/aliyun-esa/internal/lego.go` (+266 -0) 📝 `internal/pkg/core/applicant/acme-dns-01/lego-providers/baiducloud/internal/lego.go` (+3 -3) 📝 `internal/pkg/core/applicant/acme-dns-01/lego-providers/dynv6/internal/lego.go` (+3 -3) 📝 `internal/pkg/core/applicant/acme-dns-01/lego-providers/gname/internal/lego.go` (+3 -3) 📝 `internal/pkg/core/applicant/acme-dns-01/lego-providers/tencentcloud-eo/internal/lego.go` (+14 -13) 📝 `internal/pkg/core/applicant/acme-dns-01/lego-providers/tencentcloud-eo/tencentcloud_eo.go` (+1 -1) 📝 `internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb.go` (+1 -1) 📝 `internal/pkg/core/deployer/providers/aliyun-apigw/aliyun_apigw.go` (+1 -1) 📝 `internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb.go` (+23 -5) ➕ `internal/pkg/core/deployer/providers/aliyun-ddos/aliyun_ddos.go` (+137 -0) ➕ `internal/pkg/core/deployer/providers/aliyun-ddos/aliyun_ddos_test.go` (+80 -0) 📝 `internal/pkg/core/deployer/providers/aliyun-esa/aliyun_esa.go` (+1 -1) 📝 `internal/pkg/core/deployer/providers/aliyun-nlb/aliyun_nlb.go` (+1 -1) _...and 29 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 新增 DNS-01 提供商:阿里云 ESA NS 模式。关闭 #647 - **feat**: 新增部署提供商:阿里云 DDoS 高防。关闭 #642 - **feat**: 新增部署提供商:GoEdge。关闭 #613 - **feat**: 部署到 SSH 时支持更多的预设脚本(如导入到 IIS 等),与部署到本地保持一致 - **feat**: 调整工作流最大并发上限的默认值为 CPU 可用核心数 --- <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#1009
No description provided.