Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the symfony-dependencies group with 2 updates #1646

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 17, 2024

Bumps the symfony-dependencies group with 2 updates: sentry/sentry-symfony and symfony/phpunit-bridge.

Updates sentry/sentry-symfony from 4.14.0 to 5.0.0

Release notes

Sourced from sentry/sentry-symfony's releases.

5.0.0

The Sentry SDK team is thrilled to announce the immediate availability of Sentry Symfony SDK v5.0.0.

Breaking Change

Please refer to the UPGRADE-5.0.md guide for a complete list of breaking changes.

This version adds support for the underlying Sentry PHP SDK v4.0. Please refer to the PHP SDK sentry-php/UPGRADE-4.0.md guide for a complete list of breaking changes.

  • This version exclusively uses the envelope endpoint to send event data to Sentry.

    If you are using sentry.io, no action is needed. If you are using an on-premise/self-hosted installation of Sentry, the minimum requirement is now version >= v20.6.0.

  • You need to have ext-curl installed to use the SDK.

  • The IgnoreErrorsIntegration integration was removed. Use the ignore_exceptions option instead. Previously, both Symfony\Component\ErrorHandler\Error\FatalError and Symfony\Component\Debug\Exception\FatalErrorException were ignored by default. To continue ignoring these exceptions, make the following changes to the config file:

    // config/packages/sentry.yaml
    sentry:
    options:
    ignore_exceptions:
    - 'Symfony\Component\ErrorHandler\Error\FatalError'
    - 'Symfony\Component\Debug\Exception\FatalErrorException'

    This option performs an is_a check now, so you can also ignore more generic exceptions.

Features

  • Add support for Sentry Developer Metrics [(#1619)](getsentry/sentry-php#1619)

    use function Sentry\metrics;
    // Add 4 to a counter named hits
    metrics()->increment(key: 'hits', value: 4);
    // Add 25 to a distribution named response_time with unit milliseconds
    metrics()->distribution(key: 'response_time', value: 25, unit: MetricsUnit::millisecond());
    // Add 2 to gauge named parallel_requests, tagged with type: "a"
    metrics()->gauge(key: 'parallel_requests', value: 2, tags: ['type': 'a']);
    // Add a user's email to a set named users.sessions, tagged with role: "admin"

... (truncated)

Changelog

Sourced from sentry/sentry-symfony's changelog.

5.0.0

The Sentry SDK team is thrilled to announce the immediate availability of Sentry Symfony SDK v5.0.0.

Breaking Change

Please refer to the UPGRADE-5.0.md guide for a complete list of breaking changes.

This version adds support for the underlying Sentry PHP SDK v4.0. Please refer to the PHP SDK sentry-php/UPGRADE-4.0.md guide for a complete list of breaking changes.

  • This version exclusively uses the envelope endpoint to send event data to Sentry.

    If you are using sentry.io, no action is needed. If you are using an on-premise/self-hosted installation of Sentry, the minimum requirement is now version >= v20.6.0.

  • You need to have ext-curl installed to use the SDK.

  • The IgnoreErrorsIntegration integration was removed. Use the ignore_exceptions option instead. Previously, both Symfony\Component\ErrorHandler\Error\FatalError and Symfony\Component\Debug\Exception\FatalErrorException were ignored by default. To continue ignoring these exceptions, make the following changes to the config file:

    // config/packages/sentry.yaml
    sentry:
    options:
    ignore_exceptions:
    - 'Symfony\Component\ErrorHandler\Error\FatalError'
    - 'Symfony\Component\Debug\Exception\FatalErrorException'

    This option performs an is_a check now, so you can also ignore more generic exceptions.

Features

  • Add support for Sentry Developer Metrics [(#1619)](getsentry/sentry-php#1619)

    use function Sentry\metrics;
    // Add 4 to a counter named hits
    metrics()->increment(key: 'hits', value: 4);
    // Add 25 to a distribution named response_time with unit milliseconds
    metrics()->distribution(key: 'response_time', value: 25, unit: MetricsUnit::millisecond());
    // Add 2 to gauge named parallel_requests, tagged with type: "a"
    metrics()->gauge(key: 'parallel_requests', value: 2, tags: ['type': 'a']);

... (truncated)

Commits

Updates symfony/phpunit-bridge from 7.0.6 to 7.1.1

Release notes

Sourced from symfony/phpunit-bridge's releases.

v7.1.1

Changelog (symfony/phpunit-bridge@v7.1.0...v7.1.1)

v7.1.0

Changelog (symfony/phpunit-bridge@v7.1.0-RC1...v7.1.0)

  • no significant changes

v7.1.0-RC1

Changelog (symfony/phpunit-bridge@v7.1.0-BETA1...v7.1.0-RC1)

v7.1.0-BETA1

Changelog (symfony/phpunit-bridge@v7.0.7...v7.1.0-BETA1)

  • no significant changes

v7.0.8

Changelog (symfony/phpunit-bridge@v7.0.7...v7.0.8)

v7.0.7

Changelog (symfony/phpunit-bridge@v7.0.6...v7.0.7)

  • no significant changes
Commits
  • 3e1cb8c Merge branch '7.0' into 7.1
  • 2a7e8d2 Merge branch '6.4' into 7.0
  • 9921ea3 Merge branch '5.4' into 6.4
  • bbd310b bug #57110 [PhpUnitBridge] Fix error handler triggered outside of tests (HypeMC)
  • f33b3da Merge branch '7.0' into 7.1
  • 20c6019 Merge branch '6.4' into 7.0
  • 937f47c Merge branch '5.4' into 6.4
  • 875f703 bug #57275 Fix autoload configs to avoid warnings when building optimized aut...
  • 9dc5555 Fix autoload configs to avoid warnings when building optimized autoloaders
  • ef26c5e Merge branch '7.0' into 7.1
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies php Pull requests that update Php code labels Jun 17, 2024
@dependabot dependabot bot force-pushed the dependabot/composer/symfony-dependencies-418be93cb6 branch from b69f3d2 to 24b1cb7 Compare June 18, 2024 15:59
Bumps the symfony-dependencies group with 2 updates: [sentry/sentry-symfony](https://github.com/getsentry/sentry-symfony) and [symfony/phpunit-bridge](https://github.com/symfony/phpunit-bridge).


Updates `sentry/sentry-symfony` from 4.14.0 to 5.0.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.14.0...5.0.0)

Updates `symfony/phpunit-bridge` from 7.0.6 to 7.1.1
- [Release notes](https://github.com/symfony/phpunit-bridge/releases)
- [Changelog](https://github.com/symfony/phpunit-bridge/blob/7.0/CHANGELOG.md)
- [Commits](symfony/phpunit-bridge@v7.0.6...v7.1.1)

---
updated-dependencies:
- dependency-name: sentry/sentry-symfony
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: symfony-dependencies
- dependency-name: symfony/phpunit-bridge
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: symfony-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/composer/symfony-dependencies-418be93cb6 branch from 24b1cb7 to bab37f7 Compare June 19, 2024 15:56
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 20, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jun 20, 2024
@dependabot dependabot bot deleted the dependabot/composer/symfony-dependencies-418be93cb6 branch June 20, 2024 11:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies php Pull requests that update Php code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants