Skip to content

Commit e4b27bd

Browse files
committed
3.24.1
1 parent dc43aac commit e4b27bd

File tree

12 files changed

+63
-47
lines changed

12 files changed

+63
-47
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Changelog
22
##### Unreleased
3+
- Nothing
4+
5+
##### [3.24.1 - 2022.07.30](https://github.com/zloirock/core-js/releases/tag/v3.24.1)
36
- NodeJS is ignored in `IS_BROWSER` detection to avoid a false positive with `jsdom`, [#1110](https://github.com/zloirock/core-js/issues/1110)
47
- Fixed detection of `@@species` support in `Promise` in some old engines
58
- `{ Array, %TypedArray% }.prototype.{ findLast, findLastIndex }` marked as shipped [in FF104](https://bugzilla.mozilla.org/show_bug.cgi?id=1775026)

README.md

Lines changed: 3 additions & 3 deletions
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 [email protected].0
179+
npm install --save [email protected].1
180180
// version without global namespace pollution
181-
npm install --save [email protected].0
181+
npm install --save [email protected].1
182182
// bundled global version
183-
npm install --save [email protected].0
183+
npm install --save [email protected].1
184184
```
185185

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

deno/corejs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
*Example*:
2626
```js
27-
import 'https://deno.land/x/[email protected].0/index.js'; // <- at the top of your entry point
27+
import 'https://deno.land/x/[email protected].1/index.js'; // <- at the top of your entry point
2828

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

deno/corejs/index.js

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* core-js 3.24.0
2+
* core-js 3.24.1
33
* © 2014-2022 Denis Pushkarev (zloirock.ru)
4-
* license: https://github.com/zloirock/core-js/blob/v3.24.0/LICENSE
4+
* license: https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE
55
* source: https://github.com/zloirock/core-js
66
*/
77
!function (undefined) { 'use strict'; /******/ (function(modules) { // webpackBootstrap
@@ -884,10 +884,10 @@ var store = __webpack_require__(34);
884884
(module.exports = function (key, value) {
885885
return store[key] || (store[key] = value !== undefined ? value : {});
886886
})('versions', []).push({
887-
version: '3.24.0',
887+
version: '3.24.1',
888888
mode: IS_PURE ? 'pure' : 'global',
889889
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
890-
license: 'https://github.com/zloirock/core-js/blob/v3.24.0/LICENSE',
890+
license: 'https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE',
891891
source: 'https://github.com/zloirock/core-js'
892892
});
893893

@@ -3396,7 +3396,7 @@ var FORCED_PROMISE_CONSTRUCTOR = isForced('Promise', function () {
33963396
// We can't use @@species feature detection in V8 since it causes
33973397
// deoptimization and performance degradation
33983398
// https://github.com/zloirock/core-js/issues/679
3399-
if (V8_VERSION < 51 || !/native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) {
3399+
if (!V8_VERSION || V8_VERSION < 51 || !/native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) {
34003400
// Detect correctness of subclassing with @@species support
34013401
var promise = new NativePromiseConstructor(function (resolve) { resolve(1); });
34023402
var FakePromise = function (exec) {
@@ -3419,9 +3419,14 @@ module.exports = {
34193419

34203420
/***/ }),
34213421
/* 124 */
3422-
/***/ (function(module, exports) {
3422+
/***/ (function(module, exports, __webpack_require__) {
3423+
3424+
var IS_DENO = __webpack_require__(125);
3425+
var IS_NODE = __webpack_require__(105);
34233426

3424-
module.exports = typeof window == 'object' && typeof Deno != 'object';
3427+
module.exports = !IS_DENO && !IS_NODE
3428+
&& typeof window == 'object'
3429+
&& typeof document == 'object';
34253430

34263431

34273432
/***/ }),

docs/compat/compat-data.js

Lines changed: 34 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -460,8 +460,8 @@
460460
"ios": "8.0",
461461
"node": "0.11.0",
462462
"oculus": "3.0",
463-
"opera": "16",
464-
"opera_mobile": "16",
463+
"opera": "15",
464+
"opera_mobile": "15",
465465
"rhino": "1.7.13",
466466
"safari": "7.1",
467467
"samsung": "1.5"
@@ -537,6 +537,7 @@
537537
"deno": "1.16",
538538
"edge": "97",
539539
"electron": "17.0",
540+
"firefox": "104",
540541
"hermes": "0.11",
541542
"ios": "15.4",
542543
"node": "18.0",
@@ -553,6 +554,7 @@
553554
"deno": "1.16",
554555
"edge": "97",
555556
"electron": "17.0",
557+
"firefox": "104",
556558
"hermes": "0.11",
557559
"ios": "15.4",
558560
"node": "18.0",
@@ -609,8 +611,8 @@
609611
"ios": "8.0",
610612
"node": "0.11.0",
611613
"oculus": "3.0",
612-
"opera": "16",
613-
"opera_mobile": "16",
614+
"opera": "15",
615+
"opera_mobile": "15",
614616
"rhino": "1.7.13",
615617
"safari": "7.1",
616618
"samsung": "1.5"
@@ -715,8 +717,8 @@
715717
"ios": "8.0",
716718
"node": "0.11.0",
717719
"oculus": "3.0",
718-
"opera": "16",
719-
"opera_mobile": "16",
720+
"opera": "15",
721+
"opera_mobile": "15",
720722
"rhino": "1.7.13",
721723
"safari": "7.1",
722724
"samsung": "1.5"
@@ -865,8 +867,8 @@
865867
"ios": "8.0",
866868
"node": "0.11.0",
867869
"oculus": "3.0",
868-
"opera": "16",
869-
"opera_mobile": "16",
870+
"opera": "15",
871+
"opera_mobile": "15",
870872
"rhino": "1.7.13",
871873
"safari": "7.1",
872874
"samsung": "1.5"
@@ -980,8 +982,8 @@
980982
"ios": "12.0",
981983
"node": "0.11.0",
982984
"oculus": "3.0",
983-
"opera": "16",
984-
"opera_mobile": "16",
985+
"opera": "15",
986+
"opera_mobile": "15",
985987
"safari": "12.0",
986988
"samsung": "1.5"
987989
},
@@ -1035,8 +1037,8 @@
10351037
"ios": "8.0",
10361038
"node": "0.11.0",
10371039
"oculus": "3.0",
1038-
"opera": "16",
1039-
"opera_mobile": "16",
1040+
"opera": "15",
1041+
"opera_mobile": "15",
10401042
"rhino": "1.7.13",
10411043
"safari": "7.1",
10421044
"samsung": "1.5"
@@ -1054,8 +1056,8 @@
10541056
"ios": "8.0",
10551057
"node": "0.11.0",
10561058
"oculus": "3.0",
1057-
"opera": "16",
1058-
"opera_mobile": "16",
1059+
"opera": "15",
1060+
"opera_mobile": "15",
10591061
"rhino": "1.7.13",
10601062
"safari": "7.1",
10611063
"samsung": "1.5"
@@ -1153,8 +1155,8 @@
11531155
"ios": "8.0",
11541156
"node": "0.11.0",
11551157
"oculus": "3.0",
1156-
"opera": "16",
1157-
"opera_mobile": "16",
1158+
"opera": "15",
1159+
"opera_mobile": "15",
11581160
"rhino": "1.7.13",
11591161
"safari": "7.1",
11601162
"samsung": "1.5"
@@ -1172,8 +1174,8 @@
11721174
"ios": "10.0",
11731175
"node": "0.11.0",
11741176
"oculus": "3.0",
1175-
"opera": "16",
1176-
"opera_mobile": "16",
1177+
"opera": "15",
1178+
"opera_mobile": "15",
11771179
"rhino": "1.7.13",
11781180
"safari": "10.0",
11791181
"samsung": "1.5"
@@ -1549,8 +1551,8 @@
15491551
"ios": "9.0",
15501552
"node": "0.11.1",
15511553
"oculus": "3.0",
1552-
"opera": "16",
1553-
"opera_mobile": "16",
1554+
"opera": "15",
1555+
"opera_mobile": "15",
15541556
"rhino": "1.7.13",
15551557
"safari": "9.0",
15561558
"samsung": "1.5"
@@ -1908,8 +1910,8 @@
19081910
"ios": "8.0",
19091911
"node": "0.11.0",
19101912
"oculus": "3.0",
1911-
"opera": "16",
1912-
"opera_mobile": "16",
1913+
"opera": "15",
1914+
"opera_mobile": "15",
19131915
"rhino": "1.7.13",
19141916
"safari": "7.1",
19151917
"samsung": "1.5"
@@ -1927,8 +1929,8 @@
19271929
"ios": "8.0",
19281930
"node": "0.11.0",
19291931
"oculus": "3.0",
1930-
"opera": "16",
1931-
"opera_mobile": "16",
1932+
"opera": "15",
1933+
"opera_mobile": "15",
19321934
"rhino": "1.7.13",
19331935
"safari": "7.1",
19341936
"samsung": "1.5"
@@ -3907,6 +3909,7 @@
39073909
"deno": "1.16",
39083910
"edge": "97",
39093911
"electron": "17.0",
3912+
"firefox": "104",
39103913
"hermes": "0.11",
39113914
"ios": "15.4",
39123915
"node": "18.0",
@@ -3923,6 +3926,7 @@
39233926
"deno": "1.16",
39243927
"edge": "97",
39253928
"electron": "17.0",
3929+
"firefox": "104",
39263930
"hermes": "0.11",
39273931
"ios": "15.4",
39283932
"node": "18.0",
@@ -4214,8 +4218,8 @@
42144218
"ios": "8.0",
42154219
"node": "0.11.0",
42164220
"oculus": "3.0",
4217-
"opera": "16",
4218-
"opera_mobile": "16",
4221+
"opera": "15",
4222+
"opera_mobile": "15",
42194223
"safari": "7.1",
42204224
"samsung": "1.5"
42214225
},
@@ -4383,6 +4387,7 @@
43834387
"deno": "1.16",
43844388
"edge": "97",
43854389
"electron": "17.0",
4390+
"firefox": "104",
43864391
"hermes": "0.11",
43874392
"ios": "15.4",
43884393
"node": "18.0",
@@ -4399,6 +4404,7 @@
43994404
"deno": "1.16",
44004405
"edge": "97",
44014406
"electron": "17.0",
4407+
"firefox": "104",
44024408
"hermes": "0.11",
44034409
"ios": "15.4",
44044410
"node": "18.0",
@@ -4673,6 +4679,7 @@
46734679
"deno": "1.16",
46744680
"edge": "97",
46754681
"electron": "17.0",
4682+
"firefox": "104",
46764683
"hermes": "0.11",
46774684
"ios": "15.4",
46784685
"node": "18.0",
@@ -4689,6 +4696,7 @@
46894696
"deno": "1.16",
46904697
"edge": "97",
46914698
"electron": "17.0",
4699+
"firefox": "104",
46924700
"hermes": "0.11",
46934701
"ios": "15.4",
46944702
"node": "18.0",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.24.0",
2+
"version": "3.24.1",
33
"workspaces": [
44
"./packages/*"
55
],

packages/core-js-builder/package.json

Lines changed: 3 additions & 3 deletions
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.24.0",
4+
"version": "3.24.1",
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.24.0",
13-
"core-js-compat": "3.24.0",
12+
"core-js": "3.24.1",
13+
"core-js-compat": "3.24.1",
1414
"mkdirp": ">=0.5.5 <1",
1515
"webpack": ">=4.46.0 <5"
1616
},

packages/core-js-bundle/package.json

Lines changed: 1 addition & 1 deletion
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.24.0",
4+
"version": "3.24.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

packages/core-js-compat/package.json

Lines changed: 1 addition & 1 deletion
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.24.0",
4+
"version": "3.24.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git",

packages/core-js-pure/package.json

Lines changed: 1 addition & 1 deletion
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.24.0",
4+
"version": "3.24.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

0 commit comments

Comments
 (0)