Skip to content

📦 Bump the all-npm-dependencies group across 2 directories with 3 updates#332

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/tools/hcdp/all-npm-dependencies-2f14bc41b3
Open

📦 Bump the all-npm-dependencies group across 2 directories with 3 updates#332
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/tools/hcdp/all-npm-dependencies-2f14bc41b3

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 14, 2026

Bumps the all-npm-dependencies group with 1 update in the /tools/hcdp directory: ws.
Bumps the all-npm-dependencies group with 2 updates in the /tools/hermes-parser/js directory: jest and prettier-plugin-hermes-parser.

Updates ws from 8.20.0 to 8.20.1

Release notes

Sourced from ws's releases.

8.20.1

Bug fixes

  • Fixed an uninitialized memory disclosure issue in websocket.close() (c0327ec1).

Providing a TypedArray (e.g. Float32Array) as the reason argument for websocket.close(), rather than the supported string or Buffer types, caused uninitialized memory to be disclosed to the remote peer.

import { deepStrictEqual } from 'node:assert';
import { WebSocket, WebSocketServer } from 'ws';
const wss = new WebSocketServer(
{ port: 0, skipUTF8Validation: true },
function () {
const { port } = wss.address();
const ws = new WebSocket(ws://localhost:${port}, {
skipUTF8Validation: true
});
ws.on('close', function (code, reason) {
  deepStrictEqual(reason, Buffer.alloc(80));
});

}
);
wss.on('connection', function (ws) {
ws.close(1000, new Float32Array(20));
});

The issue was privately reported by Nikita Skovoroda.

Commits
  • 5d9b316 [dist] 8.20.1
  • c0327ec [security] Fix uninitialized memory disclosure in websocket.close()
  • ce2a3d6 [ci] Test on node 26
  • 58e45b8 [ci] Do not test on node 25
  • 5f26c24 [ci] Run the lint step on node 24
  • See full diff in compare view

Updates jest from 30.3.0 to 30.4.2

Release notes

Sourced from jest's releases.

v30.4.2

Fixes

  • [jest-runtime] Fix named imports from CJS modules whose module.exports is a function with own-property exports (#16150)

Full Changelog: jestjs/jest@v30.4.1...v30.4.2

v30.4.1

Features

  • [jest-config, jest-core, jest-runner, jest-schemas, jest-types] Allow custom runner configuration options via tuple format ['runner-path', {options}] (#16141)

Fixes

  • [jest-runtime] Align CJS-from-ESM default export with Node: module.exports is always the ESM default, __esModule unwrapping is no longer applied (#16143)

Full Changelog: jestjs/jest@v30.4.0...v30.4.1

v30.4.0

Big release! 😀

Main feature is a rewrite of our custom runtime in preparation for stabilisation of native support of ESM. As part of that work require(esm) module is now supported on Node 24.9+ (still requires --experimental-vm-modules like before).

In addition we now support fake timers for the recently released Temporal API in Node v26.

React 19 is also supported properly in pretty-format, meaning snapshots of React components now work like they should.

Due to all the changes, there might be regressions that snuck in. Please report them!

Full list of changes below

Features

  • [babel-jest] Support collecting coverage from .mts, .cts (and other) files (#15994)
  • [jest-circus, jest-cli, jest-config, jest-core, jest-jasmine2, jest-types] Add --collect-tests flag to discover and list tests without executing them (#16006)
  • [jest-config, jest-runner, jest-worker] Add workerGracefulExitTimeout config option to control how long workers are given to exit before being force-killed (#15984)
  • [jest-config] Add support for jest.config.mts as a valid configuration file (#16005)
  • [jest-config, jest-core, jest-reporters, jest-runner] verbose and silent can now be set per-project; the project-level value overrides the global value for that project's tests (#16133)
  • [@jest/fake-timers] Accept Temporal.Duration in jest.advanceTimersByTime() and jest.advanceTimersByTimeAsync() (#16128)
  • [@jest/fake-timers] Accept Temporal.Instant and Temporal.ZonedDateTime in jest.setSystemTime() and useFakeTimers({now}) (#16128)
  • [@jest/fake-timers] Support faking Temporal.Now.* (#16131)
  • [jest-mock] Add clearMocksOnScope(scope) on ModuleMocker for clearing every mock function exposed on a scope object (#16088)
  • [jest-resolve] Add canResolveSync() on Resolver so callers can detect when a user-configured resolver only exports an async hook (#16064)
  • [jest-runtime] Use synchronous evaluate() for ES modules without top-level await on Node versions that support it (v24.9+), and prefer the synchronous transform path when a sync transformer is configured (#16062)
  • [jest-runtime] Support require() of ES modules on Node v24.9+ (#16074)
  • [jest-runtime] Validate TC39 import attributes (with { type: 'json' }) on ESM imports (#16127)
  • [@jest/transform] Add canTransformSync(filename) on ScriptTransformer so callers can pick the sync vs async transform path (#16062)
  • [jest-util] Add isError helper (#16076)

... (truncated)

Changelog

Sourced from jest's changelog.

30.4.2

Fixes

  • [jest-runtime] Fix named imports from CJS modules whose module.exports is a function with own-property exports (#16150)

30.4.1

Features

  • [jest-config, jest-core, jest-runner, jest-schemas, jest-types] Allow custom runner configuration options via tuple format ['runner-path', {options}] (#16141)

Fixes

  • [jest-runtime] Align CJS-from-ESM default export with Node: module.exports is always the ESM default, __esModule unwrapping is no longer applied (#16143)

30.4.0

Features

  • [babel-jest] Support collecting coverage from .mts, .cts (and other) files (#15994)
  • [jest-circus, jest-cli, jest-config, jest-core, jest-jasmine2, jest-types] Add --collect-tests flag to discover and list tests without executing them (#16006)
  • [jest-config, jest-runner, jest-worker] Add workerGracefulExitTimeout config option to control how long workers are given to exit before being force-killed (#15984)
  • [jest-config] Add support for jest.config.mts as a valid configuration file (#16005)
  • [jest-config, jest-core, jest-reporters, jest-runner] verbose and silent can now be set per-project; the project-level value overrides the global value for that project's tests (#16133)
  • [@jest/fake-timers] Accept Temporal.Duration in jest.advanceTimersByTime() and jest.advanceTimersByTimeAsync() (#16128)
  • [@jest/fake-timers] Accept Temporal.Instant and Temporal.ZonedDateTime in jest.setSystemTime() and useFakeTimers({now}) (#16128)
  • [@jest/fake-timers] Support faking Temporal.Now.* (#16131)
  • [jest-mock] Add clearMocksOnScope(scope) on ModuleMocker for clearing every mock function exposed on a scope object (#16088)
  • [jest-resolve] Add canResolveSync() on Resolver so callers can detect when a user-configured resolver only exports an async hook (#16064)
  • [jest-runtime] Use synchronous evaluate() for ES modules without top-level await on Node versions that support it (v24.9+), and prefer the synchronous transform path when a sync transformer is configured (#16062)
  • [jest-runtime] Support require() of ES modules on Node v24.9+ (#16074)
  • [jest-runtime] Validate TC39 import attributes (with { type: 'json' }) on ESM imports (#16127)
  • [@jest/transform] Add canTransformSync(filename) on ScriptTransformer so callers can pick the sync vs async transform path (#16062)
  • [jest-util] Add isError helper (#16076)
  • [pretty-format] Support React 19 (#16123)

Fixes

  • [expect-utils] Fix toStrictEqual failing on structuredClone results due to cross-realm constructor mismatch (#15959)
  • [@jest/expect-utils] Prevent toMatchObject/subset matching from throwing when encountering exotic iterables (#15952)
  • [fake-timers] Convert Date to milliseconds before passing to @sinonjs/fake-timers (#16029)
  • [jest] Export GlobalConfig and ProjectConfig TypeScript types (#16132)
  • [jest-circus] Prevent crash when asyncError is undefined for non-Error throws (#16003)
  • [jest-circus, jest-jasmine2] Include Error.cause in JSON failureMessages output (#15967)
  • [jest-config] Fix preset path resolution on Windows when the preset uses subpath exports (#15961)
  • [jest-config] Allow collectCoverage and coverageProvider in project config without a validation warning (#16132)
  • [jest-config] Project config validator now emits "is not supported in an individual project configuration" instead of "probably a typing mistake" for known global-only options (#16132)
  • [jest-environment-node] Fix --localstorage-file warning on Node 25+ (#16086)
  • [jest-reporters] Apply global coverage threshold to unmatched pattern files in addition to glob/path thresholds (#16137)

... (truncated)

Commits

Updates prettier-plugin-hermes-parser from 0.36.0 to 0.36.1

Release notes

Sourced from prettier-plugin-hermes-parser's releases.

v0.13.0 for RN0.75.x

This release corresponds to RN 0.75.

v0.11.0 for RN0.68.x

In preparation for the 0.68.x, this release brings numerous bug fixes and performance improvements to Hermes.

v0.10.0 for RN0.67.x

In preparation for the release of RN0.67, this release brings numerous bug fixes and performance improvements to Hermes.

v0.9.0 for RN 0.66.x

This release is primarily made to close the gap between the Hermes cut and the (upcoming) React Native 0.66 cut. Among the ~400 commits, we kept delivering memory and size wins, bugfixes, and made other progress behind the scene.

v0.8.1 for RN 0.65.x

In preparation for the RN 0.65 stable release, several refinements had been made upon v0.8.0:

v0.8.0 for RN 0.65.x

This is a release candidate targeting the upcoming RN 0.65 release.

Highlighted Changes

v0.7.2 for RN 0.64.x

This release includes miscellaneous fixes to support the road to RN 0.64.

v0.7.1 for RN 0.64-rc1

This is (still) a pre-release driven by community PRs to support using Hermes on more platforms at RN 0.64. Noted that ongoing from this release, we will publish hermes-runtime-darwin to the CocoaPod in place of publishing hermes-engine-darwin to NPM.

v0.7.0 for RN 0.64.x

This is a pre-release targeting the upcoming RN 0.64 branch out. It bring ~150 commits of improvements, security and bug fixes, and supports for other mobile platforms and ARM64 thanks to the community.

From this version, Proxy and Reflect will be enabled by default 🎉 , after being an optional feature in two releases.

v0.6.0 for RN 0.64.x

This release brings ~350 commits worth of bugfixes and improvements, and is aimed at the upcoming 0.64 branch of React Native.

Among them are correctness and performance fixes in regex, parsing improvements and native support for more JS features, a JS memory leak fix, and a new NPM that aims to help build React Native apps that target macOS instead of mobile. It also includes everything from patch release v0.5.1, notably, the unstripped Android libraries to help with native debugging and symbolication.

v0.5.3 for RN macOS v0.63.x

This release adds macOS ARM64 support to 0.5.x branch for RN macOS v0.63.x (facebook/hermes#390 by @​alloy).

... (truncated)

Changelog

Sourced from prettier-plugin-hermes-parser's changelog.

0.36.1

  • Updated hermes-parser to 0.36.1.
  • Support async component and async hook declaration formatting. See [PR #19053 in prettier](prettier/prettier#19053).
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
###### Microsoft Reviewers: [Open in CodeFlow](https://microsoft.github.io/open-pr/?codeflow=https://github.com//pull/332)

…ates

Bumps the all-npm-dependencies group with 1 update in the /tools/hcdp directory: [ws](https://github.com/websockets/ws).
Bumps the all-npm-dependencies group with 2 updates in the /tools/hermes-parser/js directory: [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) and [prettier-plugin-hermes-parser](https://github.com/facebook/hermes/tree/HEAD/tools/hermes-parser/js/prettier-plugin-hermes-parser).


Updates `ws` from 8.20.0 to 8.20.1
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.20.0...8.20.1)

Updates `jest` from 30.3.0 to 30.4.2
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.4.2/packages/jest)

Updates `prettier-plugin-hermes-parser` from 0.36.0 to 0.36.1
- [Release notes](https://github.com/facebook/hermes/releases)
- [Changelog](https://github.com/facebook/hermes/blob/static_h/tools/hermes-parser/js/prettier-plugin-hermes-parser/CHANGELOG.md)
- [Commits](https://github.com/facebook/hermes/commits/HEAD/tools/hermes-parser/js/prettier-plugin-hermes-parser)

---
updated-dependencies:
- dependency-name: ws
  dependency-version: 8.20.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: jest
  dependency-version: 30.4.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: prettier-plugin-hermes-parser
  dependency-version: 0.36.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 14, 2026
@dependabot dependabot Bot requested a review from a team as a code owner May 14, 2026 12:13
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 14, 2026
@github-actions
Copy link
Copy Markdown

Benchmark Results

Total benchmarks: 204

Inputs: baseline/baseline.json, bench_result.json

v8 (6176ms, 6261ms) +1.4%
v8 hermes (CI) hermes (CI)
v8-crypto 622.6ms 621.4ms
v8-deltablue 739.4ms 745.6ms
v8-raytrace 127.8ms 131ms
v8-regexp 593ms 601.6ms
v8-richards 937ms 940.4ms
v8-splay 225.2ms 239.2ms
v8-crypto (static) 452ms 454.2ms
v8-deltablue (static) 661.6ms 666.6ms
v8-raytrace (static) 91.8ms 92.8ms
v8-regexp (static) 749.2ms 778.2ms
v8-richards (static) 781.4ms 781.8ms
v8-splay (static) 195ms 208.2ms
test-suites (317886ms, 315500ms) -0.8%
test-suites hermes (CI) hermes (CI)
box2d 2949.8ms 2975.4ms
earley-boyer 2564.8ms 2570.6ms
navier-stokes 5743.8ms 5789.4ms
pdfjs 1038.2ms 991ms
gbemu 2296ms 2297ms
code-load 4472.8ms 4532.6ms
typescript 3381.8ms 3296.4ms
simpleSum 8855.4ms 8781ms
propAccess 2691.2ms 2697.2ms
allocObj 252ms 251ms
allocObjLit 6371.8ms 6351.8ms
allocNewObj 20053ms 19998ms
allocArray 249ms 252.6ms
allocNewArray 34956.8ms 35456ms
arrayRead 115.6ms 116.6ms
arrayReadByIndex 550ms 566ms
largeArrayRead 827.2ms 836.2ms
arrayWrite 261.8ms 252.8ms
largeArrayWrite 2218ms 2169ms
interp-dispatch 2880ms 2869ms
wb-perf 8327ms 8229.4ms
arrayReverse 40.6ms 40.4ms
arrayMap 1472.6ms 1444.2ms
arrayIndexOf 143.2ms 144.2ms
arrayLastIndexOf 148.6ms 149ms
arrayEvery 2308.8ms 2175.4ms
arraySome 2174.4ms 2173.4ms
arrayFill 2401.2ms 2367.6ms
arrayFilter 1866.4ms 1820ms
arrayFind 3207ms 3191.2ms
arrayFindIndex 3322ms 3190.8ms
arrayPop 1031.4ms 1038.2ms
arrayReduce 1994.2ms 1998.2ms
arrayReduceRight 2075.8ms 1998ms
arrayShift 2065.8ms 2046.4ms
arrayUnshift 2109.4ms 2084.2ms
arrayIncludes 1216.6ms 1218.8ms
arrayFrom 1102.8ms 1227.2ms
arrayCopyWithin 1487ms 1492.4ms
stringFromCharCode 92.6ms 93.6ms
arraySlice 786.2ms 796.2ms
arraySplice 26.8ms 27.4ms
arrayOf 1048.8ms 1054ms
stringCharAt 1346.6ms 1280.4ms
stringMatch 3192.4ms 2845.4ms
stringSearch 3508.2ms 2852.6ms
stringStartsWith 701ms 600.4ms
stringEndsWith 650.4ms 535.2ms
stringIncludes 1520.6ms 1479.8ms
stringIndexOf 1555.6ms 1484.8ms
stringLastIndexOf 1821.4ms 1737.2ms
stringSplit 822ms 813ms
stringSlice 490ms 486.8ms
stringPadStart 2910.8ms 2908.8ms
stringPadEnd 2910ms 2911ms
regExpMatch 1506.2ms 1524.4ms
regExpSearch 1227ms 1227ms
regExpToString 1204ms 1201.6ms
stringReplace 1394.8ms 1367.2ms
regExpReplace 3309.2ms 873ms
regExpFlags 956.8ms 929ms
regExpSplit 1307.8ms 1275ms
numberArrayReadWrite 2477.8ms 2400.2ms
protoCache 3594.6ms 3523ms
box2d (static) 1792.6ms 1798.8ms
earley-boyer (static) 1875.6ms 1887ms
navier-stokes (static) 3410.2ms 3421.6ms
pdfjs (static) 812.8ms 796.4ms
gbemu (static) 1797ms 1774.4ms
code-load (static) 4199.2ms 4192ms
typescript (static) 2685.6ms 2653.8ms
simpleSum (static) 936.2ms 938.2ms
propAccess (static) 2298ms 2298.6ms
allocObj (static) 0.2ms 0.4ms
allocObjLit (static) 4154.4ms 4158.6ms
allocNewObj (static) 15749.2ms 15844.4ms
allocArray (static) 0.6ms 0.4ms
allocNewArray (static) 28494.2ms 31002.4ms
arrayRead (static) 74.2ms 73.6ms
arrayReadByIndex (static) 453.2ms 451.8ms
largeArrayRead (static) 552.2ms 555ms
arrayWrite (static) 178.4ms 175.4ms
largeArrayWrite (static) 1568.6ms 1576.8ms
interp-dispatch (static) 1918.8ms 1918.4ms
wb-perf (static) 8991.2ms 8985.8ms
arrayReverse (static) 37ms 36.6ms
arrayMap (static) 1064.8ms 1061.8ms
arrayIndexOf (static) 128.2ms 128ms
arrayLastIndexOf (static) 138.8ms 138.4ms
arrayEvery (static) 1397.6ms 1410.8ms
arraySome (static) 1406.6ms 1416.8ms
arrayFill (static) 1969.2ms 1963.4ms
arrayFilter (static) 1061ms 1056.8ms
arrayFind (static) 2242.2ms 2247.6ms
arrayFindIndex (static) 2235.8ms 2243.6ms
arrayPop (static) 878ms 881.8ms
arrayReduce (static) 1311.8ms 1319.8ms
arrayReduceRight (static) 1322.6ms 1351.8ms
arrayShift (static) 1512ms 1514ms
arrayUnshift (static) 1568.2ms 1567ms
arrayIncludes (static) 963.4ms 965ms
arrayFrom (static) 1030.6ms 1015.6ms
arrayCopyWithin (static) 1109.6ms 1110.2ms
stringFromCharCode (static) 77ms 76.8ms
arraySlice (static) 571.6ms 574.4ms
arraySplice (static) 26ms 27ms
arrayOf (static) 868.8ms 874ms
stringCharAt (static) 1100.6ms 1088.4ms
stringMatch (static) 2227.6ms 2238.8ms
stringSearch (static) 2219.2ms 2223.6ms
stringStartsWith (static) 494.2ms 487.2ms
stringEndsWith (static) 457.8ms 456.2ms
stringIncludes (static) 1437.4ms 1441ms
stringIndexOf (static) 1440.8ms 1442ms
stringLastIndexOf (static) 1956.6ms 1957ms
stringSplit (static) 651.2ms 654.6ms
stringSlice (static) 445.6ms 432ms
stringPadStart (static) 2294.4ms 2288ms
stringPadEnd (static) 2499.2ms 2300ms
regExpMatch (static) 1483.2ms 1507.4ms
regExpSearch (static) 1296.2ms 1222.2ms
regExpToString (static) 1326.6ms 1237.8ms
stringReplace (static) 1455.6ms 1374ms
regExpReplace (static) 851.8ms 823.2ms
regExpFlags (static) 870.6ms 807.2ms
regExpSplit (static) 1200ms 1095.6ms
numberArrayReadWrite (static) 2132.8ms 2047.8ms
protoCache (static) 3595.8ms 3585.8ms
micros (60876ms, 64607ms) +6.1%
micros hermes (CI) hermes (CI)
getNodeById.js 5273ms 5035.6ms
setInsert.js 2864.8ms 2784.4ms
stringify-number.js 1823.4ms 1822ms
typed-array-sort.js 22381ms 22340.2ms
getNodeById.js (static) 3941ms 4465.6ms
setInsert.js (static) 2517.6ms 2701ms
stringify-number.js (static) 1663.6ms 1749.6ms
typed-array-sort.js (static) 20411.4ms 23709ms
jit-benches (8563ms, 8676ms) +1.3%
jit-benches hermes (CI) hermes (CI)
idisp.js 2810.2ms 2805ms
idispn.js 3395.8ms 3363.2ms
idisp.js (static) 1906ms 1972.2ms
idispn.js (static) 450.8ms 536ms
many-subclasses (73437ms, 75767ms) +3.2%
many-subclasses hermes (CI) hermes (CI)
many.js 19104.8ms 18751.6ms
many-sh-1.js 7322.8ms 7333.8ms
many-sh-2.js 7329ms 7289.8ms
many-sh-3.js 7083.6ms 7079.4ms
many-sh-4.js 7235ms 7127.4ms
many.js (static) 15996ms 18339.4ms
many-sh-1.js (static) 2285.2ms 2523.8ms
many-sh-2.js (static) 2387ms 2462ms
many-sh-3.js (static) 2347.2ms 2433.6ms
many-sh-4.js (static) 2346ms 2426ms
map-objects (3627ms, 3662ms) +1.0%
map-objects hermes (CI) hermes (CI)
map-objects-untyped.js 1023.6ms 1018.2ms
map-objects-typed.js 957.6ms 957.2ms
map-objects-untyped.js (static) 917.2ms 939ms
map-objects-typed.js (static) 728.8ms 748ms
map-strings (4335ms, 4425ms) +2.1%
map-strings hermes (CI) hermes (CI)
map-strings-untyped.js 1196.8ms 1188.6ms
map-strings-typed.js 1139.2ms 1131.6ms
map-strings-untyped.js (static) 1092.2ms 1121.2ms
map-strings-typed.js (static) 906.8ms 983.8ms
nbody (3448ms, 3564ms) +3.4%
nbody hermes (CI) hermes (CI)
original/nbody.js 839.6ms 864.2ms
fully-typed/nbody.js 710ms 711.4ms
fully-typed/nbody.ts 865.2ms 850.6ms
original/nbody.js (static) 449.2ms 498.4ms
fully-typed/nbody.js (static) 135ms 150.8ms
fully-typed/nbody.ts (static) 449.2ms 488.8ms
string-switch (6503ms, 7066ms) +8.7%
string-switch (string-switch/plain) hermes (CI) hermes (CI)
bench.js 1316ms 1301.2ms
bench.js (static) 5187ms 5764.4ms
raytracer (5608ms, 6275ms) +11.9%
raytracer (raytracer/original) hermes (CI) hermes (CI)
bench-raytracer.js 1550.4ms 1579.2ms
raytracer.ts 1667.6ms 1685.4ms
bench-raytracer.js (static) 1198.4ms 1601.6ms
raytracer.ts (static) 1191.8ms 1409.2ms
MiniReact (30332ms, 33214ms) +9.5%
MiniReact hermes (CI) hermes (CI)
no-objects/out/simple-stripped.js 2239.2ms 2246.2ms
no-objects/out/simple-lowered.js 2270.8ms 2291ms
no-objects/out/music-stripped.js 42.6ms 42.4ms
no-objects/out/music-lowered.js 47.2ms 47.4ms
no-deps/stripped/MiniReact.js 5004ms 5051.4ms
no-deps/MiniReact.js 5256.2ms 4926ms
no-objects/out/simple.js 2260.4ms 2237.8ms
no-objects/out/music.js 45.6ms 44.8ms
no-objects/out/simple-stripped.js (static) 1725.2ms 1925.2ms
no-objects/out/simple-lowered.js (static) 1725.4ms 1838.2ms
no-objects/out/music-stripped.js (static) 18.8ms 20.8ms
no-objects/out/music-lowered.js (static) 19.4ms 22.6ms
no-deps/stripped/MiniReact.js (static) 4024.8ms 5413.4ms
no-deps/MiniReact.js (static) 3938.2ms 5246.6ms
no-objects/out/simple.js (static) 1695.2ms 1839.8ms
no-objects/out/music.js (static) 19ms 20.6ms
widgets (12934ms, 13913ms) +7.6%
widgets hermes (CI) hermes (CI)
simple-classes/widgets.js 1758.2ms 1758.6ms
original/es5/widgets.js 2798.8ms 2928.6ms
single-file/es5/widgets.js 2775.2ms 2924.8ms
simple-classes/widgets.js (static) 1012ms 1088ms
original/es5/widgets.js (static) 2283.2ms 2427.6ms
single-file/es5/widgets.js (static) 2306.2ms 2785.6ms

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

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants