[PR #2092] [MERGED] Release 0.28.0 #16425

Open
opened 2026-08-05 04:06:07 -04:00 by saavagebueno · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/2092
Author: @mlsmaycon
Created: 6/4/2024
Status: Merged
Merged: 6/13/2024
Merged by: @mlsmaycon

Base: mainHead: 0.28.0


📝 Commits (10+)

📊 Changes

149 files changed (+6410 additions, -2611 deletions)

View changed files

📝 .github/workflows/golang-test-linux.yml (+7 -1)
📝 client/cmd/root.go (+4 -1)
📝 client/cmd/route.go (+49 -6)
📝 client/cmd/status.go (+15 -10)
📝 client/cmd/up.go (+11 -0)
client/errors/errors.go (+30 -0)
📝 client/internal/config.go (+18 -0)
📝 client/internal/connect.go (+4 -1)
client/internal/dns/consts_freebsd.go (+6 -0)
client/internal/dns/consts_linux.go (+8 -0)
📝 client/internal/dns/dbus_unix.go (+1 -1)
📝 client/internal/dns/file_parser_unix.go (+1 -1)
📝 client/internal/dns/file_parser_unix_test.go (+1 -1)
📝 client/internal/dns/file_repair_unix.go (+1 -1)
📝 client/internal/dns/file_repair_unix_test.go (+1 -1)
📝 client/internal/dns/file_unix.go (+1 -1)
📝 client/internal/dns/file_unix_test.go (+1 -1)
📝 client/internal/dns/host_unix.go (+5 -11)
📝 client/internal/dns/network_manager_unix.go (+1 -1)
📝 client/internal/dns/resolvconf_unix.go (+1 -1)

...and 80 more files

📄 Description

Describe your changes

Checklist

  • Is it a bug fix
  • Is a typo/documentation fix
  • Is a feature enhancement
  • It is a refactor
  • Created tests that fail without the change (if possible)
  • Extended the README / documentation, if necessary

🔄 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/netbirdio/netbird/pull/2092 **Author:** [@mlsmaycon](https://github.com/mlsmaycon) **Created:** 6/4/2024 **Status:** ✅ Merged **Merged:** 6/13/2024 **Merged by:** [@mlsmaycon](https://github.com/mlsmaycon) **Base:** `main` ← **Head:** `0.28.0` --- ### 📝 Commits (10+) - [`e070f37`](https://github.com/netbirdio/netbird/commit/e070f372942fb3f6db3f037936c28a61726dd789) compile client under freebsd (#1620) - [`4526f33`](https://github.com/netbirdio/netbird/commit/4526f33a0d6b72bc57c7e2dba32557646dd61f61) compile client under freebsd (#1620) - [`e3c9f1d`](https://github.com/netbirdio/netbird/commit/e3c9f1ddf99337e0ed869b5425c466bcb1af8383) Merge remote-tracking branch 'origin/0.28.0' into 0.28.0 - [`d403658`](https://github.com/netbirdio/netbird/commit/d403658edbb39ae12d01e20de483b1b33a71c9ce) Fix OS version info on FreeBSD (#2078) - [`ee79f6c`](https://github.com/netbirdio/netbird/commit/ee79f6cd0c8ab22cdd9d739710017d813c8b5f81) Add DNS routes (#1943) - [`06d2f32`](https://github.com/netbirdio/netbird/commit/06d2f32bd12f3a16e600083bbd45ed352ef74782) Merge branch 'main' into 0.28.0 - [`40fec49`](https://github.com/netbirdio/netbird/commit/40fec499a97636e9370f2130030cb3139e9f64cc) Merge branch 'main' into 0.28.0 - [`dcd25a7`](https://github.com/netbirdio/netbird/commit/dcd25a70d25a3e18fb5d5899b6130fa61552346d) Refactor sysops (#2014) - [`099d97d`](https://github.com/netbirdio/netbird/commit/099d97d7c7c21d42ac4d06ac433a211145e6b960) Never skip removing allowed IPs (#2099) - [`ef8302e`](https://github.com/netbirdio/netbird/commit/ef8302e5a07a614e5ca5c9da0deab1c35f3193da) Merge branch 'main' into 0.28.0 ### 📊 Changes **149 files changed** (+6410 additions, -2611 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/golang-test-linux.yml` (+7 -1) 📝 `client/cmd/root.go` (+4 -1) 📝 `client/cmd/route.go` (+49 -6) 📝 `client/cmd/status.go` (+15 -10) 📝 `client/cmd/up.go` (+11 -0) ➕ `client/errors/errors.go` (+30 -0) 📝 `client/internal/config.go` (+18 -0) 📝 `client/internal/connect.go` (+4 -1) ➕ `client/internal/dns/consts_freebsd.go` (+6 -0) ➕ `client/internal/dns/consts_linux.go` (+8 -0) 📝 `client/internal/dns/dbus_unix.go` (+1 -1) 📝 `client/internal/dns/file_parser_unix.go` (+1 -1) 📝 `client/internal/dns/file_parser_unix_test.go` (+1 -1) 📝 `client/internal/dns/file_repair_unix.go` (+1 -1) 📝 `client/internal/dns/file_repair_unix_test.go` (+1 -1) 📝 `client/internal/dns/file_unix.go` (+1 -1) 📝 `client/internal/dns/file_unix_test.go` (+1 -1) 📝 `client/internal/dns/host_unix.go` (+5 -11) 📝 `client/internal/dns/network_manager_unix.go` (+1 -1) 📝 `client/internal/dns/resolvconf_unix.go` (+1 -1) _...and 80 more files_ </details> ### 📄 Description ## Describe your changes ## Issue ticket number and link ### Checklist - [ ] Is it a bug fix - [ ] Is a typo/documentation fix - [x] Is a feature enhancement - [ ] It is a refactor - [ ] Created tests that fail without the change (if possible) - [ ] Extended the README / documentation, if necessary --- <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 2026-08-05 04:06:07 -04:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: DYNR/netbird#16425