- Switch from deprecated raven/raven to sentry/sentry
- Option to send logged in user information to sentry when enabled in config marten-cz
- Added support for configuration options xdobro4
- Added DI Extension
- Changed namespace from
Salamek
toSalamek\RavenNette
Fixes issue when all Tracy events was send to Sentry, now only events of ERROR, EXCEPTION, CRITICAL and WARNING are send to Sentry (ignores DEBUG, INFO)
First stable relase, Removed need of manual connecting events from Tracy to raven-nette, so no need to use this code (this code is run in raven-nette __construct):
// Add Fatal Error handler
\Tracy\Debugger::$onFatalError[] = function($e) use($sentryLogger)
{
$sentryLogger->onFatalError($e);
};
// Add logger to tracy
Tracy\Debugger::setLogger($sentryLogger);
First testing release