Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Release with new features and bugfixes:
* https://github.com/devonfw/IDEasy/issues/1151[#1151]: Use uname -m for runtime architecture detection on Mac/Linux
* https://github.com/devonfw/IDEasy/issues/1770[#1770]: Fix setup hanging due to buffered log output during license prompt
* https://github.com/devonfw/IDEasy/issues/1771[#1771]: Maven version 3.9.1x are now available
* https://github.com/devonfw/IDEasy/issues/1647[#1647]: Fixed CVE detection for rancher desktop
* https://github.com/devonfw/IDEasy/issues/1363[#1363]: Tool uninstallation in force mode now also removes its plugins
* https://github.com/devonfw/IDEasy/issues/1687[#1687]: Fixed JLine warning about restricted method

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ protected void addVersion(UrlVersion urlVersion) {

@Override
public String getCpeVendor() {
return "docker";
return "suse";
}

@Override
public String getCpeProduct() {
return "docker";
return "rancher_desktop";
}
}
Loading