From 4ab3dafa04c60e4e21cc6d5d6e596573648a123b Mon Sep 17 00:00:00 2001 From: Christoph Lehmann Date: Wed, 13 Sep 2023 22:43:26 +0200 Subject: [PATCH] Prepare v5.0.0 release --- README.md | 15 ++++++++++++++- ext_emconf.php | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 350ca4d..4465744 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ if (TYPO3\CMS\Core\Core\Environment::getContext()->isProduction()) { ], ]; // Set sentry/sentry options - $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['sentry_client']['options']['server_name'] = 'web3'; + // $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['sentry_client']['options']['server_name'] = 'web3'; } ``` @@ -84,6 +84,19 @@ There is a Slack channel #ext-sentry_client ## Changelog +### 5.0.0 + +* New option "disableDatabaseLogging": When enabled, exceptions are not written to database table sys_log +* Introduce Sentry Integrations +* Allow passing sentry/sentry options via `EXTCONF` +* Ignore exceptions, that are ignore in TYPO3 core +* Use `sentry/sentry` instead of `sentry/sdk` (Thanks to @derhansen) +* !!! Option "logWriterLogLevel" removed. LogWriter needs to be configured in `system/additional.php` +* !!! Option "messageBlacklistRegex" renamed to "ignoreMessageRegex" +* !!! Option "logWriterComponentBlacklist" renamed to "logWriterComponentIgnorelist" +* !!! Drop support for TYPO3 v10 +* !!! Drop support for non-composer usage + ### 4.2.0 * Add log message interpolation (Thanks to @sascha-egerer) diff --git a/ext_emconf.php b/ext_emconf.php index 1838384..3080b27 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,7 +4,7 @@ 'title' => 'Sentry Client', 'description' => 'A Sentry client for TYPO3. It forwards errors and exceptions to Sentry - https://sentry.io/', 'category' => 'services', - 'version' => '4.3.0', + 'version' => '5.0.0', 'state' => 'stable', 'author' => 'Christoph Lehmann', 'author_email' => 'christoph.lehmann@networkteam.com',