What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
Update Sentry dependency (fixes issues related to the conflict of the Sentry SDK v8+)
What is the current behavior? (You can also link to an open issue here)
In the Sentry v7-v8 the @sentry/hub was merged with @sentry/core and than the __SENTRY__.hub was completelyremoved. The @sentry/minimal has not been updated for a long time and uses __SENTRY__.hub.isOlderThan() method failing with the error of missing variable.
What is the new behavior (if this is a feature change)?
Instead of @sentry/minimal it uses @sentry/core that is aware of new SDK version and uses it without throwing exceptions.
What kind of change does this PR introduce? (Bug fix, feature, docs update, ...) Update Sentry dependency (fixes issues related to the conflict of the Sentry SDK v8+)
What is the current behavior? (You can also link to an open issue here) In the Sentry v7-v8 the @sentry/hub was merged with @sentry/core and than the
__SENTRY__.hub
was completely removed. The @sentry/minimal has not been updated for a long time and uses__SENTRY__.hub.isOlderThan()
method failing with the error of missing variable.What is the new behavior (if this is a feature change)? Instead of @sentry/minimal it uses @sentry/core that is aware of new SDK version and uses it without throwing exceptions.
Other information: —