Skip to content

Commit 9749cc3

Browse files
committed
Changelog update - 0.8.1
1 parent e736e61 commit 9749cc3

File tree

5 files changed

+52
-4
lines changed

5 files changed

+52
-4
lines changed

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,53 @@
22

33
## [Unreleased]
44

5+
## [0.8.1] - 2025-06-06
6+
7+
### Bug Fixes
8+
9+
- No error when static field-access element shares the same name as a parameter ([#243])
10+
- No error when a field-access element shares the same name as a parameter ([#241])
11+
- Test data check skipped for directives at end of file ([#214])
12+
- Add fallback for parent class name retrieval in validation property result ([#216])
13+
- Code completion fails after existing values in method arguments ([#215])
14+
- Instance member suggestions missing inside static property call arguments ([#213])
15+
- Cannot resolve references from within argument-parameter elements ([#207])
16+
- Update error messages ([#205])
17+
- Reflect Custom Error Levels in DAO Method Inspection ([#232])
18+
- Fix FieldAccess code completion ([#229])
19+
- Fix code completion for static field access ([#226])
20+
21+
### Maintenance
22+
23+
- Refactor: Split inspection logic ([#230])
24+
- Add pull request trigger to release drafter workflow ([#168])
25+
26+
### Dependency Updates
27+
28+
- Update plugin verifier version to 1.386 ([#209])
29+
- Update pluginVerifier version in dependencies and build configuration ([#218])
30+
- Update plugin spotless to v7.0.4 ([#203])
31+
- Update dependency gradle to v8.14.1 ([#188])
32+
33+
[#243]:https://github.com/domaframework/doma-tools-for-intellij/pull/243
34+
[#241]:https://github.com/domaframework/doma-tools-for-intellij/pull/241
35+
[#214]:https://github.com/domaframework/doma-tools-for-intellij/pull/214
36+
[#216]:https://github.com/domaframework/doma-tools-for-intellij/pull/216
37+
[#215]:https://github.com/domaframework/doma-tools-for-intellij/pull/215
38+
[#213]:https://github.com/domaframework/doma-tools-for-intellij/pull/213
39+
[#207]:https://github.com/domaframework/doma-tools-for-intellij/pull/207
40+
[#205]:https://github.com/domaframework/doma-tools-for-intellij/pull/205
41+
[#232]:https://github.com/domaframework/doma-tools-for-intellij/pull/232
42+
[#229]:https://github.com/domaframework/doma-tools-for-intellij/pull/229
43+
[#226]:https://github.com/domaframework/doma-tools-for-intellij/pull/226
44+
[#230]:https://github.com/domaframework/doma-tools-for-intellij/pull/230
45+
[#168]:https://github.com/domaframework/doma-tools-for-intellij/pull/168
46+
[#209]:https://github.com/domaframework/doma-tools-for-intellij/pull/209
47+
[#218]:https://github.com/domaframework/doma-tools-for-intellij/pull/218
48+
[#203]:https://github.com/domaframework/doma-tools-for-intellij/pull/203
49+
[#188]:https://github.com/domaframework/doma-tools-for-intellij/pull/188
50+
51+
552
## [0.8.0] - 2025-05-27
653

754
### New Features
@@ -308,3 +355,4 @@
308355
[#95]: https://github.com/domaframework/doma-tools-for-intellij/pull/95
309356
[#96]: https://github.com/domaframework/doma-tools-for-intellij/pull/96
310357
[#99]: https://github.com/domaframework/doma-tools-for-intellij/pull/99
358+
[0.8.1]: https://github.com/domaframework/doma-tools-for-intellij/compare/0.8.0...0.8.1

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pluginGroup = org.domaframework.doma.intellij
22
pluginName = Doma Tools for IntelliJ
33
pluginRepositoryUrl = https://github.com/domaframework/doma-tools-for-intellij
4-
pluginVersion = 0.8.1-beta
4+
pluginVersion = 0.8.1
55

66
pluginSinceBuild=231
77

src/main/kotlin/org/domaframework/doma/intellij/common/util/PluginUtil.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import com.intellij.ide.plugins.PluginManagerCore
1919
import com.intellij.openapi.extensions.PluginId
2020

2121
const val PLUGIN_ID = "org.domaframework.doma.intellij"
22-
const val PLUGIN_VERSION = "0.8.1-beta"
22+
const val PLUGIN_VERSION = "0.8.1"
2323

2424
open class PluginUtil {
2525
companion object {

src/main/resources/logback-test.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration scan="true">
33
<property resource="logback.properties" />
44
<property name="LOG_FILE_BASE_DIR" value="${org.domaframework.doma.intellij.log.path:-/doma-tools}" />
5-
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.8.1-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.8.1}" />
66

77
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
88
<encoder>

src/main/resources/logback.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration scan="true">
33
<property resource="logback.properties" />
44
<property name="LOG_FILE_BASE_DIR" value="${org.domaframework.doma.intellij.log.path:-/doma-tools}" />
5-
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.8.1-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.8.1}" />
66

77
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
88
<encoder>

0 commit comments

Comments
 (0)