Skip to content

Commit 81a9877

Browse files
Merge pull request #255 from yusufugurozbek/next
release: version 1.1.6 🔖
2 parents 5ceace5 + fc524f9 commit 81a9877

File tree

8 files changed

+23
-22
lines changed

8 files changed

+23
-22
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ jobs:
5454
# Setup Gradle
5555
- name: Setup Gradle
5656
uses: gradle/actions/setup-gradle@v4
57-
with:
58-
gradle-home-cache-cleanup: true
5957

6058
# Set environment variables
6159
- name: Export Properties
@@ -116,8 +114,6 @@ jobs:
116114
# Setup Gradle
117115
- name: Setup Gradle
118116
uses: gradle/actions/setup-gradle@v4
119-
with:
120-
gradle-home-cache-cleanup: true
121117

122118
# Run tests
123119
- name: Run Tests
@@ -133,7 +129,7 @@ jobs:
133129

134130
# Upload the Kover report to CodeCov
135131
- name: Upload Code Coverage Report
136-
uses: codecov/codecov-action@v4
132+
uses: codecov/codecov-action@v5
137133
with:
138134
files: ${{ github.workspace }}/build/reports/kover/report.xml
139135

@@ -158,6 +154,9 @@ jobs:
158154
# Check out the current repository
159155
- name: Fetch Sources
160156
uses: actions/checkout@v4
157+
with:
158+
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
159+
fetch-depth: 0 # a full history is required for pull request analysis
161160

162161
# Set up Java environment for the next steps
163162
- name: Setup Java
@@ -168,7 +167,7 @@ jobs:
168167

169168
# Run Qodana inspections
170169
- name: Qodana - Code Inspection
171-
uses: JetBrains/qodana-action@v2024.1.9
170+
uses: JetBrains/qodana-action@v2024.2.6
172171
with:
173172
cache-default-branch-only: true
174173

@@ -200,8 +199,6 @@ jobs:
200199
# Setup Gradle
201200
- name: Setup Gradle
202201
uses: gradle/actions/setup-gradle@v4
203-
with:
204-
gradle-home-cache-cleanup: true
205202

206203
# Cache Plugin Verifier IDEs
207204
- name: Setup Plugin Verifier IDEs Cache

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ jobs:
3434
# Setup Gradle
3535
- name: Setup Gradle
3636
uses: gradle/actions/setup-gradle@v4
37-
with:
38-
gradle-home-cache-cleanup: true
3937

4038
# Set environment variables
4139
- name: Export Properties

.github/workflows/run-ui-tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ jobs:
4545
# Setup Gradle
4646
- name: Setup Gradle
4747
uses: gradle/actions/setup-gradle@v4
48-
with:
49-
gradle-home-cache-cleanup: true
5048

5149
# Run IDEA prepared for UI testing
5250
- name: Run IDE

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Testcontainers Port Updater Changelog
22

33
## [Unreleased]
4+
- Bump dependencies to their latest versions
5+
- Support latest IntelliJ 2024.3.*
6+
- Bump Gradle version to 8.11
7+
- Migrate latest changes of intellij-platform-plugin-template v2.0.2
8+
9+
## [1.1.5] - 2024-08-18
10+
411
- Bump dependencies to their latest versions
512
- Support latest IntelliJ 2024.2.*
613
- Bump Gradle version to 8.10
@@ -135,7 +142,8 @@
135142

136143
- Create the plugin
137144

138-
[Unreleased]: https://github.com/yusufugurozbek/testcontainers-port-updater/compare/v1.1.4...HEAD
145+
[Unreleased]: https://github.com/yusufugurozbek/testcontainers-port-updater/compare/v1.1.5...HEAD
146+
[1.1.5]: https://github.com/yusufugurozbek/testcontainers-port-updater/compare/v1.1.4...v1.1.5
139147
[1.1.4]: https://github.com/yusufugurozbek/testcontainers-port-updater/compare/v1.1.3...v1.1.4
140148
[1.1.3]: https://github.com/yusufugurozbek/testcontainers-port-updater/compare/v1.1.2...v1.1.3
141149
[1.1.2]: https://github.com/yusufugurozbek/testcontainers-port-updater/compare/v1.1.1...v1.1.2
@@ -156,4 +164,4 @@
156164
[0.0.5]: https://github.com/yusufugurozbek/testcontainers-port-updater/compare/v0.0.4...v0.0.5
157165
[0.0.4]: https://github.com/yusufugurozbek/testcontainers-port-updater/compare/v0.0.3...v0.0.4
158166
[0.0.3]: https://github.com/yusufugurozbek/testcontainers-port-updater/compare/v0.0.2...v0.0.3
159-
[0.0.2]: https://github.com/yusufugurozbek/testcontainers-port-updater/compare/v0.0.1...v0.0.2
167+
[0.0.2]: https://github.com/yusufugurozbek/testcontainers-port-updater/commits/v0.0.2

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
pluginGroup = com.github.yusufugurozbek.testcontainers.port.updater
44
pluginName = Testcontainers Port Updater
55
pluginRepositoryUrl = https://github.com/yusufugurozbek/testcontainers-port-updater
6-
pluginVersion = 1.1.5
6+
pluginVersion = 1.1.6
77

88
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99
pluginSinceBuild = 234
10-
pluginUntilBuild = 242.*
10+
pluginUntilBuild = 243.*
1111

1212
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1313
platformType = IU
@@ -18,7 +18,7 @@ platformPlugins =
1818
platformBundledPlugins = com.intellij.database
1919

2020
# Gradle Releases -> https://github.com/gradle/gradle/releases
21-
gradleVersion = 8.10
21+
gradleVersion = 8.11
2222
org.gradle.jvmargs=-Xmx1g
2323

2424
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ junit = "4.13.2"
44

55
# plugins
66
changelog = "2.2.1"
7-
intelliJPlatform = "2.0.1"
8-
kotlin = "2.0.10"
7+
intelliJPlatform = "2.1.0"
8+
kotlin = "2.0.21"
99
kover = "0.8.3"
10-
qodana = "2024.1.9"
10+
qodana = "2024.2.6"
1111

1212
[libraries]
1313
junit = { group = "junit", name = "junit", version.ref = "junit" }

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

qodana.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://www.jetbrains.com/help/qodana/qodana-yaml.html
33

44
version: 1.0
5-
linter: jetbrains/qodana-jvm-community:latest
5+
linter: jetbrains/qodana-jvm-community:2024.2
66
projectJDK: "17"
77
profile:
88
name: qodana.recommended

0 commit comments

Comments
 (0)