diff --git a/CHANGELOG.md b/CHANGELOG.md index 4acf87fb..8f36fafa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +### Unreleased +* Fix issue where crypto import was causing downstream Jest incompatibilities + ### 7.5.2 / 2024-07-12 * Fix issue where metadata was being incorrectly modified before being sent to the API diff --git a/src/resources/auth.ts b/src/resources/auth.ts index 5a754901..76ed0208 100644 --- a/src/resources/auth.ts +++ b/src/resources/auth.ts @@ -1,5 +1,5 @@ import { v4 as uuid } from 'uuid'; -import { createHash } from 'node:crypto'; +import { createHash } from 'crypto'; import { Resource } from './resource.js'; import { URLForAdminConsentConfig,