github rcourtman/Pulse v3.29.8
Release v3.29.8

latest releases: v4.14.0, v4.14.0-rc.2, v4.14.0-rc.1...
2 months ago

What's Changed

Manual release with 1 commit since v3.29.7

🐛 Bug Fixes

  • replace embedded changelog script with standalone version

📊 Release Information

  • Release type: manual (v3.29.7 → v3.29.8)
  • Total changes: 1 commits
  • Breaking changes: 0
  • New features: 0
  • Bug fixes: 1

🚀 Installation & Update Instructions

🔄 Existing Users - Update Instructions

🖥️ Web Interface Update (Available from v3.27.2+)

✨ New! One-click updates from your browser:

  1. Open your Pulse web interface
  2. Go to SettingsSystem tab → Software Updates
  3. Select "Stable" channel if not already selected
  4. Click "Check for Updates" or wait for automatic checking
  5. Click "Apply Update" to install v3.29.8
  6. The interface will automatically refresh after the update completes

Note: Web updates are automatically disabled for Docker deployments

🛠️ Script-Based Update

For LXC, VMs, and regular installations:

# Update to latest stable version
cd /opt/pulse/scripts
./install-pulse.sh --update

# Or update to this specific version
./install-pulse.sh --update --version v3.29.8

🐳 Docker Update

# Pull latest stable release
docker pull rcourtman/pulse:latest
docker pull rcourtman/pulse:v3.29.8

# Update with docker-compose
docker compose down && docker compose pull && docker compose up -d

# Or update manually
docker stop pulse && docker rm pulse
docker run -d --name pulse -p 7655:7655 -v pulse-config:/app/config rcourtman/pulse:latest

🏠 Proxmox LXC (Community Script)

# Update existing LXC container
bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/ct/pulse.sh)"
# Choose "Update" option when prompted

📥 New Users - Fresh Installation

Automated Installer (Recommended):

curl -sL https://raw.githubusercontent.com/rcourtman/Pulse/main/scripts/install-pulse.sh | bash

Docker:

docker run -d \
  --name pulse \
  -p 7655:7655 \
  -v pulse-config:/app/config \
  rcourtman/pulse:latest

Manual Download:

wget https://github.com/rcourtman/Pulse/releases/download/v3.29.8/pulse-v3.29.8.tar.gz
tar -xzf pulse-v3.29.8.tar.gz
cd pulse-v3.29.8
npm install --production
npm start

🤖 This release was automatically generated from the develop branch

Don't miss a new Pulse release

NewReleases is sending notifications on new releases.