all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pdm-devel] [PATCH datacenter-manager/proxmox{, -yew-comp} 00/18] remote update view: include product version and repository status
@ 2025-11-27 10:44 Lukas Wagner
  2025-11-27 10:44 ` [pdm-devel] [PATCH proxmox 1/4] add bindings for /nodes/{node}/apt/versions Lukas Wagner
                   ` (18 more replies)
  0 siblings, 19 replies; 24+ messages in thread
From: Lukas Wagner @ 2025-11-27 10:44 UTC (permalink / raw)
  To: pdm-devel




proxmox:

Lukas Wagner (4):
  add bindings for /nodes/{node}/apt/versions
  add bindings for /nodes/{node}/apt/repositories
  make refresh
  proxmox-apt-api-types: make APTStandardRepository compatible with
    PVE's serialization of the type

 proxmox-apt-api-types/Cargo.toml     |   1 +
 proxmox-apt-api-types/src/lib.rs     |   7 +-
 pve-api-types/Cargo.toml             |   1 +
 pve-api-types/generate.pl            |   2 +
 pve-api-types/src/generated/code.rs  |  24 ++++-
 pve-api-types/src/generated/types.rs | 128 +++++++++++++++++++++++++++
 pve-api-types/src/types/mod.rs       |   2 +
 7 files changed, 162 insertions(+), 3 deletions(-)


proxmox-yew-comp:

Lukas Wagner (1):
  apt repositories: add 'status_only' property

 src/apt_repositories.rs | 41 ++++++++++++++++++++++++++++++++++-------
 1 file changed, 34 insertions(+), 7 deletions(-)


proxmox-datacenter-manager:

Lukas Wagner (13):
  pdm-api-types: reuse APTUpdateInfo from proxmox_apt_api_types
  pbs-client: add bindings for /nodes/localhost/apt/versions
  pbs-client: add bindings for /nodes/localhost/apt/repositories
  remote-updates:  include version information in node update summary
  remote updates: include repository status in node summary
  api: pve/pbs: add passthrough endpoint for APT repo configuration
  ui: remote updates: show table header
  ui: remote updates: show main product version in overview table
  ui: remote updates: show repository status column
  ui: remote updates: show repo status details when selecting a node
  ui: remote updates: don't attempt to load current status for
    unavailable nodes
  ui: remote updates: use 'building-o' icon for PBS nodes
  ui: remote updates: use explicit indices for parameters in tr! macro

 lib/pdm-api-types/Cargo.toml            |   1 +
 lib/pdm-api-types/src/lib.rs            |  33 +-
 lib/pdm-api-types/src/remote_updates.rs |  46 +++
 server/src/api/remote_updates.rs        |  53 +++-
 server/src/pbs_client.rs                |  18 ++
 server/src/remote_updates.rs            | 112 ++++++-
 ui/src/remotes/updates.rs               | 384 +++++++++++++++++-------
 7 files changed, 494 insertions(+), 153 deletions(-)


Summary over all repositories:
  15 files changed, 690 insertions(+), 163 deletions(-)

-- 
Generated by murpp 0.9.0


_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel


^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2025-11-27 21:27 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-11-27 10:44 [pdm-devel] [PATCH datacenter-manager/proxmox{, -yew-comp} 00/18] remote update view: include product version and repository status Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH proxmox 1/4] add bindings for /nodes/{node}/apt/versions Lukas Wagner
2025-11-27 20:46   ` [pdm-devel] applied: " Thomas Lamprecht
2025-11-27 10:44 ` [pdm-devel] [PATCH proxmox 2/4] add bindings for /nodes/{node}/apt/repositories Lukas Wagner
2025-11-27 20:46   ` [pdm-devel] applied: " Thomas Lamprecht
2025-11-27 10:44 ` [pdm-devel] [PATCH proxmox 3/4] make refresh Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH proxmox 4/4] proxmox-apt-api-types: make APTStandardRepository compatible with PVE's serialization of the type Lukas Wagner
2025-11-27 20:46   ` [pdm-devel] applied: " Thomas Lamprecht
2025-11-27 10:44 ` [pdm-devel] [PATCH proxmox-yew-comp 1/1] apt repositories: add 'status_only' property Lukas Wagner
2025-11-27 21:26   ` [pdm-devel] applied: " Thomas Lamprecht
2025-11-27 10:44 ` [pdm-devel] [PATCH datacenter-manager 01/13] pdm-api-types: reuse APTUpdateInfo from proxmox_apt_api_types Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH datacenter-manager 02/13] pbs-client: add bindings for /nodes/localhost/apt/versions Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH datacenter-manager 03/13] pbs-client: add bindings for /nodes/localhost/apt/repositories Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH datacenter-manager 04/13] remote-updates: include version information in node update summary Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH datacenter-manager 05/13] remote updates: include repository status in node summary Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH datacenter-manager 06/13] api: pve/pbs: add passthrough endpoint for APT repo configuration Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH datacenter-manager 07/13] ui: remote updates: show table header Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH datacenter-manager 08/13] ui: remote updates: show main product version in overview table Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH datacenter-manager 09/13] ui: remote updates: show repository status column Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH datacenter-manager 10/13] ui: remote updates: show repo status details when selecting a node Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH datacenter-manager 11/13] ui: remote updates: don't attempt to load current status for unavailable nodes Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH datacenter-manager 12/13] ui: remote updates: use 'building-o' icon for PBS nodes Lukas Wagner
2025-11-27 10:44 ` [pdm-devel] [PATCH datacenter-manager 13/13] ui: remote updates: use explicit indices for parameters in tr! macro Lukas Wagner
2025-11-27 10:47 ` [pdm-devel] [PATCH datacenter-manager/proxmox{, -yew-comp} 00/18] remote update view: include product version and repository status Lukas Wagner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal