Skip to content

Commit fa7aaf9

Browse files
committed
Merge branch 'release/1.3.1'
2 parents 620054b + 3973074 commit fa7aaf9

File tree

9 files changed

+41
-35
lines changed

9 files changed

+41
-35
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -57,22 +57,22 @@ jobs:
5757

5858
# Check out the current repository
5959
- name: Fetch Sources
60-
uses: actions/checkout@v4.2.0
60+
uses: actions/checkout@v4.2.2
6161

6262
# Validate wrapper
6363
- name: Gradle Wrapper Validation
64-
uses: gradle/actions/wrapper-validation@v4.1.0
64+
uses: gradle/actions/wrapper-validation@v4.2.1
6565

6666
# Set up Java environment for the next steps
6767
- name: Setup Java
68-
uses: actions/setup-java@v4.4.0
68+
uses: actions/setup-java@v4.5.0
6969
with:
7070
distribution: zulu
7171
java-version: 17
7272

7373
# Setup Gradle
7474
- name: Setup Gradle
75-
uses: gradle/actions/setup-gradle@v4.1.0
75+
uses: gradle/actions/setup-gradle@v4.2.1
7676

7777
# Set environment variables
7878
- name: Export Properties
@@ -119,7 +119,7 @@ jobs:
119119
120120
# Store already-built plugin as an artifact for downloading
121121
- name: Upload artifact
122-
uses: actions/upload-artifact@v4.4.0
122+
uses: actions/upload-artifact@v4.4.3
123123
with:
124124
name: ${{ steps.artifact.outputs.filename }}
125125
path: ./build/distributions/content/*/*
@@ -133,18 +133,18 @@ jobs:
133133

134134
# Check out the current repository
135135
- name: Fetch Sources
136-
uses: actions/checkout@v4.2.0
136+
uses: actions/checkout@v4.2.2
137137

138138
# Set up Java environment for the next steps
139139
- name: Setup Java
140-
uses: actions/setup-java@v4.4.0
140+
uses: actions/setup-java@v4.5.0
141141
with:
142142
distribution: zulu
143143
java-version: 17
144144

145145
# Setup Gradle
146146
- name: Setup Gradle
147-
uses: gradle/actions/setup-gradle@v4.1.0
147+
uses: gradle/actions/setup-gradle@v4.2.1
148148

149149
# Run tests
150150
- name: Run Tests
@@ -153,14 +153,14 @@ jobs:
153153
# Collect Tests Result of failed tests
154154
- name: Collect Tests Result
155155
if: ${{ failure() }}
156-
uses: actions/upload-artifact@v4.4.0
156+
uses: actions/upload-artifact@v4.4.3
157157
with:
158158
name: tests-result
159159
path: ${{ github.workspace }}/build/reports/tests
160160

161161
# Upload the Kover report to CodeCov
162162
- name: Upload Code Coverage Report
163-
uses: codecov/codecov-action@v4.6.0
163+
uses: codecov/codecov-action@v5.1.1
164164
with:
165165
files: ${{ github.workspace }}/build/reports/kover/report.xml
166166

@@ -184,21 +184,21 @@ jobs:
184184

185185
# Check out the current repository
186186
- name: Fetch Sources
187-
uses: actions/checkout@v4.2.0
187+
uses: actions/checkout@v4.2.2
188188
with:
189189
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
190190
fetch-depth: 0 # a full history is required for pull request analysis
191191

192192
# Set up Java environment for the next steps
193193
- name: Setup Java
194-
uses: actions/setup-java@v4.4.0
194+
uses: actions/setup-java@v4.5.0
195195
with:
196196
distribution: zulu
197197
java-version: 17
198198

199199
# Run Qodana inspections
200200
- name: Qodana - Code Inspection
201-
uses: JetBrains/qodana-action@v2024.2.3
201+
uses: JetBrains/qodana-action@v2024.2.6
202202
with:
203203
cache-default-branch-only: true
204204

@@ -218,22 +218,22 @@ jobs:
218218

219219
# Check out the current repository
220220
- name: Fetch Sources
221-
uses: actions/checkout@v4.2.0
221+
uses: actions/checkout@v4.2.2
222222

223223
# Set up Java environment for the next steps
224224
- name: Setup Java
225-
uses: actions/setup-java@v4.4.0
225+
uses: actions/setup-java@v4.5.0
226226
with:
227227
distribution: zulu
228228
java-version: 17
229229

230230
# Setup Gradle
231231
- name: Setup Gradle
232-
uses: gradle/actions/setup-gradle@v4.1.0
232+
uses: gradle/actions/setup-gradle@v4.2.1
233233

234234
# Cache Plugin Verifier IDEs
235235
- name: Setup Plugin Verifier IDEs Cache
236-
uses: actions/cache@v4.0.2
236+
uses: actions/cache@v4.2.0
237237
with:
238238
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
239239
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
@@ -245,7 +245,7 @@ jobs:
245245
# Collect Plugin Verifier Result
246246
- name: Collect Plugin Verifier Result
247247
if: ${{ always() }}
248-
uses: actions/upload-artifact@v4.4.0
248+
uses: actions/upload-artifact@v4.4.3
249249
with:
250250
name: pluginVerifier-result
251251
path: ${{ github.workspace }}/build/reports/pluginVerifier
@@ -263,7 +263,7 @@ jobs:
263263

264264
# Check out the current repository
265265
- name: Fetch Sources
266-
uses: actions/checkout@v4.2.0
266+
uses: actions/checkout@v4.2.2
267267

268268
# Remove old release drafts by using the curl request for the available releases with a draft flag
269269
- name: Remove Old Release Drafts

.github/workflows/changelog.yml

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

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

2323
# Set up Java environment for the next steps
2424
- name: Setup Java
25-
uses: actions/setup-java@v4.4.0
25+
uses: actions/setup-java@v4.5.0
2626
with:
2727
distribution: zulu
2828
java-version: 17
2929

3030
# Setup Gradle
3131
- name: Setup Gradle
32-
uses: gradle/actions/setup-gradle@v4.1.0
32+
uses: gradle/actions/setup-gradle@v4.2.1
3333

3434
# Set environment variables
3535
- name: Export Properties
@@ -43,7 +43,7 @@ jobs:
4343
4444
# Generate a changelog
4545
- name: Generate a changelog
46-
uses: orhun/git-cliff-action@v4.3.0
46+
uses: orhun/git-cliff-action@v4.4.2
4747
id: git-cliff
4848
with:
4949
config: cliff.toml

.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.2.0
25+
uses: actions/checkout@v4.2.2
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 the current repository
2222
- name: Fetch Sources
23-
uses: actions/checkout@v4.2.0
23+
uses: actions/checkout@v4.2.2
2424
with:
2525
ref: ${{ github.event.release.tag_name }}
2626

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

3434
# Setup Gradle
3535
- name: Setup Gradle
36-
uses: gradle/actions/setup-gradle@v4.1.0
36+
uses: gradle/actions/setup-gradle@v4.2.1
3737

3838
# Publish the plugin to JetBrains 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 the current repository
3535
- name: Fetch Sources
36-
uses: actions/checkout@v4.2.0
36+
uses: actions/checkout@v4.2.2
3737

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

4545
# Setup Gradle
4646
- name: Setup Gradle
47-
uses: gradle/actions/setup-gradle@v4.1.0
47+
uses: gradle/actions/setup-gradle@v4.2.1
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.3.1] - 2024-12-10
7+
8+
### Bug Fixes
9+
10+
- Solve some minor issues and update dependencies
11+
612
## [1.3.0] - 2024-10-07
713

814
### Features

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.3.0
8+
pluginVersion = 1.3.1
99

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

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.1.0"
8-
kotlin = "2.0.20"
7+
intelliJPlatform = "2.2.0"
8+
kotlin = "2.1.0"
99
kover = "0.8.3"
10-
qodana = "2024.2.3"
10+
qodana = "2024.2.6"
1111

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

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
rootProject.name = "intellij-nestjs"
22

33
plugins {
4-
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
4+
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
55
}

0 commit comments

Comments
 (0)