Skip to content

Commit

Permalink
deps(sentry): bump sentry deps (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasBa committed Aug 26, 2023
1 parent 0bc2a33 commit 9ff04b6
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 86 deletions.
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

0 comments on commit 9ff04b6

Please sign in to comment.