|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to Jazzy Framework will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [0.3.1] - 2025-01-27 |
| 9 | + |
| 10 | +### Fixed |
| 11 | +- **BREAKING**: Fixed deprecated Hibernate API usage in BaseRepositoryImpl |
| 12 | + - Replaced deprecated `session.createQuery()` with `session.createMutationQuery()` for DELETE operations |
| 13 | + - This ensures compatibility with future Hibernate versions and removes deprecation warnings |
| 14 | + |
| 15 | +### Changed |
| 16 | +- Updated Hibernate ORM from 6.4.1.Final to 6.4.10.Final for better performance and security |
| 17 | +- Updated H2 database from 2.2.224 to 2.2.232 for latest bug fixes |
| 18 | + |
| 19 | +### Added |
| 20 | +- Enhanced transaction management in BaseRepositoryImpl with new helper methods: |
| 21 | + - `executeInTransaction()` for operations that return values |
| 22 | + - `executeInTransactionVoid()` for void operations |
| 23 | + - Both methods include proper rollback handling for improved reliability |
| 24 | + |
| 25 | +### Technical Details |
| 26 | +- Improved error handling in repository operations |
| 27 | +- Better transaction safety with automatic rollback on exceptions |
| 28 | +- Removed FIXME comments related to deprecated API usage |
| 29 | + |
| 30 | +## [0.3.0] - 2025-01-26 |
| 31 | + |
| 32 | +### Added |
| 33 | +- Comprehensive Spring Data JPA-like query system |
| 34 | +- Method name parsing for automatic query generation |
| 35 | +- Support for @Query, @Modifying, and @QueryHint annotations |
| 36 | +- Enhanced RepositoryFactory with query method support |
| 37 | +- Database-level query execution for improved performance |
| 38 | + |
| 39 | +### Fixed |
| 40 | +- Resolved "socket hang up" errors in exception handling |
| 41 | +- Fixed excessive logging in ORM components |
| 42 | +- Improved code quality and reduced duplication in repository implementations |
| 43 | + |
| 44 | +### Changed |
| 45 | +- Migrated from memory-based filtering to database-level queries |
| 46 | +- Enhanced query method parser with support for complex operations |
| 47 | +- Improved error messages and debugging capabilities |
| 48 | + |
| 49 | +## [0.2.0] - 2025-01-25 |
| 50 | + |
| 51 | +### Added |
| 52 | +- Comprehensive dependency injection system |
| 53 | +- Spring-like annotations (@Component, @Named, @Primary, @PostConstruct, @PreDestroy) |
| 54 | +- Zero-configuration DI container |
| 55 | +- Automatic component scanning and registration |
| 56 | + |
| 57 | +### Changed |
| 58 | +- Enhanced framework architecture with DI support |
| 59 | +- Improved documentation and examples |
| 60 | + |
| 61 | +## [0.1.0] - 2025-01-24 |
| 62 | + |
| 63 | +### Added |
| 64 | +- Initial release of Jazzy Framework |
| 65 | +- Basic web framework functionality |
| 66 | +- Fluent API for request/response handling |
| 67 | +- Simple routing system |
| 68 | +- JSON operations support |
| 69 | +- Basic validation system |
0 commit comments