Skip to content

Commit c85092d

Browse files
committed
2026.1 initial
1 parent fc3cfc3 commit c85092d

File tree

5 files changed

+34
-37
lines changed

5 files changed

+34
-37
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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+
## 2026.1.0
8+
9+
### Added
10+
11+
- 2026.* IDE's support
12+
713
## 2025.2.2
814

915
### Fixed

build.gradle.kts

Lines changed: 8 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ group = providers.gradleProperty("pluginGroup").get()
2020
version = providers.gradleProperty("pluginVersion").get()
2121

2222
kotlin {
23-
jvmToolchain(17)
23+
jvmToolchain(21)
2424
}
2525

2626
repositories {
@@ -32,16 +32,8 @@ repositories {
3232
}
3333

3434
dependencies {
35-
testImplementation("org.junit.jupiter:junit-jupiter:5.10.0")
36-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")
37-
38-
testImplementation("org.junit.vintage:junit-vintage-engine:5.10.0")
39-
implementation("org.json:json:20171018")
40-
implementation("org.codehaus.plexus:plexus-utils:3.4.0")
41-
testImplementation("com.automation-remarks:video-recorder-junit5:2.0")
42-
testImplementation("com.intellij.remoterobot:remote-robot:0.11.23")
43-
testImplementation("com.intellij.remoterobot:remote-fixtures:0.11.23")
44-
testImplementation("com.squareup.okhttp3:logging-interceptor:4.12.0")
35+
testImplementation("junit:junit:4.13.2")
36+
testCompileOnly("org.junit.jupiter:junit-jupiter-api:5.10.2")
4537

4638
intellijPlatform {
4739
create(providers.gradleProperty("platformType"), providers.gradleProperty("platformVersion"))
@@ -51,7 +43,11 @@ dependencies {
5143
pluginVerifier()
5244
zipSigner()
5345
testFramework(TestFrameworkType.Platform)
46+
testFramework(TestFrameworkType.JUnit5)
5447
}
48+
49+
implementation("org.json:json:20171018")
50+
implementation("org.codehaus.plexus:plexus-utils:3.5.1")
5551
}
5652

5753
intellijPlatform {
@@ -173,17 +169,10 @@ intellijPlatformTesting {
173169
}
174170
}
175171

176-
177-
178-
179-
180-
181-
182-
183172
kover {
184173
currentProject {
185174
instrumentation {
186175
excludedClasses.add("org.apache.velocity.*")
187176
}
188177
}
189-
}
178+
}

gradle.properties

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
pluginGroup = com.magento.idea.magento2plugin
22
pluginName = Magento PhpStorm
33
pluginRepositoryUrl = https://github.com/magento/magento2-phpstorm-plugin
4-
pluginVersion = 2025.2.2
5-
pluginSinceBuild = 250.*
6-
pluginUntilBuild = 258.*
4+
pluginVersion = 2026.1.0
5+
pluginSinceBuild = 261.21525.38
6+
pluginUntilBuild = 268.*
77
platformType = PS
8-
platformVersion = 2025.2
9-
platformPlugins = com.intellij.lang.jsgraphql:252.23892.201
10-
platformBundledPlugins = com.intellij.modules.json,com.jetbrains.php,JavaScript,com.intellij.copyright
11-
gradleVersion = 8.10.2
12-
kotlin.stdlib.default.dependency = false
8+
platformVersion = 261.21525.38
9+
platformPlugins = com.intellij.lang.jsgraphql:261.21525.28
10+
platformBundledPlugins = com.intellij.modules.json,com.jetbrains.php,JavaScript,com.intellij.css,org.jetbrains.plugins.yaml,com.intellij.copyright
11+
gradleVersion = 9.3.1
12+
kotlin.stdlib.default.dependency = true
1313
org.gradle.configuration-cache = true
14-
org.gradle.caching = true
14+
org.gradle.caching = true

gradle/libs.versions.toml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
[versions]
22
# libraries
3-
junit = "4.13.2"
3+
junitJupiter = "5.12.0"
44

55
# plugins
6-
changelog = "2.2.1"
7-
intelliJPlatform = "2.7.2"
8-
kotlin = "2.1.0"
9-
kover = "0.8.3"
10-
qodana = "2024.2.3"
6+
changelog = "2.5.0"
7+
intelliJPlatform = "2.11.0"
8+
kotlin = "2.3.0"
9+
kover = "0.9.5"
10+
qodana = "2025.3.1"
1111

1212
[libraries]
13-
junit = { group = "junit", name = "junit", version.ref = "junit" }
13+
junit-jupiter = { group = "org.junit.jupiter", name = "junit-jupiter", version.ref = "junitJupiter" }
14+
junit-jupiter-engine = { group = "org.junit.jupiter", name = "junit-jupiter-engine", version.ref = "junitJupiter" }
15+
junit-bom = { group = "org.junit", name = "junit-bom", version.ref = "junitJupiter" }
1416

1517
[plugins]
1618
changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" }
1719
intelliJPlatform = { id = "org.jetbrains.intellij.platform", version.ref = "intelliJPlatform" }
1820
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
1921
kover = { id = "org.jetbrains.kotlinx.kover", version.ref = "kover" }
20-
qodana = { id = "org.jetbrains.qodana", version.ref = "qodana" }
22+
qodana = { id = "org.jetbrains.qodana", version.ref = "qodana" }

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)