github rcourtman/Pulse v4.4.1-rc.1
v4.4.1-rc.1 - Bug Fixes Release Candidate

latest releases: v4.12.1, v4.12.0, v4.11.0...
pre-release15 days ago

What's Changed

This release candidate includes several bug fixes and improvements since v4.4.0.

Bug Fixes

  • Potential fix for syslog spam on standalone Proxmox nodes (#322)
  • Fixed dark mode preference not persisting from setup to login screen
  • Fixed alert threshold edit state being lost during WebSocket updates (#295)
  • Fixed PBS status not showing as offline when connection fails (#326)
  • Fixed missing VM/container type field when using cluster/resources endpoint
  • Fixed placement of Backup & Restore section (moved to System tab)
  • Removed 12-character minimum requirement for export passphrase

Improvements

  • Added confirmation requirement for node connectivity alerts
  • Improved cluster detection to avoid unnecessary API calls on standalone nodes
  • Updated documentation to clarify update process for different deployment types

How to Update

For RC Release (v4.4.1-rc.1)

ProxmoxVE Users (LXC)

# RC releases require manual update - the 'update' command only installs stable
# SSH into your container and run:
curl -fsSL https://raw.githubusercontent.com/rcourtman/Pulse/main/install.sh | bash -s -- --version v4.4.1-rc.1
sudo systemctl restart pulse

Docker Users

# Pull the RC version specifically
docker pull rcourtman/pulse:v4.4.1-rc.1
docker stop pulse
docker rm pulse
docker run -d --name pulse \
  -p 7655:7655 \
  -v pulse-data:/etc/pulse \
  rcourtman/pulse:v4.4.1-rc.1

# Or use the 'rc' tag for the latest RC
docker pull rcourtman/pulse:rc

Manual Installation / systemd Users

# Specify the RC version explicitly
curl -fsSL https://raw.githubusercontent.com/rcourtman/Pulse/main/install.sh | bash -s -- --version v4.4.1-rc.1

Rolling Back

ProxmoxVE Users

# Specify previous version
curl -fsSL https://raw.githubusercontent.com/rcourtman/Pulse/main/install.sh | bash -s -- --version v4.4.0
sudo systemctl restart pulse

Docker Users

# Use a specific previous version tag
docker pull rcourtman/pulse:v4.4.0
docker stop pulse
docker rm pulse
docker run -d --name pulse \
  -p 7655:7655 \
  -v pulse-data:/etc/pulse \
  rcourtman/pulse:v4.4.0

Downloads

Pre-built binaries available below for linux-amd64, linux-arm64, and linux-armv7.

Don't miss a new Pulse release

NewReleases is sending notifications on new releases.