Skip to content

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Feb 15, 2023

Bumps sentry/sentry-symfony from 4.3.0 to 4.6.0.

Release notes

Sourced from sentry/sentry-symfony's releases.

4.6.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Symfony SDK v4.6.0. This release contains a colorful bouquet of new features.

Features

  • Report exceptions to Sentry as unhandled by default [(#674)](getsentry/sentry-symfony#674)

    All unhandled exceptions will now be marked as handled: false. You can query for such events on the issues list page, by searching for error.handled:false.

  • Exceptions from messages which will be retried are sent to Sentry as handled [(#674)](getsentry/sentry-symfony#674)

    All unhandled exceptions happening on the message bus will now be unpacked and reported individually. The WorkerMessageFailedEvent::willRetry property is used to determine the handled value of the event sent to Sentry.

  • Add register_error_handler config option [(#687)](getsentry/sentry-symfony#687)

    With this option, you can disable the global error and exception handlers of the base PHP SDK. If disabled, only events logged by Monolog will be sent to Sentry.

      sentry:
          dsn: '%env(SENTRY_DSN)%'
          register_error_listener: false
          register_error_handler: false
    monolog:
    handlers:
    sentry:
    type: sentry
    level: !php/const Monolog\Logger::ERROR
    hub_id: Sentry\State\HubInterface

  • Add before_send_transaction [(#691)](getsentry/sentry-symfony#691)

    Similar to before_send, you can now apply additional logic for transaction events. You can mutate the transaction event before it is sent to Sentry. If your callback returns null, the event is dropped.

      sentry:
          options:
              before_send_transaction: 'sentry.callback.before_send_transaction'
    services:
    sentry.callback.before_send_transaction:
    class: 'App\Service\Sentry'
    factory: [ '@​App\Service\Sentry', 'getBeforeSendTransaction' ]

... (truncated)

Changelog

Sourced from sentry/sentry-symfony's changelog.

4.6.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Symfony SDK v4.6.0. This release contains a colorful bouquet of new features.

Features

  • Report exceptions to Sentry as unhandled by default [(#674)](getsentry/sentry-symfony#674)

    All unhandled exceptions will now be marked as handled: false. You can query for such events on the issues list page, by searching for error.handled:false.

  • Exceptions from messages which will be retried are sent to Sentry as handled [(#674)](getsentry/sentry-symfony#674)

    All unhandled exceptions happening on the message bus will now be unpacked and reported individually. The WorkerMessageFailedEvent::willRetry property is used to determine the handled value of the event sent to Sentry.

  • Add register_error_handler config option [(#687)](getsentry/sentry-symfony#687)

    With this option, you can disable the global error and exception handlers of the base PHP SDK. If disabled, only events logged by Monolog will be sent to Sentry.

      sentry:
          dsn: '%env(SENTRY_DSN)%'
          register_error_listener: false
          register_error_handler: false
    monolog:
    handlers:
    sentry:
    type: sentry
    level: !php/const Monolog\Logger::ERROR
    hub_id: Sentry\State\HubInterface

  • Add before_send_transaction [(#691)](getsentry/sentry-symfony#691)

    Similar to before_send, you can now apply additional logic for transaction events. You can mutate the transaction event before it is sent to Sentry. If your callback returns null, the event is dropped.

      sentry:
          options:
              before_send_transaction: 'sentry.callback.before_send_transaction'
    services:
    sentry.callback.before_send_transaction:
    class: 'App\Service\Sentry'

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [sentry/sentry-symfony](https://github.com/getsentry/sentry-symfony) from 4.3.0 to 4.6.0.
- [Release notes](https://github.com/getsentry/sentry-symfony/releases)
- [Changelog](https://github.com/getsentry/sentry-symfony/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-symfony@4.3.0...4.6.0)

---
updated-dependencies:
- dependency-name: sentry/sentry-symfony
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Feb 15, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file php Pull requests that update Php code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants