Releases: dereuromark/cakephp-setup
Releases · dereuromark/cakephp-setup
3.17.0
Improvements
- Add compact help command option
- Add IP Infos in backend
Full Changelog: 3.16.0...3.17.0
3.16.0
Improvements
- Added more security related healthchecks
- Added useful quick commands for healthcheck warnings
Full Changelog: 3.15.0...3.16.0
3.15.0
Improvements
- Added more Healthchecks
- Added DbData* commands for database data validation
Full Changelog: 3.14.0...3.15.0
3.14.0
Improvements
- Added SessionCleanup, Xdebug and Opcode healthchecks.
- Improved help messages for failing healtchecks with quick fix tips.
- Provided admin backend info for healthchecks directly
Full Changelog: 3.13.5...3.14.0
3.13.5
3.13.4
Fixes
- Fixed up DbInit Command
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([...]);