Skip to content

Releases: appkeep/laravel-appkeep

v0.6.2

18 Aug 19:53
Compare
Choose a tag to compare
  • Fixed an issue where SpecContext failed to get memory size when running on PHP 7.4

Full Changelog: v0.6.1...v0.6.2

v0.6.1

16 Aug 10:16
1bc1d1f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.0...v0.6.1

v0.6.0

22 May 08:53
09e0883
Compare
Choose a tag to compare

What's Changed

  • Report Scheduled Task outputs to Appkeep by @aozisik in #23

Full Changelog: v0.5.0...v0.6.0

v0.5.0

06 Apr 14:39
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.4.1...v0.5.0

Support Laravel 10

25 Feb 15:31
6ecb6aa
Compare
Choose a tag to compare
Laravel 10 (#19)

* support laravel 10

* fix main.yml

* update main.yml

v0.4.0

29 Dec 17:47
f1775ac
Compare
Choose a tag to compare

How to upgrade?

The default config file has changed. You should run the init command again to update it:

 php artisan appkeep:init --force

If you have cached your routes, re-cache them using:

 php artisan route:cache

Notable changes

  • Licence: We now use the Apache 2.0 license.
  • Check Scopes: Global, server and instance scope introduced for checks.
  • Explore endpoint: a safe endpoint only accessible to Appkeep server. It helps us understand your web server's PHP configuration (as opposed to CLI settings).
  • New default check: we introduced a check that will monitor your server's CPU load (avg load in the last 5 minutes). It can warn or alert you when server load is too high.
  • New "post-deploy" command run php artisan appkeep:post-deploy after each deployment to let us know about code level changes in your project.

Internal changes

  • Events and contexts: A better abstraction around how we collect and send data.

v0.3.0

26 Aug 16:56
Compare
Choose a tag to compare

How to upgrade?

Simply run:

composer require appkeep/laravel-appkeep ^0.3.0

Breaking Changes

These breaking changes will not affect you if you are using the default checks.

  • EnvironmentCheck is renamed to ProductionModeCheck
  • expectEnvironment() is renamed to environment() in ProductionModeCheck
  • connectionName() method is renamed to connection() in DatabaseCheck

Fixes & improvements

  • Improved error messages
  • Simplified some checks & added test coverage
  • Fix Laravel 7 compatibility issues (remove use of Str::headline)

Full Changelog: v0.2.3...v0.3.0

v0.2.3

23 Aug 09:09
Compare
Choose a tag to compare

Bump version

26 Jul 09:16
1a8ee02
Compare
Choose a tag to compare

What's Changed

#11

Full Changelog: v0.2.1...v0.2.2

Guzzle version fix

11 Jul 09:33
Compare
Choose a tag to compare

Require Guzzle ^6.3 | ^7.0