[PR #89] [MERGED] feat: custom json marshaling implementation, replace json and yaml library #162

Closed
opened 2025-12-29 14:25:47 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/yusing/godoxy/pull/89
Author: @yusing
Created: 4/16/2025
Status: Merged
Merged: 4/16/2025
Merged by: @yusing

Base: mainHead: feat/custom-json-marshaling


📝 Commits (10+)

  • 0d859cc refactor: replace deprecated docker api types
  • 2b44ac5 chore(api): remove debug task list endpoint
  • 12a63a6 refactor: move servemux to gphttp/servemux
  • 90214ff refactor: introduce Pool interface, move agent_pool to agent module
  • fdbf1ad refactor: simplify api code
  • 1eac48e feat: debug api
  • fce96ff refactor: remove net.URL and net.CIDR types, improved unmarshal handling
  • a478dab chore: update Makefile for debug build tag
  • 8c6fe38 chore: update README
  • be87d47 chore: add gperr.Unwrap method

📊 Changes

65 files changed (+1749 additions, -205 deletions)

View changed files

📝 agent/pkg/handler/check_health_test.go (+2 -1)
📝 go.mod (+8 -1)
📝 go.sum (+24 -0)
📝 internal/api/v1/auth/oidc.go (+2 -1)
📝 internal/api/v1/auth/oidc_test.go (+2 -1)
📝 internal/api/v1/auth/userpass.go (+2 -1)
📝 internal/api/v1/auth/userpass_test.go (+2 -1)
📝 internal/api/v1/certapi/cert_info.go (+2 -1)
📝 internal/api/v1/debug/handler.go (+1 -1)
📝 internal/api/v1/dockerapi/info.go (+5 -4)
📝 internal/api/v1/dockerapi/utils.go (+2 -1)
📝 internal/api/v1/homepage_overrides.go (+1 -1)
📝 internal/api/v1/new_agent.go (+2 -1)
📝 internal/api/v1/query/query.go (+2 -1)
📝 internal/autocert/provider_test/ovh_test.go (+2 -2)
📝 internal/config/config_test.go (+1 -1)
📝 internal/gperr/base.go (+3 -3)
📝 internal/gperr/subject.go (+3 -4)
📝 internal/gperr/utils.go (+2 -2)
📝 internal/homepage/homepage.go (+5 -4)

...and 45 more files

📄 Description

No description provided


🔄 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/yusing/godoxy/pull/89 **Author:** [@yusing](https://github.com/yusing) **Created:** 4/16/2025 **Status:** ✅ Merged **Merged:** 4/16/2025 **Merged by:** [@yusing](https://github.com/yusing) **Base:** `main` ← **Head:** `feat/custom-json-marshaling` --- ### 📝 Commits (10+) - [`0d859cc`](https://github.com/yusing/godoxy/commit/0d859cc36fd0b513266a2a19eb565daae44afc02) refactor: replace deprecated docker api types - [`2b44ac5`](https://github.com/yusing/godoxy/commit/2b44ac5bcb8e0335e3c72800426c1e308ee5033f) chore(api): remove debug task list endpoint - [`12a63a6`](https://github.com/yusing/godoxy/commit/12a63a66f62c010faaf89772d214773457b570a2) refactor: move servemux to gphttp/servemux - [`90214ff`](https://github.com/yusing/godoxy/commit/90214ff752c987f7f8f3a27d3e5246f5b7f6f034) refactor: introduce Pool interface, move agent_pool to agent module - [`fdbf1ad`](https://github.com/yusing/godoxy/commit/fdbf1ad787e714952a6e58bc1b7eaa3c489d0f71) refactor: simplify api code - [`1eac48e`](https://github.com/yusing/godoxy/commit/1eac48e899167315e439bec22e0c72946986508a) feat: debug api - [`fce96ff`](https://github.com/yusing/godoxy/commit/fce96ff3bea540cd189f3af20a6205830a186995) refactor: remove net.URL and net.CIDR types, improved unmarshal handling - [`a478dab`](https://github.com/yusing/godoxy/commit/a478dab97b7ca7cac5b5b8a18c295475b093632c) chore: update Makefile for debug build tag - [`8c6fe38`](https://github.com/yusing/godoxy/commit/8c6fe38edb6e33100f27d797e5792dddfda523f3) chore: update README - [`be87d47`](https://github.com/yusing/godoxy/commit/be87d47ebbeb0be056214a4010d42697e3a16065) chore: add gperr.Unwrap method ### 📊 Changes **65 files changed** (+1749 additions, -205 deletions) <details> <summary>View changed files</summary> 📝 `agent/pkg/handler/check_health_test.go` (+2 -1) 📝 `go.mod` (+8 -1) 📝 `go.sum` (+24 -0) 📝 `internal/api/v1/auth/oidc.go` (+2 -1) 📝 `internal/api/v1/auth/oidc_test.go` (+2 -1) 📝 `internal/api/v1/auth/userpass.go` (+2 -1) 📝 `internal/api/v1/auth/userpass_test.go` (+2 -1) 📝 `internal/api/v1/certapi/cert_info.go` (+2 -1) 📝 `internal/api/v1/debug/handler.go` (+1 -1) 📝 `internal/api/v1/dockerapi/info.go` (+5 -4) 📝 `internal/api/v1/dockerapi/utils.go` (+2 -1) 📝 `internal/api/v1/homepage_overrides.go` (+1 -1) 📝 `internal/api/v1/new_agent.go` (+2 -1) 📝 `internal/api/v1/query/query.go` (+2 -1) 📝 `internal/autocert/provider_test/ovh_test.go` (+2 -2) 📝 `internal/config/config_test.go` (+1 -1) 📝 `internal/gperr/base.go` (+3 -3) 📝 `internal/gperr/subject.go` (+3 -4) 📝 `internal/gperr/utils.go` (+2 -2) 📝 `internal/homepage/homepage.go` (+5 -4) _...and 45 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 14:25:47 +01:00
adam closed this issue 2025-12-29 14:25:47 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/godoxy-yusing#162