Skip to content
Merged
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
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@ All notable changes to the EasyAPI plugin will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.2.0] - 2026-09-05

### Added
- add best-effort compatibility builds for older IDEA versions
- feat(ai): accept simple class names in PSI tools (#763)
- feat(ai): self-describing rule keys with exported context catalogs (#762)

### Fixed
- stop dropping public fields from exported models
- propagate required flag to @RequestHeader-derived headers
- prevent read-access error in rule scripts
- fix(rules): surface rule failures during export (#761)
- fix(ai): read rule files relative to project dir (#758)
- fix(rules): garbled Chinese text in rule files (#759)

### Improved
- test: cover read-access fix for rule scripts
- perf(rule): speed up field-model building
- test: add MyBatis-Plus IPage response coverage
- enhance(ai): teach the rule agent contextType() (#760)
- docs(git-commit): require user-facing commit subjects (#752)
- docs: document isExtend FQN contract (#753)

---

## [3.1.9] - 2026-08-11

### Added
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ org.gradle.workers.max=2
kotlin.daemon.jvmargs=-Xmx4g -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC
# Plugin base version (semver, e.g. 3.1.9) — bumped by script/release.sh.
# Full version is <base>.<since>.<until|0>, e.g. 3.1.9.252.0.
pluginBaseVersion=3.1.9
pluginBaseVersion=3.2.0
# Default IDEA compatibility lower bound (build number, e.g. 252 = 2025.2).
# Override per invocation: ./gradlew buildPlugin -PpluginSinceBuild=243 [-PpluginUntilBuild=252]
pluginSinceBuild=252
Loading