Skip to content

chore(deps): bump sentry/sentry from 4.11.1 to 4.15.0 - #1207

Merged
kumy merged 1 commit into
mainfrom
dependabot/composer/sentry/sentry-4.15.0
Aug 28, 2025
Merged

chore(deps): bump sentry/sentry from 4.11.1 to 4.15.0#1207
kumy merged 1 commit into
mainfrom
dependabot/composer/sentry/sentry-4.15.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 26, 2025

Copy link
Copy Markdown
Contributor

Bumps sentry/sentry from 4.11.1 to 4.15.0.

Release notes

Sourced from sentry/sentry's releases.

4.15.0

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v4.15.0.

Features

  • Add Monolog Sentry Logs handler [(#1867)](getsentry/sentry-php#1867)

    This new handler allows you to capture Monolog logs as Sentry logs. To use it, configure your Monolog logger:

    use Monolog\Logger;
    use Sentry\Monolog\LogsHandler;
    use Sentry\Logs\LogLevel;
    // Initialize Sentry SDK first (make sure 'enable_logs' is set to true)
    \Sentry\init([
    'dsn' => 'YOUR_DSN',
    'enable_logs' => true,
    ]);
    // Create a Monolog logger
    $logger = new Logger('my-app');
    // Add the Sentry logs handler
    // Optional: specify minimum log level (defaults to LogLevel::debug())
    $handler = new LogsHandler(LogLevel::info());
    $logger->pushHandler($handler);
    // Now your logs will be sent to Sentry
    $logger->info('User logged in', ['user_id' => 123]);
    $logger->error('Payment failed', ['order_id' => 456]);

    Note: The handler will not collect logs for exceptions (they should be handled separately via captureException).

Bug Fixes

4.14.2

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v4.14.2.

Bug Fixes

4.14.1

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v4.14.1.

... (truncated)

Changelog

Sourced from sentry/sentry's changelog.

4.15.0

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v4.15.0.

Features

  • Add Monolog Sentry Logs handler [(#1867)](getsentry/sentry-php#1867)

    This new handler allows you to capture Monolog logs as Sentry logs. To use it, configure your Monolog logger:

    use Monolog\Logger;
    use Sentry\Monolog\LogsHandler;
    use Sentry\Logs\LogLevel;
    // Initialize Sentry SDK first (make sure 'enable_logs' is set to true)
    \Sentry\init([
    'dsn' => 'YOUR_DSN',
    'enable_logs' => true,
    ]);
    // Create a Monolog logger
    $logger = new Logger('my-app');
    // Add the Sentry logs handler
    // Optional: specify minimum log level (defaults to LogLevel::debug())
    $handler = new LogsHandler(LogLevel::info());
    $logger->pushHandler($handler);
    // Now your logs will be sent to Sentry
    $logger->info('User logged in', ['user_id' => 123]);
    $logger->error('Payment failed', ['order_id' => 456]);

    Note: The handler will not collect logs for exceptions (they should be handled separately via captureException).

Bug Fixes

4.14.2

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v4.14.2.

Bug Fixes

... (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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Aug 26, 2025
@kumy

kumy commented Aug 28, 2025

Copy link
Copy Markdown
Member

@dependabot recreate

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

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/composer/sentry/sentry-4.15.0 branch from cc73e66 to b2f6338 Compare August 28, 2025 17:08
@kumy
kumy added this pull request to the merge queue Aug 28, 2025
Merged via the queue into main with commit 4f6f1c0 Aug 28, 2025
14 checks passed
@kumy
kumy deleted the dependabot/composer/sentry/sentry-4.15.0 branch August 28, 2025 17:43
@geokrety-bot

Copy link
Copy Markdown
Collaborator

🎉 This PR is included in version 2.57.11 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

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 released

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants