diff --git a/CHANGELOG.md b/CHANGELOG.md index 6415fde4e478..abbc7c777676 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ - "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott +## 6.17.9 + +- fix(gatsby): Add missing React peer dependency ([#4576](https://github.com/getsentry/sentry-javascript/pull/4576)) +- fix(types): Use Sentry event type instead of dom one ([#4584](https://github.com/getsentry/sentry-javascript/pull/4584)) + ## 6.17.8 - feat(types): Add Envelope types ([#4527](https://github.com/getsentry/sentry-javascript/pull/4527)) diff --git a/packages/types/src/envelope.ts b/packages/types/src/envelope.ts index 0c981cb1557a..27921bc1a097 100644 --- a/packages/types/src/envelope.ts +++ b/packages/types/src/envelope.ts @@ -1,3 +1,4 @@ +import { Event } from './event'; import { SentryRequestType } from './request'; import { SdkInfo } from './sdkinfo'; import { Session, SessionAggregates } from './session';