[PR #255] refactor(network): migrate net.IP to netip #6988

Open
opened 2026-06-18 18:52:37 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fosrl/newt/pull/255
Author: @LaurenceJJones
Created: 3/6/2026
Status: 🔄 Open

Base: devHead: migrate-to-netip


📝 Commits (10+)

  • 71c5bf7 update template
  • 348b8f6 Try to fix overwriting config file
  • f287888 Bump the prod-minor-updates group across 1 directory with 2 updates
  • fb110ba Merge pull request #156 from fosrl/dependabot/go_modules/prod-minor-updates-51461da29c
  • b383cec Merge pull request #157 from fosrl/dev
  • 552617c Bump github.com/docker/docker in the prod-patch-updates group
  • c729ab5 Bump the prod-minor-updates group with 2 updates
  • c086e69 Adding OpenTelemetry Metrics and Tracing
  • 9fec22a Merge pull request #159 from fosrl/dependabot/go_modules/prod-minor-updates-a55d2abe4a
  • 6048f24 Merge pull request #158 from fosrl/dependabot/go_modules/prod-patch-updates-46361b25de

📊 Changes

99 files changed (+18538 additions, -1102 deletions)

View changed files

.env.example (+5 -0)
.github/DISCUSSION_TEMPLATE/feature-requests.yml (+47 -0)
.github/ISSUE_TEMPLATE/1.bug_report.yml (+51 -0)
.github/ISSUE_TEMPLATE/config.yml (+8 -0)
📝 .github/dependabot.yml (+5 -0)
📝 .github/workflows/cicd.yml (+611 -56)
.github/workflows/mirror.yaml (+132 -0)
.github/workflows/nix-build.yml (+23 -0)
.github/workflows/nix-dependabot-update-hash.yml (+48 -0)
.github/workflows/stale-bot.yml (+37 -0)
📝 .github/workflows/test.yml (+24 -13)
📝 .gitignore (+6 -2)
📝 .go-version (+1 -1)
📝 CONTRIBUTING.md (+2 -6)
📝 Dockerfile (+12 -5)
📝 Makefile (+50 -17)
📝 README.md (+7 -157)
📝 SECURITY.md (+1 -1)
authdaemon.go (+150 -0)
authdaemon/connection.go (+27 -0)

...and 79 more files

📄 Description

Community Contribution License Agreement

By creating this pull request, I grant the project maintainers an unlimited,
perpetual license to use, modify, and redistribute these contributions under any terms they
choose, including both the AGPLv3 and the Fossorial Commercial license terms. I
represent that I have the right to grant this license for all contributed content.

Description

Simply migrate from net.ip to netip golang package which has improved code and access methods

How to test?

simply internal only changes.


🔄 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/fosrl/newt/pull/255 **Author:** [@LaurenceJJones](https://github.com/LaurenceJJones) **Created:** 3/6/2026 **Status:** 🔄 Open **Base:** `dev` ← **Head:** `migrate-to-netip` --- ### 📝 Commits (10+) - [`71c5bf7`](https://github.com/fosrl/newt/commit/71c5bf7e65f7fa7ab090a91c25195f4815cd7226) update template - [`348b8f6`](https://github.com/fosrl/newt/commit/348b8f6b940adaf0b60826567c239b0a44204fd6) Try to fix overwriting config file - [`f287888`](https://github.com/fosrl/newt/commit/f2878884807a868fae3133eef1a15b8d9dcb3870) Bump the prod-minor-updates group across 1 directory with 2 updates - [`fb110ba`](https://github.com/fosrl/newt/commit/fb110ba2a1744c0911a5ded0a6e1f6cf2d5f6232) Merge pull request #156 from fosrl/dependabot/go_modules/prod-minor-updates-51461da29c - [`b383cec`](https://github.com/fosrl/newt/commit/b383cec0b0713c2a48c85db2a2b78154bb31c56b) Merge pull request #157 from fosrl/dev - [`552617c`](https://github.com/fosrl/newt/commit/552617cbb558f5c192d37f9caca5e2f43ea8b400) Bump github.com/docker/docker in the prod-patch-updates group - [`c729ab5`](https://github.com/fosrl/newt/commit/c729ab5fc6920819cd03b8b11ee570b174be6a23) Bump the prod-minor-updates group with 2 updates - [`c086e69`](https://github.com/fosrl/newt/commit/c086e69dd0778db513ee19fde74be005c9d6ac94) Adding OpenTelemetry Metrics and Tracing - [`9fec22a`](https://github.com/fosrl/newt/commit/9fec22a53b713db2065984d7603b131d8a12e5fb) Merge pull request #159 from fosrl/dependabot/go_modules/prod-minor-updates-a55d2abe4a - [`6048f24`](https://github.com/fosrl/newt/commit/6048f244f14e8bb6f45c45c1145c4c6a85bbfd39) Merge pull request #158 from fosrl/dependabot/go_modules/prod-patch-updates-46361b25de ### 📊 Changes **99 files changed** (+18538 additions, -1102 deletions) <details> <summary>View changed files</summary> ➕ `.env.example` (+5 -0) ➕ `.github/DISCUSSION_TEMPLATE/feature-requests.yml` (+47 -0) ➕ `.github/ISSUE_TEMPLATE/1.bug_report.yml` (+51 -0) ➕ `.github/ISSUE_TEMPLATE/config.yml` (+8 -0) 📝 `.github/dependabot.yml` (+5 -0) 📝 `.github/workflows/cicd.yml` (+611 -56) ➕ `.github/workflows/mirror.yaml` (+132 -0) ➕ `.github/workflows/nix-build.yml` (+23 -0) ➕ `.github/workflows/nix-dependabot-update-hash.yml` (+48 -0) ➕ `.github/workflows/stale-bot.yml` (+37 -0) 📝 `.github/workflows/test.yml` (+24 -13) 📝 `.gitignore` (+6 -2) 📝 `.go-version` (+1 -1) 📝 `CONTRIBUTING.md` (+2 -6) 📝 `Dockerfile` (+12 -5) 📝 `Makefile` (+50 -17) 📝 `README.md` (+7 -157) 📝 `SECURITY.md` (+1 -1) ➕ `authdaemon.go` (+150 -0) ➕ `authdaemon/connection.go` (+27 -0) _...and 79 more files_ </details> ### 📄 Description ## Community Contribution License Agreement By creating this pull request, I grant the project maintainers an unlimited, perpetual license to use, modify, and redistribute these contributions under any terms they choose, including both the AGPLv3 and the Fossorial Commercial license terms. I represent that I have the right to grant this license for all contributed content. ## Description Simply migrate from net.ip to netip golang package which has improved code and access methods ## How to test? simply internal only changes. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-06-18 18:52:37 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/newt#6988