[PR #1121] [MERGED] IP address certificates #1149

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

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/1121
Author: @fudiwei
Created: 12/24/2025
Status: Merged
Merged: 12/25/2025
Merged by: @fudiwei

Base: mainHead: main


📝 Commits (10+)

  • 027bc71 fix(ui): incorrect regexp to determine whether is a domain name
  • b1b9b87 feat: support uploading ip addresses certificates
  • ea22bda feat: support deploying ip addresses certificates
  • c79762a refactor: extract x509 utils
  • c76d18d refactor: clean code
  • e0e1283 feat: validate pem certificate or private key in frontend
  • f198e7b feat: support applying ip addresses certificates
  • bdfc8d0 feat: allow fallback to scp when use ssh during http-01 challenge
  • 0f0612b chore(deps): upgrade gomod dependencies
  • 4ff6418 chore(deps): upgrade npm dependencies

📊 Changes

68 files changed (+1957 additions, -1148 deletions)

View changed files

📝 cmd/intercmd.go (+1 -0)
📝 go.mod (+10 -10)
📝 go.sum (+21 -0)
📝 internal/certacme/client_obtain.go (+3 -2)
📝 internal/certificate/service.go (+1 -41)
📝 internal/domain/certificate.go (+2 -1)
📝 internal/domain/dtos/certificate.go (+2 -20)
📝 internal/domain/workflow.go (+7 -2)
📝 internal/rest/handlers/certificates.go (+0 -32)
📝 internal/workflow/engine/executor_bizapply.go (+24 -1)
📝 internal/workflow/engine/executor_bizmonitor.go (+3 -2)
migrations/1766419200_upgrade_v0.4.11.go (+0 -30)
migrations/1766592000_upgrade_v0.4.11.go (+220 -0)
📝 pkg/core/deployer/providers/webhook/webhook.go (+5 -4)
pkg/utils/cert/x509/x509.go (+64 -0)
📝 ui/package-lock.json (+310 -115)
📝 ui/package.json (+11 -5)
📝 ui/src/App.tsx (+2 -1)
📝 ui/src/api/certificates.ts (+0 -48)
📝 ui/src/components/access/AccessEditDrawer.tsx (+4 -3)

...and 48 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 支持申请、上传、部署 IP 证书。
  • feat: 前端验证 PEM 证书或私钥。
  • refactor: 优化部分代码。
  • chore: 升级 gomod & 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/1121 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 12/24/2025 **Status:** ✅ Merged **Merged:** 12/25/2025 **Merged by:** [@fudiwei](https://github.com/fudiwei) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`027bc71`](https://github.com/certimate-go/certimate/commit/027bc7121ed01ceb4166c313df7f3e1b00630877) fix(ui): incorrect regexp to determine whether is a domain name - [`b1b9b87`](https://github.com/certimate-go/certimate/commit/b1b9b871d6953ed8c57017510b61193ba653467d) feat: support uploading ip addresses certificates - [`ea22bda`](https://github.com/certimate-go/certimate/commit/ea22bdacab3f6b2e9fc416ee25f3f4b24bc5bb66) feat: support deploying ip addresses certificates - [`c79762a`](https://github.com/certimate-go/certimate/commit/c79762ab4567b161925939a1e92e0a01fad3488f) refactor: extract x509 utils - [`c76d18d`](https://github.com/certimate-go/certimate/commit/c76d18de6e2863a46e1ce50c9e351abccf41db39) refactor: clean code - [`e0e1283`](https://github.com/certimate-go/certimate/commit/e0e128384022cc502e3d7b489faef155b38a2a87) feat: validate pem certificate or private key in frontend - [`f198e7b`](https://github.com/certimate-go/certimate/commit/f198e7bf6047c246ccd960f3bef13015c6c2e610) feat: support applying ip addresses certificates - [`bdfc8d0`](https://github.com/certimate-go/certimate/commit/bdfc8d0779167f483ea9015927027d952487cbc0) feat: allow fallback to scp when use ssh during http-01 challenge - [`0f0612b`](https://github.com/certimate-go/certimate/commit/0f0612bdf7d814eae12133977904e4c125eea373) chore(deps): upgrade gomod dependencies - [`4ff6418`](https://github.com/certimate-go/certimate/commit/4ff64182a058352016ceee01fc9e21139ff6831b) chore(deps): upgrade npm dependencies ### 📊 Changes **68 files changed** (+1957 additions, -1148 deletions) <details> <summary>View changed files</summary> 📝 `cmd/intercmd.go` (+1 -0) 📝 `go.mod` (+10 -10) 📝 `go.sum` (+21 -0) 📝 `internal/certacme/client_obtain.go` (+3 -2) 📝 `internal/certificate/service.go` (+1 -41) 📝 `internal/domain/certificate.go` (+2 -1) 📝 `internal/domain/dtos/certificate.go` (+2 -20) 📝 `internal/domain/workflow.go` (+7 -2) 📝 `internal/rest/handlers/certificates.go` (+0 -32) 📝 `internal/workflow/engine/executor_bizapply.go` (+24 -1) 📝 `internal/workflow/engine/executor_bizmonitor.go` (+3 -2) ➖ `migrations/1766419200_upgrade_v0.4.11.go` (+0 -30) ➕ `migrations/1766592000_upgrade_v0.4.11.go` (+220 -0) 📝 `pkg/core/deployer/providers/webhook/webhook.go` (+5 -4) ➕ `pkg/utils/cert/x509/x509.go` (+64 -0) 📝 `ui/package-lock.json` (+310 -115) 📝 `ui/package.json` (+11 -5) 📝 `ui/src/App.tsx` (+2 -1) 📝 `ui/src/api/certificates.ts` (+0 -48) 📝 `ui/src/components/access/AccessEditDrawer.tsx` (+4 -3) _...and 48 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 支持申请、上传、部署 IP 证书。 - **feat**: 前端验证 PEM 证书或私钥。 - **refactor**: 优化部分代码。 - **chore**: 升级 gomod & 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:55 +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#1149
No description provided.