Skip to content

meta: Add CHANGELOG entry for 8.5.0 #12236

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

Merged
merged 27 commits into from
May 27, 2024
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
a87af78
Merge pull request #12195 from getsentry/master
github-actions[bot] May 23, 2024
a9e6ba8
fix(node): Add origin to redis span (#12201)
mydea May 24, 2024
0ac519a
chore(ci): Remove unused NODE_VERSION 16 env from browser ci tests (#…
andreiborza May 24, 2024
a9cef35
fix(browser): Remove optional chaining in INP code (#12196)
AbhiPrasad May 24, 2024
41951ba
fix(nextjs): Don't report React postpone errors (#12194)
May 24, 2024
805c577
build(react/remix): Use new `jsx` JSX transform instead of `React.cre…
May 24, 2024
ca4afef
feat(react): Add React 19 to peer deps (#12207)
AbhiPrasad May 24, 2024
5791a38
fix(replay): Update matcher for hydration error detection to new Reac…
May 24, 2024
3ea5373
fix(nextjs): Use global scope for generic event filters (#12205)
May 24, 2024
93c467d
test: Disable ember-release and embroider-optimized ember canary test…
AbhiPrasad May 24, 2024
186e982
feat(solidjs): Add solidjs SDK basic package (#12193)
andreiborza May 24, 2024
8fa393c
fix(node): Change import of `@prisma/instrumentation` to use default …
May 24, 2024
cc1cb7b
feat(node): Ensure manual OTEL setup works (#12214)
mydea May 27, 2024
5a1fae6
feat(core): Allow to pass custom scope to `captureFeedback()` (#12216)
mydea May 27, 2024
330750d
feat(core): Add `startNewTrace` API (#12138)
Lms24 May 27, 2024
b188e61
feat(node): Add `@sentry/node/preload` hook (#12213)
mydea May 27, 2024
5469f89
feat(lforst): Only allow `SerializedSession` in session envelope item…
May 27, 2024
8479698
build: Add size-limit entry for metrics (#12227)
mydea May 27, 2024
3e179e1
test(e2e): Unflake sveltekit test (#12228)
May 27, 2024
2043f2d
feat(nextjs): Use Vercel's `waitUntil` to defer freezing of Vercel La…
May 27, 2024
c2b9079
fix(aws-serverless): Avoid minifying `Module._resolveFilename` in Lam…
Lms24 May 27, 2024
1f8f1b8
ref(profiling-node): Add warning when using non-LTS node (#12211)
AbhiPrasad May 27, 2024
5282753
fix: Only import `inspector` asynchronously (#12231)
timfish May 27, 2024
83c255a
fix(aws): Ensure lambda layer uses default export from `ImportInTheMi…
Lms24 May 27, 2024
8dca102
fix(browser): Improve browser extension error message check (#12146)
Lms24 May 27, 2024
0fbe39a
feat(browser): Do not include metrics in base CDN bundle (#12230)
mydea May 27, 2024
f32f88d
meta: Add CHANGELOG entry for `8.5.0`
Lms24 May 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(node): Change import of @prisma/instrumentation to use default …
…import (#12185)
  • Loading branch information
Luca Forstner authored May 24, 2024
commit 8fa393cde2001ca8f52008744c2ee2c138af16e5
7 changes: 6 additions & 1 deletion packages/node/src/integrations/tracing/prisma.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@ const _prismaIntegration = (() => {
return {
name: 'Prisma',
setupOnce() {
const EsmInteropPrismaInstrumentation: typeof prismaInstrumentation.PrismaInstrumentation =
// @ts-expect-error We need to do the following for interop reasons
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
prismaInstrumentation.default?.PrismaInstrumentation || prismaInstrumentation.PrismaInstrumentation;

addOpenTelemetryInstrumentation(
// does not have a hook to adjust spans & add origin
new prismaInstrumentation.PrismaInstrumentation({}),
new EsmInteropPrismaInstrumentation({}),
);
},

Expand Down