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

chore(deps): update php minors and patches #163

Merged
merged 1 commit into from
Jan 8, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 24, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
phpunit/phpunit (source) 10.5.3 -> 10.5.5 age adoption passing confidence
sentry/sentry (source) 4.1.0 -> 4.3.1 age adoption passing confidence

Release Notes

sebastianbergmann/phpunit (phpunit/phpunit)

v10.5.5

Compare Source

v10.5.4

Compare Source

getsentry/sentry-php (sentry/sentry)

v4.3.1

Compare Source

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

Bug Fixes
  • Fix tags not being serialized correctly for metrics (#​1672)
Misc
  • Remove @internal annotation from MetricsUnit class (#​1671)

v4.3.0

Compare Source

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

Features
  • Add support for Sentry Developer Metrics (#​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"
    metrics()->set('users.sessions, '[email protected]', null, ['role' => User::admin()]);
    
    // Add 2 to gauge named `parallel_requests`, tagged with `type: "a"`
    Sentry.metrics.gauge('parallel_requests', 2, { tags: { type: 'a' } });
    
    // Flush the metrics to Sentry
    metrics()->flush();
    
    // We recommend registering the flushing in a shutdown function
    register_shutdown_function(static fn () => metrics()->flush());

    To learn more about Sentry Developer Merics, join the discussion at https://github.com/getsentry/sentry-php/discussions/1666.

Bug Fixes
  • Disallow to seralize the HubAdapter::class (#​1663)
  • Do not overwrite trace context on event (#​1668)
  • Serialize breadcrumb data to display correct in the Sentry UI (#​1669)
Misc
  • Remove the final keyword from Hub::class, Client::class and Scope::class (#​1665)

v4.2.0

Compare Source

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

Features
  • Add a config option to allow overriding the Spotlight url (#​1659)

    Sentry\init([
        'spotlight_url' => 'http://localhost:8969',
    ]);
Bug Fixes
  • Restore setting the logger value on the event payload (#​1657)

  • Only apply the sample_rate on error/message events (#​1662)

    This fixes an issue where Cron Check-Ins were wrongly sampled out if a sample_rate lower than 1.0 is used.

Misc
  • Remove the @internal annotation from ClientBuilder::class (#​1661)

Configuration

📅 Schedule: Branch creation - "on sunday" in timezone America/Montreal, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled because a matching PR was automerged previously.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates 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 requested review from a team as code owners December 24, 2023 07:29
@renovate renovate bot added the dependencies Pull requests that update a dependency file label Dec 24, 2023
@renovate renovate bot requested a review from a team as a code owner December 24, 2023 07:29
@renovate renovate bot force-pushed the renovate/php-minors-and-patches branch from ae7da3d to 972918c Compare December 27, 2023 16:26
@renovate renovate bot changed the title chore(deps): update dependency sentry/sentry chore(deps): update php minors and patches Dec 27, 2023
@GTony GTony merged commit d1aa222 into master Jan 8, 2024
10 checks passed
@GTony GTony deleted the renovate/php-minors-and-patches branch January 8, 2024 01:41
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 minor php
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant