Skip to content

Commit d3d49a2

Browse files
committedMay 22, 2022
3.22.6
1 parent 69842a4 commit d3d49a2

File tree

11 files changed

+870
-853
lines changed

11 files changed

+870
-853
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.22.6 - 2022.05.23](https://github.com/zloirock/core-js/releases/tag/v3.22.6)
36
- Fixed possible double call of `ToNumber` conversion on arguments of `Math.{ fround, trunc }` polyfills
47
- `Array.prototype.includes` marked as [fixed](https://bugzilla.mozilla.org/show_bug.cgi?id=1767541) in FF102
58

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ queueMicrotask(() => console.log('called as microtask'));
176176
### Installation:[](#index)
177177
```
178178
// global version
179-
npm install --save core-js@3.22.5
179+
npm install --save core-js@3.22.6
180180
// version without global namespace pollution
181-
npm install --save core-js-pure@3.22.5
181+
npm install --save core-js-pure@3.22.6
182182
// bundled global version
183-
npm install --save core-js-bundle@3.22.5
183+
npm install --save core-js-bundle@3.22.6
184184
```
185185

186186
Or you can use `core-js` [from CDN](https://www.jsdelivr.com/package/npm/core-js-bundle).

‎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.22.5/index.js'; // <- at the top of your entry point
27+
import 'https://deno.land/x/corejs@v3.22.6/index.js'; // <- at the top of your entry point
2828

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

‎deno/corejs/index.js

+853-839
Large diffs are not rendered by default.

‎package.json

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

‎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.22.5",
4+
"version": "3.22.6",
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.22.5",
13-
"core-js-compat": "3.22.5",
12+
"core-js": "3.22.6",
13+
"core-js-compat": "3.22.6",
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.22.5",
4+
"version": "3.22.6",
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.22.5",
4+
"version": "3.22.6",
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.22.5",
4+
"version": "3.22.6",
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.22.5',
7+
version: '3.22.6',
88
mode: IS_PURE ? 'pure' : 'global',
99
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
10-
license: 'https://github.com/zloirock/core-js/blob/v3.22.5/LICENSE',
10+
license: 'https://github.com/zloirock/core-js/blob/v3.22.6/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.22.5",
4+
"version": "3.22.6",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

0 commit comments

Comments
 (0)
Please sign in to comment.