Skip to content

Commit a62459b

Browse files
Upgrade min intellij version to the v.2021.2.1 (org.jetbrains.intellij:1.1.4)
1 parent 0e18250 commit a62459b

File tree

3 files changed

+18
-19
lines changed

3 files changed

+18
-19
lines changed

CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
99
### Added
1010

1111
- Added XML file header include code template in [#615](https://github.com/magento/magento2-phpstorm-plugin/pull/615)
12-
- Added autofocus on a first field for all existent dialogs in [#599](https://github.com/magento/magento2-phpstorm-plugin/pull/599)
1312
- Added Web API generation for the Magento Entity Creator in [#597](https://github.com/magento/magento2-phpstorm-plugin/pull/597) and [#607](https://github.com/magento/magento2-phpstorm-plugin/pull/607)
1413
- Added DI XML plugin type attribute inspections in [#588](https://github.com/magento/magento2-phpstorm-plugin/pull/588)
1514
- Added Web API interface for service (PHP class) generation in [#586](https://github.com/magento/magento2-phpstorm-plugin/pull/586)

build.gradle

+14-14
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
*/
55

66
plugins {
7-
id 'org.jetbrains.intellij' version '0.7.2'
7+
id 'org.jetbrains.intellij' version '1.1.4'
88
id 'checkstyle'
99
id 'pmd'
10-
id 'org.jetbrains.changelog' version '0.6.2'
10+
id 'org.jetbrains.changelog' version '1.2.1'
1111
}
1212

1313
repositories {
@@ -23,35 +23,35 @@ apply plugin: 'idea'
2323
apply plugin: 'groovy'
2424
apply plugin: 'org.jetbrains.changelog'
2525

26-
def phpPluginVersion = System.getProperty("phpPluginVersion", "211.6693.111")
27-
def ideaVersion = System.getProperty("ideaVersion", "2021.1")
26+
def phpPluginVersion = System.getProperty("phpPluginVersion", "212.5080.71")
27+
def ideaVersion = System.getProperty("ideaVersion", "2021.2.1")
2828
def javaVersion = 11
2929

3030
sourceCompatibility = javaVersion
3131
targetCompatibility = javaVersion
3232

3333
intellij {
34-
version ideaVersion
35-
type 'IU'
36-
pluginName 'com.magento.idea.magento2plugin'
34+
version = ideaVersion
35+
type = 'IU'
36+
pluginName = 'com.magento.idea.magento2plugin'
3737
plugins = [
3838
"com.jetbrains.php:$phpPluginVersion",
3939
'yaml',
4040
'java-i18n',
4141
'properties',
4242
'CSS',
4343
'JavaScriptLanguage',
44-
'com.intellij.lang.jsgraphql:2.9.1',
44+
'com.intellij.lang.jsgraphql:3.0.0',
4545
'platform-images',
4646
'copyright'
4747
]
48-
updateSinceUntilBuild false
49-
sameSinceUntilBuild false
50-
downloadSources !Boolean.valueOf(System.getenv('CI'))
51-
sandboxDirectory "${project.rootDir}/.idea-sandbox"
48+
updateSinceUntilBuild = false
49+
sameSinceUntilBuild = false
50+
downloadSources = !Boolean.valueOf(System.getenv('CI'))
51+
sandboxDir = "${project.rootDir}/.idea-sandbox"
5252

5353
patchPluginXml {
54-
changeNotes({ changelog.getLatest().toHTML() })
54+
changeNotes = provider { changelog.getLatest().toHTML() }
5555
}
5656
}
5757

@@ -85,7 +85,7 @@ apply from: "${project.rootDir}/gradle-tasks/staticChecks.gradle"
8585
changelog {
8686
version = "${project.version}"
8787
path = "${project.projectDir}/CHANGELOG.md"
88-
header = { "[${project.version}] - ${getDate()}" }
88+
header = provider { "[${project.version}] - ${getDate()}" }
8989
headerParserRegex = ~/(\d+\.)?(\d+\.)?(\*|\d+)/
9090
itemPrefix = "-"
9191
keepUnreleasedSection = true

tests/com/magento/idea/magento2plugin/linemarker/php/WebApiLinemarkerRegistrarTest.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
package com.magento.idea.magento2plugin.linemarker.php;
77

8-
import com.intellij.openapi.application.impl.ApplicationInfoImpl;
8+
import com.intellij.openapi.application.ex.ApplicationManagerEx;
99
import com.magento.idea.magento2plugin.MagentoIcons;
1010
import com.magento.idea.magento2plugin.linemarker.LinemarkerFixtureTestCase;
1111

@@ -32,8 +32,8 @@ public void testWebApiServiceShouldHaveLinemarker() {
3232
// work around for issue caused by
3333
// com.magento.idea.magento2plugin.linemarker.xml.LineMarkerXmlTagDecorator
3434
// in com.intellij.psi.impl.smartPointers.SmartPsiElementPointerImpl.createElementInfo
35-
final boolean isInStressTestCurrent = ApplicationInfoImpl.isInStressTest();
36-
ApplicationInfoImpl.setInStressTest(true);
35+
final boolean isInStressTestCurrent = ApplicationManagerEx.isInStressTest();
36+
ApplicationManagerEx.setInStressTest(true);
3737

3838
myFixture.configureByFile(this.getFixturePath("TestService.php", "php"));
3939

@@ -54,7 +54,7 @@ public void testWebApiServiceShouldHaveLinemarker() {
5454
);
5555

5656
//restore default value
57-
ApplicationInfoImpl.setInStressTest(isInStressTestCurrent);
57+
ApplicationManagerEx.setInStressTest(isInStressTestCurrent);
5858
}
5959

6060
/**

0 commit comments

Comments
 (0)