File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
src/main/java/com/magento/idea/magento2uct Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments