Skip to content

Releases: dereuromark/cakephp-setup

3.13.4

23 Aug 08:31
Compare
Choose a tag to compare

Fixes

  • Fixed up DbInit Command

3.13.3

21 Aug 13:55
99d5cad
Compare
Choose a tag to compare

Fixes

  • Allow PHP healthcheck to just warn for minors etc.

3.13.2

13 Aug 04:53
1444442
Compare
Choose a tag to compare

Fixes

  • Fixed annotation
  • Improved healthcheck internals.

3.13.1

22 Jul 14:02
9544eb0
Compare
Choose a tag to compare

Fixes

  • Conditionally provide Bake command, depending on Bake plugin being available, resolves deployment issues.

3.13.0

16 Jul 16:03
8ff42f3
Compare
Choose a tag to compare

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

08 Jul 09:15
27730d1
Compare
Choose a tag to compare

Fixes

  • Fixed Healthcheck output for CLI.

Improvements

  • Added BakeHealthcheckCommand
  • Added PhpExtensionsCheck

3.12.1

01 Jul 12:54
1ab5a02
Compare
Choose a tag to compare

Improvements

  • Allow different connections for DB backend tooling

3.12.0

06 Jun 14:54
4f9caaf
Compare
Choose a tag to compare

Improvements

  • Added Healthcheck functionality with a collection of checks to be executed regularly on web and cli.

3.11.0

07 May 16:00
f7a9328
Compare
Choose a tag to compare

Improvements

  • Added timezone infos into backend

3.10.0

01 May 00:39
4b44954
Compare
Choose a tag to compare

Improvements

  • Removed deprecations
  • Consolidated backend