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

fix(deps): update dependency sentry/sentry-laravel to v3.8.0 #139

Merged
merged 1 commit into from
Sep 7, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 6, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
sentry/sentry-laravel (source) require minor 3.7.3 -> 3.8.0

Release Notes

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

v3.8.0

Compare Source

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

Features
  • Initial support for Laravel Folio (#​738)

    If you are using Laravel Folio in your application, we'll extract a more meaningful transaction name based on the
    VieMatched event.

  • The filesystem adapters for the sentry driver now extend the well-known Laravel classes they decorate,
    Illuminate\Filesystem\FilesystemAdapter and Illuminate\Filesystem\AwsS3V3Adapter.

    Enabling the feature can be simplified by wrapping the configuration for all disks
    with a call to Sentry\Laravel\Features\Storage\Integration::configureDisks()
    in your config/filesystems.php file:

    'disks' => Sentry\Laravel\Features\Storage\Integration::configureDisks([
        'local' => [
            'driver' => 'local',
            'root' => storage_path('app'),
            'throw' => false,
        ],
    
        // ...
    ], /* enableSpans: */ true, /* enableBreadcrumbs: */ true),

    Alternatively, you can enable this feature only for select disks:

    'disks' => [
        'local' => [
            'driver' => 'local',
            'root' => storage_path('app'),
            'throw' => false,
        ],
    
        's3' => Sentry\Laravel\Features\Storage\Integration::configureDisk('s3', [
            // ...
        ], /* enableSpans: */ true, /* enableBreadcrumbs: */ true),
    ],

    By default, both spans and breadcrumbs are enabled.
    You may disable them by passing the second argument, $enableSpans or the third argument, $enableBreadcrumbs.

  • Add Laravel artisan about command (#​768)

Bug Fixes
  • Remove usage of Str::replace (#​762)

    • This fixes an issue using Cron Monitoring in Laravel 6, 7 and < 8.41.0
Misc
  • Differentiate between boot and register for features (#​759)

  • Internal improvements (#​769)

    • Make feature registration agnostic to the service container.
    • Cleanup tests by using the @define-env annotation.
    • Move the Log channel to a feature and add tests.
    • Mark BacktraceHelper as @internal and make it lazy for the tracing service provider.

Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot enabled auto-merge (rebase) September 6, 2023 23:37
@ghost
Copy link

ghost commented Sep 6, 2023

👇 Click on the image for a new way to code review

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map legend

@codecov
Copy link

codecov bot commented Sep 6, 2023

Codecov Report

Patch and project coverage have no change.

Comparison is base (41b52e4) 48.21% compared to head (3390030) 48.21%.
Report is 121 commits behind head on develop.

❗ Current head 3390030 differs from pull request most recent head 3c5c655. Consider uploading reports for the commit 3c5c655 to get more accurate results

Additional details and impacted files
@@            Coverage Diff             @@
##             develop     #139   +/-   ##
==========================================
  Coverage      48.21%   48.21%           
  Complexity        24       24           
==========================================
  Files             12       12           
  Lines             56       56           
==========================================
  Hits              27       27           
  Misses            29       29           

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

@renovate renovate bot force-pushed the renovate/sentry-sentry-laravel-3.x-lockfile branch from 3390030 to 3c5c655 Compare September 7, 2023 01:33
@renovate renovate bot merged commit c6c0777 into develop Sep 7, 2023
7 checks passed
@renovate renovate bot deleted the renovate/sentry-sentry-laravel-3.x-lockfile branch September 7, 2023 01:34
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