File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## 4.8.0
4
+
5
+ The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v4.8.0.
6
+
7
+ ### Features
8
+
9
+ - Add timing span when emiting a timing metric [ (#1717 )] ( https://github.com/getsentry/sentry-php/pull/1717 )
10
+
11
+ ``` php
12
+ use function Sentry\metrics;
13
+
14
+ // This will now both emit a distribution metric and a span with the "expensive-operation" key
15
+ metrics()->timing(
16
+ key: 'expensive-operation',
17
+ callback: fn() => doExpensiveOperation(),
18
+ );
19
+ ```
20
+
21
+ ### Bug Fixes
22
+
23
+ - Fix missing data on HTTP spans [ (#1735 )] ( https://github.com/getsentry/sentry-php/pull/1735 )
24
+ - Test span sampled status before creating child spans [ (#1740 )] ( https://github.com/getsentry/sentry-php/pull/1740 )
25
+
26
+ ### Misc
27
+
28
+ - Implement fast path for ignoring errors [ (#1737 )] ( https://github.com/getsentry/sentry-php/pull/1737 )
29
+ - Add array shape for better autocomplete of ` Sentry\init ` function [ (#1738 )] ( https://github.com/getsentry/sentry-php/pull/1738 )
30
+ - Represent callable strings as strings [ (#1741 )] ( https://github.com/getsentry/sentry-php/pull/1741 )
31
+ - Use ` AWS_LAMBDA_FUNCTION_VERSION ` environment variable for release if available [ (#1742 )] ( https://github.com/getsentry/sentry-php/pull/1742 )
32
+
3
33
## 4.7.0
4
34
5
35
The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v4.7.0.
You can’t perform that action at this time.
0 commit comments