Skip to content

Releases: dereuromark/cakephp-setup

3.17.0

04 Jan 03:22
bf9c71f

Choose a tag to compare

Improvements

  • Add compact help command option
  • Add IP Infos in backend

Full Changelog: 3.16.0...3.17.0

3.16.0

01 Dec 17:30

Choose a tag to compare

Improvements

  • Added more security related healthchecks
  • Added useful quick commands for healthcheck warnings

Full Changelog: 3.15.0...3.16.0

3.15.0

24 Nov 21:15

Choose a tag to compare

Improvements

  • Added more Healthchecks
  • Added DbData* commands for database data validation

Full Changelog: 3.14.0...3.15.0

3.14.0

19 Nov 16:28

Choose a tag to compare

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

29 Oct 15:32

Choose a tag to compare

Improvements

  • Add Session healthcheck

Full Changelog: 3.13.4...3.13.5

3.13.4

23 Aug 08:31

Choose a tag to compare

Fixes

  • Fixed up DbInit Command

3.13.3

21 Aug 13:55
99d5cad

Choose a tag to compare

Fixes

  • Allow PHP healthcheck to just warn for minors etc.

3.13.2

13 Aug 04:53
1444442

Choose a tag to compare

Fixes

  • Fixed annotation
  • Improved healthcheck internals.

3.13.1

22 Jul 14:02
9544eb0

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

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([...]);