[PR #239] [MERGED] Nov 27 Release #patch #382

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

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/239
Author: @lts-rad
Created: 11/27/2023
Status: Merged
Merged: 11/27/2023
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • e6f6904 [ui] Update simple view to include system info for updates, move release at top of system info page
  • e0891ed [build] Experiment with self hosted runner
  • a14f374 [api] [ui] Add RuleName, fix dns/lan group handling for custom interfaces
  • dc88551 [ui] Fix missing , for custom interface rule
  • e2e4904 [api] [ui] Change SetRoute bool to RouteDst IP
  • eb7f949 [api] fix comment
  • 8b97547 [api] [ui] Add api access for custom interfaces
  • 734273f [api] Use DstPort for anyfwd
  • ee54947 [api] Set SrcPort to interval when any for fwd rules
  • 965124d [api] Add auth failure event

📊 Changes

48 files changed (+1289 additions, -678 deletions)

View changed files

📝 .github/workflows/clearfog-ubuntu-iso.yml (+1 -2)
📝 .github/workflows/docker-image.yml (+1 -1)
📝 .github/workflows/pi-ubuntu-iso.yml (+1 -1)
📝 README.md (+1 -0)
📝 RELEASE-NOTES.md (+11 -0)
📝 api/code/api.go (+14 -10)
📝 api/code/auth.go (+29 -11)
📝 api/code/firewall.go (+66 -11)
📝 api/code/interfaces.go (+10 -10)
📝 api/code/plugins.go (+26 -10)
📝 api/code/ws.go (+19 -6)
📝 api_sample_plugin/docker-compose.yml (+1 -0)
📝 base/scripts/nft_rules.sh (+12 -4)
📝 db/code/boltapi.go (+1 -1)
📝 frontend/package.json (+1 -0)
📝 frontend/src/api/MockAPI.js (+70 -72)
📝 frontend/src/components/DNS/DNSBlocklist.js (+2 -0)
📝 frontend/src/components/DNS/DNSLogHistoryList.js (+417 -304)
📝 frontend/src/components/Dashboard/DNSMetricsWidgets.js (+73 -0)
📝 frontend/src/components/Dashboard/ServicesWidgets.js (+61 -40)

...and 28 more files

📄 Description

  • Superd fixes for plugins
  • better container interface support
  • UI fixes
  • reduced memory consumption for dns blocklists with boltdb

🔄 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/239 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 11/27/2023 **Status:** ✅ Merged **Merged:** 11/27/2023 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`e6f6904`](https://github.com/spr-networks/super/commit/e6f6904dea0ee000feb2f9fdbbef34e04f28c402) [ui] Update simple view to include system info for updates, move release at top of system info page - [`e0891ed`](https://github.com/spr-networks/super/commit/e0891eda7657dfa0f53faf130d399bee24f1e3dc) [build] Experiment with self hosted runner - [`a14f374`](https://github.com/spr-networks/super/commit/a14f3748c8ca6dcf8167e5bfadfdf96079d6ebdf) [api] [ui] Add RuleName, fix dns/lan group handling for custom interfaces - [`dc88551`](https://github.com/spr-networks/super/commit/dc88551b64b49931183fa79f1bcfe9a7d7bf0150) [ui] Fix missing , for custom interface rule - [`e2e4904`](https://github.com/spr-networks/super/commit/e2e4904f40b3a006ebd069619cf1cd1b4ead1a67) [api] [ui] Change SetRoute bool to RouteDst IP - [`eb7f949`](https://github.com/spr-networks/super/commit/eb7f949b81b5ec93a1d89f71f49c04ee4cecc557) [api] fix comment - [`8b97547`](https://github.com/spr-networks/super/commit/8b975478cfd5035abd9dbea9bdc394d8fdabb419) [api] [ui] Add api access for custom interfaces - [`734273f`](https://github.com/spr-networks/super/commit/734273f373f6658b5da9a7fa69387a0d30ea09df) [api] Use DstPort for anyfwd - [`ee54947`](https://github.com/spr-networks/super/commit/ee54947c8071d038b43c2cbcb3fab23b5d7d424f) [api] Set SrcPort to interval when any for fwd rules - [`965124d`](https://github.com/spr-networks/super/commit/965124d2ce65ac68d61c827881ce2f21739ba6e9) [api] Add auth failure event ### 📊 Changes **48 files changed** (+1289 additions, -678 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/clearfog-ubuntu-iso.yml` (+1 -2) 📝 `.github/workflows/docker-image.yml` (+1 -1) 📝 `.github/workflows/pi-ubuntu-iso.yml` (+1 -1) 📝 `README.md` (+1 -0) 📝 `RELEASE-NOTES.md` (+11 -0) 📝 `api/code/api.go` (+14 -10) 📝 `api/code/auth.go` (+29 -11) 📝 `api/code/firewall.go` (+66 -11) 📝 `api/code/interfaces.go` (+10 -10) 📝 `api/code/plugins.go` (+26 -10) 📝 `api/code/ws.go` (+19 -6) 📝 `api_sample_plugin/docker-compose.yml` (+1 -0) 📝 `base/scripts/nft_rules.sh` (+12 -4) 📝 `db/code/boltapi.go` (+1 -1) 📝 `frontend/package.json` (+1 -0) 📝 `frontend/src/api/MockAPI.js` (+70 -72) 📝 `frontend/src/components/DNS/DNSBlocklist.js` (+2 -0) 📝 `frontend/src/components/DNS/DNSLogHistoryList.js` (+417 -304) 📝 `frontend/src/components/Dashboard/DNSMetricsWidgets.js` (+73 -0) 📝 `frontend/src/components/Dashboard/ServicesWidgets.js` (+61 -40) _...and 28 more files_ </details> ### 📄 Description - Superd fixes for plugins - better container interface support - UI fixes - reduced memory consumption for dns blocklists with boltdb --- <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:35 +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#382
No description provided.