From c3bc8c69a30ad1113d34ea6dfede82d11d706594 Mon Sep 17 00:00:00 2001 From: ShodiBoy1 Date: Tue, 5 May 2026 20:02:35 +0200 Subject: [PATCH 1/2] fixed infinite recursion in Sonar start/stop on Mac --- cli/src/main/java/com/devonfw/tools/ide/tool/sonar/Sonar.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/main/java/com/devonfw/tools/ide/tool/sonar/Sonar.java b/cli/src/main/java/com/devonfw/tools/ide/tool/sonar/Sonar.java index dfcb5b7520..d75ec4b9d4 100644 --- a/cli/src/main/java/com/devonfw/tools/ide/tool/sonar/Sonar.java +++ b/cli/src/main/java/com/devonfw/tools/ide/tool/sonar/Sonar.java @@ -71,11 +71,11 @@ protected void doRun() { case START: printSonarWebPort(); this.arguments.setValueAsString("start", this.context); - super.run(); + super.doRun(); break; case STOP: this.arguments.setValueAsString("stop", this.context); - super.run(); + super.doRun(); break; default: } From f45f780e4e33da5c8cb5f1a3cdb33019f4521a52 Mon Sep 17 00:00:00 2001 From: ShodiBoy1 Date: Tue, 5 May 2026 20:15:31 +0200 Subject: [PATCH 2/2] changelog upd --- CHANGELOG.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 4e54f3ed6f..3fd00ea11c 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -21,6 +21,7 @@ Release with new features and bugfixes: * https://github.com/devonfw/IDEasy/issues/797[#797]: Use system unzip on macOS to preserve symlinks in ZIP extraction * https://github.com/devonfw/IDEasy/issues/1723[#1723]: Add commandlet for GitHub Copilot CLI * https://github.com/devonfw/IDEasy/issues/1685[#1685]: Add Nest CLI to IDEasy commandlets +* https://github.com/devonfw/IDEasy/issues/800[#800]: Fix infinite recursion in Sonar start/stop on macOS The full list of changes for this release can be found in https://github.com/devonfw/IDEasy/milestone/44?closed=1[milestone 2026.05.001].