diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e2a11c859cb..6858d1696f77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ - Coming soon... +## 5.7.1 + +- [core] ref: Use the smallest possible interface for our needs - `PromiseLike` (#2273) +- [utils] fix: Add TS dom reference to make sure its in place for compilation (#2274) + ## 5.7.0 - [core] ref: Use `Promise` as the interface, but `SyncPromise` as the implementation in all the places we need `thenable` API diff --git a/packages/utils/src/is.ts b/packages/utils/src/is.ts index 525f247f028e..5613be4da7f9 100644 --- a/packages/utils/src/is.ts +++ b/packages/utils/src/is.ts @@ -1,3 +1,5 @@ +/// + /** * Checks whether given value's type is one of a few Error or Error-like * {@link isError}. diff --git a/packages/utils/src/misc.ts b/packages/utils/src/misc.ts index 27818bec0a3b..d6b3f35a9546 100644 --- a/packages/utils/src/misc.ts +++ b/packages/utils/src/misc.ts @@ -1,3 +1,5 @@ +/// + import { Event, Integration, WrappedFunction } from '@sentry/types'; import { isString } from './is';