๐งช Release Candidate 2
This is a release candidate for testing. Please report any issues you find.
๐ Existing Users - Update to RC
๐ฅ๏ธ Web Interface Update (Available from v3.27.2+)
โจ Switch to RC channel for testing:
- Open your Pulse web interface
- Go to Settings โ System tab โ Software Updates
- Select "RC" channel to receive release candidates
- Click "Check for Updates"
- Click "Apply Update" to install this RC version
- The interface will automatically refresh after update
Note: You can switch back to "Stable" channel anytime
๐ ๏ธ Script-Based Update
For LXC, VMs, and regular installations:
# Update to this specific RC version
cd /opt/pulse/scripts
./install-pulse.sh --update --version v3.29.2-rc2
๐ณ Docker Update
# Pull this specific RC version
docker pull rcourtman/pulse:v3.29.2-rc2
# Or use the rolling RC tag (always latest RC)
docker pull rcourtman/pulse:rc
# 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:rc
๐ฅ New Users - Fresh RC Installation
Automated Installer
# Install this specific RC version
curl -sL https://raw.githubusercontent.com/rcourtman/Pulse/main/scripts/install-pulse.sh | bash -s -- --version v3.29.2-rc2
Manual Download
wget https://github.com/rcourtman/Pulse/releases/download/v3.29.2-rc2/pulse-v3.29.2-rc2.tar.gz
tar -xzf pulse-v3.29.2-rc2.tar.gz
cd pulse-v3.29.2-rc2
npm install --production
npm start
โ ๏ธ Testing Notes
- This is a pre-release for testing only
- Not recommended for production environments
- Please report any issues on GitHub Issues
- The
:rc
Docker tag always points to the latest RC version - You can easily switch between Stable and RC channels in the web interface
What's Changed
- Release: update channel separation fix by @rcourtman in #152
- Release: stable workflow fix with debug by @rcourtman in #155
Full Changelog: v3.29.0-rc1...v3.29.2-rc2