Bump "core-js" package version - #275
Merged
updateclibot[bot] merged 1 commit intoAug 15, 2026
Merged
Conversation
Made with ❤️️ by updatecli
updateclibot
Bot
deleted the
updatecli_main_dc59aab96c1520060e42c0acc74f5d86d9ec90908d9cb6cc7d821f2754c8454b
branch
August 15, 2026 12:34
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bump "core-js" package version
Bump "core-js" package version to 3.50.0
ran shell command "npm install --package-lock-only --dry-run=$DRY_RUN core-js@3.50.0"
v3.50.0
- Changes [v3.49.0...v3.50.0](https://github.com/zloirock/core-js/compare/v3.49.0...v3.50.0) (138 commits) - [Joint iteration proposal](https://github.com/tc39/proposal-joint-iteration): - Built-ins: - `Iterator.zip` - `Iterator.zipKeyed` - Moved to stable ES, [May 2026 TC39 meeting](https://github.com/tc39/proposals/commit/7e2d9a45e71525984d4c35313a3daeb4260773ef) - Added `es.` namespace modules, `/es/` and `/stable/` namespace entries - [`Iterator` chunking proposal](https://github.com/tc39/proposal-iterator-chunking): - Built-ins: - `Iterator.prototype.chunks` - `Iterator.prototype.windows` - Throw a `TypeError` instead of `RangeError` on non-integer number `chunkSize` / `windowSize`, following [tc39/proposal-iterator-chunking/#30](https://github.com/tc39/proposal-iterator-chunking/pull/30) - Moved to stage 3, [May 2026 TC39 meeting](https://github.com/tc39/proposals/commit/7226f0af93443025010efcad219115cec7dc8b2a) - Added `/actual/` namespace entries, unconditional forced replacement changed to feature detection - Added [`Iterator` includes stage 3 proposal](https://github.com/tc39/proposal-iterator-includes): - Added built-in: - `Iterator.prototype.includes` - Added [`Iterator` join stage 3 proposal](https://github.com/tc39/proposal-iterator-join): - Added built-in: - `Iterator.prototype.join` - Added [Await dictionary of Promises stage 3 proposal](https://github.com/tc39/proposal-await-dictionary): - Added built-ins: - `Promise.allKeyed` - `Promise.allSettledKeyed` - Throw a `RangeError` on finite unsafe integer `limit` in `Iterator.prototype.{ drop, take }`, following [tc39/ecma262/#3776](https://github.com/tc39/ecma262/pull/3776) - Use `PromiseResolve` semantics in `Promise.try`, following [tc39/ecma262/#3883](https://github.com/tc39/ecma262/pull/3883) - Added detection of missed [Webkit ~ Safari < 26.2 `Iterator.prototype.flatMap` bug](https://bugs.webkit.org/show_bug.cgi?id=297532) case, [#1538](https://github.com/zloirock/core-js/issues/1538) - Deno 2.9+ [*replaces* `Object.prototype.__proto__`](https://github.com/denoland/deno/pull/35192) instead of removing it, so the feature detection updated - Fixed `JSON.stringify` polyfill with an array replacer - keys order now follows the replacer, inherited and non-enumerable properties are no longer ignored, [#1539](https://github.com/zloirock/core-js/issues/1539) - Make `URL` / `URLSearchParams` parsing a little more correct (char sets, percent coding, etc) - Ensure opaque paths always roundtrip in URL polyfill (still without adding to feature detection), [whatwg/url#844](https://github.com/whatwg/url/pull/844) - Fix `URL#toJSON` when `URL#toString` is reassigned after core-js is imported - Fixed possible crash on some keys in `Symbol.for` - Some `get-iterator` / `get-iterator-method` fixes - Fixed `String.prototype.{ match, search }` polyfills conversion order - Added missed `MAX_SAFE_INTEGER` excess check in `Array.from` and `{ Map, Object }.groupBy` polyfills - Improved the way of inner iterators cleaning in iterator helpers - Improved accuracy of `Math.{ asinh, cbrt, log1p }` polyfills with big and small values - Improved performance of `Uint8Array` base64 methods - Improved performance of `escape` - Slight performance improvement for engines with native `Array.prototype.fill` on `ArrayBuffer` constructor and `%TypedArray%.prototype.fill` - Clarify supported Node versions in `package.json` of some missed packages (just to satisfy `publint`) - Compat data improvements: - Following [tc39/ecma262/#3776](https://github.com/tc39/ecma262/pull/3776), `Iterator.prototype.{ drop, take }` properly supported from: - [V8 ~ Chrome 150](https://github.com/v8/v8/commit/ce52c1d84268311648c9362e8d3bbb08fc58bd3c) - Safari 27.0 - Bun 1.4.0 - Following [tc39/ecma262/#3883](https://github.com/tc39/ecma262/pull/3883), `Promise.try` marked as not properly supported in all engines - [`Iterator.prototype.{ chunks, windows }`](https://github.com/tc39/proposal-iterator-chunking) marked as [shipped in FF154](https://bugzilla.mozilla.org/show_bug.cgi?id=2047997) - [`Iterator.prototype.includes`](https://github.com/tc39/proposal-iterator-includes) marked as [shipped in FF154](https://bugzilla.mozilla.org/show_bug.cgi?id=2034104) - [`Iterator.prototype.includes`](https://github.com/tc39/proposal-iterator-includes) marked as shipped in Bun 1.4.0 - [`Iterator.prototype.join`](https://github.com/tc39/proposal-iterator-join) marked as [shipped in FF154](https://bugzilla.mozilla.org/show_bug.cgi?id=2047995) - [`Array.prototype.includes` WebKit bug](https://bugs.webkit.org/show_bug.cgi?id=309342) marked as fixed in: - Safari 27.0 - Bun 1.3.12 - [`queueMicrotask` Bun bug](https://github.com/oven-sh/bun/issues/9249) marked as fixed in Bun 1.4.0 - Added [Node 26.0](https://github.com/nodejs/node/pull/62526) compat data mapping - Added [Deno 2.7.8](https://github.com/denoland/deno/releases/tag/v2.7.8), [Deno 2.8.0](https://github.com/denoland/deno/releases/tag/v2.8.0), and [Deno 2.9.4](https://github.com/denoland/deno/releases/tag/v2.9.4) compat data mapping - Updated [Electron 42 and added 43, 44, and 45](https://releases.electronjs.org/) compat data mapping - Added Samsung Browser 30 compat data mapping - Added Oculus Quest Browser 144+ compat data mapping - Added Opera for Android [97](https://forums.opera.com/topic/88511/opera-for-android-97), [98](https://forums.opera.com/topic/88625/opera-for-android-98), [99](https://forums.opera.com/topic/88883/opera-for-android-99), and [100](https://forums.opera.com/topic/88999/opera-for-android-100) compat data mappingCreated automatically by Updatecli
Options:
Most of Updatecli configuration is done via its manifest(s).
Feel free to report any issues at github.com/updatecli/updatecli.
If you find this tool useful, do not hesitate to star our GitHub repository as a sign of appreciation, and/or to tell us directly on our chat!