Skip to content

Commit 1d812b4

Browse files
committed
2464: updated CHANGELOG.md
1 parent d0faa53 commit 1d812b4

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
66

77
## 5.4.0
88

9+
### Fixed
10+
11+
- Fixed Upgrade Compatibility Tool [#2482](https://github.com/magento/magento2-phpstorm-plugin/pull/2482)
12+
Replaced hardcoded Magento versions with dynamic fetching via Packagist API.
13+
Fixed UI icon references.
14+
Updated Run command.
15+
916
### Changed
1017

1118
- Updated Gradle Intellij plugin to version 2 [#2473](https://github.com/magento/magento2-phpstorm-plugin/pull/2473)

src/main/java/com/magento/idea/magento2uct/execution/configurations/UctRunConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ public boolean isNewlyCreated() {
266266

267267
if (!getComingVersion().isEmpty()) {
268268
commandSettingsBuilder.addArgument(
269-
"--current-version=" + Settings.getInstance(getProject()).magentoVersion
269+
"--current-version=" + Settings.getInstance(getProject()).magentoVersion
270270
);
271271
}
272272

src/main/java/com/magento/idea/magento2uct/packages/SupportedVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public static List<String> fetchSupportedVersions() throws Exception {
9090

9191
// Read JSON response
9292
try (BufferedReader reader = new BufferedReader(
93-
new InputStreamReader(connection.getInputStream()))
93+
new InputStreamReader(connection.getInputStream()))
9494
) {
9595
StringBuilder response = new StringBuilder();
9696
String line;

0 commit comments

Comments
 (0)