0.3.9
-
Fixed #316 (random FastCGI errors) with #319 by replacing the underlying library for FastCGI communication (we now use hollodotme/fast-cgi-client).
This brings a performance improvement as well (around 1ms shaved of HTTP responses, which is a 40% improvement).
-
#301 New PHP extension available:
sockets
(update to the latest runtimes) -
#311 The AWS Lambda context is now available in PHP as the second parameter for handlers, see https://bref.sh/docs/runtimes/function.html#context for the complete documentation. Example:
lambda(function (array $event, Context $context) { return /* response */; });
-
Fixed #323 Better handling of errors in
bref init
-
Fixed #275 with #321: avoid filling up
/tmp
with PHP-FPM core dumps -
#308 New
bref deployment
command to debug what went wrong with the last deploymentvendor/bin/bref deployment <stack-name>