Skip to content
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

deps(sentry): bump sentry deps #191

Merged
merged 1 commit into from
Aug 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
158 changes: 79 additions & 79 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@
"author": "jonas.badalic@sentry.io",
"license": "MIT",
"dependencies": {
"@sentry/core": "^7.53.0",
"@sentry/hub": "^7.53.0",
"@sentry/node": "^7.53.0",
"@sentry/types": "^7.53.0",
"@sentry/utils": "^7.53.0",
"@sentry/core": "^7.64.0",
"@sentry/hub": "^7.64.0",
"@sentry/node": "^7.64.0",
"@sentry/types": "^7.64.0",
"@sentry/utils": "^7.64.0",
"detect-libc": "^2.0.1",
"node-abi": "^3.28.0",
"node-gyp": "^9.3.0"
Expand Down
2 changes: 0 additions & 2 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ export function createProfilingEventFromTransaction(event: ProfiledEvent): Profi
event_id: event.event_id || '',
transaction: event.transaction || '',
start_timestamp: event.start_timestamp ? event.start_timestamp * 1000 : Date.now(),
// @ts-expect-error trace id is unknown
trace_id: event?.contexts?.trace?.trace_id || '',
profile_id: rawProfile.profile_id
});
Expand All @@ -163,7 +162,6 @@ export function createProfilingEvent(profile: RawThreadCpuProfile, event: Event)
event_id: event.event_id || '',
transaction: event.transaction || '',
start_timestamp: event.start_timestamp ? event.start_timestamp * 1000 : Date.now(),
// @ts-expect-error accessing private property
trace_id: event?.contexts?.trace?.trace_id || '',
profile_id: profile.profile_id
});
Expand Down