Skip to content

Releases: getsentry/sentry-php

3.19.1

25 May 06:29
Compare
Choose a tag to compare

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v3.19.1.

Bug Fixes

  • Use HTTP/1.1 when compression is enabled (#1542)

3.19.0

23 May 12:11
Compare
Choose a tag to compare

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v3.19.0.

Misc

  • Add support for guzzlehttp/promises v2 (#1536)

3.18.2

17 May 11:00
Compare
Choose a tag to compare

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v3.18.2.

Bug Fixes

  • Require php-http/message-factory (#1534)

3.18.1

16 May 09:41
Compare
Choose a tag to compare

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v3.18.1.

Bug Fixes

  • Guard against empty profiles (#1528)
  • Ignore empty context values (#1529)

3.18.0

03 May 10:25
Compare
Choose a tag to compare

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v3.18.0.

Features

  • Add TransactionContext::fromEnvironment (#1519)

Misc

  • Sent all events to the /envelope endpoint if tracing is enabled (#1518)
  • Attach the Dynamic Sampling Context to error events (#1522)

3.17.0

27 Mar 10:49
95d2e93
Compare
Choose a tag to compare

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v3.17.0.

Features

  • Add ignore_exceptions & ignore_transactions options (#1503)

    We deprecated the IgnoreErrorsIntegration in favor of this new option.
    The option will also take previous exceptions into account.

    \Sentry\init([
      'ignore_exceptions' => [BadThingsHappenedException::class],
    ]);

    To ignore a transaction being sent to Sentry, add its name to the config option.
    You can find the transaction name on the Performance page.

    \Sentry\init([
        'ignore_transactions' => ['GET /health'],
    ]);

Misc

  • Bump php-http/discovery to ^1.15 (#1504)

    You may need to allow the added composer plugin, introduced in php-http/discovery v1.15.0, to execute when running composer update.
    We previously pinned this package to version <1.15.
    Due to conflicts with other packages, we decided to lift this restriction.

3.16.0

16 Mar 10:50
Compare
Choose a tag to compare

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v3.16.0.
This release adds initial support for Cron Monitoring.

Warning
Cron Monitoring is currently in beta. Beta features are still in-progress and may have bugs. We recognize the irony.
If you have any questions or feedback, please email us at [email protected], reach out via Discord (#cronjobs), or open an issue.

Features

  • Add inital support for Cron Monitoring (#1467)

    You can use Cron Monitoring to monitor your cron jobs. No pun intended.

    Add the code below to your application or script that is invoked by your cron job.
    The first Check-In will let Sentry know that your job started, with the second Check-In reporting the outcome.

    <?php
    
    $checkIn = new CheckIn(
        monitorSlug: '<your-monitor-slug>',
        status: CheckInStatus::inProgress(),
    );
    
    $event = Event::createCheckIn();
    $event->setCheckIn($checkIn);
    
    $this->hub->captureEvent($event);
    
    try {
    
        // do stuff
    
        $checkIn->setStatus(CheckInStatus::ok());
    } catch (Throwable $e) {
        $checkIn->setStatus(CheckInStatus::error());
    }
    
    $event = Event::createCheckIn();
    $event->setCheckIn($checkIn);
    
    $this->hub->captureEvent($event);

    If you only want to check if a cron did run, you may create a "Heartbeat" instead.
    Add the code below to your application or script that is invoked by your cron job.

    <?php
    
    // do stuff
    
    $checkIn = new CheckIn(
        monitorSlug: '<your-monitor-slug>',
        status: CheckInStatus::ok(), // or - CheckInStatus::error()
        duration: 10, // optional - duration in seconds
    );
    
    $event = Event::createCheckIn();
    $event->setCheckIn($checkIn);
    
    $this->hub->captureEvent($event);
  • Introduce a new trace helper function (#1490)

    We made it a tad easier to add custom tracing spans to your application.

    $spanContext = new SpanContext();
    $spanContext->setOp('function');
    $spanContext->setDescription('Soemthing to be traced');
    
    trace(
        function (Scope $scope) {
            // something to be traced
        },
        $spanContext,
    );

3.15.0

13 Mar 12:01
Compare
Choose a tag to compare

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v3.15.0.
This release adds initial support for Profiling.

Warning
Profiling is currently in beta. Beta features are still in-progress and may have bugs. We recognize the irony.
If you have any questions or feedback, please email us at [email protected], reach out via Discord (#profiling), or open an issue.

Profiling is only available on Sentry SaaS (sentry.io). Support for Sentry self-hosted is planned once Profiling is released into GA.

Features

  • Add initial support for profiling (#1477)

    Under the hood, we're using Wikipedia's sampling profiler Excimer.
    We chose this profiler for its low overhead and for being used in production by one of the largest PHP-powered websites in the world.

    Excimer works with PHP 7.2 and up, for PHP 8.2 support, make sure to use Excimer version 1.1.0.

    There is currently no support for either Windows or macOS.

    You can install Excimer via your operating systems package manager.

    apt-get install php-excimer

    If no suitable version is available, you may build Excimer from source.

    git clone https://github.com/wikimedia/mediawiki-php-excimer.git
    
    cd excimer/
    phpize && ./configure && make && sudo make install

    Depending on your environment, you may need to enable the Excimer extension afterward.

    phpenmod -s fpm excimer
    # or
    phpenmod -s apache2 excimer

    Once the extension is installed, you may enable profiling by adding the new profiles_sample_rate config option to your Sentry::init method.

    \Sentry\init([
        'dsn' => '__DSN__',
        'traces_sample_rate' => 1.0,
        'profiles_sample_rate' => 1.0,
    ]);

    Profiles are being sampled in relation to your traces_sample_rate.

    Please note that the profiler is started inside transactions only. If you're not using our Laravel or Symfony SDKs, you may need to manually add transactions to your application as described here.

    Other things you should consider:

    • The current sample rate of the profiler is set to 101Hz (every ~10ms). A minimum of two samples is required for a profile being sent, hence requests that finish in less than ~20ms won't hail any profiles.
    • The maximum duration of a profile is 30s, hence we do not recommend enabling the extension in an CLI environment.
    • By design, the profiler will take samples at the end of any userland functions. You may see long sample durations on tasks like HTTP client requests and DB queries.
      You can read more about Excimer's architecture here.

3.14.0

06 Mar 07:46
Compare
Choose a tag to compare

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v3.14.0.

Features

  • Add a new enable_tracing: true/false option, an alternative for traces_sample_rate: 1.0/null (#1458)

Bug Fixes

  • Fix missing keys in the request body (#1470)
  • Add support for partial JSON encoding (#1481)
  • Prevent calling magic methods when retrieving the ID from an object (#1483)
  • Only serialize scalar object IDs (#1485)

Misc

  • The SDK is now licensed under MIT (#1471)
    • Read more about Sentry's licensing here.
  • Deprecate Client::__construct $serializer argument. It is currently un-used (#1482)

3.13.1

10 Feb 10:26
71c86fe
Compare
Choose a tag to compare

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v3.13.1.

Bug Fixes

  • Sanatize HTTP client spans & breadcrumbs (#1453)
  • Pin php-http/discovery to < 1.15 to disable some unwanted side-effect introduced in this new minor version (#1464)