Skip to content

Commit 968c437

Browse files
authored
Merge pull request #449 from domaframework/doc/changelog-update-2.3.0
Changelog update - `2.3.0`
2 parents bfbfcb4 + a69ba08 commit 968c437

File tree

5 files changed

+41
-4
lines changed

5 files changed

+41
-4
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [2.3.0] - 2025-09-17
6+
7+
### New Features
8+
9+
- Enable SQL Annotation Conversion Action from DAO Methods and Control SQL File Opening ([#451])
10+
- Check Parameter Types for Method Calls in Bind Variables ([#448])
11+
12+
### Bug Fixes
13+
14+
- Fix: Annotation Option Checks Respect Entity Inheritance ([#454])
15+
- Fix Multiple Registration Error for SQL File to Annotation Conversion Actions ([#452])
16+
17+
### Maintenance
18+
19+
- Set Upper Limit for Plugin Support Versions ([#456])
20+
- Refactor SQL Formatter Block Relations and Translate Comments ([#444])
21+
22+
### Dependency Updates
23+
24+
- Update actions/setup-java action to v5 ([#407])
25+
- Update dependency org.jetbrains.kotlinx.kover to v0.9.2 ([#455])
26+
- Update dependency org.jetbrains.kotlin.jvm to v2.2.20 ([#447])
27+
- Update dependency org.jetbrains.intellij.platform to v2.9.0 ([#443])
28+
29+
[#451]:https://github.com/domaframework/doma-tools-for-intellij/pull/451
30+
[#448]:https://github.com/domaframework/doma-tools-for-intellij/pull/448
31+
[#454]:https://github.com/domaframework/doma-tools-for-intellij/pull/454
32+
[#452]:https://github.com/domaframework/doma-tools-for-intellij/pull/452
33+
[#456]:https://github.com/domaframework/doma-tools-for-intellij/pull/456
34+
[#444]:https://github.com/domaframework/doma-tools-for-intellij/pull/444
35+
[#407]:https://github.com/domaframework/doma-tools-for-intellij/pull/407
36+
[#455]:https://github.com/domaframework/doma-tools-for-intellij/pull/455
37+
[#447]:https://github.com/domaframework/doma-tools-for-intellij/pull/447
38+
[#443]:https://github.com/domaframework/doma-tools-for-intellij/pull/443
39+
40+
541
## [2.2.1] - 2025-09-03
642

743
### Bug Fixes
@@ -538,3 +574,4 @@
538574
[#103]: https://github.com/domaframework/doma-tools-for-intellij/pull/103
539575
[#102]: https://github.com/domaframework/doma-tools-for-intellij/pull/102
540576
[#10]: https://github.com/domaframework/doma-tools-for-intellij/pull/10
577+
[2.3.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/2.2.1...2.3.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 = 2.3.0-beta
4+
pluginVersion = 2.3.0
55

66
pluginSinceBuild=233
77
pluginUntilBuild=252.*

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

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

0 commit comments

Comments
 (0)