-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(sdk): Upgrade @sentry SDKs to v8.43.0 #81925
Conversation
❌ 1 Tests Failed:
View the top 1 failed tests by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why did import order change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like you need to fix the import in featureObserver
static/app/views/dashboards/widgetBuilder/components/sortBySelector.spec.tsx
Outdated
Show resolved
Hide resolved
From my pre-commit, maybe cause it's sorted by module name? |
Yeah we had to change imports from |
@@ -1,4 +1,4 @@ | |||
import type {FeatureFlagContext} from '@sentry/types/build/types/context'; | |||
import type {FeatureFlagContext} from '@sentry/core/build/types/types-hoist/context'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should it not be
import type {FeatureFlagContext} from '@sentry/core/build/types/types-hoist/context'; | |
import type {FeatureFlagContext} from '@sentry/core'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I get an error importing directly, this is from vscode autocomplete. Looks like it's not exported in index
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's make sure this gets exported and updated, we shouldn't rely on importing from this
@@ -1,4 +1,4 @@ | |||
import type {FeatureFlagContext} from '@sentry/types/build/types/context'; | |||
import type {FeatureFlagContext} from '@sentry/core/build/types/types-hoist/context'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's make sure this gets exported and updated, we shouldn't rely on importing from this
Planning to instrument the new browser
featureFlagsIntegration
to track internal flag evaluations. We need the latest release for this (https://github.com/getsentry/sentry-javascript/releases/tag/8.43.0).@sentry/types was deprecated so I've changed imports to use @sentry/core