Releases: tflori/orm
Releases · tflori/orm
v1.10.0
What's Changed
- document the transaction methods (closes #81)
- add delete method to entity (closes #82)
- advance requirements to ease maintenance
- implement magic methods __serialize and __unserialize to avoid deprecation warning (closes #79)
- fix issue in update statements without joins in pgsql and sqlite dbals (closes #78)
Full Changelog: v1.9.1...v1.10.0
v1.10.0-rc.2
v1.10.0-rc.1: Merge pull request #80 from tflori/advance-requirements
v1.9.1
Version 1.9.0
Changelog:
- switch to github actions
- fix endless recursion in to array
- add compatibility with php8
- implement filters (see https://tflori.github.io/orm/filters.html)
- implement morphed relations (see https://tflori.github.io/orm/relationDefinition.html#morphed-relation-1)
- implement eager loading of relations from entities and fetchers (see https://tflori.github.io/orm/relations.html#eager-loading-of-relations)
- implement boot method for entities and traits (just overwrite https://tflori.github.io/orm/reference.html#ormentityboot)
- allow using query builder from entity manager (see https://tflori.github.io/orm/querybuilder.html)
- add parent children relation with build tree method (see https://tflori.github.io/orm/relationDefinition.html#the-parent-children-relation)
- add method to reset loaded relations:
Entity::resetRelated(?string)
- implement methods for fetching, updating, inserting and deleting in query builder
- wrap count query instead of modifying select clause
- implement a simulation of nested transaction with savepoints
- allow to add columns to entity fetchers
Version 1.9.0 Release Candidate 10
Changelog:
- allow to add columns to entity fetchers
Version 1.9.0 Release Candidate 9
Changelog:
- add parent children relation with build tree method
Version 1.9.0 Release Candidate 8
Changelog:
- fix error in eager loading
Version 1.9.0 Release Candidate 7
Changelog:
- implement eager loading of relations from entities and fetchers
- switch to gitlab-ci
- fix endless recursion in to array
Version 1.9.0 Release Candidate 6
Changelog:
- implement a simulation of nested transaction with savepoints