[PR #558] [MERGED] new providers & bugfix #984

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

📋 Pull Request Information

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

Base: mainHead: main


📝 Commits (10+)

  • e579cf6 feat: add baiducloud cert uploader
  • aaec840 feat: add baiducloud blb deployer
  • 5de0338 feat: add baiducloud appblb deployer
  • 4d710a1 feat: add baiducloud cert deployer
  • 597b9d0 feat: add huaweicloud scm deployer
  • 24e275f feat: add volcengine certcenter deployer
  • 7d5c714 feat: improve i18n
  • e9610ea fix: #556
  • 51c1b19 fix: #559
  • fd8ac3a feat(ui): allow select dns-01 provider on application

📊 Changes

53 files changed (+2637 additions, -181 deletions)

View changed files

📝 README.md (+2 -2)
📝 README_EN.md (+1 -1)
📝 internal/applicant/applicant.go (+1 -6)
📝 internal/applicant/providers.go (+26 -9)
📝 internal/deployer/deployer.go (+1 -6)
📝 internal/deployer/providers.go (+54 -3)
📝 internal/domain/access.go (+4 -14)
📝 internal/domain/provider.go (+6 -0)
📝 internal/pkg/core/applicant/acme-dns-01/lego-providers/cmcccloud/internal/lego.go (+1 -0)
internal/pkg/core/applicant/acme-dns-01/lego-providers/tencentcloud-eo/internal/lego.go (+207 -0)
internal/pkg/core/applicant/acme-dns-01/lego-providers/tencentcloud-eo/tencentcloud_eo.go (+41 -0)
📝 internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb_test.go (+1 -1)
📝 internal/pkg/core/deployer/providers/aliyun-waf/aliyun_waf.go (+167 -19)
internal/pkg/core/deployer/providers/baiducloud-appblb/baiducloud_appblb.go (+332 -0)
internal/pkg/core/deployer/providers/baiducloud-appblb/baiducloud_appblb_test.go (+86 -0)
internal/pkg/core/deployer/providers/baiducloud-appblb/consts.go (+10 -0)
internal/pkg/core/deployer/providers/baiducloud-blb/baiducloud_blb.go (+332 -0)
internal/pkg/core/deployer/providers/baiducloud-blb/baiducloud_blb_test.go (+86 -0)
internal/pkg/core/deployer/providers/baiducloud-blb/consts.go (+10 -0)
internal/pkg/core/deployer/providers/baiducloud-cert/baiducloud_cert.go (+68 -0)

...and 33 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 新增 DNS-01 申请提供商:腾讯云 EdgeOne。关闭 #555
  • feat: 新增部署提供商:百度智能云普通型负载均衡 BLB。
  • feat: 新增部署提供商:百度智能云应用型负载均衡 AppBLB。
  • feat: 支持部署到部分云服务商证书管理服务(如百度智能云 SSL、华为云 SCM、火山引擎证书中心等)时仅上传证书。
  • fix: 关闭 #556
  • fix: 关闭 #559
  • fix: 修复暗黑模式下登录页主题色异常。

🔄 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/558 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 3/25/2025 **Status:** ✅ Merged **Merged:** 3/26/2025 **Merged by:** [@usual2970](https://github.com/usual2970) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`e579cf6`](https://github.com/certimate-go/certimate/commit/e579cf6ceb3393da4bc134d61094f45a87fbc0d6) feat: add baiducloud cert uploader - [`aaec840`](https://github.com/certimate-go/certimate/commit/aaec840d8c488f2abef185ed0ad1bcfa5120074c) feat: add baiducloud blb deployer - [`5de0338`](https://github.com/certimate-go/certimate/commit/5de033814b1b5a50e58f732e3de62cf7addd539c) feat: add baiducloud appblb deployer - [`4d710a1`](https://github.com/certimate-go/certimate/commit/4d710a1aaf86fd119363c13a0518e99522b27688) feat: add baiducloud cert deployer - [`597b9d0`](https://github.com/certimate-go/certimate/commit/597b9d0e17d2fcb5066888650391c86b05b9da14) feat: add huaweicloud scm deployer - [`24e275f`](https://github.com/certimate-go/certimate/commit/24e275fdb3d74240c02bfda5bbbd27443ac8441d) feat: add volcengine certcenter deployer - [`7d5c714`](https://github.com/certimate-go/certimate/commit/7d5c714211df5542a718f49b6d7fc7ae4d3268b7) feat: improve i18n - [`e9610ea`](https://github.com/certimate-go/certimate/commit/e9610eaede73c0fe0642d5d4b02d06cd7f581fbd) fix: #556 - [`51c1b19`](https://github.com/certimate-go/certimate/commit/51c1b193e52a352bc51ad7dcb35cad00c41fa1c8) fix: #559 - [`fd8ac3a`](https://github.com/certimate-go/certimate/commit/fd8ac3ae375b4a76572e70e8732375b9bf188196) feat(ui): allow select dns-01 provider on application ### 📊 Changes **53 files changed** (+2637 additions, -181 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+2 -2) 📝 `README_EN.md` (+1 -1) 📝 `internal/applicant/applicant.go` (+1 -6) 📝 `internal/applicant/providers.go` (+26 -9) 📝 `internal/deployer/deployer.go` (+1 -6) 📝 `internal/deployer/providers.go` (+54 -3) 📝 `internal/domain/access.go` (+4 -14) 📝 `internal/domain/provider.go` (+6 -0) 📝 `internal/pkg/core/applicant/acme-dns-01/lego-providers/cmcccloud/internal/lego.go` (+1 -0) ➕ `internal/pkg/core/applicant/acme-dns-01/lego-providers/tencentcloud-eo/internal/lego.go` (+207 -0) ➕ `internal/pkg/core/applicant/acme-dns-01/lego-providers/tencentcloud-eo/tencentcloud_eo.go` (+41 -0) 📝 `internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb_test.go` (+1 -1) 📝 `internal/pkg/core/deployer/providers/aliyun-waf/aliyun_waf.go` (+167 -19) ➕ `internal/pkg/core/deployer/providers/baiducloud-appblb/baiducloud_appblb.go` (+332 -0) ➕ `internal/pkg/core/deployer/providers/baiducloud-appblb/baiducloud_appblb_test.go` (+86 -0) ➕ `internal/pkg/core/deployer/providers/baiducloud-appblb/consts.go` (+10 -0) ➕ `internal/pkg/core/deployer/providers/baiducloud-blb/baiducloud_blb.go` (+332 -0) ➕ `internal/pkg/core/deployer/providers/baiducloud-blb/baiducloud_blb_test.go` (+86 -0) ➕ `internal/pkg/core/deployer/providers/baiducloud-blb/consts.go` (+10 -0) ➕ `internal/pkg/core/deployer/providers/baiducloud-cert/baiducloud_cert.go` (+68 -0) _...and 33 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 新增 DNS-01 申请提供商:腾讯云 EdgeOne。关闭 #555 - **feat**: 新增部署提供商:百度智能云普通型负载均衡 BLB。 - **feat**: 新增部署提供商:百度智能云应用型负载均衡 AppBLB。 - **feat**: 支持部署到部分云服务商证书管理服务(如百度智能云 SSL、华为云 SCM、火山引擎证书中心等)时仅上传证书。 - **fix**: 关闭 #556 - **fix**: 关闭 #559 - **fix**: 修复暗黑模式下登录页主题色异常。 --- <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:09 +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#984
No description provided.