Skip to content
This repository was archived by the owner on Sep 7, 2025. It is now read-only.

chore(deps): update dependency core-js to v3.45.1#3742

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/core-js-3.x
Open

chore(deps): update dependency core-js to v3.45.1#3742
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/core-js-3.x

Conversation

@renovate

@renovate renovate Bot commented Dec 26, 2022

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
core-js (source) 3.26.1 -> 3.45.1 age adoption passing confidence

Release Notes

zloirock/core-js (core-js)

v3.45.1

Compare Source

  • Changes v3.45.0...v3.45.1 (30 commits)
  • Fixed a conflict of native methods from Map upsert proposal with polyfilled methods in the pure version
  • Added bugs fields to package.json of all packages
  • Compat data improvements:
    • Map upsert proposal features marked as shipped from Bun 1.2.20
    • Added Samsung Internet 29 compat data mapping
    • Added Electron 39 compat data mapping

v3.45.0

Compare Source

v3.44.0

Compare Source

v3.43.0

Compare Source

  • Changes v3.42.0...v3.43.0 (139 commits)
  • Explicit Resource Management proposals:
    • Built-ins:
      • Symbol.dispose
      • Symbol.asyncDispose
      • SuppressedError
      • DisposableStack
        • DisposableStack.prototype.dispose
        • DisposableStack.prototype.use
        • DisposableStack.prototype.adopt
        • DisposableStack.prototype.defer
        • DisposableStack.prototype.move
        • DisposableStack.prototype[@​@​dispose]
      • AsyncDisposableStack
        • AsyncDisposableStack.prototype.disposeAsync
        • AsyncDisposableStack.prototype.use
        • AsyncDisposableStack.prototype.adopt
        • AsyncDisposableStack.prototype.defer
        • AsyncDisposableStack.prototype.move
        • AsyncDisposableStack.prototype[@​@​asyncDispose]
      • Iterator.prototype[@​@​dispose]
      • AsyncIterator.prototype[@​@​asyncDispose]
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Array.fromAsync proposal:
    • Built-ins:
      • Array.fromAsync
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Error.isError proposal:
    • Built-ins:
      • Error.isError
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Added Joint iteration stage 2.7 proposal:
    • Added built-ins:
      • Iterator.zip
      • Iterator.zipKeyed
  • Added Iterator chunking stage 2 proposal:
    • Added built-ins:
      • Iterator.prototype.chunks
      • Iterator.prototype.windows
  • Number.prototype.clamp proposal:
  • Always check regular expression flags by flags getter PR. Native methods are not fixed, only own implementation updated for:
    • RegExp.prototype[@​@​match]
    • RegExp.prototype[@​@​replace]
  • Improved handling of RegExp flags in polyfills of some methods in engines without proper support of RegExp.prototype.flags and without polyfill of this getter
  • Added feature detection for a WebKit bug that occurs when this is updated while Set.prototype.difference is being executed
  • Added feature detection for a WebKit bug that occurs when iterator record of a set-like object isn't called before cloning this in the following methods:
    • Set.prototype.symmetricDifference
    • Set.prototype.union
  • Added feature detection for a bug in V8 ~ Chromium < 126. Following methods should throw an error on invalid iterator:
    • Iterator.prototype.drop
    • Iterator.prototype.filter
    • Iterator.prototype.flatMap
    • Iterator.prototype.map
  • Added feature detection for a WebKit bug: incorrect exception thrown by Iterator.from when underlying iterator's return method is null
  • Added feature detection for a FF bug: incorrect exception thrown by Array.prototype.with when index coercion fails
  • Added feature detection for a WebKit bug: TypedArray.prototype.with should truncate negative fractional index to zero, but instead throws an error
  • Worked around a bug of many different tools (example) with incorrect transforming and breaking JS syntax on getting a method from a number literal
  • Fixed deoptimization of the Promise polyfill in the pure version
  • Added some missed dependencies to /iterator/flat-map entries
  • Some other minor fixes and improvements
  • Compat data improvements:
    • Added Deno 2.3 and Deno 2.3.2 compat data mapping
    • Updated Electron 37 compat data mapping
    • Added Opera Android 90 compat data mapping
    • Error.isError marked not supported in Node because of a bug
    • Set.prototype.difference marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Set.prototype.{ symmetricDifference, union } marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Iterator.from marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Iterators closing on early errors in Iterator helpers marked as implemented from FF141
    • Array.prototype.with marked as supported only from FF140 because it throws an incorrect exception when index coercion fails
    • TypedArray.prototype.with marked as unsupported in Bun and Safari because it should truncate negative fractional index to zero, but instead throws an error
    • DisposableStack and AsyncDisposableStack marked as shipped in FF141 (SuppressedError has a bug)
    • AsyncDisposableStack bugs marked as fixed in Deno 2.3.2
    • SuppressedError bugs (extra arguments support and arity) marked as fixed in Bun 1.2.15

v3.42.0

Compare Source

  • Changes v3.41.0...v3.42.0 (142 commits)
  • Map upsert proposal:
    • Moved to stage 2.7, April 2025 TC39 meeting
    • Validation order of WeakMap.prototype.getOrInsertComputed updated following tc39/proposal-upsert#79
    • Built-ins:
      • Map.prototype.getOrInsert
      • Map.prototype.getOrInsertComputed
      • WeakMap.prototype.getOrInsert
      • WeakMap.prototype.getOrInsertComputed
  • Don't call well-known Symbol methods for RegExp on primitive values following tc39/ecma262#3009:
    • For avoid performance regression, temporarily, only in own core-js implementations
    • Built-ins:
      • String.prototype.matchAll
      • String.prototype.match
      • String.prototype.replaceAll
      • String.prototype.replace
      • String.prototype.search
      • String.prototype.split
  • Added workaround for the Uint8Array.prototype.setFromBase64 bug in some of Linux builds of WebKit
  • Implemented early-error iterator closing following tc39/ecma262#3467, including fix of a WebKit bug, in the following methods:
    • Iterator.prototype.drop
    • Iterator.prototype.every
    • Iterator.prototype.filter
    • Iterator.prototype.find
    • Iterator.prototype.flatMap
    • Iterator.prototype.forEach
    • Iterator.prototype.map
    • Iterator.prototype.reduce
    • Iterator.prototype.some
    • Iterator.prototype.take
  • Fixed missing forced replacement of AsyncIterator helpers
  • Added closing of sync iterator when async wrapper yields a rejection following tc39/ecma262#2600. Affected methods:
  • Added detection for throwing on undefined initial parameter in Iterator.prototype.reduce (see WebKit bug)
  • core-js-compat and core-js-builder API:
    • Added 'intersect' support for targets.esmodules (Babel 7 behavior)
    • Fixed handling of targets.esmodules: true (Babel 7 behavior)
  • Compat data improvements:

v3.41.0

Compare Source

v3.40.0

Compare Source

v3.39.0

Compare Source

v3.38.1

Compare Source

v3.38.0

Compare Source

v3.37.1

Compare Source

v3.37.0

Compare Source

v3.36.1

Compare Source

v3.36.0

Compare Source

v3.35.1

Compare Source

v3.35.0

Compare Source

v3.34.0

Compare Source

v3.33.3

Compare Source

v3.33.2

Compare Source

  • Simplified structuredClone polyfill, avoided second tree pass in cases of transferring
  • Added support of SuppressedError to structuredClone polyfill
  • Removed unspecified unnecessary ArrayBuffer and DataView dependencies of structuredClone lack of which could cause errors in some entries in IE10-
  • Fixed handling of fractional number part in Number.fromString
  • Compat data improvements:

v3.33.1

Compare Source

  • Added one more workaround of possible error with Symbol polyfill on global object, #​1289
  • Directly specified type: commonjs in package.json of all packages to avoid potential breakage in future Node versions, see this issue
  • Prevented potential issue with lack of some dependencies after automatic optimization polyfills of some methods in the pure version
  • Some minor

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 4ef3272 to 7149d24 Compare December 30, 2022 18:29
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.27.0 chore(deps): update dependency core-js to v3.27.1 Dec 30, 2022
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 7149d24 to 5a28930 Compare March 17, 2023 22:06
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.27.1 chore(deps): update dependency core-js to v3.29.1 Mar 17, 2023
@renovate
renovate Bot requested a review from fisker March 24, 2023 21:59
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.29.1 chore(deps): update dependency core-js to v3.30.1 Apr 17, 2023
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 5a28930 to 96fe009 Compare April 17, 2023 11:35
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.30.1 chore(deps): update dependency core-js to v3.30.2 May 28, 2023
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 96fe009 to 4828d36 Compare May 28, 2023 10:49
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 4828d36 to 8a18244 Compare June 12, 2023 23:05
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.30.2 chore(deps): update dependency core-js to v3.31.0 Jun 12, 2023
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.31.0 chore(deps): update dependency core-js to v3.31.1 Jul 7, 2023
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 8a18244 to 9b9b0f3 Compare July 7, 2023 02:12
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.31.1 chore(deps): update dependency core-js to v3.32.0 Jul 28, 2023
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 9b9b0f3 to e633384 Compare July 28, 2023 20:17
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.32.0 chore(deps): update dependency core-js to v3.32.1 Aug 19, 2023
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from e633384 to 44ce195 Compare August 19, 2023 18:46
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.32.1 chore(deps): update dependency core-js to v3.32.2 Sep 8, 2023
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 44ce195 to 97c41a5 Compare September 8, 2023 15:42
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.32.2 chore(deps): update dependency core-js to v3.33.0 Oct 2, 2023
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 97c41a5 to 9b95c66 Compare October 2, 2023 22:22
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 9b95c66 to 8a9bc62 Compare October 21, 2023 08:07
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.33.0 chore(deps): update dependency core-js to v3.33.1 Oct 21, 2023
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 8a9bc62 to c5388c0 Compare October 31, 2023 19:01
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.33.1 chore(deps): update dependency core-js to v3.33.2 Oct 31, 2023
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.33.2 chore(deps): update dependency core-js to v3.33.3 Nov 20, 2023
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from c5388c0 to 80f38b9 Compare November 20, 2023 19:12
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 80f38b9 to 3643699 Compare December 6, 2023 19:33
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.33.3 chore(deps): update dependency core-js to v3.34.0 Dec 6, 2023
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.35.1 chore(deps): update dependency core-js to v3.36.0 Feb 15, 2024
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from aacf7bc to ed74f53 Compare February 29, 2024 10:18
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from ed74f53 to f6f61d2 Compare March 20, 2024 04:16
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.36.0 chore(deps): update dependency core-js to v3.36.1 Mar 20, 2024
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from f6f61d2 to 7525cdc Compare April 17, 2024 20:31
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.36.1 chore(deps): update dependency core-js to v3.37.0 Apr 17, 2024
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 7525cdc to fb5dc40 Compare May 15, 2024 13:50
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.37.0 chore(deps): update dependency core-js to v3.37.1 May 15, 2024
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from fb5dc40 to b685bac Compare August 5, 2024 19:15
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.37.1 chore(deps): update dependency core-js to v3.38.0 Aug 5, 2024
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from b685bac to cc2ce29 Compare August 21, 2024 13:30
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.38.0 chore(deps): update dependency core-js to v3.38.1 Aug 21, 2024
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from cc2ce29 to 21ea120 Compare November 1, 2024 01:42
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.38.1 chore(deps): update dependency core-js to v3.39.0 Nov 1, 2024
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 21ea120 to 8b1581c Compare January 8, 2025 20:19
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.39.0 chore(deps): update dependency core-js to v3.40.0 Jan 8, 2025
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 8b1581c to a722771 Compare March 2, 2025 20:29
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.40.0 chore(deps): update dependency core-js to v3.41.0 Mar 2, 2025
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from a722771 to c0d04d2 Compare April 30, 2025 18:41
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.41.0 chore(deps): update dependency core-js to v3.42.0 Apr 30, 2025
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from c0d04d2 to 329f757 Compare June 10, 2025 10:49
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.42.0 chore(deps): update dependency core-js to v3.43.0 Jun 10, 2025
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 329f757 to 2e5be53 Compare July 8, 2025 18:30
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.43.0 chore(deps): update dependency core-js to v3.44.0 Jul 8, 2025
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 2e5be53 to 5d6961e Compare July 22, 2025 00:32
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from 5d6961e to ca4be8b Compare August 8, 2025 15:46
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.44.0 chore(deps): update dependency core-js to v3.45.0 Aug 8, 2025
@renovate
renovate Bot force-pushed the renovate/core-js-3.x branch from ca4be8b to f2f8992 Compare August 21, 2025 18:37
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.45.0 chore(deps): update dependency core-js to v3.45.1 Aug 21, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant