File tree Expand file tree Collapse file tree 5 files changed +34
-4
lines changed
kotlin/org/domaframework/doma/intellij/common/util Expand file tree Collapse file tree 5 files changed +34
-4
lines changed Original file line number Diff line number Diff line change 22
33## [ Unreleased]
44
5+ ## [ 2.1.0] - 2025-08-08
6+
7+ ### New Features
8+
9+ - Check for Disallowed Parameter Types Used as SQL Bind Variables ([ #377 ] )
10+ - Exclude Specific DAO Parameter Types from SQL Bind Variable Suggestions ([ #373 ] )
11+ - Enhance annotation option parameter validation for embedded properties ([ #368 ] )
12+
13+ ### Bug Fixes
14+
15+ - Fixes to Annotation Option Validation ([ #378 ] )
16+ - Fix DAO parameter type select options handling ([ #371 ] )
17+ - Formatting Support for Single-Line Injected SQL in @Sql Annotations ([ #364 ] )
18+
19+ ### Dependency Updates
20+
21+ - Update dependency gradle to v9 ([ #354 ] )
22+ - Update dependency org.jetbrains.changelog to v2.4.0 ([ #365 ] )
23+
24+ [ #377 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/377
25+ [ #373 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/373
26+ [ #368 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/368
27+ [ #378 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/378
28+ [ #371 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/371
29+ [ #364 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/364
30+ [ #354 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/354
31+ [ #365 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/365
32+
33+
534## [ 2.0.0] - 2025-08-04
635
736### New Features
441470[ #103 ] : https://github.com/domaframework/doma-tools-for-intellij/pull/103
442471[ #102 ] : https://github.com/domaframework/doma-tools-for-intellij/pull/102
443472[ #10 ] : https://github.com/domaframework/doma-tools-for-intellij/pull/10
473+ [ 2.1.0 ] : https://github.com/domaframework/doma-tools-for-intellij/compare/2.0.0...2.1.0
Original file line number Diff line number Diff line change 11pluginGroup = org.domaframework.doma.intellij
22pluginName = Doma Tools for IntelliJ
33pluginRepositoryUrl = https://github.com/domaframework/doma-tools-for-intellij
4- pluginVersion = 2.1.0-beta
4+ pluginVersion = 2.1.0
55
66pluginSinceBuild =231
77
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import com.intellij.ide.plugins.PluginManagerCore
1919import com.intellij.openapi.extensions.PluginId
2020
2121const val PLUGIN_ID = " org.domaframework.doma.intellij"
22- const val PLUGIN_VERSION = " 2.1.0-beta "
22+ const val PLUGIN_VERSION = " 2.1.0"
2323
2424open class PluginUtil {
2525 companion object {
Original file line number Diff line number Diff line change 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.1.0-beta }" />
5+ <property name =" LOG_FILE_VERSION" value =" ${org.domaframework.doma.intellij.plugin.version:-2.1.0}" />
66
77 <appender name =" STDOUT" class =" ch.qos.logback.core.ConsoleAppender" >
88 <encoder >
Original file line number Diff line number Diff line change 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.1.0-beta }" />
5+ <property name =" LOG_FILE_VERSION" value =" ${org.domaframework.doma.intellij.plugin.version:-2.1.0}" />
66
77 <appender name =" STDOUT" class =" ch.qos.logback.core.ConsoleAppender" >
88 <encoder >
You can’t perform that action at this time.
0 commit comments