diff --git a/CHANGELOG.md b/CHANGELOG.md index 650b3bac54bf..43311db8905f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## Changelog ##### Unreleased +- Nothing + +##### 3.22.3 - 2022.04.28 - Added a fix for FF99+ `Array.prototype.includes` broken on sparse arrays ##### 3.22.2 - 2022.04.21 diff --git a/README.md b/README.md index 0f84c6553289..923b2f7ee557 100644 --- a/README.md +++ b/README.md @@ -176,11 +176,11 @@ queueMicrotask(() => console.log('called as microtask')); ### Installation:[⬆](#index) ``` // global version -npm install --save core-js@3.22.2 +npm install --save core-js@3.22.3 // version without global namespace pollution -npm install --save core-js-pure@3.22.2 +npm install --save core-js-pure@3.22.3 // bundled global version -npm install --save core-js-bundle@3.22.2 +npm install --save core-js-bundle@3.22.3 ``` Or you can use `core-js` [from CDN](https://www.jsdelivr.com/package/npm/core-js-bundle). diff --git a/deno/corejs/README.md b/deno/corejs/README.md index c89aae6dc2f1..1956113773c6 100644 --- a/deno/corejs/README.md +++ b/deno/corejs/README.md @@ -24,7 +24,7 @@ *Example*: ```js -import 'https://deno.land/x/corejs@v3.22.2/index.js'; // <- at the top of your entry point +import 'https://deno.land/x/corejs@v3.22.3/index.js'; // <- at the top of your entry point Object.hasOwn({ foo: 42 }, 'foo'); // => true diff --git a/deno/corejs/index.js b/deno/corejs/index.js index 8948a7042f0a..ae16a764f32b 100644 --- a/deno/corejs/index.js +++ b/deno/corejs/index.js @@ -1,7 +1,7 @@ /** - * core-js 3.22.2 + * core-js 3.22.3 * © 2014-2022 Denis Pushkarev (zloirock.ru) - * license: https://github.com/zloirock/core-js/blob/v3.22.2/LICENSE + * license: https://github.com/zloirock/core-js/blob/v3.22.3/LICENSE * source: https://github.com/zloirock/core-js */ !function (undefined) { 'use strict'; /******/ (function(modules) { // webpackBootstrap @@ -884,10 +884,10 @@ var store = __webpack_require__(34); (module.exports = function (key, value) { return store[key] || (store[key] = value !== undefined ? value : {}); })('versions', []).push({ - version: '3.22.2', + version: '3.22.3', mode: IS_PURE ? 'pure' : 'global', copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)', - license: 'https://github.com/zloirock/core-js/blob/v3.22.2/LICENSE', + license: 'https://github.com/zloirock/core-js/blob/v3.22.3/LICENSE', source: 'https://github.com/zloirock/core-js' }); diff --git a/lerna.json b/lerna.json index a5459e6e0f72..c37050c57c8b 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.22.2", + "version": "3.22.3", "packages": [ "packages/*" ] diff --git a/package.json b/package.json index 2a53bb4fc51f..c6ec75e55b92 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "3.22.2", + "version": "3.22.3", "devDependencies": { "@babel/cli": "^7.17.6", "@babel/core": "^7.17.9", diff --git a/packages/core-js-builder/package.json b/packages/core-js-builder/package.json index ecd146fd7b3a..39063f219ff0 100644 --- a/packages/core-js-builder/package.json +++ b/packages/core-js-builder/package.json @@ -1,7 +1,7 @@ { "name": "core-js-builder", "description": "core-js builder", - "version": "3.22.2", + "version": "3.22.3", "repository": { "type": "git", "url": "https://github.com/zloirock/core-js.git", @@ -9,8 +9,8 @@ }, "main": "index.js", "dependencies": { - "core-js": "3.22.2", - "core-js-compat": "3.22.2", + "core-js": "3.22.3", + "core-js-compat": "3.22.3", "mkdirp": ">=0.5.5 <1", "webpack": ">=4.46.0 <5" }, diff --git a/packages/core-js-bundle/package.json b/packages/core-js-bundle/package.json index 3469c3bae7bf..215d53ed4f5d 100644 --- a/packages/core-js-bundle/package.json +++ b/packages/core-js-bundle/package.json @@ -1,7 +1,7 @@ { "name": "core-js-bundle", "description": "Standard library", - "version": "3.22.2", + "version": "3.22.3", "repository": { "type": "git", "url": "https://github.com/zloirock/core-js.git" diff --git a/packages/core-js-compat/package.json b/packages/core-js-compat/package.json index 58352231ba8b..62921157a5a7 100644 --- a/packages/core-js-compat/package.json +++ b/packages/core-js-compat/package.json @@ -1,7 +1,7 @@ { "name": "core-js-compat", "description": "core-js compat", - "version": "3.22.2", + "version": "3.22.3", "repository": { "type": "git", "url": "https://github.com/zloirock/core-js.git", diff --git a/packages/core-js-pure/package.json b/packages/core-js-pure/package.json index 3ec7d5e4f33f..5a7ee5d2a851 100644 --- a/packages/core-js-pure/package.json +++ b/packages/core-js-pure/package.json @@ -1,7 +1,7 @@ { "name": "core-js-pure", "description": "Standard library", - "version": "3.22.2", + "version": "3.22.3", "repository": { "type": "git", "url": "https://github.com/zloirock/core-js.git" diff --git a/packages/core-js/internals/shared.js b/packages/core-js/internals/shared.js index 1c5d3615b78c..c298843a6411 100644 --- a/packages/core-js/internals/shared.js +++ b/packages/core-js/internals/shared.js @@ -4,9 +4,9 @@ var store = require('../internals/shared-store'); (module.exports = function (key, value) { return store[key] || (store[key] = value !== undefined ? value : {}); })('versions', []).push({ - version: '3.22.2', + version: '3.22.3', mode: IS_PURE ? 'pure' : 'global', copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)', - license: 'https://github.com/zloirock/core-js/blob/v3.22.2/LICENSE', + license: 'https://github.com/zloirock/core-js/blob/v3.22.3/LICENSE', source: 'https://github.com/zloirock/core-js' }); diff --git a/packages/core-js/package.json b/packages/core-js/package.json index c254588ea2eb..2537ba6f8509 100644 --- a/packages/core-js/package.json +++ b/packages/core-js/package.json @@ -1,7 +1,7 @@ { "name": "core-js", "description": "Standard library", - "version": "3.22.2", + "version": "3.22.3", "repository": { "type": "git", "url": "https://github.com/zloirock/core-js.git"