Skip to content

0.3.9

Compare
Choose a tag to compare
@mnapoli mnapoli released this 05 May 10:00
· 2834 commits to master since this release
  • 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 deployment

    vendor/bin/bref deployment <stack-name>