diff --git a/CHANGELOG.md b/CHANGELOG.md index 6672674aed6f..d524d4da3f4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ - Stabilized proposals are filtered out from the `core-js-compat` / `core-js-builder` / `core-js-bundle` output. That mean that if the output contains, for example, `es.object.has-own`, the legacy shortcut to it, `esnext.object.has-own`, will not be added. - Fixed work of non-standard V8 `Error` features with wrapped `Error` constructors, [#1061](https://github.com/zloirock/core-js/issues/1061) - `null` and `undefined` allowed as the second argument of `structuredClone`, [#1056](https://github.com/zloirock/core-js/issues/1056) +- `atob` marked as not supported in the actual NodeJS (again) because of [the bug](https://github.com/nodejs/node/issues/42530) - Added Electron 19.0 and updated 18.0 compat data mapping ##### 3.21.1 - 2022.02.17 diff --git a/packages/core-js-compat/src/data.mjs b/packages/core-js-compat/src/data.mjs index 23e49c64b5b4..6ee67442a725 100644 --- a/packages/core-js-compat/src/data.mjs +++ b/packages/core-js-compat/src/data.mjs @@ -1901,7 +1901,8 @@ export const data = { edge: '13', firefox: '27', // https://github.com/nodejs/node/issues/41450 - node: '17.5', // '16.0', + // https://github.com/nodejs/node/issues/42530 + // node: '17.5', '16.0', opera: '10.5', safari: '10.1', },