Releases: dereuromark/cakephp-setup
Releases · dereuromark/cakephp-setup
3.13.4
3.13.3
Fixes
- Allow PHP healthcheck to just warn for minors etc.
3.13.2
Fixes
- Fixed annotation
- Improved healthcheck internals.
3.13.1
Fixes
- Conditionally provide Bake command, depending on Bake plugin being available, resolves deployment issues.
3.13.0
Improvements
- Allow callable for scope definitions
- Allow adjusting priority/scope at runtime
Example:
/**
* @return array<string|callable>
*/
public function scope(): array {
return [
// Only run in debug mode
function () {
return Configure::read('debug');
},
];
}
To adjust an existing check at runtime, you need to instantiate it first:
$check = new \Setup\Healthcheck\Check\Core\CakeVersionCheck();
$check
->adjustPriority(6)
->adjustScope([...]);
3.12.2
Fixes
- Fixed Healthcheck output for CLI.
Improvements
- Added BakeHealthcheckCommand
- Added PhpExtensionsCheck
3.12.1
Improvements
- Allow different connections for DB backend tooling
3.12.0
Improvements
- Added Healthcheck functionality with a collection of checks to be executed regularly on web and cli.
3.11.0
Improvements
- Added timezone infos into backend
3.10.0
Improvements
- Removed deprecations
- Consolidated backend