Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: zloirock/core-js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.21.0
Choose a base ref
...
head repository: zloirock/core-js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.21.1
Choose a head ref
  • 20 commits
  • 25 files changed
  • 1 contributor

Commits on Feb 3, 2022

  1. Copy the full SHA
    6df7c31 View commit details

Commits on Feb 4, 2022

  1. update dependencies

    zloirock committed Feb 4, 2022
    Copy the full SHA
    76ab60d View commit details

Commits on Feb 5, 2022

  1. Copy the full SHA
    c5d4e23 View commit details
  2. update dependencies

    zloirock committed Feb 5, 2022
    Copy the full SHA
    ac784d7 View commit details

Commits on Feb 7, 2022

  1. update dependencies

    zloirock committed Feb 7, 2022
    Copy the full SHA
    2701cea View commit details
  2. Copy the full SHA
    ea62b2e View commit details

Commits on Feb 8, 2022

  1. update dependencies

    zloirock committed Feb 8, 2022
    Copy the full SHA
    a3f5916 View commit details

Commits on Feb 9, 2022

  1. update dependencies

    zloirock committed Feb 9, 2022
    Copy the full SHA
    77ca4f7 View commit details

Commits on Feb 10, 2022

  1. Copy the full SHA
    de54899 View commit details
  2. update dependencies

    zloirock committed Feb 10, 2022
    Copy the full SHA
    b746e19 View commit details

Commits on Feb 11, 2022

  1. Copy the full SHA
    4c4655d View commit details
  2. Copy the full SHA
    e507298 View commit details
  3. update dependencies

    zloirock committed Feb 11, 2022
    Copy the full SHA
    d51b8de View commit details

Commits on Feb 12, 2022

  1. update dependencies

    zloirock committed Feb 12, 2022
    Copy the full SHA
    94c7055 View commit details
  2. Copy the full SHA
    3ebe589 View commit details
  3. Copy the full SHA
    55a5195 View commit details

Commits on Feb 14, 2022

  1. Copy the full SHA
    cf4ba30 View commit details

Commits on Feb 15, 2022

  1. update dependencies

    zloirock committed Feb 15, 2022
    Copy the full SHA
    42eea35 View commit details
  2. update dependencies

    zloirock committed Feb 15, 2022
    Copy the full SHA
    2e532d6 View commit details

Commits on Feb 16, 2022

  1. 3.21.1

    zloirock committed Feb 16, 2022
    Copy the full SHA
    eb9229a View commit details
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@
##### Unreleased
- Nothing

##### 3.21.1 - 2022.02.17
- Added a [bug](https://bugs.webkit.org/show_bug.cgi?id=236541)fix for the WebKit `Array.prototype.{ groupBy, groupByToMap }` implementation
- `core-js-compat` targets parser transforms engine names to lower case
- `atob` / `btoa` marked as [fixed](https://github.com/nodejs/node/pull/41478) in NodeJS 17.5
- Added Electron 18.0 compat data mapping
- Added Deno 1.20 compat data mapping

##### 3.21.0 - 2022.02.02
- Added [Base64 utility methods](https://developer.mozilla.org/en-US/docs/Glossary/Base64):
- `atob`
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -176,14 +176,14 @@ queueMicrotask(() => console.log('called as microtask'));
### Installation:[](#index)
```
// global version
npm install --save core-js@3.21.0
npm install --save core-js@3.21.1
// version without global namespace pollution
npm install --save core-js-pure@3.21.0
npm install --save core-js-pure@3.21.1
// bundled global version
npm install --save core-js-bundle@3.21.0
npm install --save core-js-bundle@3.21.1
```

Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.21.0) ([minified version](https://unpkg.com/core-js-bundle@3.21.0/minified.js)).
Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.21.1) ([minified version](https://unpkg.com/core-js-bundle@3.21.1/minified.js)).

### `postinstall` message[](#index)
The `core-js` project needs your help, so the package shows a message about it after installation. If it causes problems for you, you can disable it:
2 changes: 1 addition & 1 deletion deno/corejs/README.md
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@

*Example*:
```js
import 'https://deno.land/x/corejs@v3.21.0/index.js'; // <- at the top of your entry point
import 'https://deno.land/x/corejs@v3.21.1/index.js'; // <- at the top of your entry point

Object.hasOwn({ foo: 42 }, 'foo'); // => true

Loading