Skip to content

Releases: bugsnag/bugsnag-symfony

v1.14.2

06 Jun 08:49
f3da228
Compare
Choose a tag to compare

Bug Fixes

  • Prevent duplicate Configuration class declaration warnings
    #178

v1.14.1

23 Jan 12:16
0ca4466
Compare
Choose a tag to compare
  • Fix "Configuration class not found" error when using Composer's --classmap-authoritative option
    #174

v1.14.0

16 Jan 08:35
d10b9d2
Compare
Choose a tag to compare

v1.13.0

24 Oct 10:26
be4bb45
Compare
Choose a tag to compare

Enhancements

  • Add max_breadcrumbs config option for configuring the maximum number of breadcrumbs to attach to a report
    #158

v1.12.0

20 May 14:10
0cb1831
Compare
Choose a tag to compare

Enhancements

v1.11.2

02 Feb 11:49
28e2a1a
Compare
Choose a tag to compare

Bug Fixes

v1.11.1

19 Jan 15:00
fad8c41
Compare
Choose a tag to compare

Bug Fixes

  • Call getUserIdentifier instead of getUsername on Symfony 6
    #145

v1.11.0

13 Dec 09:39
118f812
Compare
Choose a tag to compare

Enhancements

Bug Fixes

  • Prevent a deprecation from BugsnagListener::getSubscribedEvents
    #138

v1.10.0

30 Jun 14:40
4971ab4
Compare
Choose a tag to compare

Enhancements

  • Add support for Symfony Messenger. Exceptions in workers will now automatically be reported to Bugsnag. The queue of events will also be flushed after each successful job
    Mathieu
    #89
    #125

Bug Fixes

  • Use hasPreviousSession instead of hasSession when checking for session data
    Oleg Andreyev
    #124

  • Set the severity of exceptions to "error" instead of "warning"
    #126

v1.9.0

10 Feb 13:14
efedeb2
Compare
Choose a tag to compare

Enhancements

  • Out of memory errors will now be reported by increasing the memory limit by 5 MiB. Use the new memoryLimitIncrease configuration option to change the amount of memory, or set it to null to disable the increase entirely.
    #119

  • Support the new discardClasses configuration option. This allows events to be discarded based on the exception class name or PHP error name.
    #120

  • 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.
    #121

Deprecations

  • The filters configuration option is now deprecated as redactedKeys can express everything that filters could and more.