Skip to content

Commit

Permalink
🔖 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
carter-ya committed Nov 29, 2023
1 parent 49deec8 commit 60ed699
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 178 deletions.
67 changes: 64 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,68 @@
<!-- Keep a Changelog guide -> https://keepachangelog.com -->

# test-template Changelog
# JPA Support Changelog

## [Unreleased]
## [2.2.0]
### Added
- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)
- Compatible with IDEA232

## [2.1.0]
### Fixed
- Fixed a bug that could prevent the recognition of primary key field after extends with a parent class
- Support using `Jakarta EE` to replace `javax`

## [2.1.0-RC3]
### Added
- increase the compatibility of the database to resolve the database vendor

## [2.1.0-RC2]
### Fixed
- Fix npe when use file extension

## [2.1.0-RC1]
### Added
- Add `README_zh.md`
- Supports loading the source code template of the specified language through the file extension(Beta)

### Changed
- When column names are all uppercase, automatically convert to lowercase

## [2.0.10]
### Fixed
- Fix the problem of incorrect template: `MyBatis-Plus`
- Fix the issue that may trigger `Slow EDT Operations`

## [2.0.9]
### Fixed
- Some bugs fixed

## [2.0.8]
### Changed
- Some bugs fixed and optimized

## [2.0.8-RC3]
### Added
- Sort alphabetically when generating the selection table
- Supports automatic positioning to the first matching item during regular selection
- Allows to quickly search and locate items in the selection table
- Allows to further filter the database tables by configuring the schema
- Support auto-completion when entering database driver class

### Changed
- Optimize the merge rule: try to merge the missing part even if the field already exists

## [2.0.8-RC2]
### Changed
- Optimize the problem that the components cannot be fully displayed on some screens
- No longer freezes when there are too many data tables

### Fixed
- Some bugs fixed

## [2.0.8-RC1]
### Added
- Support generate Controller、Service、VO、DTO
- Support setting templates in the module directory, project directory, and home directory

### Changed
- Temporarily turn off the function of configuring templates in Settings
171 changes: 0 additions & 171 deletions build.gradle.bak

This file was deleted.

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pluginRepositoryUrl = https://github.com/carter-ya/idea-plugin-jpa-support
pluginVersion = 2.2.0

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 231.*
pluginSinceBuild = 232.*
pluginUntilBuild = 233.*

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
Expand Down
1 change: 0 additions & 1 deletion settings.gradle.bak

This file was deleted.

2 changes: 0 additions & 2 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<idea-plugin>
<actions>
<!-- Add your actions here -->
<action class="com.ifengxue.plugin.action.JpaSupport" description="Create new JPA entities."
id="JPASupport.NewEntities1" text="Generate JPA Entities">
<add-to-group anchor="last" group-id="NewGroup1"/>
Expand Down Expand Up @@ -62,7 +61,6 @@
]]></description>

<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
<!-- <idea-version since-build="171" until-build="191.*"/>-->
<extensions defaultExtensionNs="com.intellij">
<applicationConfigurable parentId="tools" instance="com.ifengxue.plugin.state.SettingsConfigurable"
id="com.ifengxue.plugin.state.SettingsConfigurable" displayName="JPA Support"/>
Expand Down

0 comments on commit 60ed699

Please sign in to comment.