Releases: getsentry/sentry-symfony
Releases · getsentry/sentry-symfony
1.0
Added
- Add official support to PHP 7.2 (#71)
Changed
- Changed source folder from
src/Sentry/SentryBundle
to justsrc/
(thanks to PSR-4 and Composer this doesn't affect you) - Re-sort the constructor's arguments of
ExceptionListener
- The
SentrySymfonyClient
is no longer an optional argument ofExceptionListener
; it's now required
Fixed
- Remove usage of
create_function()
to avoid deprecations (#71) - Fix a possible bug that could make Sentry crash if an error is triggered before loading a console command
- Fix a fatal error when the user token is not authenticated (#78)
Removed
- Drop deprecated fields from configuration; the same options can be used (since 0.8.3) under
sentry.options
- Dropped the third argument from the
SentrySymfonyClient
constructor;error_types
are now fetched from the second argument, the options array - Remove support for PHP versions lower than 5.6, since they are now EOL
- Remove support for HHVM
0.8.7
0.8.6
0.8.5
Fixed
trim()
DSN value from config, to avoid issues with .env files on BitBucket (see #21 (comment))
0.8.4
0.8.3
Changed
- Migrate all the options from the config root to
sentry.options
(#68); the affected options are still usable in the old form, but they will generate deprecation notices. They will be dropped in the 1.0 release.
Before:
sentry:
app_path: ~
environment: ~
error_types: ~
excluded_app_paths: ~
prefixes: ~
release: ~
After:
sentry:
options:
app_path: ~
environment: ~
error_types: ~
excluded_app_paths: ~
prefixes: ~
release: ~
- Migrate from PSR-0 to PSR-4
0.8.2
0.8.1
0.8.0
- Add
SentryExceptionListenerInterface
and theexception_listener
option in the configuration (#47) to allow customization of the exception listener - Add
SentrySymfonyEvents::PRE_CAPTURE
andSentrySymfonyEvents::SET_USER_CONTEXT
events (#47) to customize event capturing information - Make SkipCapture work on console exceptions too
- Make listeners' priority customizable through the new
listener_priorities
configuration key