File tree Expand file tree Collapse file tree 5 files changed +30
-4
lines changed
kotlin/org/domaframework/doma/intellij/common/util Expand file tree Collapse file tree 5 files changed +30
-4
lines changed Original file line number Diff line number Diff line change 22
33## [ Unreleased]
44
5+ ## [ 2.2.0] - 2025-08-29
6+
7+ ### New Features
8+
9+ - Exception Analyzer Support ([ #419 ] )
10+
11+ ### Bug Fixes
12+
13+ - Fix SQL formatter issues with ORDER BY/GROUP BY clauses and improve block indentation handling ([ #431 ] )
14+ - Handle Blocks with the Same Name as Functions or Keywords as Word Blocks ([ #426 ] )
15+ - Fix: Subquery Indentation ([ #429 ] )
16+ - Fix Indentation Issues for Injected SQL and Correct Java Indent Size Retrieval ([ #422 ] )
17+
18+ ### Dependency Updates
19+
20+ - Update dependency org.jetbrains.intellij.plugins: verifier-cli to v1.395 ([ #424 ] )
21+
22+ [ #419 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/419
23+ [ #431 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/431
24+ [ #426 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/426
25+ [ #429 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/429
26+ [ #422 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/422
27+ [ #424 ] :https://github.com/domaframework/doma-tools-for-intellij/pull/424
28+
29+
530## [ 2.1.2] - 2025-08-22
631
732### Bug Fixes
495520[ #103 ] : https://github.com/domaframework/doma-tools-for-intellij/pull/103
496521[ #102 ] : https://github.com/domaframework/doma-tools-for-intellij/pull/102
497522[ #10 ] : https://github.com/domaframework/doma-tools-for-intellij/pull/10
523+ [ 2.2.0 ] : https://github.com/domaframework/doma-tools-for-intellij/compare/2.1.2...2.2.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.2.0-beta
4+ pluginVersion = 2.2.0
55
66pluginSinceBuild =233
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.2.0-beta "
22+ const val PLUGIN_VERSION = " 2.2.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.2.0-beta }" />
5+ <property name =" LOG_FILE_VERSION" value =" ${org.domaframework.doma.intellij.plugin.version:-2.2.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.2.0-beta }" />
5+ <property name =" LOG_FILE_VERSION" value =" ${org.domaframework.doma.intellij.plugin.version:-2.2.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