diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index de62c07..2420214 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -1,2 +1 @@
-* @VKCOM/kphp-developers
.github/ @VKCOM/vk-sec
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 399cb22..b003545 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -38,9 +38,7 @@ jobs:
# Setup Gradle
- name: Setup Gradle
- uses: gradle/actions/setup-gradle@v3
- with:
- gradle-home-cache-cleanup: true
+ uses: gradle/actions/setup-gradle@v4
# Set environment variables
- name: Export Properties
@@ -88,9 +86,7 @@ jobs:
# Setup Gradle
- name: Setup Gradle
- uses: gradle/actions/setup-gradle@v3
- with:
- gradle-home-cache-cleanup: true
+ uses: gradle/actions/setup-gradle@v4
# Run tests
- name: Run Tests
@@ -124,9 +120,7 @@ jobs:
# Setup Gradle
- name: Setup Gradle
- uses: gradle/actions/setup-gradle@v3
- with:
- gradle-home-cache-cleanup: true
+ uses: gradle/actions/setup-gradle@v4
# Run Verify Plugin task and IntelliJ Plugin Verifier tool
- name: Run Plugin Verification tasks
diff --git a/.run/Run Plugin.run.xml b/.run/Run Plugin.run.xml
index d15ff68..c4ec3d6 100644
--- a/.run/Run Plugin.run.xml
+++ b/.run/Run Plugin.run.xml
@@ -1,6 +1,6 @@
-
+
@@ -19,6 +19,7 @@
true
true
false
+ false
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ea75d8c..05d7b35 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
## [Unreleased]
+## 1.1.8 - 01.03.2024
+
+- Adapt code for PhpStorm 2024.3
+
## 1.1.7 — 16.09.2024
- Adapt code for PhpStorm 2024.2
diff --git a/build.gradle.kts b/build.gradle.kts
index 55d39ea..149482e 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -28,7 +28,6 @@ repositories {
// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/platforms.html#sub:version-catalog
dependencies {
- testImplementation("org.opentest4j:opentest4j:1.3.0") // TODO: remove in the next update
testImplementation(libs.junit)
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
diff --git a/gradle.properties b/gradle.properties
index 21e15b2..22b4912 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -5,26 +5,25 @@ pluginName = modulite
pluginRepositoryUrl = https://github.com/VKCOM/modulite
# SemVer format -> https://semver.org
-pluginVersion = 1.1.7
+pluginVersion = 1.1.8
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
-pluginSinceBuild = 242
-pluginUntilBuild = 242.*
+pluginSinceBuild = 243
+pluginUntilBuild = 243.*
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType = IU
-platformVersion = 2024.2
+platformVersion = 2024.3
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
# PHP Plugin - https://plugins.jetbrains.com/plugin/6610-php/versions
-# YAML Plugin - https://plugins.jetbrains.com/plugin/13126-yaml/versions
-platformPlugins = com.jetbrains.php:242.20224.427, org.jetbrains.plugins.yaml:242.20224.237
+platformPlugins = com.jetbrains.php:243.21565.211
# Example: platformBundledPlugins = com.intellij.java
-platformBundledPlugins = com.intellij.java
+platformBundledPlugins = com.intellij.java, org.jetbrains.plugins.yaml
# Gradle Releases -> https://github.com/gradle/gradle/releases
-gradleVersion = 8.9
+gradleVersion = 8.10.2
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
kotlin.stdlib.default.dependency = false
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index f21a08d..75b9f01 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -4,7 +4,7 @@ junit = "4.13.2"
# plugins
changelog = "2.2.1"
-intelliJPlatform = "2.0.1"
+intelliJPlatform = "2.0.1" # TODO: update this in next update: https://youtrack.jetbrains.com/issue/MP-7019
kotlin = "1.9.25"
[libraries]
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
index 2c35211..a4b76b9 100644
Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index 09523c0..df97d72 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml
index e1588bf..fe3d6da 100644
--- a/src/main/resources/META-INF/plugin.xml
+++ b/src/main/resources/META-INF/plugin.xml
@@ -74,7 +74,7 @@
+ implementationClass="com.vk.modulite.inspections.config.ModuliteUnnecessaryFullyQualifiedNameInspection"/>