Skip to content

Commit b1e4f14

Browse files
authored
Merge pull request #144 from domaframework/doc/changelog-update-0.7.0
Changelog update - `0.7.0`
2 parents 49e358d + 1f26d80 commit b1e4f14

File tree

5 files changed

+54
-4
lines changed

5 files changed

+54
-4
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [0.7.0] - 2025-05-15
6+
7+
### New Features
8+
9+
- Error message details ([#162])
10+
- Completion for directive items ([#160])
11+
- for directive specific word element handling ([#150])
12+
- Code completion and code inspection for static property call package class names ([#148])
13+
- Add SQL test data validation inspections ([#136])
14+
15+
### Bug Fixes
16+
17+
- Fix to not display Dao parameter information in the document for elements defined with the for directive. ([#167])
18+
- Do not suggest element names you define in the for directive element ([#166])
19+
- Fix: issue where grouped conditions in block comments were recognized as bind variables ([#159])
20+
- Fixed check for List type test data ([#157])
21+
- Fix/formatter line comment indent ([#156])
22+
- Fixed specific element types to be treated as primitive types ([#152])
23+
- Fix: optional dao param type conversion ([#151])
24+
- Move PluginUtil.kt to the util package in release configuration files ([#146])
25+
- List type test data check and exclude else directive ([#145])
26+
- Fix/document first for item ([#142])
27+
28+
### Dependency Updates
29+
30+
- Update dependency org.jetbrains.intellij.platform to v2.6.0 ([#164])
31+
- Update dependency org.jetbrains.kotlin.jvm to v2.1.21 ([#161])
32+
- Update dependency com.google.googlejavaformat:google-java-format to v1.27.0 ([#143])
33+
34+
[#162]:https://github.com/domaframework/doma-tools-for-intellij/pull/162
35+
[#160]:https://github.com/domaframework/doma-tools-for-intellij/pull/160
36+
[#150]:https://github.com/domaframework/doma-tools-for-intellij/pull/150
37+
[#148]:https://github.com/domaframework/doma-tools-for-intellij/pull/148
38+
[#136]:https://github.com/domaframework/doma-tools-for-intellij/pull/136
39+
[#167]:https://github.com/domaframework/doma-tools-for-intellij/pull/167
40+
[#166]:https://github.com/domaframework/doma-tools-for-intellij/pull/166
41+
[#159]:https://github.com/domaframework/doma-tools-for-intellij/pull/159
42+
[#157]:https://github.com/domaframework/doma-tools-for-intellij/pull/157
43+
[#156]:https://github.com/domaframework/doma-tools-for-intellij/pull/156
44+
[#152]:https://github.com/domaframework/doma-tools-for-intellij/pull/152
45+
[#151]:https://github.com/domaframework/doma-tools-for-intellij/pull/151
46+
[#146]:https://github.com/domaframework/doma-tools-for-intellij/pull/146
47+
[#145]:https://github.com/domaframework/doma-tools-for-intellij/pull/145
48+
[#142]:https://github.com/domaframework/doma-tools-for-intellij/pull/142
49+
[#164]:https://github.com/domaframework/doma-tools-for-intellij/pull/164
50+
[#161]:https://github.com/domaframework/doma-tools-for-intellij/pull/161
51+
[#143]:https://github.com/domaframework/doma-tools-for-intellij/pull/143
52+
53+
554
## [0.6.0] - 2025-04-30
655

756
### New Features
@@ -220,3 +269,4 @@
220269
[#95]: https://github.com/domaframework/doma-tools-for-intellij/pull/95
221270
[#96]: https://github.com/domaframework/doma-tools-for-intellij/pull/96
222271
[#99]: https://github.com/domaframework/doma-tools-for-intellij/pull/99
272+
[0.7.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/0.6.0...0.7.0

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.7.0-beta
4+
pluginVersion = 0.7.0
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.7.0-beta"
22+
const val PLUGIN_VERSION = "0.7.0"
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.7.0-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.7.0}" />
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.7.0-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.7.0}" />
66

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

0 commit comments

Comments
 (0)