Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,45 @@

## [Unreleased]

## [1.2.0] - 2025-08-04

### New Features

- Sql Format Official Version ([#289])

### Bug Fixes

- Support for Using `@DataType`-Annotated Records in DAO Method Return and Parameter Types ([#350])
- Fix primitive type validation for DAO method return types ([#352])
- Update Japanese localization for DAO parameter inspection messages ([#317])

### Dependency Updates

- Update dependency org.jetbrains.changelog to v2.3.0 ([#340])
- Update dependency org.jetbrains.intellij.platform to v2.7.0 ([#339])
- Update plugin spotless to v7.2.1 ([#327])
- Update dependency com.pinterest.ktlint:ktlint-cli to v1.7.1 ([#326])
- Update plugin spotless to v7.2.0 ([#325])
- Update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.19.2 ([#324])
- Update dependency com.pinterest.ktlint:ktlint-cli to v1.7.0 ([#315])
- Update dependency com.google.googlejavaformat:google-java-format to v1.28.0 ([#309])
- Update plugin spotless to v7.1.0 ([#299])

[#289]:https://github.com/domaframework/doma-tools-for-intellij/pull/289
[#350]:https://github.com/domaframework/doma-tools-for-intellij/pull/350
[#352]:https://github.com/domaframework/doma-tools-for-intellij/pull/352
[#317]:https://github.com/domaframework/doma-tools-for-intellij/pull/317
[#340]:https://github.com/domaframework/doma-tools-for-intellij/pull/340
[#339]:https://github.com/domaframework/doma-tools-for-intellij/pull/339
[#327]:https://github.com/domaframework/doma-tools-for-intellij/pull/327
[#326]:https://github.com/domaframework/doma-tools-for-intellij/pull/326
[#325]:https://github.com/domaframework/doma-tools-for-intellij/pull/325
[#324]:https://github.com/domaframework/doma-tools-for-intellij/pull/324
[#315]:https://github.com/domaframework/doma-tools-for-intellij/pull/315
[#309]:https://github.com/domaframework/doma-tools-for-intellij/pull/309
[#299]:https://github.com/domaframework/doma-tools-for-intellij/pull/299


## [1.1.1] - 2025-07-03

### Bug Fixes
Expand Down Expand Up @@ -403,3 +442,4 @@
[#95]: https://github.com/domaframework/doma-tools-for-intellij/pull/95
[#96]: https://github.com/domaframework/doma-tools-for-intellij/pull/96
[#99]: https://github.com/domaframework/doma-tools-for-intellij/pull/99
[1.2.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/1.1.1...1.2.0
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pluginGroup = org.domaframework.doma.intellij
pluginName = Doma Tools for IntelliJ
pluginRepositoryUrl = https://github.com/domaframework/doma-tools-for-intellij
pluginVersion = 1.2.0-beta
pluginVersion = 1.2.0

pluginSinceBuild=231

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import com.intellij.ide.plugins.PluginManagerCore
import com.intellij.openapi.extensions.PluginId

const val PLUGIN_ID = "org.domaframework.doma.intellij"
const val PLUGIN_VERSION = "1.2.0-beta"
const val PLUGIN_VERSION = "1.2.0"

open class PluginUtil {
companion object {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<configuration scan="true">
<property resource="logback.properties" />
<property name="LOG_FILE_BASE_DIR" value="${org.domaframework.doma.intellij.log.path:-/doma-tools}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-1.2.0-beta}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-1.2.0}" />

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<configuration scan="true">
<property resource="logback.properties" />
<property name="LOG_FILE_BASE_DIR" value="${org.domaframework.doma.intellij.log.path:-/doma-tools}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-1.2.0-beta}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-1.2.0}" />

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
Expand Down
Loading