From 01171cf1b3a885f51372e6e06c116ef3730a29a1 Mon Sep 17 00:00:00 2001 From: Alex Bouma Date: Thu, 3 May 2018 09:25:13 +0200 Subject: [PATCH 1/3] Add 1.9.0 changelog entries --- CHANGELOG.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a930b861f..9ca5951e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,17 @@ # CHANGELOG -## Unreleased - -- ... +## 1.9.0 (2018-05-03) + +- Fixed undefined variable (#588) +- Fix for exceptions throwing exceptions when setting event id (#587) +- Fix monolog handler not accepting Throwable (#586) +- Add `excluded_exceptions` option to exclude exceptions and their extending exceptions (#583) +- Fix `HTTP_X_FORWARDED_PROTO` header detection (#578) +- Fix sending events async in PHP 5 (#576) +- Avoid double reporting due to `ErrorException`s (#574) +- Make it possible to overwrite serializer message limit of 1024 (#559) +- Allow request data to be nested up to 5 levels deep (#554) +- Update serializer to handle UTF-8 characters correctly (#553) ## 1.8.4 (2018-03-20) From 6860a3ed666a5bf86a2c4bbfa755f6ce75ddfa72 Mon Sep 17 00:00:00 2001 From: Alex Bouma Date: Thu, 3 May 2018 09:31:06 +0200 Subject: [PATCH 2/3] Add timeout and excluded_options config docs --- docs/config.rst | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/config.rst b/docs/config.rst index 952e4f470..f153398e3 100644 --- a/docs/config.rst +++ b/docs/config.rst @@ -241,6 +241,26 @@ The following settings are available for the client: ) ) +.. describe:: timeout + + The timeout for sending requests to the Sentry server in seconds, default is 2 seconds. + + .. code-block:: php + + 'timeout' => 2, + +.. describe:: excluded_exceptions + + Exception that should not be reported, exceptions extending exceptions in this list will also + be excluded, default is an empty array. + + In the example below, when you exclude ``LogicException`` you will also exclude ``BadFunctionCallException`` + since it extends ``LogicException``. + + .. code-block:: php + + 'excluded_exceptions' => array('LogicException'), + .. _sentry-php-request-context: Providing Request Context From 3f52e6fceabc685dfad7237c57db68ef9042daa3 Mon Sep 17 00:00:00 2001 From: Alex Bouma Date: Thu, 3 May 2018 10:23:14 +0200 Subject: [PATCH 3/3] Add back unrelease heading to changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ca5951e2..30dcb6105 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- ... + ## 1.9.0 (2018-05-03) - Fixed undefined variable (#588)