[PR #1030] [MERGED] new providers #1111

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

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/1030
Author: @fudiwei
Created: 11/5/2025
Status: Merged
Merged: 11/6/2025
Merged by: @fudiwei

Base: mainHead: main


📝 Commits (10+)

  • 781deac fix: custom private key validation
  • 035829c build: go build -trimpath
  • 7b087ec chore(ui): improve i18n
  • 3c00aca build(ui): i18n chunk
  • f4856a4 feat(provider): new acme dns-01 provider: arvancloud
  • 2a4269e feat(provider): new acme dns-01 provider: dnsmadeeasy
  • 2dead29 feat(provider): new acme dns-01 provider: dynu
  • ab61cad feat(provider): new acme dns-01 provider: infomaniak
  • 03a9644 feat(provider): new acme dns-01 provider: ovhcloud
  • 6179fac update README

📊 Changes

104 files changed (+1459 additions, -207 deletions)

View changed files

📝 .github/workflows/release.yml (+3 -3)
📝 .goreleaser.yml (+4 -2)
📝 Dockerfile (+1 -1)
📝 Dockerfile.gh (+1 -1)
📝 Makefile (+1 -1)
📝 README.md (+1 -1)
📝 README_EN.md (+2 -2)
📝 go.mod (+3 -0)
📝 go.sum (+9 -0)
internal/certapply/applicators/sp_arvancloud.go (+29 -0)
internal/certapply/applicators/sp_dnsmadeeasy.go (+30 -0)
internal/certapply/applicators/sp_dynu.go (+29 -0)
internal/certapply/applicators/sp_infomaniak.go (+29 -0)
internal/certapply/applicators/sp_ovhcloud.go (+35 -0)
internal/certdeploy/deployers/sp_ksyun_cdn.go (+29 -0)
📝 internal/certificate/service.go (+8 -8)
📝 internal/domain/access.go (+36 -4)
📝 internal/domain/provider.go (+12 -1)
📝 internal/workflow/engine/executor_bizapply.go (+28 -2)
pkg/core/ssl-applicator/acme-dns01/providers/arvancloud/arvancloud.go (+38 -0)

...and 80 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 新增 DNS-01 提供商:ArvanCloud。
  • feat: 新增 DNS-01 提供商:DNS Made Easy。
  • feat: 新增 DNS-01 提供商:Dynu。
  • feat: 新增 DNS-01 提供商:Infomaniak。
  • feat: 新增 DNS-01 提供商:OVHcloud。
  • feat: 新增部署提供商:金山云 CDN 内容分发网络。
  • build: go build 增加 -trimpath 参数。
  • build: 前端国际化多语言分包。

🔄 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/1030 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 11/5/2025 **Status:** ✅ Merged **Merged:** 11/6/2025 **Merged by:** [@fudiwei](https://github.com/fudiwei) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`781deac`](https://github.com/certimate-go/certimate/commit/781deac79f9b175a091bb842b9297fc97510a4df) fix: custom private key validation - [`035829c`](https://github.com/certimate-go/certimate/commit/035829c68294c5cd899761d1415fb103716990a3) build: go build -trimpath - [`7b087ec`](https://github.com/certimate-go/certimate/commit/7b087ec7a8e8f3afdd19c8c842894804f45664a3) chore(ui): improve i18n - [`3c00aca`](https://github.com/certimate-go/certimate/commit/3c00acac659a8c2f85b8918a0aba3f04aecf8a12) build(ui): i18n chunk - [`f4856a4`](https://github.com/certimate-go/certimate/commit/f4856a4fcdedda7200db60e140921a0293794672) feat(provider): new acme dns-01 provider: arvancloud - [`2a4269e`](https://github.com/certimate-go/certimate/commit/2a4269e68f6099e8e9606b880d6f9d14f13ffa41) feat(provider): new acme dns-01 provider: dnsmadeeasy - [`2dead29`](https://github.com/certimate-go/certimate/commit/2dead299ff03b08ecafc15fe904f02b031ee2745) feat(provider): new acme dns-01 provider: dynu - [`ab61cad`](https://github.com/certimate-go/certimate/commit/ab61cadd371f4a0a984eb4b7c1674a390ed8a1db) feat(provider): new acme dns-01 provider: infomaniak - [`03a9644`](https://github.com/certimate-go/certimate/commit/03a9644307484c37063c33d04749cec3f1b3b2fc) feat(provider): new acme dns-01 provider: ovhcloud - [`6179fac`](https://github.com/certimate-go/certimate/commit/6179faca5af06ebdb26d6f1bd5c79bedf16dbcc5) update README ### 📊 Changes **104 files changed** (+1459 additions, -207 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/release.yml` (+3 -3) 📝 `.goreleaser.yml` (+4 -2) 📝 `Dockerfile` (+1 -1) 📝 `Dockerfile.gh` (+1 -1) 📝 `Makefile` (+1 -1) 📝 `README.md` (+1 -1) 📝 `README_EN.md` (+2 -2) 📝 `go.mod` (+3 -0) 📝 `go.sum` (+9 -0) ➕ `internal/certapply/applicators/sp_arvancloud.go` (+29 -0) ➕ `internal/certapply/applicators/sp_dnsmadeeasy.go` (+30 -0) ➕ `internal/certapply/applicators/sp_dynu.go` (+29 -0) ➕ `internal/certapply/applicators/sp_infomaniak.go` (+29 -0) ➕ `internal/certapply/applicators/sp_ovhcloud.go` (+35 -0) ➕ `internal/certdeploy/deployers/sp_ksyun_cdn.go` (+29 -0) 📝 `internal/certificate/service.go` (+8 -8) 📝 `internal/domain/access.go` (+36 -4) 📝 `internal/domain/provider.go` (+12 -1) 📝 `internal/workflow/engine/executor_bizapply.go` (+28 -2) ➕ `pkg/core/ssl-applicator/acme-dns01/providers/arvancloud/arvancloud.go` (+38 -0) _...and 80 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 新增 DNS-01 提供商:ArvanCloud。 - **feat**: 新增 DNS-01 提供商:DNS Made Easy。 - **feat**: 新增 DNS-01 提供商:Dynu。 - **feat**: 新增 DNS-01 提供商:Infomaniak。 - **feat**: 新增 DNS-01 提供商:OVHcloud。 - **feat**: 新增部署提供商:金山云 CDN 内容分发网络。 - **build**: go build 增加 `-trimpath` 参数。 - **build**: 前端国际化多语言分包。 --- <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:44 +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#1111
No description provided.