Releases: cycle/database
Releases · cycle/database
v2.15.1
v2.15.0
v2.14.0
2.14.0 (2025-07-14)
Features
- add parameters to SubQuery (74dbd7c)
- add SubQuery injection (8079759)
- add ULID column type (#233) (f8b3a87)
- MySQL: add
firstandafterinto column declaration (#226) (7ad2df1)
Bug Fixes
Documentation
- cover SubQuery with comments (8579419)
Styles
- fix code style; rename
SubQueryInjectiontoSubQuery(b9cf08e) - improve code formatting and consistency in Compiler, Jsoner, and SubQuery (02484a6)
Code Refactoring
- rename
selectSubQuerytosubQueryand update related query logic (727ca0e)
Tests
v2.13.0
v2.12.0
v2.11.3
v2.11.2
v2.11.1
v2.11.0
2.11.0 (2024-06-11)
Features
- add INTERSECT and EXCEPT operators (#204) (b3cc5a3)
- add the ability to specify the full name of the join type (0fa0adf)
Bug Fixes
- add parameter consideration when hashing the query part with orderBy (c874f7d)
- triggering changelog build (4002820)
Documentation
- add issue templates (75086af)
- added security.md file (17aefde)
- move COC to .github directory (08cadcb)
- removing failing ci issue template (7200063)
- update CONTRIBUTING.md (f6a9722)
- updating contribution guide (ad3fbf0)
Styles
- apply yamllint (0506fb1)
Dependencies
- composer: added ergebnis/composer-normalize (1dddad4)
Tests
Continuous Integration
- add cycle/gh-actions (2507324)
- add default CODEOWNERS file (c080e0c)
- added coding-standards initial CI job (9725b49)
- auto apply labels based on files and branches (86971f0)
- do not include v prefix in tag (d9587c3)
- fixes in commit linting (ca925bd)
- push composer.lock to enable cache locks (726a0fe)
- switch to github changelog type (8275f0c)
- use actions/labeler directly (a9fa3b8)
- use fixed versions for actions instead of master (bd4d708)
2.10.0
What's Changed
Features
- Add support JSON columns in
orderBystatement by @msmakouz (#184) - Add
mediumTextcolumn type by @msmakouz (#178) - Add support for the
NOToperator in SQL queries. Add new methodswhereNot,andWhereNot, andorWhereNotby @msmakouz (#185)
Bug Fixes
- Fix caching of SQL insert query with Fragment values by @msmakouz (#177)
- Fix detection of enum values in PostgreSQL when a enum field has only one value by @msmakouz (#181)
- Fix psalm type for
DatabaseInterface::transaction()method by @roxblnfk (#186)