Skip to content

Commit d90de43

Browse files
committed
Merge branch 'release/1.2.5'
2 parents 847533c + e64bd58 commit d90de43

9 files changed

Lines changed: 55 additions & 86 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 16 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -7,62 +7,32 @@ assignees:
77
- nekofar
88

99
body:
10-
1110
- type: textarea
12-
id: issue
1311
attributes:
14-
label: What happened?
12+
label: Describe the bug
1513
description: A clear and concise description of what the bug is.
16-
validations:
17-
required: true
14+
placeholder: Describe the bug here.
1815

1916
- type: textarea
20-
id: logs
2117
attributes:
22-
label: Relevant log output or stack trace
23-
description: |
24-
Please copy and paste any relevant log output.
25-
Add the full stack trace if available.
26-
If possible, run the failing task with `--stacktrace` flag.
27-
28-
*This will be automatically formatted into code, so there is no need for backticks.*
29-
render: shell
18+
label: Steps to reproduce the behavior
19+
description: List the steps to reproduce the behavior, including any necessary environment details.
20+
placeholder: List the steps to reproduce here.
3021

3122
- type: textarea
32-
id: steps
33-
attributes:
34-
label: Steps to reproduce
35-
description: Steps to reproduce the behavior – provide your build configuration.
36-
validations:
37-
required: true
38-
39-
- type: input
40-
id: version
4123
attributes:
42-
label: Plugin version
43-
placeholder: 1.0.0
44-
validations:
45-
required: true
24+
label: Expected behavior
25+
description: A clear and concise description of what you expected to happen.
26+
placeholder: Describe the expected behavior here.
4627

47-
- type: input
48-
id: gradle
49-
attributes:
50-
label: Gradle version
51-
placeholder: 8.2.1
52-
validations:
53-
required: true
54-
55-
- type: dropdown
56-
id: os
28+
- type: textarea
5729
attributes:
58-
label: Operating System
59-
options:
60-
- macOS
61-
- Linux
62-
- Windows
30+
label: Screenshots
31+
description: If applicable, add screenshots to help explain the problem.
32+
placeholder: Add any relevant screenshots here.
6333

64-
- type: input
65-
id: url
34+
- type: textarea
6635
attributes:
67-
label: Link to build, i.e. failing GitHub Action job
68-
placeholder: https://github.com/username/project/actions/runs/1234567890
36+
label: Additional context
37+
description: Add any other context about the problem here.
38+
placeholder: Add any additional context here.

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,26 @@ assignees:
77
- nekofar
88

99
body:
10-
1110
- type: textarea
12-
id: cause
1311
attributes:
14-
label: Describe the need of your request
15-
description: A clear and concise description of what the need or problem is.
16-
validations:
17-
required: true
12+
label: Is your feature request related to a problem? Please describe.
13+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when ...
14+
placeholder: Describe the problem here.
1815

1916
- type: textarea
20-
id: solution
2117
attributes:
22-
label: Proposed solution
18+
label: Describe the solution you'd like
2319
description: A clear and concise description of what you want to happen.
24-
validations:
25-
required: true
20+
placeholder: Describe the solution you'd like here.
2621

2722
- type: textarea
28-
id: alternatives
2923
attributes:
30-
label: Alternatives you've considered
31-
description: What did you try so far to accomplish the goal?
24+
label: Describe alternatives you've considered
25+
description: A clear and concise description of any alternative solutions or features you've considered.
26+
placeholder: Describe alternatives here.
3227

3328
- type: textarea
34-
id: context
3529
attributes:
3630
label: Additional context
3731
description: Add any other context or screenshots about the feature request here.
32+
placeholder: Add any additional context or screenshots here.

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
updates:
33
# Maintain dependencies for GitHub Actions
44
- package-ecosystem: "github-actions"
5-
# Files stored in the repository root
5+
# Files stored in repository root
66
directory: "/"
77
# Check for updates every weekday
88
schedule:
@@ -26,7 +26,7 @@ updates:
2626

2727
# Maintain dependencies for Gradle
2828
- package-ecosystem: "gradle"
29-
# Files stored in the repository root
29+
# Files stored in repository root
3030
directory: "/"
3131
# Check for updates every weekday
3232
schedule:

.github/workflows/build.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ jobs:
6868

6969
# Set up the Java environment for the next steps
7070
- name: Setup Java
71-
uses: actions/setup-java@v5.0.0
71+
uses: actions/setup-java@v5.1.0
7272
with:
7373
distribution: zulu
7474
java-version: 21
7575

7676
# Setup Gradle
7777
- name: Setup Gradle
78-
uses: gradle/actions/setup-gradle@v5.0.0
78+
uses: gradle/actions/setup-gradle@v4.4.3
7979

8080
# Set environment variables
8181
- name: Export Properties
@@ -122,7 +122,7 @@ jobs:
122122
123123
# Store an already-built plugin as an artifact for downloading
124124
- name: Upload artifact
125-
uses: actions/upload-artifact@v6.0.0
125+
uses: actions/upload-artifact@v5.0.0
126126
with:
127127
name: ${{ steps.artifact.outputs.filename }}
128128
path: ./build/distributions/content/*/*
@@ -145,16 +145,16 @@ jobs:
145145
- name: Fetch Sources
146146
uses: actions/checkout@v6.0.1
147147

148-
# Set up the Java environment for the next steps
148+
# Set up Java environment for the next steps
149149
- name: Setup Java
150-
uses: actions/setup-java@v5.0.0
150+
uses: actions/setup-java@v5.1.0
151151
with:
152152
distribution: zulu
153153
java-version: 21
154154

155155
# Setup Gradle
156156
- name: Setup Gradle
157-
uses: gradle/actions/setup-gradle@v5.0.0
157+
uses: gradle/actions/setup-gradle@v4.4.3
158158
with:
159159
cache-read-only: true
160160

@@ -165,14 +165,14 @@ jobs:
165165
# Collect Tests Result of failed tests
166166
- name: Collect Tests Result
167167
if: ${{ failure() }}
168-
uses: actions/upload-artifact@v6.0.0
168+
uses: actions/upload-artifact@v5.0.0
169169
with:
170170
name: tests-result
171171
path: ${{ github.workspace }}/build/reports/tests
172172

173173
# Upload the Kover report to CodeCov
174174
- name: Upload Code Coverage Report
175-
uses: codecov/codecov-action@v5.5.1
175+
uses: codecov/codecov-action@v5.5.2
176176
with:
177177
files: ${{ github.workspace }}/build/reports/kover/report.xml
178178
token: ${{ secrets.CODECOV_TOKEN }}
@@ -204,14 +204,14 @@ jobs:
204204

205205
# Set up the Java environment for the next steps
206206
- name: Setup Java
207-
uses: actions/setup-java@v5.0.0
207+
uses: actions/setup-java@v5.1.0
208208
with:
209209
distribution: zulu
210210
java-version: 21
211211

212212
# Run Qodana inspections
213213
- name: Qodana - Code Inspection
214-
uses: JetBrains/qodana-action@v2025.2.3
214+
uses: JetBrains/qodana-action@v2025.1.1
215215
with:
216216
cache-default-branch-only: true
217217

@@ -235,14 +235,14 @@ jobs:
235235

236236
# Set up the Java environment for the next steps
237237
- name: Setup Java
238-
uses: actions/setup-java@v5.0.0
238+
uses: actions/setup-java@v5.1.0
239239
with:
240240
distribution: zulu
241241
java-version: 21
242242

243243
# Setup Gradle
244244
- name: Setup Gradle
245-
uses: gradle/actions/setup-gradle@v5.0.0
245+
uses: gradle/actions/setup-gradle@v4.4.3
246246
with:
247247
cache-read-only: true
248248

@@ -253,7 +253,7 @@ jobs:
253253
# Collect Plugin Verifier Result
254254
- name: Collect Plugin Verifier Result
255255
if: ${{ always() }}
256-
uses: actions/upload-artifact@v6.0.0
256+
uses: actions/upload-artifact@v5.0.0
257257
with:
258258
name: pluginVerifier-result
259259
path: ${{ github.workspace }}/build/reports/pluginVerifier

.github/workflows/changelog.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222

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

3030
# Setup Gradle
3131
- name: Setup Gradle
32-
uses: gradle/actions/setup-gradle@v5.0.0
32+
uses: gradle/actions/setup-gradle@v4.4.3
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.6.0
46+
uses: orhun/git-cliff-action@v4.7.0
4747
id: git-cliff
4848
with:
4949
config: cliff.toml

.github/workflows/release.yml

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

3434
# Set up the Java environment for the next steps
3535
- name: Setup Java
36-
uses: actions/setup-java@v5.0.0
36+
uses: actions/setup-java@v5.1.0
3737
with:
3838
distribution: zulu
3939
java-version: 21
4040

4141
# Setup Gradle
4242
- name: Setup Gradle
43-
uses: gradle/actions/setup-gradle@v5.0.0
44-
with:
45-
cache-read-only: true
43+
uses: gradle/actions/setup-gradle@v4.4.3
4644

47-
# Publish the plugin to JetBrains Marketplace
45+
# Publish the plugin to JetBrains Marketplace
4846
- name: Publish Plugin
4947
env:
5048
PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ jobs:
3737

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

4545
# Setup Gradle
4646
- name: Setup Gradle
47-
uses: gradle/actions/setup-gradle@v5.0.0
47+
uses: gradle/actions/setup-gradle@v4.4.3
4848
with:
4949
cache-read-only: true
5050

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.5] - 2026-01-08
7+
8+
### Bug Fixes
9+
10+
- Solve some minor issues and update dependencies
11+
612
## [1.2.4] - 2026-01-05
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 = Tauri
55
pluginRepositoryUrl = https://github.com/KartanHQ/intellij-tauri
66

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

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

0 commit comments

Comments
 (0)