Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Releases: zloirock/core-js

3.47.0 - 2025.11.18

18 Nov 10:18

Choose a tag to compare

Assets2
Loading
Jmenache reacted with thumbs up emojipetamoriken, wainggan, Jmenache, and linus-sh reacted with rocket emoji
4 people reacted

3.46.0 - 2025.10.09

09 Oct 18:56

Choose a tag to compare

Welcome to our new website,core-js.io, where our documentation is moving!

In addition, you can nowfollow the project's news in X.


Loading
7rulnik, slowcheetah, lionel-rowe, petamoriken, Rudxain, 1Luc1, tony-scio, Royce-DaDaDa, and Jmenache reacted with hooray emojiRudxain, johnzhou721, and Jmenache reacted with heart emojixinglongjizi, Rudxain, and Jmenache reacted with rocket emojiRudxain and johnzhou721 reacted with eyes emoji
11 people reacted

3.45.1 - 2025.08.20

20 Aug 18:04

Choose a tag to compare

  • Changesv3.45.0...v3.45.1 (30 commits)
  • Fixed a conflict of native methods fromMap upsert proposal with polyfilled methods in the pure version
  • Addedbugs fields topackage.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
Loading
unixnexo, pavlof01, johnzhou721, TwoSpikes, xinglongjizi, wainggan, godky, and Jmenache reacted with thumbs up emojipetamoriken reacted with rocket emoji
9 people reacted

3.45.0 - 2025.08.04

04 Aug 18:14

Choose a tag to compare

Loading
cduff, Rudxain, and Jmenache reacted with thumbs up emojiunixnexo, ccorzos, xinglongjizi, and vvvvtvvv reacted with heart emojipetamoriken, yokeTH, xinglongjizi, mirsahebali, johnzhou721, and DavidCaloxq reacted with rocket emojiRudxain reacted with eyes emoji
12 people reacted

3.44.0 - 2025.07.07

07 Jul 13:48

Choose a tag to compare

Loading
Rudxain and Jmenache reacted with thumbs up emojixinglongjizi and Pickachu reacted with hooray emojiunixnexo, xinglongjizi, and ojvribeiro reacted with heart emojipetamoriken and xinglongjizi reacted with rocket emoji
7 people reacted

3.43.0 - 2025.06.09

09 Jun 06:54

Choose a tag to compare

  • Changesv3.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
    • Addedes. namespace module,/es/ and/stable/ namespaces entries
  • Array.fromAsync proposal:
    • Built-ins:
      • Array.fromAsync
    • Moved to stable ES,May 2025 TC39 meeting
    • Addedes. namespace module,/es/ and/stable/ namespaces entries
  • Error.isError proposal:
    • Built-ins:
      • Error.isError
    • Moved to stable ES,May 2025 TC39 meeting
    • Addedes. namespace module,/es/ and/stable/ namespaces entries
  • AddedJoint iteration stage 2.7 proposal:
    • Added built-ins:
      • Iterator.zip
      • Iterator.zipKeyed
  • AddedIterator chunking stage 2 proposal:
    • Added built-ins:
      • Iterator.prototype.chunks
      • Iterator.prototype.windows
  • Number.prototype.clamp proposal:
  • Always check regular expression flags byflags getterPR. Native methods are not fixed, only own implementation updated for:
    • RegExp.prototype[@@match]
    • RegExp.prototype[@@replace]
  • Improved handling ofRegExp flags in polyfills of some methods in engines without proper support ofRegExp.prototype.flags and without polyfill of this getter
  • Added feature detection fora WebKit bug that occurs whenthis is updated whileSet.prototype.difference is being executed
  • Added feature detection fora WebKit bug that occurs when iterator record of a set-like object isn't called before cloningthis in the following methods:
    • Set.prototype.symmetricDifference
    • Set.prototype.union
  • Added feature detection fora 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 fora WebKit bug: incorrect exception thrown byIterator.from when underlying iterator'sreturn method isnull
  • Added feature detection for a FF bug: incorrect exception thrown byArray.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 thePromise polyfill in the pure version
  • Added some missed dependencies to/iterator/flat-map entries
  • Some other minor fixes and improvements
  • Compat data improvements:
    • AddedDeno 2.3 andDeno 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 ofa bug
    • Set.prototype.difference marked as not supported in Safari and supported only from Bun 1.2.5 because ofa bug
    • Set.prototype.{ symmetricDifference, union } marked as not supported in Safari and supported only from Bun 1.2.5 because ofa bug
    • Iterator.from marked as not supported in Safari and supported only from Bun 1.2.5 because ofa bug
    • Iterators closing on early errors inIterator 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 andAsyncDisposableStack marked asshipped in FF141 (SuppressedError hasa bug)
    • AsyncDisposableStack bugs marked as fixed in Deno 2.3.2
    • SuppressedError bugs (extra arguments support andarity) marked as fixed in Bun 1.2.15
Loading
Rudxain, lee-dogyeong, jaredhan418, andreww2012, and Jmenache reacted with thumbs up emojiRudxain and lee-dogyeong reacted with laugh emojiunixnexo and lee-dogyeong reacted with heart emojipetamoriken, takakobem, headquarter8302, jdreesen, lee-dogyeong, and malforsaja reacted with rocket emoji
11 people reacted

3.42.0 - 2025.04.30

29 Apr 18:03

Choose a tag to compare

  • Changesv3.41.0...v3.42.0 (142 commits)
  • Map upsert proposal:
    • Moved to stage 2.7,April 2025 TC39 meeting
    • Validation order ofWeakMap.prototype.getOrInsertComputed updated followingtc39/proposal-upsert#79
    • Built-ins:
      • Map.prototype.getOrInsert
      • Map.prototype.getOrInsertComputed
      • WeakMap.prototype.getOrInsert
      • WeakMap.prototype.getOrInsertComputed
  • Don't call well-knownSymbol methods forRegExp on primitive values followingtc39/ecma262#3009:
    • For avoid performance regression, temporarily, only in owncore-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 theUint8Array.prototype.setFromBase64bug in some of Linux builds of WebKit
  • Implemented early-error iterator closing followingtc39/ecma262#3467, including fix ofa 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 ofAsyncIterator helpers
  • Added closing of sync iterator when async wrapper yields a rejection followingtc39/ecma262#2600. Affected methods:
  • Added detection for throwing onundefined initial parameter inIterator.prototype.reduce (seeWebKit bug)
  • core-js-compat andcore-js-builder API:
    • Added'intersect' support fortargets.esmodules (Babel 7 behavior)
    • Fixed handling oftargets.esmodules: true (Babel 7 behavior)
  • Compat data improvements:
Loading
Jmenache reacted with thumbs up emojiRudxain, petamoriken, undefined-ux, kr1sal, DavidCaloxq, neebs12, and Jmenache reacted with rocket emojiRudxain and crrashh1542 reacted with eyes emoji
8 people reacted

3.41.0 - 2025.03.01

01 Mar 16:48

Choose a tag to compare

Loading
lee-dogyeong, siddik-web, crasher6610, denchiklut, devfservant, Jmenache, Bliod-Cook, and Demonese reacted with thumbs up emojipetamoriken, lee-dogyeong, siddik-web, Jmenache, and FermonMontego reacted with rocket emoji
10 people reacted

3.40.0 - 2025.01.08

07 Jan 18:21

Choose a tag to compare

Loading
lee-dogyeong, undefined-ux, Alex33856, and Jmenache reacted with thumbs up emojipetamoriken, Rudxain, yurydyatlov, totpero, DavidCaloxq, denchiklut, tonymushah, and Jmenache reacted with rocket emojiRudxain reacted with eyes emoji
11 people reacted

3.39.0 - 2024.10.31

31 Oct 00:21

Choose a tag to compare

Loading
ErcinDedeoglu, heartbeatsfeeling, noahzho, DevDengChao, akileez, Rayato159, hezhongfeng, Rudxain, wjw020206, libreom, and 15 more reacted with thumbs up emojiErcinDedeoglu, noahzho, franz-bendezu, Rudxain, undefined-ux, aasen, aukaheng, arthur-mountain, and neebs12 reacted with hooray emojiRudxain, arthur-mountain, neebs12, and xingwang02 reacted with heart emojiErcinDedeoglu, noahzho, petamoriken, Rudxain, arthur-mountain, totpero, and MauricioLeon54 reacted with rocket emojiRudxain reacted with eyes emoji
32 people reacted
Previous13452526
Previous

[8]ページ先頭

©2009-2025 Movatter.jp