feat: implement v1.2.1 fixes #95

Merged
sarman merged 11 commits from fix/proxmox-v1.2.1 into master 2026-06-13 03:50:35 +00:00

11 Commits

Author SHA1 Message Date
Shaun Arman
24f3765917 fix(fmt): apply rustfmt formatting to proxmox commands
All checks were successful
Test / frontend-tests (pull_request) Successful in 1m42s
Test / frontend-typecheck (pull_request) Successful in 1m57s
PR Review Automation / review (pull_request) Successful in 4m12s
Test / rust-fmt-check (pull_request) Successful in 13m13s
Test / rust-clippy (pull_request) Successful in 15m7s
Test / rust-tests (pull_request) Successful in 17m1s
Multi-argument method calls reformatted to comply with rustfmt line-length rules.
2026-06-12 22:31:16 -05:00
Shaun Arman
2a973aed59 chore: bump version to 1.2.1; update changelog and feature parity documentation
Some checks failed
Test / frontend-tests (pull_request) Successful in 1m45s
Test / frontend-typecheck (pull_request) Successful in 1m52s
PR Review Automation / review (pull_request) Successful in 4m28s
Test / rust-fmt-check (pull_request) Failing after 12m54s
Test / rust-clippy (pull_request) Successful in 14m25s
Test / rust-tests (pull_request) Successful in 16m30s
- package.json: 1.1.0 → 1.2.1
- CHANGELOG.md: prepend [1.2.1] section with all bug fixes and Phase 8–15 additions
- docs/PROXMOX-FEATURE-PARITY-STATUS.md: mark all phases complete; Phase 16 scoped out;
  Phase 17 complete; architecture tree updated with new component files
- TICKET-proxmox-v1.2.1-fixes.md: created ticket summary with description, AC, work, and test plan
2026-06-12 22:02:10 -05:00
Shaun Arman
7f35a792d1 feat(proxmox): add routes for notes, search, and administration pages
Wire up ProxmoxNotesPage, ProxmoxSearchPage, and ProxmoxAdminPage with
imports, nav children, and <Route> entries. Search placed at top of nav,
Notes after Tasks, Administration at bottom.
2026-06-12 22:00:00 -05:00
Shaun Arman
b2da13fbbe feat(proxmox): implement network management, tasks, custom views, and connection health (phases 14-15)
- Replace NetworkPage placeholder with live network interface list (type, address, gateway, active/autostart badges)
- Replace TasksPage placeholder with real cluster task log including running/completed/failed summary cards
- Create ViewsPage with create/delete UI for custom dashboard views
- Fix createClusterView TS client to pass viewId + name params matching Rust command signature
- Fix ClusterView TS interface to use view_id matching Rust DashboardView serialization
- Add ClusterInfoWithHealth struct to list_proxmox_clusters command with connected field reflecting in-memory pool state
- Add connected? field to ClusterInfo domain type
- Wire /proxmox/views route and Views nav entry in App.tsx
2026-06-12 21:58:31 -05:00
Shaun Arman
2d54858968 feat(proxmox): implement certificate manager and subscription registry (phases 10-11)
- CertificateList: full table with CN/SANs/Issuer/validity columns,
  expandable rows for full subject/fingerprint, color-coded status badges
  (green valid / yellow expiring <30d / red expired), View Details dialog,
  Renew action per row, empty state
- CertificatesPage: real data via listCertificates(), cluster selector for
  multi-cluster setups, Upload Custom Certificate dialog (file picker + PEM
  input), Order via ACME dialog with domain/node fields, error banner
- SubscriptionPage: two-panel layout — left panel for subscription key entry
  and activation with masked key display; right panel cluster status tree
  with Active/Expired/None badges, registration and next-due dates
- domain.ts: add Certificate interface (filename, subject, san, issuer,
  notbefore, notafter, fingerprint, pem)
- App.tsx: wire /proxmox/subscriptions route and nav entry
2026-06-12 21:57:38 -05:00
Shaun Arman
88bd5a8c95 feat(proxmox): implement HA groups manager and user management UI (phases 8-9)
- HAGroupsList: replace stub with real HaGroup type from proxmoxClient;
  columns: Name, Nodes, Restricted, No-Quorum Policy, Comment, Actions;
  empty state; onCreate/onEdit/onDelete props wired
- HAResourcesList: replace stub with real HaResource type; columns:
  Resource ID, Group, State, Max Restart, Max Relocate, Actions;
  onEnable/onRemove props; empty state
- HAPage: add useEffect data fetching for listHaGroups/listHaResources;
  auto-selects first cluster from listProxmoxClusters; multi-cluster
  dropdown when >1 cluster; wires deleteHaGroup and enableHaResource
- AclList: migrate from local AclInfo to canonical AclEntry type
  (ugid/roleid fields); composite key for rows without unique id
- UserList: migrate from local UserInfo to ProxmoxUser type; adds
  Realm, Name, Expire columns; deriveRealm helper; proper icon buttons
- RealmList: migrate from local RealmInfo to AuthRealm type (realm/type/
  comment); trimmed to three columns matching backend shape
- ACLPage: replace hardcoded dummy ACL array with real data fetching;
  add Tabs (ACL / Users / Auth Realms) with controlled state; calls
  listAcls, listUsers, listRealms on mount and cluster change; removes
  all hardcoded stub data
2026-06-12 21:55:35 -05:00
Shaun Arman
84ddf75afe feat(proxmox): implement notes system, resource search, and administration panel (phases 12-13)
- NotesPage: load/display/edit cluster notes with draft/save/cancel flow
- SearchPage: cross-cluster resource search grouped by type with icon decorators
- AdminPage: tabbed node admin (status, apt updates, repositories, syslog, tasks)
  with cluster/node selector; imports ClusterInfo from domain.ts
2026-06-12 21:55:01 -05:00
Shaun Arman
87e21e243e fix: persist Proxmox settings via localStorage; fix Remotes add/refresh flow
- ProxmoxSettings: load all six settings from localStorage on mount via
  useEffect, wire Save button to write values and show a 2s confirmation,
  wire Reset button to clear keys and restore defaults
- RemotesPage: attach loadRemotes() to the header Refresh button onClick
  and replace the no-op onRefresh prop passed to RemotesList
- EditRemoteForm: add password field to RemoteConfig interface and form
  so handleEditRemote receives a complete config; use DialogFooter for
  consistent button layout
2026-06-12 21:52:05 -05:00
Shaun Arman
38eecaafcf feat: add missing proxmox backend client functions and Rust command stubs
Adds 20 new TypeScript client functions to proxmoxClient.ts with typed
interfaces, and 20 corresponding Tauri commands in commands/proxmox.rs
wired up across Phases 6-15. All commands are registered in lib.rs.
Rust and TypeScript type checks pass clean.
2026-06-12 21:48:56 -05:00
Shaun Arman
d24f9e2adf feat: move auto-updater to Settings > Updater; collapse Proxmox nav by default
- Restore Settings/Updater.tsx with channel selection and update check UI
- Strip updater state/functions/Card from Settings/Proxmox.tsx; update description
- Add Updater to settingsItems and /settings/updater route in App.tsx
- Replace always-open Proxmox NavLink with accordion toggle (expandedSections state)
- Add ChevronDown/RefreshCw to lucide imports; promote useLocation from void call
2026-06-12 21:46:52 -05:00
Shaun Arman
655f8936c9 fix: implement v1.2.1 fixes
All checks were successful
Test / frontend-tests (pull_request) Successful in 1m45s
Test / frontend-typecheck (pull_request) Successful in 1m52s
PR Review Automation / review (pull_request) Successful in 3m0s
Test / rust-fmt-check (pull_request) Successful in 13m1s
Test / rust-clippy (pull_request) Successful in 14m52s
Test / rust-tests (pull_request) Successful in 16m50s
- Remove duplicate Updater page; integrate updater into ProxmoxSettings
- Fix ProxmoxRemotesPage imports to use proxmoxClient instead of tauriCommands
- Add rustls provider initialization for HTTPS tests
- Update tauri.conf.json and Cargo.toml for v1.2.1
- Bump version to 1.2.1

All tests pass:
- 386 frontend tests
- 406 Rust tests
- ESLint: 0 errors
- TypeScript: 0 errors
- Rust clippy: 0 warnings
2026-06-12 21:20:09 -05:00