Skip to content

Commit 339f675

Browse files
committed
Merge branch 'release/1.2.29'
2 parents a8b9000 + bf50986 commit 339f675

File tree

8 files changed

+41
-35
lines changed

8 files changed

+41
-35
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -45,22 +45,22 @@ jobs:
4545
4646
# Check out current repository
4747
- name: Fetch Sources
48-
uses: actions/checkout@v4.1.6
48+
uses: actions/checkout@v4.2.0
4949

5050
# Validate wrapper
5151
- name: Gradle Wrapper Validation
52-
uses: gradle/wrapper-validation-action@v3.3.2
52+
uses: gradle/wrapper-validation-action@v3.4.0
5353

5454
# Setup Java environment for the next steps
5555
- name: Setup Java
56-
uses: actions/setup-java@v4.2.1
56+
uses: actions/setup-java@v4.4.0
5757
with:
5858
distribution: zulu
5959
java-version: 17
6060

6161
# Setup Gradle
6262
- name: Setup Gradle
63-
uses: gradle/gradle-build-action@v3.3.2
63+
uses: gradle/gradle-build-action@v3.5.0
6464

6565
# Set environment variables
6666
- name: Export Properties
@@ -109,7 +109,7 @@ jobs:
109109
110110
# Store already-built plugin as an artifact for downloading
111111
- name: Upload artifact
112-
uses: actions/upload-artifact@v4.3.3
112+
uses: actions/upload-artifact@v4.4.0
113113
with:
114114
name: ${{ steps.artifact.outputs.filename }}
115115
path: ./build/distributions/content/*/*
@@ -123,18 +123,18 @@ jobs:
123123

124124
# Check out current repository
125125
- name: Fetch Sources
126-
uses: actions/checkout@v4.1.6
126+
uses: actions/checkout@v4.2.0
127127

128128
# Setup Java environment for the next steps
129129
- name: Setup Java
130-
uses: actions/setup-java@v4.2.1
130+
uses: actions/setup-java@v4.4.0
131131
with:
132132
distribution: zulu
133133
java-version: 17
134134

135135
# Setup Gradle
136136
- name: Setup Gradle
137-
uses: gradle/gradle-build-action@v3.3.2
137+
uses: gradle/gradle-build-action@v3.5.0
138138

139139
# Run tests
140140
- name: Run Tests
@@ -143,14 +143,14 @@ jobs:
143143
# Collect Tests Result of failed tests
144144
- name: Collect Tests Result
145145
if: ${{ failure() }}
146-
uses: actions/upload-artifact@v4.3.3
146+
uses: actions/upload-artifact@v4.4.0
147147
with:
148148
name: tests-result
149149
path: ${{ github.workspace }}/build/reports/tests
150150

151151
# Upload Kover report to CodeCov
152152
- name: Upload Code Coverage Report
153-
uses: codecov/codecov-action@v4.4.0
153+
uses: codecov/codecov-action@v4.6.0
154154
with:
155155
files: ${{ github.workspace }}/build/reports/kover/xml/report.xml
156156

@@ -167,18 +167,18 @@ jobs:
167167

168168
# Check out current repository
169169
- name: Fetch Sources
170-
uses: actions/checkout@v4.1.6
170+
uses: actions/checkout@v4.2.0
171171

172172
# Setup Java environment for the next steps
173173
- name: Setup Java
174-
uses: actions/setup-java@v4.2.1
174+
uses: actions/setup-java@v4.4.0
175175
with:
176176
distribution: zulu
177177
java-version: 17
178178

179179
# Run Qodana inspections
180180
- name: Qodana - Code Inspection
181-
uses: JetBrains/qodana-action@v2024.1.5
181+
uses: JetBrains/qodana-action@v2024.2.3
182182
with:
183183
cache-default-branch-only: true
184184

@@ -196,18 +196,18 @@ jobs:
196196
197197
# Check out current repository
198198
- name: Fetch Sources
199-
uses: actions/checkout@v4.1.6
199+
uses: actions/checkout@v4.2.0
200200

201201
# Setup Java environment for the next steps
202202
- name: Setup Java
203-
uses: actions/setup-java@v4.2.1
203+
uses: actions/setup-java@v4.4.0
204204
with:
205205
distribution: zulu
206206
java-version: 17
207207

208208
# Setup Gradle
209209
- name: Setup Gradle
210-
uses: gradle/gradle-build-action@v3.3.2
210+
uses: gradle/gradle-build-action@v3.5.0
211211

212212
# Cache Plugin Verifier IDEs
213213
- name: Setup Plugin Verifier IDEs Cache
@@ -223,7 +223,7 @@ jobs:
223223
# Collect Plugin Verifier Result
224224
- name: Collect Plugin Verifier Result
225225
if: ${{ always() }}
226-
uses: actions/upload-artifact@v4.3.3
226+
uses: actions/upload-artifact@v4.4.0
227227
with:
228228
name: pluginVerifier-result
229229
path: ${{ github.workspace }}/build/reports/pluginVerifier
@@ -241,11 +241,11 @@ jobs:
241241

242242
# Check out current repository
243243
- name: Fetch Sources
244-
uses: actions/checkout@v4.1.6
244+
uses: actions/checkout@v4.2.0
245245

246246
# Setup Java environment for the next steps
247247
- name: Setup Java
248-
uses: actions/setup-java@v4.2.1
248+
uses: actions/setup-java@v4.4.0
249249
with:
250250
distribution: zulu
251251
java-version: 17

.github/workflows/changelog.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
# Check out current repository
1818
- name: Fetch Sources
19-
uses: actions/checkout@v4.1.6
19+
uses: actions/checkout@v4.2.0
2020
with:
2121
fetch-depth: 0
2222

@@ -32,7 +32,7 @@ jobs:
3232
3333
# Generate a changelog
3434
- name: Generate a changelog
35-
uses: orhun/git-cliff-action@v3.1.0
35+
uses: orhun/git-cliff-action@v4.3.0
3636
id: git-cliff
3737
with:
3838
config: cliff.toml
@@ -47,7 +47,7 @@ jobs:
4747

4848
# Create pull request
4949
- name: Create Pull Request
50-
uses: peter-evans/create-pull-request@v6.0.5
50+
uses: peter-evans/create-pull-request@v7.0.5
5151
with:
5252
delete-branch: true
5353
branch-suffix: short-commit-hash

.github/workflows/git-flow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
# Checks out the repository code under $GITHUB_WORKSPACE, so the job can access it
2424
- name: Checkout Repository Code
25-
uses: actions/checkout@v4.1.6
25+
uses: actions/checkout@v4.2.0
2626

2727
# This step uses the Git Flow Action to create PRs based on branch types
2828
- name: Execute Git Flow Action

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ jobs:
2020

2121
# Check out current repository
2222
- name: Fetch Sources
23-
uses: actions/checkout@v4.1.6
23+
uses: actions/checkout@v4.2.0
2424
with:
2525
ref: ${{ github.event.release.tag_name }}
2626

2727
# Setup Java environment for the next steps
2828
- name: Setup Java
29-
uses: actions/setup-java@v4.2.1
29+
uses: actions/setup-java@v4.4.0
3030
with:
3131
distribution: zulu
3232
java-version: 17
3333

3434
# Setup Gradle
3535
- name: Setup Gradle
36-
uses: gradle/gradle-build-action@v3.3.2
36+
uses: gradle/gradle-build-action@v3.5.0
3737

3838
# Publish the plugin to the Marketplace
3939
- name: Publish Plugin

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@ jobs:
3333

3434
# Check out current repository
3535
- name: Fetch Sources
36-
uses: actions/checkout@v4.1.6
36+
uses: actions/checkout@v4.2.0
3737

3838
# Setup Java environment for the next steps
3939
- name: Setup Java
40-
uses: actions/setup-java@v4.2.1
40+
uses: actions/setup-java@v4.4.0
4141
with:
4242
distribution: zulu
4343
java-version: 17
4444

4545
# Setup Gradle
4646
- name: Setup Gradle
47-
uses: gradle/gradle-build-action@v3.3.2
47+
uses: gradle/gradle-build-action@v3.5.0
4848

4949
# Run IDEA prepared for UI testing
5050
- name: Run IDE

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
6+
## [1.2.29] - 2024-10-05
7+
8+
### Bug Fixes
9+
10+
- Solve some minor issues and update dependencies
11+
612
## [1.2.28] - 2024-05-30
713

814
### Bug Fixes

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pluginName = IntelliJ Nest Plugin
55
pluginRepositoryUrl = https://github.com/KartanHQ/intellij-nestjs
66

77
# SemVer format -> https://semver.org
8-
pluginVersion = 1.2.28
8+
pluginVersion = 1.2.29
99

1010
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1111
pluginSinceBuild = 231

gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[versions]
22
# libraries
3-
annotations = "24.1.0"
3+
annotations = "25.0.0"
44

55
# plugins
6-
kotlin = "1.9.23"
7-
changelog = "2.2.0"
8-
gradleIntelliJPlugin = "1.17.3"
6+
kotlin = "2.0.20"
7+
changelog = "2.2.1"
8+
gradleIntelliJPlugin = "1.17.4"
99
qodana = "0.1.13"
10-
kover = "0.7.6"
10+
kover = "0.8.3"
1111

1212
[libraries]
1313
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }

0 commit comments

Comments
 (0)