From 0c0c7f6a5e68fd1cb495d903adac663586be6ce5 Mon Sep 17 00:00:00 2001 From: Tim Fish Date: Tue, 10 Sep 2024 09:28:33 +0200 Subject: [PATCH] fix: incorrect property name in `CHANGELOG.md` (#13635) I failed to update the description in my PR when we improved the property name after some discussion in the PR, so the wrong property name was used in the changelog: https://github.com/getsentry/sentry-javascript/blob/bcf571d9954094be76a99edbb12c23eff7f7b5dc/packages/node/src/types.ts#L20 Thanks to @torickjdavis for reporting this [here](https://github.com/getsentry/sentry-javascript/issues/12414#issuecomment-2339236336)! --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc50808b4f11..da1f91d499bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,7 +34,7 @@ import * as Sentry from '@sentry/node'; Sentry.init({ dsn: '__PUBLIC_DSN__', - registerEsmLoaderHooks: { onlyHookedModules: true }, + registerEsmLoaderHooks: { onlyIncludeInstrumentedModules: true }, }); ```