Releases: bugsnag/bugsnag-laravel
Releases · bugsnag/bugsnag-laravel
v2.28.0
Enhancements
- Attach Laravel 11's
Context
to events as metadata under the key 'Laravel Context'. Hidden context will added under the key 'Laravel Hidden Context' only if the new configuration optionattach_hidden_context
is enabled, either inconfig/bugsnag.php
or via the environment variableBUGSNAG_ATTACH_HIDDEN_CONTEXT
#537
v2.27.0
- Allow installation on Laravel 11 projects
jonathan-dij
#532
v2.26.0
Enhancements
- Allow installation on Laravel 10 projects
rubenvanerk
#518
v2.25.1
v2.25.0
v2.24.0
Enhancements
- New APIs to support feature flag and experiment functionality. For more information, please see https://docs.bugsnag.com/product/features-experiments.
#487
v2.23.0
v2.22.2
v2.22.1
v2.22.0
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
#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 tofilters
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 asredactedKeys
can express everything that filters could and more.