[PR #373] [MERGED] v1.0 #major #418

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

📋 Pull Request Information

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

Base: mainHead: dev


📝 Commits (10+)

  • a3a2ed9 [build] Clearfog will never be the latest release
  • ec31747 [ui] Add tooltip and fix tag selection bug
  • b4938a0 [build] Update release notes
  • d4db3e1 [base] Drop 443 as well for virtual mode
  • 9059311 [base] Drop udp services too
  • 9a26d68 [build] Add coredhcp yml generation
  • 3ca9e28 [ui] update lucide icons
  • d5c72f4 [ui] add WifiSignal component, icon and text
  • 35c6a95 [ui] bold ip, cleanup
  • 2c13d11 [ui] use WifiSignal component

📊 Changes

31 files changed (+670 additions, -1792 deletions)

View changed files

📝 .github/workflows/clearfog-ubuntu-iso.yml (+14 -1)
📝 .github/workflows/docker-image.yml (+76 -5)
📝 .github/workflows/pi-ubuntu-iso.yml (+13 -0)
📝 RELEASE-NOTES.md (+14 -0)
📝 api/code/api.go (+3 -0)
📝 api/code/firewall.go (+4 -4)
📝 base/scripts/nft_rules.sh (+4 -2)
📝 base/setup.sh (+5 -2)
📝 db/Dockerfile (+2 -2)
📝 db/code/boltapi.go (+86 -14)
📝 db/code/cmd/boltapi/main.go (+4 -1)
📝 db/code/go.mod (+10 -8)
📝 db/code/go.sum (+10 -1491)
📝 db/code/sweep.go (+1 -1)
📝 dyndns/code/dyndns_plugin.go (+3 -0)
📝 frontend/package.json (+1 -1)
📝 frontend/src/components/Devices/DeviceItem.js (+14 -5)
📝 frontend/src/components/Firewall/MulticastPorts.js (+7 -5)
📝 frontend/src/components/Logs/LogListDb.js (+3 -1)
📝 frontend/src/components/TagItem.js (+72 -6)

...and 11 more files

📄 Description

Improvements

  • CI has Attestation with cosign, gh attest now for containers & isos
  • Improved Link Settings UI with icons
  • DB API now supports strict min/max and ordering asc/dsc

Fixes

  • Fix default service port flush for lan interfaces
  • Fix DB Locking

🔄 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/373 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 10/5/2024 **Status:** ✅ Merged **Merged:** 10/5/2024 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`a3a2ed9`](https://github.com/spr-networks/super/commit/a3a2ed980b0ef3b5d1df4aaad579ec91ff7b56a4) [build] Clearfog will never be the latest release - [`ec31747`](https://github.com/spr-networks/super/commit/ec31747b45150f0214cd820dbd361a34147a04a9) [ui] Add tooltip and fix tag selection bug - [`b4938a0`](https://github.com/spr-networks/super/commit/b4938a0664bc44808f8f90ee4ae1aec0b3001d7d) [build] Update release notes - [`d4db3e1`](https://github.com/spr-networks/super/commit/d4db3e1d866c5bfa77634df61cb4924981e27a52) [base] Drop 443 as well for virtual mode - [`9059311`](https://github.com/spr-networks/super/commit/90593119fcb87ee188990473b0a62a40611d7ecc) [base] Drop udp services too - [`9a26d68`](https://github.com/spr-networks/super/commit/9a26d68dbfa2702a9421ef18cf6a5a79f8330167) [build] Add coredhcp yml generation - [`3ca9e28`](https://github.com/spr-networks/super/commit/3ca9e289bbaf6b449d22aaf989fbebb7780823a8) [ui] update lucide icons - [`d5c72f4`](https://github.com/spr-networks/super/commit/d5c72f4192ba6452e7dd1962a7c2959f60307c67) [ui] add WifiSignal component, icon and text - [`35c6a95`](https://github.com/spr-networks/super/commit/35c6a95b4deb630254b15aee1f043af34d550d04) [ui] bold ip, cleanup - [`2c13d11`](https://github.com/spr-networks/super/commit/2c13d11e2014887daf867201ea9bb8032c9ade1d) [ui] use WifiSignal component ### 📊 Changes **31 files changed** (+670 additions, -1792 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/clearfog-ubuntu-iso.yml` (+14 -1) 📝 `.github/workflows/docker-image.yml` (+76 -5) 📝 `.github/workflows/pi-ubuntu-iso.yml` (+13 -0) 📝 `RELEASE-NOTES.md` (+14 -0) 📝 `api/code/api.go` (+3 -0) 📝 `api/code/firewall.go` (+4 -4) 📝 `base/scripts/nft_rules.sh` (+4 -2) 📝 `base/setup.sh` (+5 -2) 📝 `db/Dockerfile` (+2 -2) 📝 `db/code/boltapi.go` (+86 -14) 📝 `db/code/cmd/boltapi/main.go` (+4 -1) 📝 `db/code/go.mod` (+10 -8) 📝 `db/code/go.sum` (+10 -1491) 📝 `db/code/sweep.go` (+1 -1) 📝 `dyndns/code/dyndns_plugin.go` (+3 -0) 📝 `frontend/package.json` (+1 -1) 📝 `frontend/src/components/Devices/DeviceItem.js` (+14 -5) 📝 `frontend/src/components/Firewall/MulticastPorts.js` (+7 -5) 📝 `frontend/src/components/Logs/LogListDb.js` (+3 -1) 📝 `frontend/src/components/TagItem.js` (+72 -6) _...and 11 more files_ </details> ### 📄 Description **Improvements** - CI has Attestation with cosign, gh attest now for containers & isos - Improved Link Settings UI with icons - DB API now supports strict min/max and ordering asc/dsc **Fixes** - Fix default service port flush for lan interfaces - Fix DB Locking --- <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:45 +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#418
No description provided.