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).
6
6
7
7
## 5.4.0
8
8
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
+
9
16
### Changed
10
17
11
18
- 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() {
266
266
267
267
if (!getComingVersion ().isEmpty ()) {
268
268
commandSettingsBuilder .addArgument (
269
- "--current-version=" + Settings .getInstance (getProject ()).magentoVersion
269
+ "--current-version=" + Settings .getInstance (getProject ()).magentoVersion
270
270
);
271
271
}
272
272
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ public static List<String> fetchSupportedVersions() throws Exception {
90
90
91
91
// Read JSON response
92
92
try (BufferedReader reader = new BufferedReader (
93
- new InputStreamReader (connection .getInputStream ()))
93
+ new InputStreamReader (connection .getInputStream ()))
94
94
) {
95
95
StringBuilder response = new StringBuilder ();
96
96
String line ;
You can’t perform that action at this time.
0 commit comments