Skip to content

Commit 4bcdaf8

Browse files
committedJan 15, 2022
3.20.3
1 parent 61d15fd commit 4bcdaf8

File tree

12 files changed

+1429
-1390
lines changed

12 files changed

+1429
-1390
lines changed
 

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Changelog
22
##### Unreleased
3+
- Nothing
4+
5+
##### 3.20.3 - 2022.01.15
36
- Detects and replaces broken third-party `Function#bind` polyfills, uses only native `Function#bind` in the internals
47
- `structuredClone` should throw an error if no arguments passed
58
- Changed the structure of notes in `__core-js_shared__`

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -175,14 +175,14 @@ queueMicrotask(() => console.log('called as microtask'));
175175
### Installation:[](#index)
176176
```
177177
// global version
178-
npm install --save core-js@3.20.2
178+
npm install --save core-js@3.20.3
179179
// version without global namespace pollution
180-
npm install --save core-js-pure@3.20.2
180+
npm install --save core-js-pure@3.20.3
181181
// bundled global version
182-
npm install --save core-js-bundle@3.20.2
182+
npm install --save core-js-bundle@3.20.3
183183
```
184184

185-
Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.20.2) ([minified version](https://unpkg.com/core-js-bundle@3.20.2/minified.js)).
185+
Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.20.3) ([minified version](https://unpkg.com/core-js-bundle@3.20.3/minified.js)).
186186

187187
### `postinstall` message[](#index)
188188
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:

‎deno/corejs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
*Example*:
2626
```js
27-
import 'https://deno.land/x/corejs@v3.20.2/index.js'; // <- at the top of your entry point
27+
import 'https://deno.land/x/corejs@v3.20.3/index.js'; // <- at the top of your entry point
2828

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

‎deno/corejs/index.js

+1,410-1,374
Large diffs are not rendered by default.

‎lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.20.2",
2+
"version": "3.20.3",
33
"packages": [
44
"packages/*"
55
]

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.20.2",
2+
"version": "3.20.3",
33
"devDependencies": {
44
"@babel/cli": "^7.16.8",
55
"@babel/core": "^7.16.7",

‎packages/core-js-builder/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "core-js-builder",
33
"description": "core-js builder",
4-
"version": "3.20.2",
4+
"version": "3.20.3",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git",
88
"directory": "packages/core-js-builder"
99
},
1010
"main": "index.js",
1111
"dependencies": {
12-
"core-js": "3.20.2",
13-
"core-js-compat": "3.20.2",
12+
"core-js": "3.20.3",
13+
"core-js-compat": "3.20.3",
1414
"mkdirp": ">=0.5.5 <1",
1515
"webpack": ">=4.46.0 <5"
1616
},

‎packages/core-js-bundle/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "core-js-bundle",
33
"description": "Standard library",
4-
"version": "3.20.2",
4+
"version": "3.20.3",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

‎packages/core-js-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "core-js-compat",
33
"description": "core-js compat",
4-
"version": "3.20.2",
4+
"version": "3.20.3",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git",

‎packages/core-js-pure/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "core-js-pure",
33
"description": "Standard library",
4-
"version": "3.20.2",
4+
"version": "3.20.3",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

‎packages/core-js/internals/shared.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ var store = require('../internals/shared-store');
44
(module.exports = function (key, value) {
55
return store[key] || (store[key] = value !== undefined ? value : {});
66
})('versions', []).push({
7-
version: '3.20.2',
7+
version: '3.20.3',
88
mode: IS_PURE ? 'pure' : 'global',
99
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
10-
license: 'https://github.com/zloirock/core-js/blob/v3.20.2/LICENSE',
10+
license: 'https://github.com/zloirock/core-js/blob/v3.20.3/LICENSE',
1111
source: 'https://github.com/zloirock/core-js'
1212
});

‎packages/core-js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "core-js",
33
"description": "Standard library",
4-
"version": "3.20.2",
4+
"version": "3.20.3",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

0 commit comments

Comments
 (0)
Please sign in to comment.