Out of memory errors can now be reported by registering the new OomBootstrapper in your HTTP kernel, which will increase the memory limit by 5 MiB when an OOM occurs. See the docs for more details:
LaravelLumen#430
Support the new discardClasses configuration option. This allows events to be discarded based on the exception class name or PHP error name.
#431
Support the new redactedKeys configuration option. This is similar to filters but allows both strings and regexes. String matching is exact but case-insensitive. Regex matching allows for partial and wildcard matching.
#432
Deprecations
The filters configuration option is now deprecated as redactedKeys can express everything that filters could and more.
2.22.0 (2021-02-10)
Enhancements
Out of memory errors can now be reported by registering the new
OomBootstrapper
in your HTTP kernel, which will increase the memory limit by 5 MiB when an OOM occurs. See the docs for more details: Laravel Lumen #430Support the new
discardClasses
configuration option. This allows events to be discarded based on the exception class name or PHP error name. #431Support the new
redactedKeys
configuration option. This is similar tofilters
but allows both strings and regexes. String matching is exact but case-insensitive. Regex matching allows for partial and wildcard matching. #432Deprecations
filters
configuration option is now deprecated asredactedKeys
can express everything that filters could and more.