Skip to content

Commit 6a42c8f

Browse files
committed
version 1.2.18 for PhpStorm 2025.2 (VKCOM#77)
1 parent a80f6c2 commit 6a42c8f

9 files changed

Lines changed: 17 additions & 31 deletions

File tree

.github/workflows/build.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ jobs:
1616
build:
1717
name: Build
1818
runs-on: ubuntu-latest
19-
outputs:
20-
version: ${{ steps.properties.outputs.version }}
21-
changelog: ${{ steps.properties.outputs.changelog }}
2219
steps:
2320

2421
# Free GitHub Actions Environment Disk Space
@@ -43,20 +40,6 @@ jobs:
4340
- name: Setup Gradle
4441
uses: gradle/actions/setup-gradle@v4
4542

46-
# Set environment variables
47-
- name: Export Properties
48-
id: properties
49-
shell: bash
50-
run: |
51-
PROPERTIES="$(./gradlew properties --console=plain -q)"
52-
VERSION="$(echo "$PROPERTIES" | grep "^version:" | cut -f2- -d ' ')"
53-
CHANGELOG="$(./gradlew getChangelog --unreleased --no-header --console=plain -q)"
54-
55-
echo "version=$VERSION" >> $GITHUB_OUTPUT
56-
echo "changelog<<EOF" >> $GITHUB_OUTPUT
57-
echo "$CHANGELOG" >> $GITHUB_OUTPUT
58-
echo "EOF" >> $GITHUB_OUTPUT
59-
6043
# Build plugin
6144
- name: Build plugin
6245
run: ./gradlew buildPlugin

.gitignore

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1+
.DS_Store
2+
.gradle
13
.idea
24
.intellijPlatform
3-
.gradle
4-
build
5-
.DS_Store
6-
out
75
.kotlin
6+
build

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## [1.2.18] - 06.08.2025
6+
7+
- Adapt code for PhpStorm 2025.2
8+
59
## [1.2.17] - 05.08.2025
610

711
- Fix IllegalArgumentException when navigating the codebase

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ pluginGroup = com.vk
44
pluginName = kphpstorm
55
pluginRepositoryUrl = https://github.com/VKCOM/kphpstorm
66
# SemVer format -> https://semver.org
7-
pluginVersion = 1.2.17
7+
pluginVersion = 1.2.18
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
10-
pluginSinceBuild = 251
11-
pluginUntilBuild = 251.*
10+
pluginSinceBuild = 252
11+
pluginUntilBuild = 252.*
1212

1313
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1414
platformType = PS
15-
platformVersion = 2025.1
15+
platformVersion = 2025.2
1616

1717
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1818
# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
@@ -21,7 +21,7 @@ platformPlugins =
2121
platformBundledPlugins = com.jetbrains.php
2222

2323
# Gradle Releases -> https://github.com/gradle/gradle/releases
24-
gradleVersion = 8.14.3
24+
gradleVersion = 9.0.0
2525

2626
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
2727
kotlin.stdlib.default.dependency = false

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ junit = "4.13.2"
44
opentest4j = "1.3.0"
55

66
# plugins
7-
changelog = "2.3.0"
7+
changelog = "2.4.0"
88
intelliJPlatform = "2.7.0"
99
kotlin = "2.2.0"
1010
kover = "0.9.1"

gradle/wrapper/gradle-wrapper.jar

1.65 KB
Binary file not shown.

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.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
rootProject.name = "kphpstorm"
2+
13
plugins {
24
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
35
}
4-
5-
rootProject.name = "kphpstorm"

0 commit comments

Comments
 (0)