Skip to content

Commit 27fb74b

Browse files
author
Vitaliy Boyko
committed
4.0.0-initial
1 parent 773d57e commit 27fb74b

File tree

8 files changed

+15
-12
lines changed

8 files changed

+15
-12
lines changed

.github/workflows/gradle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Run automated tests
55

66
on:
77
pull_request:
8-
branches: [ master, 3.2.0-develop ]
8+
branches: [ master, 4.0.0-develop ]
99

1010
jobs:
1111
build-linux:

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
66

7+
## 4.0.0
8+
79
## 3.2.0
810

911
### Added

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
## Works with
2424

25-
* PhpStorm >= 2020.3
25+
* PhpStorm >= 2021.1
2626
* JRE >= 11
2727

2828
## Features

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ repositories {
1515
}
1616

1717
group 'com.magento.idea'
18-
version '3.2.0'
18+
version '4.0.0'
1919

2020
apply plugin: 'org.jetbrains.intellij'
2121
apply plugin: 'java'
2222
apply plugin: 'idea'
2323
apply plugin: 'groovy'
2424
apply plugin: 'org.jetbrains.changelog'
2525

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

3030
sourceCompatibility = javaVersion
@@ -41,7 +41,7 @@ intellij {
4141
'properties',
4242
'CSS',
4343
'JavaScriptLanguage',
44-
'com.intellij.lang.jsgraphql:2.7.0',
44+
'com.intellij.lang.jsgraphql:2.9.1',
4545
'platform-images',
4646
'copyright'
4747
]

resources/META-INF/plugin.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<idea-plugin require-restart="true">
88
<id>com.magento.idea.magento2plugin</id>
99
<name>Magento PhpStorm</name>
10-
<version>3.2.0</version>
10+
<version>4.0.0</version>
1111
<vendor url="https://github.com/magento/magento2-phpstorm-plugin">Magento Inc.</vendor>
1212

1313
<description><![CDATA[
@@ -24,7 +24,7 @@
2424
</change-notes>
2525

2626
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
27-
<idea-version since-build="203.5981.155"/>
27+
<idea-version since-build="211.6693.111"/>
2828

2929
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
3030
on how to target different products -->

src/com/magento/idea/magento2plugin/inspections/graphqls/fix/CreateResolverClassQuickFix.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@
1717
import java.util.ArrayList;
1818
import java.util.Arrays;
1919
import java.util.List;
20-
import org.jetbrains.annotations.Nls;
2120
import org.jetbrains.annotations.NotNull;
2221

2322
public class CreateResolverClassQuickFix implements LocalQuickFix {
2423
@Override
25-
public @Nls(capitalization = Nls.Capitalization.Sentence) @NotNull String getFamilyName() {
24+
public @NotNull String getFamilyName() {
2625
return new InspectionBundle().message(
2726
"inspection.graphql.schema.resolver.fix.family"
2827
);

src/com/magento/idea/magento2plugin/reference/provider/ObserverNameReferenceProvider.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
import org.jetbrains.annotations.NotNull;
1616

1717
public class ObserverNameReferenceProvider extends PsiReferenceProvider {
18+
@NotNull
1819
@Override
19-
public PsiReference @NotNull [] getReferencesByElement(
20+
public PsiReference [] getReferencesByElement(
2021
@NotNull final PsiElement element,
2122
@NotNull final ProcessingContext context
2223
) {

src/com/magento/idea/magento2plugin/stubs/indexes/xml/DeclarativeSchemaElementsIndex.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,9 @@ public int getVersion() {
8080
return 1;
8181
}
8282

83+
@NotNull
8384
@Override
84-
public FileBasedIndex.@NotNull InputFilter getInputFilter() {
85+
public FileBasedIndex.InputFilter getInputFilter() {
8586
return virtualFile -> (virtualFile.getFileType() == XmlFileType.INSTANCE
8687
&& virtualFile.getNameWithoutExtension().equals("db_schema"));
8788
}

0 commit comments

Comments
 (0)