File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
- ...
6
6
7
+ ## 1.9.0 (2018-05-03)
8
+
9
+ - Fixed undefined variable (#588 )
10
+ - Fix for exceptions throwing exceptions when setting event id (#587 )
11
+ - Fix monolog handler not accepting Throwable (#586 )
12
+ - Add ` excluded_exceptions ` option to exclude exceptions and their extending exceptions (#583 )
13
+ - Fix ` HTTP_X_FORWARDED_PROTO ` header detection (#578 )
14
+ - Fix sending events async in PHP 5 (#576 )
15
+ - Avoid double reporting due to ` ErrorException ` s (#574 )
16
+ - Make it possible to overwrite serializer message limit of 1024 (#559 )
17
+ - Allow request data to be nested up to 5 levels deep (#554 )
18
+ - Update serializer to handle UTF-8 characters correctly (#553 )
19
+
7
20
## 1.8.4 (2018-03-20)
8
21
9
22
- Revert ignoring fatal errors on PHP 7+ (#571 )
Original file line number Diff line number Diff line change @@ -241,6 +241,26 @@ The following settings are available for the client:
241
241
)
242
242
)
243
243
244
+ .. describe :: timeout
245
+
246
+ The timeout for sending requests to the Sentry server in seconds, default is 2 seconds.
247
+
248
+ .. code-block :: php
249
+
250
+ 'timeout' => 2,
251
+
252
+ .. describe :: excluded_exceptions
253
+
254
+ Exception that should not be reported, exceptions extending exceptions in this list will also
255
+ be excluded, default is an empty array.
256
+
257
+ In the example below, when you exclude ``LogicException `` you will also exclude ``BadFunctionCallException ``
258
+ since it extends ``LogicException ``.
259
+
260
+ .. code-block :: php
261
+
262
+ 'excluded_exceptions' => array('LogicException'),
263
+
244
264
.. _sentry-php-request-context :
245
265
246
266
Providing Request Context
You can’t perform that action at this time.
0 commit comments