[PR #2258] [MERGED] Fix: Apache Guacamole Version Crawling - only latest Version #3646

Closed
opened 2026-02-26 13:34:13 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/community-scripts/ProxmoxVE/pull/2258
Author: @MickLesk
Created: 2/11/2025
Status: Merged
Merged: 2/11/2025
Merged by: @michelroegl-brunner

Base: mainHead: MickLesk-patch-5


📝 Commits (1)

  • aa807a3 Fix: Apache Guacamole Version Crawling - only latest Version

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 install/apache-guacamole-install.sh (+1 -1)

📄 Description

✍️ Description

Old:
RELEASE=$(wget -qO- https://dlcdn.apache.org/tomcat/tomcat-9/ | grep -oP '(?<=href=")v[^"/]+(?=/")' | sed 's/^v//')
echo $RELEASE -> 9.0.98 9.0.99

New:
RELEASE=$(wget -qO- https://dlcdn.apache.org/tomcat/tomcat-9/ | grep -oP '(?<=href=")v[^"/]+(?=/")' | sed 's/^v//' | sort -V | tail -n1)
echo $RELEASE -> 9.0.99

--

Link: #2236

--

Prerequisites

Before this PR can be reviewed, the following must be completed:

  • Self-review performed – Code follows established patterns and conventions.
  • Testing performed – Changes have been thoroughly tested and verified.

--

🛠️ Type of Change

Select all that apply:

  • 🐞 Bug fix – Resolves an issue without breaking functionality.

🔄 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/2258 **Author:** [@MickLesk](https://github.com/MickLesk) **Created:** 2/11/2025 **Status:** ✅ Merged **Merged:** 2/11/2025 **Merged by:** [@michelroegl-brunner](https://github.com/michelroegl-brunner) **Base:** `main` ← **Head:** `MickLesk-patch-5` --- ### 📝 Commits (1) - [`aa807a3`](https://github.com/community-scripts/ProxmoxVE/commit/aa807a347ed89502060d0d91369cb0f19a6b6b04) Fix: Apache Guacamole Version Crawling - only latest Version ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `install/apache-guacamole-install.sh` (+1 -1) </details> ### 📄 Description ## ✍️ Description <!-- Provide a clear and concise description of your changes. --> Old: RELEASE=$(wget -qO- https://dlcdn.apache.org/tomcat/tomcat-9/ | grep -oP '(?<=href=")v[^"/]+(?=/")' | sed 's/^v//') echo $RELEASE -> 9.0.98 9.0.99 New: RELEASE=$(wget -qO- https://dlcdn.apache.org/tomcat/tomcat-9/ | grep -oP '(?<=href=")v[^"/]+(?=/")' | sed 's/^v//' | sort -V | tail -n1) echo $RELEASE -> 9.0.99 -- ## 🔗 Related PR / Discussion / Issue Link: #2236 -- ## ✅ Prerequisites Before this PR can be reviewed, the following must be completed: - [x] **Self-review performed** – Code follows established patterns and conventions. - [x] **Testing performed** – Changes have been thoroughly tested and verified. -- ## 🛠️ Type of Change Select all that apply: - [x] 🐞 **Bug fix** – Resolves an issue without breaking functionality. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 13:34:13 +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#3646
No description provided.