2025-01-17 |
Fix exception message. |
2025-01-17 |
Allow using enums with empty string value with EnumType |
2025-01-17 |
cleanup |
2025-01-17 |
Fix regression in UNION queries for MySQL < 8.
Refs #17882 |
2025-01-17 |
Bump up Cake dependencies versions in split packages. |
2025-01-17 |
17857 - Add support for INTERSECT and INTERSECT ALL clauses in ORM |
2025-01-17 |
Change hardcoded value to constant (#17713)
Co-authored-by: ADmad |
2025-01-17 |
Add feature flag (#17713) |
2025-01-17 |
Fix for inconsistency for JSON type field between mysql and sqlite (#17713) |
2025-01-17 |
Merge branch '5.x' into 5.next |
2025-01-17 |
Remove phpstan as dev dependency from split packages.
Use the phpstan version from the main composer.json for split package checks for consistency. |
2025-01-17 |
Merge branch '5.x' into 5.next |
2025-01-17 |
Pin phpstan to 1.12.0 (#17875) |
2025-01-17 |
Revert rule SwitchNegatedTernaryRector |
2025-01-17 |
Revert rule CompactToVariablesRector |
2025-01-17 |
Rector changes after merge |
2025-01-17 |
Update src/Database/Schema/Collection.php
Co-authored-by: ADmad |
2025-01-17 |
Improve code |
2025-01-17 |
Delay database connection until the schema dialect is accessed |
2025-01-17 |
Improve message from QueryException
I hit an invalid query doing some goofy joins and had a hard time
figuring out what I did wrong in my query. It would have been much
easier to figure out the problem if the error contained the problem
query, especially when we went to the trouble of collecting it. |
2025-01-17 |
Avoid unnecessary method call |
2025-01-17 |
Return early |
2025-01-17 |
Fix column ordering in postgres foreign key reflection
I found this problem during cakephp/migrations#798. Once this has been
released I can update the schema reflection logic in migrations. |
2024-12-13 |
Allow input param to be a normal array list instead of strict phpstan one. |
2024-12-13 |
Fix up list array for input. |
2024-12-13 |
CS: Trailing comma on function calls (#18032)
* CS: Trailing comma on function calls
* Fix CS.
* Fix CS.
* Remove debug call
---------
Co-authored-by: Mark Story |
2024-12-13 |
Fix typos and small cleanup. |
2024-12-13 |
Fix CS as per trailing comma rules. (#18047) |
2024-12-13 |
Mention casting to string for debugging |
2024-12-13 |
Remove redundant condition |
2024-11-10 |
Remove redundant !empty |
2024-11-10 |
Fix geospatial types not being defined in TypeFactory (#17991)
- Fix geospatial types not being defined in TypeFactory
- Add tests for schema reflection of geospatial types in MySQL.
Fixes #17988 |
2024-11-10 |
Fix phpcs. |
2024-11-10 |
Fix superglobal usage in Connection
Don't directly reference the superglobals when generating log context
for active transaction warnings. Instead use env(). I didn't want to
introduce cross package dependencies that would read from the active
request. |
2024-11-10 |
cleanup |
2024-11-10 |
Update src/Database/Connection.php
Co-authored-by: Mark Scherer |
2024-11-10 |
CsFix |
2024-11-10 |
Add ip and url to active transaction warning |
2024-11-10 |
Remove unneeded assignments and make the code more succinct. |
2024-11-10 |
#17951 restore functionality to disable query logging in runtime |
2024-11-10 |
Fix client side buffering disabling for SqlServer.
Don't set client side buffering flags when preparing PDO statement when it's disabled for the `SelectQuery`.
Fixes #16848 |