[PR #346] [MERGED] v0.3.14 release #patch #407

Closed
opened 2026-03-04 01:36:42 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/346
Author: @lts-rad
Created: 8/1/2024
Status: Merged
Merged: 8/1/2024
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • 348430d [ui] DNS Log Graph
  • ee2bc02 [docs] Fix release notes
  • fa8f98c [ui] Bring back in mobile view fixes
  • 94a9807 [ui] Update setup to 3 stages
  • 716f7d7 [ui] Update setup to 3 stages
  • bcf5e80 [api] [ui] New setup (#329)
  • 1432887 [ui] On medium/desktop only show the 2nd icon for connectino type
  • 783a495 [api] add udp connection test
  • 7d0ec7a [installer] Update to dhcpcd as fallback for 24.04
  • 17ea3a7 [installer] Update base setup scripts to use upstream docker

📊 Changes

68 files changed (+922 additions, -360 deletions)

View changed files

📝 RELEASE-NOTES.md (+18 -8)
📝 api/Dockerfile (+1 -1)
📝 api/code/alerts.go (+19 -15)
📝 api/code/alerts_test.go (+34 -5)
📝 api/code/api.go (+71 -59)
📝 api/code/dhcp.go (+32 -33)
📝 api/code/firewall.go (+33 -13)
📝 api/code/go.mod (+9 -9)
📝 api/code/go.sum (+20 -0)
📝 api/code/interfaces.go (+8 -0)
📝 api/code/plugins.go (+21 -5)
📝 api/code/radios.go (+5 -0)
📝 api/code/ws.go (+45 -9)
📝 api_sample_plugin/Dockerfile (+1 -1)
📝 api_sample_plugin/docker-compose.yml (+0 -2)
📝 base/scripts/nft_rules.sh (+7 -1)
📝 base/template_configs/base/alerts.json (+1 -1)
📝 base/template_configs/base/firewall.json (+5 -0)
base/template_configs/base/interfaces.json (+1 -0)
📝 db/Dockerfile (+1 -1)

...and 48 more files

📄 Description

Fixes

  • Fix deadlock in API with Devices mutex
  • Fix setup transitions, rework setup flow

Improvements

  • Add wireguard hardening for shadow port attacks
  • Add static public routes for plugins
  • Support SPR WiFI6e hats by default in spr build images
  • Support submodules for plugin code

🔄 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/spr-networks/super/pull/346 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 8/1/2024 **Status:** ✅ Merged **Merged:** 8/1/2024 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`348430d`](https://github.com/spr-networks/super/commit/348430d4c25ab07aa95ee6ae2cd3b578e07590f4) [ui] DNS Log Graph - [`ee2bc02`](https://github.com/spr-networks/super/commit/ee2bc0229440a2970df790d92daf7437988b803c) [docs] Fix release notes - [`fa8f98c`](https://github.com/spr-networks/super/commit/fa8f98ca748318e64f41ea7b85cdf4f209ce637b) [ui] Bring back in mobile view fixes - [`94a9807`](https://github.com/spr-networks/super/commit/94a980788a498c91e1c9a63bdd7243f75623bafd) [ui] Update setup to 3 stages - [`716f7d7`](https://github.com/spr-networks/super/commit/716f7d7f9ec962f52f62785ad03f9d80c440cc89) [ui] Update setup to 3 stages - [`bcf5e80`](https://github.com/spr-networks/super/commit/bcf5e80d95f1d78050661da8c36824d66c776015) [api] [ui] New setup (#329) - [`1432887`](https://github.com/spr-networks/super/commit/1432887cecd8d8535f43ce7d52881ea07e4239c4) [ui] On medium/desktop only show the 2nd icon for connectino type - [`783a495`](https://github.com/spr-networks/super/commit/783a495f6d57e2f2c14694ebda18fa77ca8267a9) [api] add udp connection test - [`7d0ec7a`](https://github.com/spr-networks/super/commit/7d0ec7aff43a49fdef15070600d898cf4b2d2bdd) [installer] Update to dhcpcd as fallback for 24.04 - [`17ea3a7`](https://github.com/spr-networks/super/commit/17ea3a7a50b41d8ae867de6fe38c867f44322ee3) [installer] Update base setup scripts to use upstream docker ### 📊 Changes **68 files changed** (+922 additions, -360 deletions) <details> <summary>View changed files</summary> 📝 `RELEASE-NOTES.md` (+18 -8) 📝 `api/Dockerfile` (+1 -1) 📝 `api/code/alerts.go` (+19 -15) 📝 `api/code/alerts_test.go` (+34 -5) 📝 `api/code/api.go` (+71 -59) 📝 `api/code/dhcp.go` (+32 -33) 📝 `api/code/firewall.go` (+33 -13) 📝 `api/code/go.mod` (+9 -9) 📝 `api/code/go.sum` (+20 -0) 📝 `api/code/interfaces.go` (+8 -0) 📝 `api/code/plugins.go` (+21 -5) 📝 `api/code/radios.go` (+5 -0) 📝 `api/code/ws.go` (+45 -9) 📝 `api_sample_plugin/Dockerfile` (+1 -1) 📝 `api_sample_plugin/docker-compose.yml` (+0 -2) 📝 `base/scripts/nft_rules.sh` (+7 -1) 📝 `base/template_configs/base/alerts.json` (+1 -1) 📝 `base/template_configs/base/firewall.json` (+5 -0) ➕ `base/template_configs/base/interfaces.json` (+1 -0) 📝 `db/Dockerfile` (+1 -1) _...and 48 more files_ </details> ### 📄 Description Fixes * Fix deadlock in API with Devices mutex * Fix setup transitions, rework setup flow Improvements * Add wireguard hardening for shadow port attacks * Add static public routes for plugins * Support SPR WiFI6e hats by default in spr build images * Support submodules for plugin code --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-04 01:36:42 +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/super#407
No description provided.