Skip to content

Commit

Permalink
Prepare v5.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Lehmann committed Sep 13, 2023
1 parent 5482682 commit 4ab3daf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}
```

Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' => '[email protected]',
Expand Down

0 comments on commit 4ab3daf

Please sign in to comment.