Breaking Changes
- Minimum of PHP 7.2 required now.
- cakephp/database>=4.0 now required. This could impact migrations/seeds that use the query APIs.
- In environment configuration
default_database
is nowdefault_environment
.
New Features
- Upgraded to PHPUnit 8.0
- Added
setDataDomain()
,getDataDomain()
, andgetColumnForType()
to adapters. - Improved SQLite column add functionality.
- SQLite now creates columns as
NOT NULL
by default, regardless if a default value for the column is specified or not. This brings it in line with how the other adapters work.