Skip to content

chore(deps): update dependency core-js to v3.46.0#277

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

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

Conversation

@renovate

@renovate renovate Bot commented Mar 25, 2023

Copy link
Copy Markdown

This PR contains the following updates:

Package Change Age Confidence
core-js (source) 3.4.5 -> 3.46.0 age confidence

Release Notes

zloirock/core-js (core-js)

v3.46.0

Compare Source

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

  • Fixed an issue getting the global object on Duktape, #​1303
  • Avoid sharing internal [[DedentMap]] from String.dedent proposal between core-js instances before stabilization of the proposal
  • Some internal untangling
  • Compat data improvements:

Configuration

📅 Schedule: Branch creation - "before 10am" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 changed the title chore(deps): update dependency core-js to v3.29.1 Update dependency core-js to v3.29.1 Mar 25, 2023
@renovate renovate Bot changed the title Update dependency core-js to v3.29.1 chore(deps): update dependency core-js to v3.29.1 Apr 3, 2023
@renovate renovate Bot force-pushed the renovate/core-js-3.x branch from 5ecd45c to 1ec72f5 Compare April 17, 2023 14:02
@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 1ec72f5 to f63bb12 Compare May 28, 2023 10:55
@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 f63bb12 to 644c5f3 Compare June 11, 2023 21:52
@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 11, 2023
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.31.0 Update dependency core-js to v3.31.0 Jun 12, 2023
@renovate renovate Bot changed the title Update dependency core-js to v3.31.0 chore(deps): update dependency core-js to v3.31.0 Jun 13, 2023
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.31.0 Update dependency core-js to v3.31.0 Jun 16, 2023
@renovate renovate Bot changed the title Update dependency core-js to v3.31.0 chore(deps): update dependency core-js to v3.31.0 Jun 18, 2023
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.31.0 Update dependency core-js to v3.31.0 Jun 19, 2023
@renovate renovate Bot changed the title Update dependency core-js to v3.31.0 chore(deps): update dependency core-js to v3.31.0 Jun 22, 2023
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.31.0 Update dependency core-js to v3.31.0 Jun 29, 2023
@renovate renovate Bot changed the title Update dependency core-js to v3.31.0 chore(deps): update dependency core-js to v3.31.0 Jun 29, 2023
@renovate renovate Bot force-pushed the renovate/core-js-3.x branch from 644c5f3 to 61dd858 Compare July 6, 2023 02:01
@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 6, 2023
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.31.1 Update dependency core-js to v3.31.1 Jul 6, 2023
@renovate renovate Bot changed the title Update dependency core-js to v3.31.1 chore(deps): update dependency core-js to v3.31.1 Jul 6, 2023
@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 27, 2023
@renovate renovate Bot force-pushed the renovate/core-js-3.x branch from 61dd858 to a50cd8d Compare July 27, 2023 19:41
@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 18, 2023
@renovate renovate Bot force-pushed the renovate/core-js-3.x branch from a50cd8d to 449955d Compare August 18, 2023 18:43
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.32.1 Update dependency core-js to v3.32.1 Aug 18, 2023
@renovate renovate Bot changed the title Update dependency core-js to v3.32.1 chore(deps): update dependency core-js to v3.32.1 Aug 22, 2023
@renovate renovate Bot force-pushed the renovate/core-js-3.x branch from 449955d to 572aef6 Compare September 7, 2023 13:14
@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 7, 2023
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.32.2 Update dependency core-js to v3.32.2 Sep 7, 2023
@renovate renovate Bot changed the title Update dependency core-js to v3.32.2 chore(deps): update dependency core-js to v3.32.2 Sep 19, 2023
@renovate renovate Bot changed the title Update dependency core-js to v3.33.2 chore(deps): update dependency core-js to v3.33.2 Nov 16, 2023
@renovate renovate Bot force-pushed the renovate/core-js-3.x branch from f5f717c to 224fdbc Compare November 19, 2023 19:14
@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 19, 2023
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.33.3 Update dependency core-js to v3.33.3 Nov 19, 2023
@renovate renovate Bot changed the title Update dependency core-js to v3.33.3 chore(deps): update dependency core-js to v3.33.3 Dec 3, 2023
@renovate renovate Bot force-pushed the renovate/core-js-3.x branch from 224fdbc to 09a906e Compare December 5, 2023 18:43
@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 5, 2023
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.34.0 Update dependency core-js to v3.34.0 Dec 5, 2023
@renovate renovate Bot force-pushed the renovate/core-js-3.x branch from 09a906e to 0fd7156 Compare December 29, 2023 02:14
@renovate renovate Bot changed the title Update dependency core-js to v3.34.0 Update dependency core-js to v3.35.0 Dec 29, 2023
@renovate renovate Bot changed the title Update dependency core-js to v3.35.0 chore(deps): update dependency core-js to v3.35.0 Jan 4, 2024
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.35.0 Update dependency core-js to v3.35.0 Jan 9, 2024
@renovate renovate Bot changed the title Update dependency core-js to v3.35.0 chore(deps): update dependency core-js to v3.35.0 Jan 16, 2024
@renovate renovate Bot force-pushed the renovate/core-js-3.x branch from 0fd7156 to 54e3df2 Compare January 21, 2024 00:04
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.35.0 chore(deps): update dependency core-js to v3.35.1 Jan 21, 2024
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.35.1 Update dependency core-js to v3.35.1 Jan 21, 2024
@renovate renovate Bot changed the title Update dependency core-js to v3.35.1 chore(deps): update dependency core-js to v3.35.1 Jan 28, 2024
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.35.1 Update dependency core-js to v3.35.1 Feb 14, 2024
@renovate renovate Bot force-pushed the renovate/core-js-3.x branch from 54e3df2 to 05d9ea8 Compare February 14, 2024 09:56
@renovate renovate Bot changed the title Update dependency core-js to v3.35.1 Update dependency core-js to v3.36.0 Feb 14, 2024
@renovate renovate Bot changed the title Update dependency core-js to v3.36.0 chore(deps): update dependency core-js to v3.36.0 Feb 25, 2024
@renovate renovate Bot force-pushed the renovate/core-js-3.x branch from 05d9ea8 to 847c1bf Compare March 19, 2024 02:22
@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 19, 2024
@renovate renovate Bot changed the title chore(deps): update dependency core-js to v3.36.1 Update dependency core-js to v3.36.1 Mar 19, 2024
@renovate renovate Bot changed the title Update dependency core-js to v3.36.1 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 847c1bf to f388166 Compare April 16, 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 16, 2024
@renovate

renovate Bot commented Dec 8, 2024

Copy link
Copy Markdown
Author

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

@renovate

renovate Bot commented Nov 10, 2025

Copy link
Copy Markdown
Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: src/package-lock.json

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants