Skip to content

Commit af4472e

Browse files
committed
3.7.0
1 parent eb279f4 commit af4472e

File tree

8 files changed

+69
-69
lines changed

8 files changed

+69
-69
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
## Changelog
2-
##### Unreleased
2+
##### 3.7.0 - 2020.11.06
33
- `String#replaceAll` moved to the stable ES, [per June TC39 meeting](https://github.com/tc39/notes/blob/master/meetings/2020-06/june-2.md#stringprototypereplaceall-for-stage-4)
44
- `Promise.any` and `AggregateError` moved to the stable ES, [per July TC39 meeting](https://github.com/tc39/notes/blob/master/meetings/2020-07/july-21.md#promiseany--aggregateerror-for-stage-4)
55
- Added `Reflect[@@toStringTag]`, [per July TC39 meeting](https://github.com/tc39/ecma262/pull/2057)
6+
- Forced replacement of `Array#{ reduce, reduceRight }` in Chrome 80-82 because of [a bug](https://bugs.chromium.org/p/chromium/issues/detail?id=1049982), [#766](https://github.com/zloirock/core-js/issues/766)
67
- Following the changes in [the `upsert` proposal](https://github.com/tc39/proposal-upsert), `{ Map, WeakMap }#emplace` replace `{ Map, WeakMap }#upsert`, these obsolete methods will be removed in the next major release
78
- [By the current spec](https://tc39.es/ecma262/#sec-aggregate-error-constructor), `AggregateError#errors` is own data property
89
- Added correct iteration closing in the iteration helpers according to the current version of [the proposal](https://tc39.es/proposal-iterator-helpers)
@@ -12,7 +13,6 @@
1213
- Fixed possible twice call of `window.onunhandledrejection`, [#760](https://github.com/zloirock/core-js/issues/760)
1314
- Fixed some possible problems related multiple global copies of `core-js`, [#880](https://github.com/zloirock/core-js/issues/880)
1415
- Added a workaround for 3rd party `Reflect.set` polyfill bug, [#847](https://github.com/zloirock/core-js/issues/847)
15-
- Forced replacement of `Array#{ reduce, reduceRight }` in Chrome 80-82 because of [a bug](https://bugs.chromium.org/p/chromium/issues/detail?id=1049982), [#766](https://github.com/zloirock/core-js/issues/766)
1616
- Updated compat data:
1717
- Chrome up to 86
1818
- FF up to 82

README.md

Lines changed: 59 additions & 59 deletions
Large diffs are not rendered by default.

packages/core-js-builder/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "core-js-builder",
33
"description": "core-js builder",
4-
"version": "3.6.5",
4+
"version": "3.7.0",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"
88
},
99
"main": "index.js",
1010
"dependencies": {
11-
"core-js": "3.6.5",
12-
"core-js-compat": "3.6.5",
11+
"core-js": "3.7.0",
12+
"core-js-compat": "3.7.0",
1313
"mkdirp": ">=0.5.5 <1",
1414
"webpack": ">=4.44.2 <5"
1515
},

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.6.5",
4+
"version": "3.7.0",
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.6.5",
4+
"version": "3.7.0",
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.6.5",
4+
"version": "3.7.0",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

packages/core-js/internals/shared.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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.6.5',
7+
version: '3.7.0',
88
mode: IS_PURE ? 'pure' : 'global',
99
copyright: '© 2020 Denis Pushkarev (zloirock.ru)'
1010
});

packages/core-js/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",
33
"description": "Standard library",
4-
"version": "3.6.5",
4+
"version": "3.7.0",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

0 commit comments

Comments
 (0)