Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Jun 9, 2019

This PR contains the following updates:

Package Change Age Confidence
core-js (source) 2.5.4 -> 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 - At any time (no schedule defined), 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 force-pushed the renovate/core-js-3.x branch from b4956b2 to 6ac3901 Compare June 15, 2019 12:01
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 6ac3901 to b15d854 Compare August 8, 2019 22:11
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from b15d854 to 2a9a3d8 Compare August 20, 2019 04:50
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 2a9a3d8 to 1c5ac1d Compare November 11, 2019 07:59
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 1c5ac1d to 1bd08b5 Compare November 21, 2019 11:40
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 1bd08b5 to 260a2e9 Compare December 14, 2019 19:59
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 260a2e9 to 6a5b1cb Compare December 22, 2019 04:50
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 6a5b1cb to 41ae348 Compare December 30, 2019 14:56
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 41ae348 to db2d78c Compare January 18, 2020 23:55
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from db2d78c to ebf4294 Compare April 29, 2020 05:02
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from ebf4294 to e478a23 Compare July 9, 2020 14:34
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from e478a23 to 07e741f Compare November 27, 2020 12:59
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 07e741f to 0fff712 Compare December 10, 2020 06:04
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 0fff712 to 54e337e Compare January 5, 2021 16:05
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 54e337e to 405afc5 Compare January 23, 2021 11:54
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 405afc5 to 1f10728 Compare April 26, 2021 13:17
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 1f10728 to db3fcfc Compare May 9, 2021 23:43
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from db3fcfc to 5e2bb96 Compare June 6, 2021 20:56
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 5e2bb96 to 6ba6415 Compare October 18, 2021 23:09
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 6ba6415 to 09ffd13 Compare March 7, 2022 08:18
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 09ffd13 to 5b1597a Compare April 24, 2022 19:29
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 5b1597a to e758ced Compare May 15, 2022 20:59
@renovate renovate bot force-pushed the renovate/core-js-3.x branch 2 times, most recently from d1c6e15 to 7631aa6 Compare June 23, 2022 23:18
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 7631aa6 to 32db5e0 Compare September 25, 2022 13:46
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 32db5e0 to ebe72e0 Compare November 20, 2022 18:50
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from ebe72e0 to d94e316 Compare March 18, 2023 20:06
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from d94e316 to c31ae2b Compare May 30, 2023 01:54
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from c31ae2b to 19419ea Compare June 12, 2023 05:45
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 19419ea to 17abe6c Compare July 6, 2023 05:12
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 17abe6c to 4e01a18 Compare July 28, 2023 02:37
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 4e01a18 to 3d35c16 Compare August 19, 2023 08:25
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 3d35c16 to 6e08ed9 Compare September 8, 2023 02:37
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 6e08ed9 to 92bd5bb Compare October 2, 2023 05:45
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 92bd5bb to cbf3bf2 Compare October 21, 2023 05:51
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from cbf3bf2 to d8e2fb0 Compare October 31, 2023 05:05
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from d8e2fb0 to 7b0cc7a Compare November 20, 2023 08:26
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 7b0cc7a to 3ea576b Compare December 6, 2023 05:52
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 3ea576b to e213d14 Compare December 29, 2023 08:36
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from e213d14 to e3a928d Compare January 21, 2024 11:56
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from e3a928d to 1003636 Compare February 15, 2024 05:56
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 1003636 to 71d5f41 Compare March 19, 2024 23:41
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 71d5f41 to 3e52a5f Compare April 17, 2024 20:52
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 3e52a5f to 165cd71 Compare May 22, 2024 18:02
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 165cd71 to bf1dfb7 Compare August 6, 2024 02:45
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from bf1dfb7 to 711e705 Compare August 21, 2024 05:46
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 711e705 to 071ac43 Compare November 1, 2024 05:02
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 071ac43 to 72b161e Compare January 10, 2025 03:41
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 72b161e to a6f8c16 Compare March 2, 2025 15:57
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from a6f8c16 to 4ccda5f Compare May 1, 2025 20:08
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 4ccda5f to 1761780 Compare June 14, 2025 12:10
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 1761780 to a02e98a Compare July 12, 2025 23:59
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from a02e98a to 6b2f671 Compare August 4, 2025 23:54
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from 6b2f671 to ab82b56 Compare August 23, 2025 07:29
@renovate renovate bot force-pushed the renovate/core-js-3.x branch from ab82b56 to 82e9d92 Compare October 10, 2025 03:35
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.

1 participant