Skip to content

Commit ef9b2e8

Browse files
authored
Merge pull request #176 from domaframework/doc/changelog-update-0.8.0
Changelog update - `0.8.0`
2 parents 7bae2f2 + cd20f1b commit ef9b2e8

File tree

5 files changed

+46
-4
lines changed

5 files changed

+46
-4
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [0.8.0] - 2025-05-27
6+
7+
### New Features
8+
9+
- Reference custom function definition class from config file ([#185])
10+
- Support custom functions ([#175])
11+
- Dynamic retrieval of source directory names ([#181])
12+
13+
### Bug Fixes
14+
15+
- Enhance SQL test data validation to support case-insensitive boolean values ([#200])
16+
- Update custom function invocation message to include class name ([#199])
17+
- Replace Trailing Characters During Code Completion ([#196])
18+
- Change the scope of the SQL formatting settings ([#195])
19+
- Fix Test-Data Validation ([#193])
20+
- Fix: Assert: must be called on EDT ([#180])
21+
- Fix Custom Function Code Completion ([#184])
22+
- Fix StringIndexOutOfBoundsException during file path retrieval ([#173])
23+
- Fix missing inspections for injection files ([#172])
24+
25+
### Dependency Updates
26+
27+
- Update dependency com.pinterest.ktlint:ktlint-cli to v1.6.0 ([#177])
28+
- Update plugin org.gradle.toolchains.foojay-resolver-convention to v1 ([#178])
29+
30+
[#185]:https://github.com/domaframework/doma-tools-for-intellij/pull/185
31+
[#175]:https://github.com/domaframework/doma-tools-for-intellij/pull/175
32+
[#181]:https://github.com/domaframework/doma-tools-for-intellij/pull/181
33+
[#200]:https://github.com/domaframework/doma-tools-for-intellij/pull/200
34+
[#199]:https://github.com/domaframework/doma-tools-for-intellij/pull/199
35+
[#196]:https://github.com/domaframework/doma-tools-for-intellij/pull/196
36+
[#195]:https://github.com/domaframework/doma-tools-for-intellij/pull/195
37+
[#193]:https://github.com/domaframework/doma-tools-for-intellij/pull/193
38+
[#180]:https://github.com/domaframework/doma-tools-for-intellij/pull/180
39+
[#184]:https://github.com/domaframework/doma-tools-for-intellij/pull/184
40+
[#173]:https://github.com/domaframework/doma-tools-for-intellij/pull/173
41+
[#172]:https://github.com/domaframework/doma-tools-for-intellij/pull/172
42+
[#177]:https://github.com/domaframework/doma-tools-for-intellij/pull/177
43+
[#178]:https://github.com/domaframework/doma-tools-for-intellij/pull/178
44+
45+
546
## [0.7.0] - 2025-05-15
647

748
### New Features
@@ -268,3 +309,4 @@
268309
[#95]: https://github.com/domaframework/doma-tools-for-intellij/pull/95
269310
[#96]: https://github.com/domaframework/doma-tools-for-intellij/pull/96
270311
[#99]: https://github.com/domaframework/doma-tools-for-intellij/pull/99
312+
[0.8.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/0.7.0...0.8.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.8.0-beta
4+
pluginVersion = 0.8.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.8.0-beta"
22+
const val PLUGIN_VERSION = "0.8.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.8.0-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.8.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.8.0-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.8.0}" />
66

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

0 commit comments

Comments
 (0)