[PR #817] [MERGED] new providers & bugfix #1049

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

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/817
Author: @fudiwei
Created: 6/23/2025
Status: Merged
Merged: 6/24/2025
Merged by: @fudiwei

Base: mainHead: feat/providers


📝 Commits (10+)

  • 5ed8384 fix: could not deploy to rainyun rcdn
  • cff0934 feat: support configuring endpoint on deployment to tencentcloud
  • 60409d0 refactor: clean code
  • 2216d52 refactor: clean code
  • f8b7086 chore(deps): upgrade gomod dependencies
  • 5612c63 chore(deps): upgrade npm dependencies
  • ac16fb0 feat: new deployment provider: tencentcloud ssludpate
  • bbd349b feat: new acme dns-01 provider: spaceship
  • 2695a50 build: inject tag version to .env
  • bd465ed feat: db index

📊 Changes

256 files changed (+3006 additions, -1847 deletions)

View changed files

📝 .github/workflows/push_image.yml (+4 -0)
📝 .github/workflows/push_image_next.yml (+4 -0)
📝 .github/workflows/release.yml (+2 -1)
📝 go.mod (+45 -45)
📝 go.sum (+106 -98)
📝 internal/applicant/providers.go (+17 -0)
📝 internal/deployer/providers.go (+26 -2)
📝 internal/domain/access.go (+5 -0)
📝 internal/domain/provider.go (+3 -0)
migrations/1750687200_upgrade.go (+93 -0)
pkg/core/ssl-applicator/acme-dns01/providers/spaceship/spaceship.go (+40 -0)
📝 pkg/core/ssl-deployer/providers/aliyun-alb/aliyun_alb.go (+10 -23)
📝 pkg/core/ssl-deployer/providers/aliyun-apigw/aliyun_apigw.go (+26 -25)
📝 pkg/core/ssl-deployer/providers/aliyun-cas-deploy/aliyun_cas_deploy.go (+8 -25)
📝 pkg/core/ssl-deployer/providers/aliyun-clb/aliyun_clb.go (+11 -11)
📝 pkg/core/ssl-deployer/providers/aliyun-ddos/aliyun_ddos.go (+19 -24)
📝 pkg/core/ssl-deployer/providers/aliyun-esa/aliyun_esa.go (+19 -24)
📝 pkg/core/ssl-deployer/providers/aliyun-fc/aliyun_fc.go (+11 -3)
📝 pkg/core/ssl-deployer/providers/aliyun-ga/aliyun_ga.go (+6 -11)
📝 pkg/core/ssl-deployer/providers/aliyun-nlb/aliyun_nlb.go (+18 -24)

...and 80 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 新增 DNS-01 提供商:Spaceship。关闭 #798
  • feat: 新增部署提供商:通过腾讯云 SSL 更新云资源证书。关闭 #811
  • feat: 部署到腾讯云各服务时支持指定接口端点(Endpoint),以适配腾讯云国际站。关闭 #811
  • fix: 修复无法部署到雨云 RCDN 的问题。
  • fix: 关闭 #812
  • fix: 关闭 #815
  • chore: 升级 go mod & 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/817 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 6/23/2025 **Status:** ✅ Merged **Merged:** 6/24/2025 **Merged by:** [@fudiwei](https://github.com/fudiwei) **Base:** `main` ← **Head:** `feat/providers` --- ### 📝 Commits (10+) - [`5ed8384`](https://github.com/certimate-go/certimate/commit/5ed8384b9def1cdd8a410d105a439f65052924c1) fix: could not deploy to rainyun rcdn - [`cff0934`](https://github.com/certimate-go/certimate/commit/cff0934379754adea8224d28c60f204452792265) feat: support configuring endpoint on deployment to tencentcloud - [`60409d0`](https://github.com/certimate-go/certimate/commit/60409d0470459c3336fcaf34295dfa57808f5a52) refactor: clean code - [`2216d52`](https://github.com/certimate-go/certimate/commit/2216d52275106dd2b7c0815fd3a82f42ec07a2e5) refactor: clean code - [`f8b7086`](https://github.com/certimate-go/certimate/commit/f8b7086ad16a12073dfb568bf35a4696f2afba95) chore(deps): upgrade gomod dependencies - [`5612c63`](https://github.com/certimate-go/certimate/commit/5612c63d7dc4a64512958543c83dd1351954524a) chore(deps): upgrade npm dependencies - [`ac16fb0`](https://github.com/certimate-go/certimate/commit/ac16fb0f7ef25fe1fbbf53cf903db6f3250feeb1) feat: new deployment provider: tencentcloud ssludpate - [`bbd349b`](https://github.com/certimate-go/certimate/commit/bbd349b2acd9e3b66b25068b19ad52755d29e5e4) feat: new acme dns-01 provider: spaceship - [`2695a50`](https://github.com/certimate-go/certimate/commit/2695a50081d0453e88a5ad7ed887b3b975d31296) build: inject tag version to .env - [`bd465ed`](https://github.com/certimate-go/certimate/commit/bd465ed8f2f92208b3049851d273cc472345b066) feat: db index ### 📊 Changes **256 files changed** (+3006 additions, -1847 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/push_image.yml` (+4 -0) 📝 `.github/workflows/push_image_next.yml` (+4 -0) 📝 `.github/workflows/release.yml` (+2 -1) 📝 `go.mod` (+45 -45) 📝 `go.sum` (+106 -98) 📝 `internal/applicant/providers.go` (+17 -0) 📝 `internal/deployer/providers.go` (+26 -2) 📝 `internal/domain/access.go` (+5 -0) 📝 `internal/domain/provider.go` (+3 -0) ➕ `migrations/1750687200_upgrade.go` (+93 -0) ➕ `pkg/core/ssl-applicator/acme-dns01/providers/spaceship/spaceship.go` (+40 -0) 📝 `pkg/core/ssl-deployer/providers/aliyun-alb/aliyun_alb.go` (+10 -23) 📝 `pkg/core/ssl-deployer/providers/aliyun-apigw/aliyun_apigw.go` (+26 -25) 📝 `pkg/core/ssl-deployer/providers/aliyun-cas-deploy/aliyun_cas_deploy.go` (+8 -25) 📝 `pkg/core/ssl-deployer/providers/aliyun-clb/aliyun_clb.go` (+11 -11) 📝 `pkg/core/ssl-deployer/providers/aliyun-ddos/aliyun_ddos.go` (+19 -24) 📝 `pkg/core/ssl-deployer/providers/aliyun-esa/aliyun_esa.go` (+19 -24) 📝 `pkg/core/ssl-deployer/providers/aliyun-fc/aliyun_fc.go` (+11 -3) 📝 `pkg/core/ssl-deployer/providers/aliyun-ga/aliyun_ga.go` (+6 -11) 📝 `pkg/core/ssl-deployer/providers/aliyun-nlb/aliyun_nlb.go` (+18 -24) _...and 80 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 新增 DNS-01 提供商:Spaceship。关闭 #798 - **feat**: 新增部署提供商:通过腾讯云 SSL 更新云资源证书。关闭 #811 - **feat**: 部署到腾讯云各服务时支持指定接口端点(Endpoint),以适配腾讯云国际站。关闭 #811 - **fix**: 修复无法部署到雨云 RCDN 的问题。 - **fix**: 关闭 #812 - **fix**: 关闭 #815 - **chore**: 升级 go mod & 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:27 +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#1049
No description provided.