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 across 1 directory with 16 updates #1623

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 13, 2024

Bumps the symfony-dependencies group with 16 updates in the / directory:

Package From To
sentry/sentry-symfony 4.14.0 5.0.0
symfony/amqp-messenger 5.4.36 5.4.39
symfony/asset 5.4.35 5.4.39
symfony/dotenv 5.4.35 5.4.39
symfony/form 5.4.38 5.4.39
symfony/lock 5.4.38 5.4.39
symfony/runtime 5.4.35 5.4.39
symfony/security-bundle 5.4.38 5.4.39
symfony/translation 5.4.35 5.4.39
symfony/validator 5.4.38 5.4.39
symfony/yaml 5.4.35 5.4.39
symfony/browser-kit 5.4.35 5.4.39
symfony/css-selector 5.4.35 5.4.39
symfony/debug-bundle 5.4.35 5.4.39
symfony/phpunit-bridge 7.0.6 7.0.7
symfony/web-profiler-bundle 5.4.36 5.4.39

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/amqp-messenger from 5.4.36 to 5.4.39

Release notes

Sourced from symfony/amqp-messenger's releases.

v5.4.39

Changelog (symfony/amqp-messenger@v5.4.38...v5.4.39)

  • no significant changes
Commits

Updates symfony/asset from 5.4.35 to 5.4.39

Release notes

Sourced from symfony/asset's releases.

v5.4.39

Changelog (symfony/asset@v5.4.38...v5.4.39)

  • no significant changes
Commits

Updates symfony/dotenv from 5.4.35 to 5.4.39

Release notes

Sourced from symfony/dotenv's releases.

v5.4.39

Changelog (symfony/dotenv@v5.4.38...v5.4.39)

  • no significant changes
Commits

Updates symfony/form from 5.4.38 to 5.4.39

Release notes

Sourced from symfony/form's releases.

v5.4.39

Changelog (symfony/form@v5.4.38...v5.4.39)

Commits

Updates symfony/lock from 5.4.38 to 5.4.39

Release notes

Sourced from symfony/lock's releases.

v5.4.39

Changelog (symfony/lock@v5.4.38...v5.4.39)

  • no significant changes
Commits

Updates symfony/runtime from 5.4.35 to 5.4.39

Release notes

Sourced from symfony/runtime's releases.

v5.4.39

Changelog (symfony/runtime@v5.4.38...v5.4.39)

  • no significant changes
Commits

Updates symfony/security-bundle from 5.4.38 to 5.4.39

Release notes

Sourced from symfony/security-bundle's releases.

v5.4.39

Changelog (symfony/security-bundle@v5.4.38...v5.4.39)

  • no significant changes
Commits

Updates symfony/translation from 5.4.35 to 5.4.39

Release notes

Sourced from symfony/translation's releases.

v5.4.39

Changelog (symfony/translation@v5.4.38...v5.4.39)

Commits
  • 0fabede Auto-close PRs on subtree-splits
  • 5ef72d5 bug #54564 [Translation] Skip state=needs-translation entries only when sourc...
  • 8f80ca4 [Translation] Skip state=needs-translation entries only when source == target
  • a0ff8dc [Validator] Fill in trans-unit id 113: This URL does not contain a TLD.
  • See full diff in compare view

Updates symfony/validator from 5.4.38 to 5.4.39

Release notes

Sourced from symfony/validator's releases.

v5.4.39

Changelog (symfony/validator@v5.4.38...v5.4.39)

Commits
  • 8a2f9f7 detect wrong e-mail validation modes
  • f241871 minor #54715 [Validator] Review Bulgarian (bg) translation (ffd000)
  • 0fefb7f [Validator] Review Bulgarian (bg) translation
  • e5a2362 Reviewed italian translation
  • 229cb30 Fix french translation
  • 49a6535 minor #54681 [Validator] review: FR translation (viviengaetan)
  • 6dfedb2 review: FR translation
  • 1b5d9cd Update spanish and catalan translations
  • 54c537d minor #54686 [Validator] Update Arabic translation (AbdelatifAitBara)
  • c2465cd minor #54685 [Validator] Updated Lithuanian translations (LinasRam)
  • Additional commits viewable in compare view

Updates symfony/yaml from 5.4.35 to 5.4.39

Release notes

Sourced from symfony/yaml's releases.

v5.4.39

Changelog (symfony/yaml@v5.4.38...v5.4.39)

Commits

Updates symfony/browser-kit from 5.4.35 to 5.4.39

Release notes

Sourced from symfony/browser-kit's releases.

v5.4.39

Changelog (symfony/browser-kit@v5.4.38...v5.4.39)

  • no significant changes
Commits

Updates symfony/css-selector from 5.4.35 to 5.4.39

Release notes

Sourced from symfony/css-selector's releases.

v5.4.39

Changelog (symfony/css-selector@v5.4.38...v5.4.39)

  • no significant changes
Commits

Updates symfony/debug-bundle from 5.4.35 to 5.4.39

Release notes

Sourced from symfony/debug-bundle's releases.

v5.4.39

Changelog (symfony/debug-bundle@v5.4.38...v5.4.39)

  • no significant changes
Commits

Updates symfony/phpunit-bridge from 7.0.6 to 7.0.7

Release notes

Sourced from symfony/phpunit-bridge's releases.

v7.0.7

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

  • no significant changes
Commits

Updates symfony/web-profiler-bundle from 5.4.36 to 5.4.39

Release notes

Sourced from symfony/web-profiler-bundle's releases.

v5.4.39

Changelog (symfony/web-profiler-bundle@v5.4.38...v5.4.39)

  • no significant changes
Commits

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 May 13, 2024
@coveralls
Copy link

coveralls commented May 13, 2024

Coverage Status

coverage: 97.423%. remained the same
when pulling 3e5a727 on dependabot/composer/symfony-dependencies-6a997fa6fc
into 55ac02e on master.

@dependabot dependabot bot force-pushed the dependabot/composer/symfony-dependencies-6a997fa6fc branch 4 times, most recently from a93a278 to f35ac72 Compare May 20, 2024 15:42
@dependabot dependabot bot force-pushed the dependabot/composer/symfony-dependencies-6a997fa6fc branch 3 times, most recently from a6c30a7 to fff9366 Compare May 27, 2024 17:57
Bumps the symfony-dependencies group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [sentry/sentry-symfony](https://github.com/getsentry/sentry-symfony) | `4.14.0` | `5.0.0` |
| [symfony/amqp-messenger](https://github.com/symfony/amqp-messenger) | `5.4.36` | `5.4.39` |
| [symfony/asset](https://github.com/symfony/asset) | `5.4.35` | `5.4.39` |
| [symfony/dotenv](https://github.com/symfony/dotenv) | `5.4.35` | `5.4.39` |
| [symfony/form](https://github.com/symfony/form) | `5.4.38` | `5.4.39` |
| [symfony/lock](https://github.com/symfony/lock) | `5.4.38` | `5.4.39` |
| [symfony/runtime](https://github.com/symfony/runtime) | `5.4.35` | `5.4.39` |
| [symfony/security-bundle](https://github.com/symfony/security-bundle) | `5.4.38` | `5.4.39` |
| [symfony/translation](https://github.com/symfony/translation) | `5.4.35` | `5.4.39` |
| [symfony/validator](https://github.com/symfony/validator) | `5.4.38` | `5.4.39` |
| [symfony/yaml](https://github.com/symfony/yaml) | `5.4.35` | `5.4.39` |
| [symfony/browser-kit](https://github.com/symfony/browser-kit) | `5.4.35` | `5.4.39` |
| [symfony/css-selector](https://github.com/symfony/css-selector) | `5.4.35` | `5.4.39` |
| [symfony/debug-bundle](https://github.com/symfony/debug-bundle) | `5.4.35` | `5.4.39` |
| [symfony/phpunit-bridge](https://github.com/symfony/phpunit-bridge) | `7.0.6` | `7.0.7` |
| [symfony/web-profiler-bundle](https://github.com/symfony/web-profiler-bundle) | `5.4.36` | `5.4.39` |



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/amqp-messenger` from 5.4.36 to 5.4.39
- [Release notes](https://github.com/symfony/amqp-messenger/releases)
- [Changelog](https://github.com/symfony/amqp-messenger/blob/7.0/CHANGELOG.md)
- [Commits](symfony/amqp-messenger@v5.4.36...v5.4.39)

Updates `symfony/asset` from 5.4.35 to 5.4.39
- [Release notes](https://github.com/symfony/asset/releases)
- [Changelog](https://github.com/symfony/asset/blob/7.0/CHANGELOG.md)
- [Commits](symfony/asset@v5.4.35...v5.4.39)

Updates `symfony/dotenv` from 5.4.35 to 5.4.39
- [Release notes](https://github.com/symfony/dotenv/releases)
- [Changelog](https://github.com/symfony/dotenv/blob/7.0/CHANGELOG.md)
- [Commits](symfony/dotenv@v5.4.35...v5.4.39)

Updates `symfony/form` from 5.4.38 to 5.4.39
- [Release notes](https://github.com/symfony/form/releases)
- [Changelog](https://github.com/symfony/form/blob/7.0/CHANGELOG.md)
- [Commits](symfony/form@v5.4.38...v5.4.39)

Updates `symfony/lock` from 5.4.38 to 5.4.39
- [Release notes](https://github.com/symfony/lock/releases)
- [Changelog](https://github.com/symfony/lock/blob/7.0/CHANGELOG.md)
- [Commits](symfony/lock@v5.4.38...v5.4.39)

Updates `symfony/runtime` from 5.4.35 to 5.4.39
- [Release notes](https://github.com/symfony/runtime/releases)
- [Changelog](https://github.com/symfony/runtime/blob/7.0/CHANGELOG.md)
- [Commits](symfony/runtime@v5.4.35...v5.4.39)

Updates `symfony/security-bundle` from 5.4.38 to 5.4.39
- [Release notes](https://github.com/symfony/security-bundle/releases)
- [Changelog](https://github.com/symfony/security-bundle/blob/7.0/CHANGELOG.md)
- [Commits](symfony/security-bundle@v5.4.38...v5.4.39)

Updates `symfony/translation` from 5.4.35 to 5.4.39
- [Release notes](https://github.com/symfony/translation/releases)
- [Changelog](https://github.com/symfony/translation/blob/7.0/CHANGELOG.md)
- [Commits](symfony/translation@v5.4.35...v5.4.39)

Updates `symfony/validator` from 5.4.38 to 5.4.39
- [Release notes](https://github.com/symfony/validator/releases)
- [Changelog](https://github.com/symfony/validator/blob/7.0/CHANGELOG.md)
- [Commits](symfony/validator@v5.4.38...v5.4.39)

Updates `symfony/yaml` from 5.4.35 to 5.4.39
- [Release notes](https://github.com/symfony/yaml/releases)
- [Changelog](https://github.com/symfony/yaml/blob/7.0/CHANGELOG.md)
- [Commits](symfony/yaml@v5.4.35...v5.4.39)

Updates `symfony/browser-kit` from 5.4.35 to 5.4.39
- [Release notes](https://github.com/symfony/browser-kit/releases)
- [Changelog](https://github.com/symfony/browser-kit/blob/7.0/CHANGELOG.md)
- [Commits](symfony/browser-kit@v5.4.35...v5.4.39)

Updates `symfony/css-selector` from 5.4.35 to 5.4.39
- [Release notes](https://github.com/symfony/css-selector/releases)
- [Changelog](https://github.com/symfony/css-selector/blob/7.0/CHANGELOG.md)
- [Commits](symfony/css-selector@v5.4.35...v5.4.39)

Updates `symfony/debug-bundle` from 5.4.35 to 5.4.39
- [Release notes](https://github.com/symfony/debug-bundle/releases)
- [Changelog](https://github.com/symfony/debug-bundle/blob/7.0/CHANGELOG.md)
- [Commits](symfony/debug-bundle@v5.4.35...v5.4.39)

Updates `symfony/phpunit-bridge` from 7.0.6 to 7.0.7
- [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.0.7)

Updates `symfony/web-profiler-bundle` from 5.4.36 to 5.4.39
- [Release notes](https://github.com/symfony/web-profiler-bundle/releases)
- [Changelog](https://github.com/symfony/web-profiler-bundle/blob/7.0/CHANGELOG.md)
- [Commits](symfony/web-profiler-bundle@v5.4.36...v5.4.39)

---
updated-dependencies:
- dependency-name: sentry/sentry-symfony
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: symfony-dependencies
- dependency-name: symfony/amqp-messenger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/asset
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/dotenv
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/form
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/lock
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/security-bundle
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/translation
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/validator
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/yaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/browser-kit
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/css-selector
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/debug-bundle
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/phpunit-bridge
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
- dependency-name: symfony/web-profiler-bundle
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: symfony-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/composer/symfony-dependencies-6a997fa6fc branch from fff9366 to 3e5a727 Compare May 30, 2024 15:16
Copy link
Contributor Author

dependabot bot commented on behalf of github May 31, 2024

Superseded by #1639.

@dependabot dependabot bot closed this May 31, 2024
@dependabot dependabot bot deleted the dependabot/composer/symfony-dependencies-6a997fa6fc branch May 31, 2024 15:45
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.

1 participant