[PR #145] [MERGED] Maintenance: use native Go HTTP client #626

Closed
opened 2025-11-20 04:25:29 -05:00 by saavagebueno · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qdm12/ddns-updater/pull/145
Author: @qdm12
Created: 1/17/2021
Status: Merged
Merged: 1/17/2021
Merged by: @qdm12

Base: masterHead: http-client


📝 Commits (3)

  • dde28eb Maintenance: cloudflare setHeaders receiver
  • a8a8d57 Maintenance: DNSPod: encode values in body only
  • 06c9271 Maintenance: Use native HTTP client

📊 Changes

34 files changed (+669 additions, -374 deletions)

View changed files

📝 cmd/updater/main.go (+2 -3)
📝 go.mod (+0 -1)
📝 go.sum (+0 -2)
📝 internal/network/publicip.go (+21 -6)
📝 internal/network/publicip_test.go (+17 -7)
internal/network/requests.go (+0 -22)
internal/network/roundtrip_test.go (+11 -0)
📝 internal/settings/cloudflare.go (+65 -40)
📝 internal/settings/ddnss.go (+20 -14)
📝 internal/settings/digitalocean.go (+56 -33)
📝 internal/settings/dnsomatic.go (+20 -10)
📝 internal/settings/dnspod.go (+35 -18)
📝 internal/settings/dondominio.go (+22 -14)
📝 internal/settings/dreamhost.go (+66 -37)
📝 internal/settings/duckdns.go (+17 -8)
📝 internal/settings/dyn.go (+18 -8)
📝 internal/settings/dynv6.go (+12 -7)
📝 internal/settings/errors.go (+1 -0)
📝 internal/settings/godaddy.go (+31 -14)
📝 internal/settings/google.go (+14 -7)

...and 14 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/qdm12/ddns-updater/pull/145 **Author:** [@qdm12](https://github.com/qdm12) **Created:** 1/17/2021 **Status:** ✅ Merged **Merged:** 1/17/2021 **Merged by:** [@qdm12](https://github.com/qdm12) **Base:** `master` ← **Head:** `http-client` --- ### 📝 Commits (3) - [`dde28eb`](https://github.com/qdm12/ddns-updater/commit/dde28ebd1f0651f75c2f8b6177b393a0e0786ba1) Maintenance: cloudflare setHeaders receiver - [`a8a8d57`](https://github.com/qdm12/ddns-updater/commit/a8a8d5793beb8a2896045a183ca2356eed366960) Maintenance: DNSPod: encode values in body only - [`06c9271`](https://github.com/qdm12/ddns-updater/commit/06c9271dffc2f4bb5a6f7c3229ff04d9cedba8db) Maintenance: Use native HTTP client ### 📊 Changes **34 files changed** (+669 additions, -374 deletions) <details> <summary>View changed files</summary> 📝 `cmd/updater/main.go` (+2 -3) 📝 `go.mod` (+0 -1) 📝 `go.sum` (+0 -2) 📝 `internal/network/publicip.go` (+21 -6) 📝 `internal/network/publicip_test.go` (+17 -7) ➖ `internal/network/requests.go` (+0 -22) ➕ `internal/network/roundtrip_test.go` (+11 -0) 📝 `internal/settings/cloudflare.go` (+65 -40) 📝 `internal/settings/ddnss.go` (+20 -14) 📝 `internal/settings/digitalocean.go` (+56 -33) 📝 `internal/settings/dnsomatic.go` (+20 -10) 📝 `internal/settings/dnspod.go` (+35 -18) 📝 `internal/settings/dondominio.go` (+22 -14) 📝 `internal/settings/dreamhost.go` (+66 -37) 📝 `internal/settings/duckdns.go` (+17 -8) 📝 `internal/settings/dyn.go` (+18 -8) 📝 `internal/settings/dynv6.go` (+12 -7) 📝 `internal/settings/errors.go` (+1 -0) 📝 `internal/settings/godaddy.go` (+31 -14) 📝 `internal/settings/google.go` (+14 -7) _...and 14 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>
saavagebueno added the pull-request label 2025-11-20 04:25:29 -05:00
Sign in to join this conversation.