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.19.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.19.1
Choose a head ref
  • 16 commits
  • 34 files changed
  • 1 contributor

Commits on Oct 25, 2021

  1. update dependencies

    zloirock committed Oct 25, 2021
    Copy the full SHA
    b727353 View commit details

Commits on Oct 26, 2021

  1. fix Safari 15.1 compat data

    zloirock committed Oct 26, 2021
    Copy the full SHA
    64a4530 View commit details
  2. Copy the full SHA
    1988ef9 View commit details
  3. update dependencies

    zloirock committed Oct 26, 2021
    Copy the full SHA
    253669b View commit details

Commits on Oct 27, 2021

  1. Copy the full SHA
    6c8e95f View commit details
  2. Copy the full SHA
    4ef55e1 View commit details

Commits on Oct 28, 2021

  1. update dependencies

    zloirock committed Oct 28, 2021
    Copy the full SHA
    f02b34b View commit details

Commits on Oct 29, 2021

  1. update dependencies

    zloirock committed Oct 29, 2021
    Copy the full SHA
    ddc34d8 View commit details
  2. update dependencies

    zloirock committed Oct 29, 2021
    Copy the full SHA
    56cf07d View commit details

Commits on Oct 30, 2021

  1. update dependencies

    zloirock committed Oct 30, 2021
    Copy the full SHA
    d6d2f45 View commit details

Commits on Oct 31, 2021

  1. Copy the full SHA
    361b0b4 View commit details
  2. replace a link

    zloirock committed Oct 31, 2021
    Copy the full SHA
    9dae65f View commit details

Commits on Nov 1, 2021

  1. Copy the full SHA
    50da74b View commit details
  2. add a workaround for FF26- bug where ArrayBuffers are non-extensibl…

    …e, but `Object.isExtensible` does not report it
    zloirock committed Nov 1, 2021
    Copy the full SHA
    55b232c View commit details

Commits on Nov 2, 2021

  1. update dependencies

    zloirock committed Nov 2, 2021
    Copy the full SHA
    8faf019 View commit details
  2. 3.19.1

    zloirock committed Nov 2, 2021
    Copy the full SHA
    1f16f36 View commit details
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,17 @@
##### Unreleased
- Nothing

##### 3.19.1 - 2021.11.03
- Added a workaround for FF26- bug where `ArrayBuffer`s are non-extensible, but `Object.isExtensible` does not report it:
- Fixed in `Object.{ isExtensible, isSealed, isFrozen }` and `Reflect.isExtensible`
- Fixed handling of `ArrayBuffer`s as collections keys
- Fixed `Object#toString` on `AggregateError` in IE10-
- Fixed possible lack of dependencies of `WeakMap` in IE8-
- `.findLast` methods family marked as supported [from Chrome 97](https://chromestatus.com/features#milestone%3D97)
- Fixed inheritance of Electron compat data `web.` modules
- Fixed Safari 15.1 compat data (some features were not added)
- Added iOS Safari 15.1 compat data mapping

##### 3.19.0 - 2021.10.25
- Most built-ins are encapsulated in `core-js` for preventing possible cases of breaking / observing the internal state by patching / deleting of them
- Avoid `.call` / `.apply` prototype methods that could be patched
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -140,14 +140,14 @@ Promise.resolve(32).then(x => console.log(x)); // => 32
### Installation:[](#index)
```
// global version
npm install --save core-js@3.19.0
npm install --save core-js@3.19.1
// version without global namespace pollution
npm install --save core-js-pure@3.19.0
npm install --save core-js-pure@3.19.1
// bundled global version
npm install --save core-js-bundle@3.19.0
npm install --save core-js-bundle@3.19.1
```

Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.19.0) ([minified version](https://unpkg.com/core-js-bundle@3.19.0/minified.js)).
Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.19.1) ([minified version](https://unpkg.com/core-js-bundle@3.19.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.19.0/index.js'; // <- at the top of your entry point
import 'https://deno.land/x/corejs@v3.19.1/index.js'; // <- at the top of your entry point

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

Loading