Releases: brefphp/bref
0.2.37
0.2.36
#72, #91 Set maximum concurrency to 20 instances by default.
The goal for this is to avoid scenarios where a lambda could be DOS by a malicious 3rd party and create a huge AWS bill in a short amount of time.
For example let's say the lambda executes in 100ms. Its execution could be trigger at maximum 10000 times per second (1000 lambdas in parallel). That means a bill of $1613.09 for a whole day of this (not counting API Gateway which is even more expensive!).
This is now set to 20 by default in serverless.yml
when doing bref init
(that would mean up to $30 per day maximum): https://github.com/mnapoli/bref/blob/master/template/serverless.yml#L21
Existing projects are not affected, this will only impact new projects.
The value can be changed in serverless.yml
in your project (and the limit can be removed altogether).
0.2.35
Fix Laravel's runningInConsole()
on AWS Lambda #85
Laravel's application has a runningInConsole()
method that returns true
if the PHP binary used to run the process is php-cli
.
This is a problem because it tricks Laravel into thinking that it runs the Artisan console and not the HTTP application... This can cause issues in some apps or packages.
To fix this we override the method to force its return value:
- most of the time we don't override the value
- when running in Lambda in HTTP we override it to return
false