Skip to content

Commit eb175f9

Browse files
committed
Merge branch 'release/1.2.11'
2 parents f0cd49d + cd75d3f commit eb175f9

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

.github/workflows/changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
3333
# Generate a changelog
3434
- name: Generate a changelog
35-
uses: orhun/git-cliff-action@v2.0.5
35+
uses: orhun/git-cliff-action@v2.0.6
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@v5.0.0
50+
uses: peter-evans/create-pull-request@v5.0.1
5151
with:
5252
delete-branch: true
5353
branch-suffix: short-commit-hash

.github/workflows/code_quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# Uploading a SARIF-formatted Qodana report to GitHub
3030
- name: Uploading Qodana report to GitHub
3131
if: ${{ false }}
32-
uses: github/codeql-action/upload-sarif@v2.3.0
32+
uses: github/codeql-action/upload-sarif@v2.3.2
3333
with:
3434
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json
3535

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.11] - 2023-05-04
7+
8+
### Bug Fixes
9+
10+
- Solve some minor issues and update dependencies
11+
612
## [1.2.10] - 2023-04-25
713

814
### Bug Fixes

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
// Java support
88
id("java")
99
// Kotlin support
10-
id("org.jetbrains.kotlin.jvm") version "1.8.20"
10+
id("org.jetbrains.kotlin.jvm") version "1.8.21"
1111
// Gradle IntelliJ Plugin
1212
id("org.jetbrains.intellij") version "1.13.3"
1313
// Gradle Changelog Plugin
@@ -26,7 +26,7 @@ repositories {
2626

2727
dependencies {
2828
implementation(kotlin("stdlib"))
29-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.2")
29+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3")
3030
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
3131
testImplementation("com.intellij.remoterobot:remote-robot:0.11.18")
3232
testImplementation("com.intellij.remoterobot:remote-fixtures:0.11.18")

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pluginName = IntelliJ Nest Plugin
55
pluginRepositoryUrl = https://github.com/nekofar/intellij-nestjs
66

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

1010
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1111
# for insight into build numbers and IntelliJ Platform versions.
@@ -24,7 +24,7 @@ platformPlugins = JavaScript
2424
javaVersion = 11
2525

2626
# Gradle Releases -> https://github.com/gradle/gradle/releases
27-
gradleVersion = 7.6
27+
gradleVersion = 8.1.1
2828

2929
# Opt-out flag for bundling Kotlin standard library -> https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library
3030
# suppress inspection "UnusedProperty"
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-7.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)