[PR #1002] [MERGED] new providers #1099

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

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/1002
Author: @fudiwei
Created: 10/22/2025
Status: Merged
Merged: 10/27/2025
Merged by: @fudiwei

Base: mainHead: main


📝 Commits (10+)

  • 80cf2f4 fix: typo
  • 34ca09a Merge branch 'main' of https://github.com/fudiwei/certimate
  • 1f6ef6d feat(provider): new acme dns-01 provider: technitiumdns
  • c2a2ad6 feat(provider): new acme dns-01 provider: rfc2136
  • f4ea0a0 feat(provider): new acme dns-01 provider: bookmyname
  • 715dc20 feat(provider): new acme dns-01 provider: hostinger
  • 39b7ccf feat(provider): new acme dns-01 provider: linode
  • fba2c23 chore(ui): improve i18n
  • 11b8e20 feat(provider): new deployment provider: baotapanelgo
  • 4c87c17 feat: remove deployment provider: edgio applications

📊 Changes

86 files changed (+3098 additions, -1852 deletions)

View changed files

📝 go.mod (+1 -3)
📝 go.sum (+4 -0)
internal/certapply/applicators/sp_bookmyname.go (+30 -0)
internal/certapply/applicators/sp_gandinet.go (+29 -0)
📝 internal/certapply/applicators/sp_hetzner.go (+1 -1)
internal/certapply/applicators/sp_hostinger.go (+29 -0)
internal/certapply/applicators/sp_ionos.go (+30 -0)
internal/certapply/applicators/sp_linode.go (+29 -0)
internal/certapply/applicators/sp_rfc2136.go (+33 -0)
internal/certapply/applicators/sp_technitiumdns.go (+31 -0)
internal/certdeploy/deployers/sp_baotapanelgo_console.go (+28 -0)
internal/certdeploy/deployers/sp_baotapanelgo_site.go (+29 -0)
internal/certdeploy/deployers/sp_edgio_applications.go (+0 -28)
📝 internal/domain/access.go (+54 -17)
📝 internal/domain/provider.go (+22 -6)
📝 internal/workflow/engine/executor_bizapply.go (+1 -1)
📝 internal/workflow/engine/executor_condition.go (+2 -2)
📝 internal/workflow/engine/executor_trycatch.go (+3 -3)
pkg/core/ssl-applicator/acme-dns01/providers/bookmyname/bookmyname.go (+40 -0)
pkg/core/ssl-applicator/acme-dns01/providers/gandinet/gandinet.go (+38 -0)

...and 66 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 新增 DNS-01 提供商:Technitium DNS。关闭 #978
  • feat: 新增 DNS-01 提供商:RFC 2136。
  • feat: 新增 DNS-01 提供商:BookMyName。
  • feat: 新增 DNS-01 提供商:Gandi.net。
  • feat: 新增 DNS-01 提供商:Hostinger。
  • feat: 新增 DNS-01 提供商:IONOS。
  • feat: 新增 DNS-01 提供商:Linode。
  • feat: 新增部署提供商:宝塔面板极速版。关闭 #968
  • feat: 移除部署提供商:Edgio Applications。
  • chore: 调整部分文案。
  • chore: 升级 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/1002 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 10/22/2025 **Status:** ✅ Merged **Merged:** 10/27/2025 **Merged by:** [@fudiwei](https://github.com/fudiwei) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`80cf2f4`](https://github.com/certimate-go/certimate/commit/80cf2f44c019eb05abe44f2e2f00f3103879968d) fix: typo - [`34ca09a`](https://github.com/certimate-go/certimate/commit/34ca09a7fc490d5843ea0650c54242e5567e6cb8) Merge branch 'main' of https://github.com/fudiwei/certimate - [`1f6ef6d`](https://github.com/certimate-go/certimate/commit/1f6ef6dcb37d343441e6837f1cb4ddabdcacdd9f) feat(provider): new acme dns-01 provider: technitiumdns - [`c2a2ad6`](https://github.com/certimate-go/certimate/commit/c2a2ad6cb0404803ec5583cac2db2de3f172316a) feat(provider): new acme dns-01 provider: rfc2136 - [`f4ea0a0`](https://github.com/certimate-go/certimate/commit/f4ea0a071f0743828b6ab083c09b5e3a104a7faf) feat(provider): new acme dns-01 provider: bookmyname - [`715dc20`](https://github.com/certimate-go/certimate/commit/715dc20c73fcf9c1ebb127412d4e5870a29ccce7) feat(provider): new acme dns-01 provider: hostinger - [`39b7ccf`](https://github.com/certimate-go/certimate/commit/39b7ccfa0bce9c224486b3c36b968812beaf5611) feat(provider): new acme dns-01 provider: linode - [`fba2c23`](https://github.com/certimate-go/certimate/commit/fba2c23e88c0f33951b99b5d8875e24446a405db) chore(ui): improve i18n - [`11b8e20`](https://github.com/certimate-go/certimate/commit/11b8e2065934abaf7b70b9dd456a9ec2de35342e) feat(provider): new deployment provider: baotapanelgo - [`4c87c17`](https://github.com/certimate-go/certimate/commit/4c87c173564d1f42f80d8975cb8489bc8d8b925e) feat: remove deployment provider: edgio applications ### 📊 Changes **86 files changed** (+3098 additions, -1852 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+1 -3) 📝 `go.sum` (+4 -0) ➕ `internal/certapply/applicators/sp_bookmyname.go` (+30 -0) ➕ `internal/certapply/applicators/sp_gandinet.go` (+29 -0) 📝 `internal/certapply/applicators/sp_hetzner.go` (+1 -1) ➕ `internal/certapply/applicators/sp_hostinger.go` (+29 -0) ➕ `internal/certapply/applicators/sp_ionos.go` (+30 -0) ➕ `internal/certapply/applicators/sp_linode.go` (+29 -0) ➕ `internal/certapply/applicators/sp_rfc2136.go` (+33 -0) ➕ `internal/certapply/applicators/sp_technitiumdns.go` (+31 -0) ➕ `internal/certdeploy/deployers/sp_baotapanelgo_console.go` (+28 -0) ➕ `internal/certdeploy/deployers/sp_baotapanelgo_site.go` (+29 -0) ➖ `internal/certdeploy/deployers/sp_edgio_applications.go` (+0 -28) 📝 `internal/domain/access.go` (+54 -17) 📝 `internal/domain/provider.go` (+22 -6) 📝 `internal/workflow/engine/executor_bizapply.go` (+1 -1) 📝 `internal/workflow/engine/executor_condition.go` (+2 -2) 📝 `internal/workflow/engine/executor_trycatch.go` (+3 -3) ➕ `pkg/core/ssl-applicator/acme-dns01/providers/bookmyname/bookmyname.go` (+40 -0) ➕ `pkg/core/ssl-applicator/acme-dns01/providers/gandinet/gandinet.go` (+38 -0) _...and 66 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 新增 DNS-01 提供商:Technitium DNS。关闭 #978 - **feat**: 新增 DNS-01 提供商:RFC 2136。 - **feat**: 新增 DNS-01 提供商:BookMyName。 - **feat**: 新增 DNS-01 提供商:Gandi.net。 - **feat**: 新增 DNS-01 提供商:Hostinger。 - **feat**: 新增 DNS-01 提供商:IONOS。 - **feat**: 新增 DNS-01 提供商:Linode。 - **feat**: 新增部署提供商:宝塔面板极速版。关闭 #968 - **feat**: 移除部署提供商:Edgio Applications。 - **chore**: 调整部分文案。 - **chore**: 升级 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:41 +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#1099
No description provided.