[PR #6574] [MERGED] fix: update Pulse scripts for v4 Go rewrite support #6260

Closed
opened 2026-02-26 15:31:20 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/community-scripts/ProxmoxVE/pull/6574
Author: @rcourtman
Created: 8/5/2025
Status: Merged
Merged: 8/6/2025
Merged by: @MickLesk

Base: mainHead: pulse-v4-support


📝 Commits (10+)

  • 65acfa6 fix: update Pulse scripts for v4 Go rewrite support
  • 1bd0273 Update pulse-install.sh
  • 812c69d refactor: use community-scripts helper functions
  • c1821a6 fix: use correct PULSE_DATA_DIR environment variable
  • 693154e fix update
  • 4a3e87b fix install
  • 0feed38 address review comments: add version file creation
  • 156cab6 remove
  • a2866e1 fix: update version file after successful update
  • f88aa2b Update pulse.sh

📊 Changes

2 files changed (+25 additions, -48 deletions)

View changed files

📝 ct/pulse.sh (+14 -22)
📝 install/pulse-install.sh (+11 -26)

📄 Description

✍️ Description

Updates Pulse installation scripts to support v4, which is a complete rewrite in Go. The current scripts attempt to install v4 as a Node.js application, resulting in broken installations.

What this fixes:

  • Pulse v4 is now downloaded as a universal package (not Node.js)
  • Uses the built-in installer script included with v4
  • Preserves data directory during updates
  • Removes Node.js dependencies for v4 installations

Why this is critical:

  • Pulse v4.0.0 is already released
  • Current scripts create broken installations for all new users
  • v4 offers 87% less memory usage and 3x faster startup

Link: #6568 (previous PR closed for template/formatting issues)

Prerequisites (X in brackets)

  • Self-review completed – Code follows project standards.
  • Tested thoroughly – Changes work as expected.
  • No security risks – No hardcoded secrets, unnecessary privilege escalations, or permission issues.

🛠️ Type of Change (X in brackets)

  • 🐞 Bug fix – Resolves an issue without breaking functionality.
  • New feature – Adds new, non-breaking functionality.
  • 💥 Breaking change – Alters existing functionality in a way that may require updates.
  • 🆕 New script – A fully functional and tested script or script set.
  • 🌍 Website update – Changes to website-related JSON files or metadata.
  • 🔧 Refactoring / Code Cleanup – Improves readability or maintainability without changing functionality.
  • 📝 Documentation update – Changes to README, AppName.md, CONTRIBUTING.md, or other docs.

Testing performed:

  • Fresh v4 installation works correctly
  • Updates between v4 versions preserve configuration
  • Data directory is preserved during updates
  • Service starts and runs properly after installation

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/community-scripts/ProxmoxVE/pull/6574 **Author:** [@rcourtman](https://github.com/rcourtman) **Created:** 8/5/2025 **Status:** ✅ Merged **Merged:** 8/6/2025 **Merged by:** [@MickLesk](https://github.com/MickLesk) **Base:** `main` ← **Head:** `pulse-v4-support` --- ### 📝 Commits (10+) - [`65acfa6`](https://github.com/community-scripts/ProxmoxVE/commit/65acfa665ca9f750c86388abac479f806fd65714) fix: update Pulse scripts for v4 Go rewrite support - [`1bd0273`](https://github.com/community-scripts/ProxmoxVE/commit/1bd0273d8fef2b3deb2c6134dd881651774a4e28) Update pulse-install.sh - [`812c69d`](https://github.com/community-scripts/ProxmoxVE/commit/812c69df0794e8c28f94684918e8c7033d4af5d6) refactor: use community-scripts helper functions - [`c1821a6`](https://github.com/community-scripts/ProxmoxVE/commit/c1821a6d67dc9d30e4ca200edb0db23919f506d0) fix: use correct PULSE_DATA_DIR environment variable - [`693154e`](https://github.com/community-scripts/ProxmoxVE/commit/693154e648a8649ebc03ea8cb40e2d96ae22324c) fix update - [`4a3e87b`](https://github.com/community-scripts/ProxmoxVE/commit/4a3e87b178cd3aab6c1cb34f1fa88cb0c8be36d2) fix install - [`0feed38`](https://github.com/community-scripts/ProxmoxVE/commit/0feed386e9f96db6ca2f7eec0a92f9ecd54d65c1) address review comments: add version file creation - [`156cab6`](https://github.com/community-scripts/ProxmoxVE/commit/156cab624b60c68093281729cdaa24885cfee910) remove - [`a2866e1`](https://github.com/community-scripts/ProxmoxVE/commit/a2866e169737ed4211b582ec9ad26219b211dd27) fix: update version file after successful update - [`f88aa2b`](https://github.com/community-scripts/ProxmoxVE/commit/f88aa2befcc20f2094d65b57893d693673940a37) Update pulse.sh ### 📊 Changes **2 files changed** (+25 additions, -48 deletions) <details> <summary>View changed files</summary> 📝 `ct/pulse.sh` (+14 -22) 📝 `install/pulse-install.sh` (+11 -26) </details> ### 📄 Description ## ✍️ Description Updates Pulse installation scripts to support v4, which is a complete rewrite in Go. The current scripts attempt to install v4 as a Node.js application, resulting in broken installations. ### What this fixes: - Pulse v4 is now downloaded as a universal package (not Node.js) - Uses the built-in installer script included with v4 - Preserves data directory during updates - Removes Node.js dependencies for v4 installations ### Why this is critical: - Pulse v4.0.0 is already released - Current scripts create **broken installations** for all new users - v4 offers 87% less memory usage and 3x faster startup ## 🔗 Related PR / Issue Link: #6568 (previous PR closed for template/formatting issues) ## ✅ Prerequisites (**X** in brackets) - [X] **Self-review completed** – Code follows project standards. - [X] **Tested thoroughly** – Changes work as expected. - [X] **No security risks** – No hardcoded secrets, unnecessary privilege escalations, or permission issues. --- ## 🛠️ Type of Change (**X** in brackets) - [X] 🐞 **Bug fix** – Resolves an issue without breaking functionality. - [ ] ✨ **New feature** – Adds new, non-breaking functionality. - [ ] 💥 **Breaking change** – Alters existing functionality in a way that may require updates. - [ ] 🆕 **New script** – A fully functional and tested script or script set. - [ ] 🌍 **Website update** – Changes to website-related JSON files or metadata. - [ ] 🔧 **Refactoring / Code Cleanup** – Improves readability or maintainability without changing functionality. - [ ] 📝 **Documentation update** – Changes to `README`, `AppName.md`, `CONTRIBUTING.md`, or other docs. ### Testing performed: - ✅ Fresh v4 installation works correctly - ✅ Updates between v4 versions preserve configuration - ✅ Data directory is preserved during updates - ✅ Service starts and runs properly after installation --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 15:31:20 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/ProxmoxVE#6260
No description provided.