Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 18, 2024

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
sentry/sentry-laravel (source) 4.6.0 -> 4.16.0 age confidence

Release Notes

getsentry/sentry-laravel (sentry/sentry-laravel)

v4.16.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.16.0.

Features

v4.15.3

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.15.3.

Bug Fixes

v4.15.2

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.15.2.

Bug Fixes
  • Replace the session key in cache span names by a placeholder (#​1009)
Misc

v4.15.1

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.15.1.

Misc

v4.15.0

Compare Source

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

Features
  • Add support for Sentry Structured Logs (#​1000)

    To enable this feature, add the sentry_logs log channel in your config/logging.php configuration:

    'channels' => [
        ...
        'sentry_logs' => [
            'driver' => 'sentry_logs',
            'level' => env('LOG_LEVEL', 'info'),
        ],
        ...
    ],

    Add SENTRY_ENABLE_LOGS=true to your .env file.

    Use the Log facade to sent your logs to Sentry. To learn more, head over to the Laravel docs.

    use Illuminate\Support\Facades\Log;
    
    Log::channel('sentry_logs')->info('User {id} failed to login.', ['id' => $user->id]);

    To learn more, head over to our docs.

v4.14.1

Compare Source

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

Bug Fixes
  • Ensure there is a newline before writing env variables (#​1002)

    Fixed an issue where the php artisan sentry:publish command might not properly add newlines when writing environment variables to the .env file.

v4.14.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.14.0.

Bug Fixes
  • Fix tracing when using Laravel Octane (#​997)

    When using Laravel Octane, the SDK now correctly cleans up it's state after each request, ensuring that traces are correctly reported.

Misc
  • Add sentry prefix to publish group name (#​992)

    When running php artisan vendor:publish, the Sentry package exports are now prefixed with sentry, making it easier to distinguish from other packages.

  • Remove support for traceparent header (#​994)

    The W3C's traceparent header is no longer automatically picked up and emitted by the SDK to prevent non-Sentry SDKs from starting a trace that is unwanted.

v4.13.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.13.0.

Features

v4.12.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.12.0.

Features
  • Improve generation of slug for scheduled job cron monitoring (#​977)

    For scheduled jobs it's no longer needed to manually provide a slug to the ->sentryMonitor() call, it will be derived from the job class name.

Bug Fixes
  • Fix unable to parse notifiable (#​974)
  • Fix triggering a missing attribute violation (#​978)
Misc
  • Disable scheduled task tracing for backgrounded tasks (#​975)

    Backgrounded tasks show up a ~1ms transactions right now because we are effectively monitoring the time it takes to start the background process instead of the execution.
    We are working on a solution to this problem, but in the meantime, we are disabling the monitoring of backgrounded tasks (that was introduces in 4.11.0).

v4.11.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.11.0.

Features
Bug Fixes

v4.10.2

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.10.2.

Bug Fixes
  • Fixed a PHP 8.4 deprecation notice when running php artisan sentry:test (#​963)

v4.10.1

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.10.1.

Bug Fixes
  • Fixed a PHP 8.4 deprecation notice (#​954)

v4.10.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.10.0.

Features
  • The SDK was updated to support PHP 8.4 (#​952)
Misc
  • The SDK does no longer emit Metrics. All public Metrics APIs are now no-op, internal APIs were removed (#​951)

v4.9.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.9.0.

Misc
  • Allow the cache store used by the console scheduling integration to be overridden (#​942)

  • Set http breadcrumb levels based on response code (#​940)

v4.8.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.8.0.

Bug Fixes
  • Fix php artisan sentry:publish mangling the .env file (#​928)

  • Fix not (correctly) reporting transactions when using Laravel Octane (#​936)

Misc
  • Improve the stacktrace of the php artisan sentry:test event (#​926)

  • Remove outdated JS SDK installation step from php artisan sentry:publish (#​930)

v4.7.1

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.7.1.

Bug Fixes
  • Always remove the XSRF-TOKEN cookie value before sending to Sentry (#​920)
  • Fix trace durations when using Octane (#​921)
  • Handle clousre route names (#​921)
  • Don't rely on facades when accessing the Laravel context (#​922)
  • Normalize array of cache key names before converting to string (#​923)

v4.7.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.7.0.

Features
  • Add support for Cache Insights Module (#​914). To learn more about this module, visit https://docs.sentry.io/product/insights/caches/. This feature requires Laravel v11.11.0 or higher.

    Cache tracing is enabled by default for new SDK installations. To enable this feature in your existing installation, update your config/sentry.php file with 'cache' => env('SENTRY_TRACE_CACHE_ENABLED', true), under 'tracing'.

v4.6.1

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.6.1.

Bug Fixes
  • Fix wrong queue grouping in the queue Insights Module (#​910)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from lotyp as a code owner June 18, 2024 17:01
@renovate renovate bot enabled auto-merge (rebase) June 18, 2024 17:01
Copy link

codecov bot commented Jun 18, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 55.55%. Comparing base (bf33177) to head (ede0f18).

Additional details and impacted files
@@              Coverage Diff              @@
##             develop     #427      +/-   ##
=============================================
+ Coverage      54.46%   55.55%   +1.09%     
  Complexity        43       43              
=============================================
  Files             22       22              
  Lines            112      117       +5     
=============================================
+ Hits              61       65       +4     
- Misses            51       52       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.6.1 deps(deps): update dependency sentry/sentry-laravel to v4.7.0 Jul 11, 2024
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch 2 times, most recently from bdeb1c4 to 8b7366d Compare July 17, 2024 17:58
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.7.0 deps(deps): update dependency sentry/sentry-laravel to v4.7.1 Jul 17, 2024
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from 8b7366d to 15baa23 Compare August 15, 2024 22:06
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.7.1 deps(deps): update dependency sentry/sentry-laravel to v4.8.0 Aug 15, 2024
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.8.0 deps(deps): update dependency sentry/sentry-laravel to v4.9.0 Sep 19, 2024
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from 15baa23 to 372fb9d Compare September 19, 2024 13:11
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from 372fb9d to c202d0d Compare November 7, 2024 10:43
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.9.0 deps(deps): update dependency sentry/sentry-laravel to v4.10.0 Nov 7, 2024
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from c202d0d to c80f286 Compare November 24, 2024 14:20
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.10.0 deps(deps): update dependency sentry/sentry-laravel to v4.10.1 Nov 24, 2024
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.10.1 deps(deps): update dependency sentry/sentry-laravel to v4.10.2 Dec 17, 2024
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from c80f286 to 61cca3a Compare December 17, 2024 18:22
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.10.2 deps(deps): update dependency sentry/sentry-laravel to v4.11.0 Jan 23, 2025
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from 61cca3a to aed33bb Compare January 23, 2025 16:41
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.11.0 deps(deps): update dependency sentry/sentry-laravel to v4.12.0 Feb 5, 2025
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from aed33bb to 0151e4d Compare February 5, 2025 13:29
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.12.0 deps(deps): update dependency sentry/sentry-laravel to v4.13.0 Feb 18, 2025
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from 0151e4d to ede0f18 Compare February 18, 2025 12:29
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from ede0f18 to c86dd7d Compare June 2, 2025 11:33
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.13.0 deps(deps): update dependency sentry/sentry-laravel to v4.14.0 Jun 2, 2025
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from c86dd7d to 1503d05 Compare June 7, 2025 08:50
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.14.0 deps(deps): update dependency sentry/sentry-laravel to v4.14.1 Jun 7, 2025
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from 1503d05 to 284fa0a Compare June 12, 2025 22:24
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.14.1 deps(deps): update dependency sentry/sentry-laravel to v4.15.0 Jun 12, 2025
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from 284fa0a to 63a4947 Compare June 24, 2025 21:04
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.15.0 deps(deps): update dependency sentry/sentry-laravel to v4.15.1 Jun 24, 2025
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from 63a4947 to a1ef5fc Compare August 10, 2025 12:53
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from a1ef5fc to 3425c23 Compare September 4, 2025 12:50
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.15.1 deps(deps): update dependency sentry/sentry-laravel to v4.15.2 Sep 4, 2025
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from 3425c23 to b552e36 Compare September 4, 2025 17:11
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.15.2 deps(deps): update dependency sentry/sentry-laravel to v4.15.3 Sep 4, 2025
@renovate renovate bot changed the title deps(deps): update dependency sentry/sentry-laravel to v4.15.3 deps(deps): update dependency sentry/sentry-laravel to v4.16.0 Sep 10, 2025
@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-4.x-lockfile branch from b552e36 to f33abbd Compare September 10, 2025 17:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants