github rcourtman/Pulse v4.7.3

latest releases: v4.12.1, v4.12.0, v4.11.0...
10 days ago

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.

Don't miss a new Pulse release

NewReleases is sending notifications on new releases.