Skip to content

Commit

Permalink
mark atob as not supported in the actual NodeJS (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Mar 30, 2022
1 parent 06b4357 commit 81d06dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion packages/core-js-compat/src/data.mjs
Expand Up @@ -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',
},
Expand Down

0 comments on commit 81d06dd

Please sign in to comment.