Releases: appkeep/laravel-appkeep
Releases · appkeep/laravel-appkeep
v0.6.2
v0.6.1
v0.6.0
v0.5.0
What's Changed
- Activate horizon check, if detected by @aozisik in #22
- Add "QueueHealthCheck" https://docs.appkeep.co/laravel-package/Reference/queue-health-check
- Fix CpuCount bug
Full Changelog: v0.4.1...v0.5.0
Support Laravel 10
Laravel 10 (#19) * support laravel 10 * fix main.yml * update main.yml
v0.4.0
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
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 toProductionModeCheck
expectEnvironment()
is renamed toenvironment()
inProductionModeCheck
connectionName()
method is renamed toconnection()
inDatabaseCheck
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
- Added a new default check: OptimizationCheck
Bump version
Guzzle version fix
Require Guzzle ^6.3 | ^7.0