What's Changed
New Features
- Bulk alert operations - Select and acknowledge or clear multiple alerts at once from the Alerts page
Improvements
- Better Proxmox version detection for improved compatibility with different PVE versions
- Improved alert route handling for better reliability of bulk operations
Bug Fixes
- Potential fix for Proxmox version parsing that could cause issues with certain PVE configurations
- Fixed alert API route ordering to properly handle bulk operations
How to Update
ProxmoxVE Users (LXC)
# In the ProxmoxVE console, simply type:
update
# This will automatically update to the latest stable release
Docker Users
# Update to this specific version
docker pull rcourtman/pulse:v4.7.3
docker stop pulse
docker rm pulse
docker run -d --name pulse \
-p 7655:7655 \
-v pulse-data:/etc/pulse \
rcourtman/pulse:v4.7.3
Manual Installation / systemd Users
# Update to latest stable (automatic)
curl -fsSL https://raw.githubusercontent.com/rcourtman/Pulse/main/install.sh | bash
# Or update to this specific version
curl -fsSL https://raw.githubusercontent.com/rcourtman/Pulse/main/install.sh | bash -s -- --version v4.7.3
Rolling Back
ProxmoxVE Users
# Specify previous version
curl -fsSL https://raw.githubusercontent.com/rcourtman/Pulse/main/install.sh | bash -s -- --version v4.7.2
sudo systemctl restart pulse
Docker Users
# Use a specific previous version tag
docker pull rcourtman/pulse:v4.7.2
docker stop pulse
docker rm pulse
docker run -d --name pulse \
-p 7655:7655 \
-v pulse-data:/etc/pulse \
rcourtman/pulse:v4.7.2
Downloads
Pre-built binaries available below for linux-amd64, linux-arm64, and linux-armv7.