[PR #324] [MERGED] Noble Numbat Images & New Release #patch #401

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

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/324
Author: @lts-rad
Created: 5/9/2024
Status: Merged
Merged: 5/10/2024
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • 9e5cbe9 [api] Container Interface Rule fixes
  • cb1a8a4 [api] Remove log message, container rule filtered earlier for this
  • 7a4b8f0 [api] Refactor
  • 39cddbf [testing] Update test 200 handling and compose commands/ubuntu version
  • 81c0606 [testing] Fix e2e fw test
  • 1279115 [api] Remove log message
  • 55b42c0 [api] Fix delete verdict map names
  • b219978 [testing] fix tests deps and 401
  • 83fe45d [api] Filter api_interfaces differently when evaluating ruleset for container interfaces
  • f2d73df [api] Clean up no ifname when devices are not connected

📊 Changes

68 files changed (+3004 additions, -1590 deletions)

View changed files

📝 README.md (+10 -9)
📝 RELEASE-NOTES.md (+17 -0)
📝 api/code/alerts.go (+1 -1)
📝 api/code/api.go (+102 -26)
📝 api/code/auth.go (+7 -2)
📝 api/code/firewall.go (+0 -3)
📝 docker-compose-test.yml (+1 -1)
📝 docker-compose-virt.yml (+9 -1)
📝 docker-compose.yml (+1 -1)
📝 frontend/ios/Podfile.lock (+2 -2)
📝 frontend/ios/spr.xcodeproj/project.pbxproj (+6 -10)
📝 frontend/src/DeviceInfo.ios.js (+1 -1)
📝 frontend/src/__tests__/AlertUtil.js (+16 -8)
📝 frontend/src/__tests__/DeviceList.js (+3 -2)
📝 frontend/src/__tests__/Pfw.js (+1 -1)
📝 frontend/src/api/API.js (+13 -7)
frontend/src/components/ActionSheet.js (+83 -0)
frontend/src/components/Alerts/AlertChart.js (+9 -0)
frontend/src/components/Alerts/AlertChart.web.js (+83 -0)
📝 frontend/src/components/Alerts/AlertTemplates.js (+41 -1)

...and 48 more files

📄 Description

Big changes:

  • Image builder set to 24.04 base.

Critical bug fixes:

  • Plugin events from superd introduced a problem with older versions of docker, causing restart issues. now fixed in dev branch
  • Fixed incorrect UI redirect when no devices with a MAC address were left

UI Improvements

  • New Device view, faster, with sorting by IP, Time, Name, Tag & Group
  • Rendered Devices are now clickable throughout the UI
  • WiFi Channel selection fixed. It would hang on the wrong band when switching interfaces
  • Moved version check into badge on top instead of popups
  • Alerts view now categorizes by alert type and are searchable
  • Simple field counts for the Alerts & Events views
  • Container networking is now under a Containers Tab under System Info
  • Arp under System Info -> Network Info Tab
  • Supernetworks view is now "DHCP Settings"

🔄 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/324 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 5/9/2024 **Status:** ✅ Merged **Merged:** 5/10/2024 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`9e5cbe9`](https://github.com/spr-networks/super/commit/9e5cbe9cb64f9c3d8369ace036ce57f3d7eab8f6) [api] Container Interface Rule fixes - [`cb1a8a4`](https://github.com/spr-networks/super/commit/cb1a8a41b1e9a80db343ac90b6abcc89ec0e5a66) [api] Remove log message, container rule filtered earlier for this - [`7a4b8f0`](https://github.com/spr-networks/super/commit/7a4b8f01d8c4e094586e88c7acbaff97f20067ea) [api] Refactor - [`39cddbf`](https://github.com/spr-networks/super/commit/39cddbf59034160ee78726bafc9bf7d0aeaa41d7) [testing] Update test 200 handling and compose commands/ubuntu version - [`81c0606`](https://github.com/spr-networks/super/commit/81c0606ccbbd2f8b53a643276d2b1e17324e4435) [testing] Fix e2e fw test - [`1279115`](https://github.com/spr-networks/super/commit/1279115a4c1dcecabe903d845bf6ef26d41c6d77) [api] Remove log message - [`55b42c0`](https://github.com/spr-networks/super/commit/55b42c09e13c4b0f9622a69234d75bc754a01fb4) [api] Fix delete verdict map names - [`b219978`](https://github.com/spr-networks/super/commit/b219978864c58d7abab095bbc89f6902e8c1ec93) [testing] fix tests deps and 401 - [`83fe45d`](https://github.com/spr-networks/super/commit/83fe45dadb5a6560869b5d4407b818ceb2cb091c) [api] Filter api_interfaces differently when evaluating ruleset for container interfaces - [`f2d73df`](https://github.com/spr-networks/super/commit/f2d73df980607247ff434451748aff3bcdc17cb4) [api] Clean up no ifname when devices are not connected ### 📊 Changes **68 files changed** (+3004 additions, -1590 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+10 -9) 📝 `RELEASE-NOTES.md` (+17 -0) 📝 `api/code/alerts.go` (+1 -1) 📝 `api/code/api.go` (+102 -26) 📝 `api/code/auth.go` (+7 -2) 📝 `api/code/firewall.go` (+0 -3) 📝 `docker-compose-test.yml` (+1 -1) 📝 `docker-compose-virt.yml` (+9 -1) 📝 `docker-compose.yml` (+1 -1) 📝 `frontend/ios/Podfile.lock` (+2 -2) 📝 `frontend/ios/spr.xcodeproj/project.pbxproj` (+6 -10) 📝 `frontend/src/DeviceInfo.ios.js` (+1 -1) 📝 `frontend/src/__tests__/AlertUtil.js` (+16 -8) 📝 `frontend/src/__tests__/DeviceList.js` (+3 -2) 📝 `frontend/src/__tests__/Pfw.js` (+1 -1) 📝 `frontend/src/api/API.js` (+13 -7) ➕ `frontend/src/components/ActionSheet.js` (+83 -0) ➕ `frontend/src/components/Alerts/AlertChart.js` (+9 -0) ➕ `frontend/src/components/Alerts/AlertChart.web.js` (+83 -0) 📝 `frontend/src/components/Alerts/AlertTemplates.js` (+41 -1) _...and 48 more files_ </details> ### 📄 Description Big changes: - Image builder set to 24.04 base. Critical bug fixes: - Plugin events from superd introduced a problem with older versions of docker, causing restart issues. now fixed in dev branch - Fixed incorrect UI redirect when no devices with a MAC address were left UI Improvements - New Device view, faster, with sorting by IP, Time, Name, Tag & Group - Rendered Devices are now clickable throughout the UI - WiFi Channel selection fixed. It would hang on the wrong band when switching interfaces - Moved version check into badge on top instead of popups - Alerts view now categorizes by alert type and are searchable - Simple field counts for the Alerts & Events views - Container networking is now under a Containers Tab under System Info - Arp under System Info -> Network Info Tab - Supernetworks view is now "DHCP Settings" --- <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:41 +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#401
No description provided.