Skip to content

Commit 496a6ec

Browse files
authored
Merge pull request #590 from getsentry/releasenotes-1-9-0
Releasenotes 1.9.0
2 parents bdc77f6 + 3f52e6f commit 496a6ec

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@
44

55
- ...
66

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+
720
## 1.8.4 (2018-03-20)
821

922
- Revert ignoring fatal errors on PHP 7+ (#571)

docs/config.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,26 @@ The following settings are available for the client:
241241
)
242242
)
243243
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+
244264
.. _sentry-php-request-context:
245265

246266
Providing Request Context

0 commit comments

Comments
 (0)