repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | c3927a47f092fc7248d973f4d8a64ab410804986 | 77f911e31c243a8302c086d64dbef340b0c999b8 | runtime: fix comments in tracetype.go
They seem to have been copy and pasted from tracestack.go without being
updated.
Change-Id: I6a6a69645a778fe8e6e8a2f4a80429f20e90162e
Reviewed-on: https://go-review.googlesource.com/c/go/+/674215
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount... | [
{
"path": "src/runtime/tracetype.go",
"patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-// Trace stack table and acquisition.\n+// Trace type table.\n \n package runtime\n \n@@ -13,7 +13,7 @@ import (\n \t\"unsafe\"\n )... | 2025-05-19T18:46:47 |
vercel/next.js | 697747580fedfa27df7e8eafdeda6fd61bd46e7a | bced1f7b207b6bfd50c70764a204cc9d70a3ffe3 | Show invalid default export errors during prerendering (#84242)
The specific error messages for invalid default exports in pages,
layouts, and error files were only shown in development mode. This
change ensures that these errors are also displayed during prerendering,
which replaces the unhelpful error messages we we... | [
{
"path": "packages/next/src/server/app-render/create-component-tree.tsx",
"patch": "@@ -371,7 +371,7 @@ async function createComponentTreeInternal(\n */\n let MaybeComponent = LayoutOrPage\n \n- if (process.env.NODE_ENV === 'development') {\n+ if (process.env.NODE_ENV === 'development' || isStaticGe... | 2025-09-26T09:06:47 |
facebook/react | ad08698d7ffb967217c252718719a383082d4e4d | 547c3c45abff04fe5e63b49b0ce98ef807d5110f | [compiler] Fixture for function outlining
Fixture demonstrating a case where we can "outline" a function expression.
ghstack-source-id: 836471518f0ff14d16f7b7bbf2e8900660896e97
Pull Request resolved: https://github.com/facebook/react/pull/30329 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/outlined-helper.expect.md",
"patch": "@@ -0,0 +1,66 @@\n+\n+## Input\n+\n+```javascript\n+import { Stringify } from \"shared-runtime\";\n+\n+function Component(props) {\n+ return (\n+ <div>\n+ {props.items.map(... | 2024-07-15T03:28:06 |
nodejs/node | 23c2d33592e72f7ba9bb5d30fe3181714bb508d1 | d07c60b08fbb293555678a6892b0854b2cd771d0 | doc: clarify cjs/esm diff in `queueMicrotask()` vs `process.nextTick()`
the section comparing `queueMicrotask()` and `process.nextTick()`
doesn't address the different scheduling behavior that the two
functions have in cjs and esm modules, the section's introductory mjs
example also provides an incorrect output, the c... | [
{
"path": "doc/api/process.md",
"patch": "@@ -3020,34 +3020,40 @@ function definitelyAsync(arg, cb) {\n \n ### When to use `queueMicrotask()` vs. `process.nextTick()`\n \n-The [`queueMicrotask()`][] API is an alternative to `process.nextTick()` that\n-also defers execution of a function using the same micro... | 2025-01-21T17:16:17 |
electron/electron | 91205540c41bdd67d019bbb067d0e755bfca88ce | c3b4cd987c618ee72d32f996a8f3ae9e3e80c2bf | fix: restore `wasOpenedAtLogin` functionality (#42411)
fix: restore opened at login functionality | [
{
"path": "docs/api/app.md",
"patch": "@@ -1265,7 +1265,7 @@ Returns `Object`:\n \n * `openAtLogin` boolean - `true` if the app is set to open at login.\n * `openAsHidden` boolean _macOS_ _Deprecated_ - `true` if the app is set to open as hidden at login. This does not work on macOS 13 and up.\n-* `wasOpene... | 2024-06-10T14:39:56 |
golang/go | 77f911e31c243a8302c086d64dbef340b0c999b8 | 786be1d2bff0192288dfc2832e5012ad6b0816be | internal/trace: emit final sync event for generation in Go 1.26+
CL 693398 returned the error from reading a generation immediately, but
this is wrong -- a Sync event must be emitted to indicate the end of the
trace before reporting the error. This caused TestCrashWhileTracing
to fail because that test has a high like... | [
{
"path": "src/internal/trace/reader.go",
"patch": "@@ -31,6 +31,7 @@ type Reader struct {\n \tcpuSamples []cpuSample\n \torder ordering\n \tsyncs int\n+\treadGenErr error\n \tdone bool\n \n \t// Spill state.\n@@ -153,9 +154,18 @@ func (r *Reader) ReadEvent() (e Event, err error) {\n \t\tif ... | 2025-08-15T23:30:08 |
vercel/next.js | 99507d5153d5fce51d889c902160f68e07316c30 | b1f05782a01efde5a7a6f74738784bf67978661f | [test] Make `Undefined default export` an e2e test suite (#84240)
This also adds a build-time test, documenting the unhelpful error messages we currently show during prerendering, when an app router file does not have a default export. | [
{
"path": "test/development/acceptance-app/fixtures/undefined-default-export/app/(group)/specific-path/1/page.js",
"patch": "@@ -1 +0,0 @@\n-export const a = 123",
"additions": 0,
"deletions": 1,
"language": "JavaScript"
},
{
"path": "test/development/acceptance-app/fixtures/undefined-de... | 2025-09-26T07:47:01 |
nodejs/node | d07c60b08fbb293555678a6892b0854b2cd771d0 | 3efbb0dfb489d9051c0b765de803f65cecefcdeb | 2025-01-21, Version 18.20.6 'Hydrogen' (LTS)
This is a security release.
Notable changes:
* CVE-2025-23084 - fix path traversal in normalize() on Windows (Medium)
* CVE-2025-23085 - fix HTTP2 mem leak on premature close and ERR_PROTO
* CVE-2025-22150 - Use of Insufficiently Random Values in undici fetch() (Medium)
... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -100,7 +100,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V20.md#20.0.0\">20.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.20.5\">18.20.5</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.20.6\">18.20... | 2025-01-16T13:22:44 |
facebook/react | 6c0386e97654c4d4f58457a165d931aea074c823 | 270222b1917111c1e896bbfc442ed98530f1e4da | fix(compiler): Align return types of `ErrImp<E>` and `OkImpl<T>` with `Result<T, E>` for TS 5.5 (#30345) | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Utils/Result.ts",
"patch": "@@ -124,11 +124,11 @@ class OkImpl<T> implements Result<T, never> {\n return this;\n }\n \n- isOk(): boolean {\n+ isOk(): this is OkImpl<T> {\n return true;\n }\n \n- isErr(): boolean {\n+ isErr(): this ... | 2024-07-16T23:51:11 |
vercel/next.js | a61dab2507f559434bee557fd2224f1a939eac0e | a9c4a8c8fb11a235d08328225532a0b8bf9c93de | Move `config.turbopack.moduleIds` to `config.experimental.turbopackModuleIds` (#84230)
https://github.com/vercel/next.js/pull/77850 moved `experimental.turbo`
option to `turbopack`, but `moduleIds` is intended for debugging, in
line with `turbopackSourceMaps` and `turbopackMinify`, so move to
`experimental.turbopackMo... | [
{
"path": "crates/next-core/src/next_config.rs",
"patch": "@@ -560,7 +560,6 @@ pub struct TurbopackConfig {\n pub rules: Option<FxIndexMap<RcStr, RuleConfigCollection>>,\n pub resolve_alias: Option<FxIndexMap<RcStr, JsonValue>>,\n pub resolve_extensions: Option<Vec<RcStr>>,\n- pub module_ids:... | 2025-09-25T23:53:34 |
golang/go | 4a7fde922ff12dce9d4e00f1b1e658fa907e488d | cb814bd5bc3f0575e8d0e26370c05456770cb3da | internal/trace: add end-of-generation signal to trace
This change takes the EvEndOfGeneration event and promotes it to a real
event that appears in the trace.
This allows the trace parser to unambiguously identify truncated traces
vs. broken traces. It also makes a lot of the logic around parsing
simpler, because the... | [
{
"path": "src/internal/trace/batch.go",
"patch": "@@ -44,6 +44,10 @@ func (b *batch) isSyncBatch(ver version.Version) bool {\n \t\t\t(tracev2.EventType(b.data[0]) == tracev2.EvSync && ver >= version.Go125))\n }\n \n+func (b *batch) isEndOfGeneration() bool {\n+\treturn b.exp == tracev2.NoExperiment && len(... | 2025-08-05T21:37:07 |
electron/electron | c3b4cd987c618ee72d32f996a8f3ae9e3e80c2bf | 84e15e2d045635b0113fcedc0ca61ee2d72770f4 | chore: bump chromium to 127.0.6521.0 (main) (#42118)
* chore: bump chromium in DEPS to 126.0.6470.0
* 5492605: Migrate TODOs referencing old crbug IDs to the new issue tracker IDs | https://chromium-review.googlesource.com/c/chromium/src/+/5492605
* 5513277: Move subresource-filter-ruleset to GCS | https://chrom... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -123,7 +123,7 @@ env-unittests: &env-unittests\n TESTS_CONFIG: src/electron/spec/configs/unittests.yml\n \n env-arm: &env-arm\n- GN_EXTRA_ARGS: 'target_cpu = \"arm\"'\n+ GN_EXTRA_ARGS: 'target_cpu = \"arm\" build_tflite_with_xnnpack = false'\n MKSNAP... | 2024-06-07T21:18:35 |
nodejs/node | 3efbb0dfb489d9051c0b765de803f65cecefcdeb | e81c809d9d430894d5787f0f366c7377643c2cfc | 2025-01-21, Version 20.18.2 'Iron' (LTS)
This is a security release.
Notable changes:
* CVE-2025-23083 - throw on InternalWorker use when permission model is enabled (High)
* CVE-2025-23085 - src: fix HTTP2 mem leak on premature close and ERR_PROTO (Medium)
* CVE-2025-23084 - path: fix path traversal in normalize() ... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -68,7 +68,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V22.md#22.0.0\">22.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.18.1\">20.18.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.18.2\">20.18.2... | 2025-01-16T18:09:27 |
facebook/react | 270222b1917111c1e896bbfc442ed98530f1e4da | 243c0670acbfb062750981d65649058092212e2e | [ci] Remove RELEASE_CHANNEL_stable_yarn_test_dom_fixtures from circleci
ghstack-source-id: 53489822aa92869acd675bf88178a0511300f765
Pull Request resolved: https://github.com/facebook/react/pull/30359 | [
{
"path": ".circleci/config.yml",
"patch": "@@ -7,32 +7,6 @@ aliases:\n - &environment\n TZ: /usr/share/zoneinfo/America/Los_Angeles\n \n- - &restore_yarn_cache_fixtures_dom\n- restore_cache:\n- name: Restore yarn cache for fixtures/dom\n- keys:\n- - v2-yarn_cache-{{ arch }}-{{ ch... | 2024-07-16T18:35:42 |
rust-lang/rust | acbfd79acf662be04745dc0675558e75e0d30d87 | e96bb7e44fbcc23c1e6009e8d0ee8ab208668fb4 | Fix: On wasm targets, call `panic_in_cleanup` if panic occurs in cleanup
Previously this was not correctly implemented. Each funclet may need its own terminate
block, so this changes the `terminate_block` into a `terminate_blocks` `IndexVec` which
can have a terminate_block for each funclet. We key on the first basic ... | [
{
"path": "compiler/rustc_codegen_gcc/src/builder.rs",
"patch": "@@ -1653,6 +1653,10 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {\n unimplemented!();\n }\n \n+ fn get_funclet_cleanuppad(&self, _funclet: &Funclet) -> RValue<'gcc> {\n+ unimplemented!();\... | 2026-01-27T00:58:31 |
vercel/next.js | d6125822dd542bdb54c85d70a5dd9d87ee63139b | 46fa4ded993110841b4ad373d1d38a9553602d5c | [test] Overhaul `Undefined default export` test suite (#84235)
The test suite is now using fixture files instead of sandboxes, same principle as in #83398. I also removed two test cases that didn't test anything novel, compared to the other tests. They were originally moved from another test suite into this one in #66... | [
{
"path": "test/development/acceptance-app/fixtures/undefined-default-export/app/(group)/specific-path/1/page.js",
"patch": "@@ -0,0 +1 @@\n+export const a = 123",
"additions": 1,
"deletions": 0,
"language": "JavaScript"
},
{
"path": "test/development/acceptance-app/fixtures/undefined-de... | 2025-09-25T21:13:36 |
electron/electron | 25ed28670693525abd2a98ebbff75a2c7d10c155 | d97dcf388a7e5ac6deab593309d6c54ae4ef80ee | fix: `loginService` -> `loginItemService` (#42380)
fix: loginService -> loginItemService | [
{
"path": "shell/common/platform_util_mac.mm",
"patch": "@@ -128,7 +128,7 @@\n return [SMAppService agentServiceWithPlistName:service_name];\n } else if (type == \"daemonService\") {\n return [SMAppService daemonServiceWithPlistName:service_name];\n- } else if (type == \"loginService\") {\n+ } e... | 2024-06-07T09:49:00 |
golang/go | cb814bd5bc3f0575e8d0e26370c05456770cb3da | 78a3968c2c9f2d6e8eb6dc263b4a2517c72d71be | net: skip TestIPv4WriteMsgUDPAddrPort on plan9
This test uses method (*UDPConn).WriteMsgUDPAddrPort, which is
not supported on Plan 9. The test needs to be skipped, like
for example TestAllocs which is already skipped for the
same reason.
Fixes #75017
Change-Id: Iaa0e6ecdba0938736d8f675fcac43c46db34cb5d
Reviewed-on:... | [
{
"path": "src/net/udpsock_test.go",
"patch": "@@ -710,6 +710,11 @@ func TestIPv6WriteMsgUDPAddrPortTargetAddrIPVersion(t *testing.T) {\n // WriteMsgUDPAddrPort accepts IPv4 and IPv4-mapped IPv6 destination addresses,\n // and rejects IPv6 destination addresses on a \"udp4\" connection.\n func TestIPv4Write... | 2025-08-14T15:25:56 |
nodejs/node | e81c809d9d430894d5787f0f366c7377643c2cfc | b845dc6fbeb0684b83e314dd2233958e95166aa2 | 2025-01-21, Version 22.13.1 'Jod' (LTS)
This is a security release.
Notable changes:
* CVE-2025-23083: throw on InternalWorker use when permission model is enabled (High)
* CVE-2025-23084: fix path traversal in normalize() on Windows (Medium)
* CVE-2025-23085: fix HTTP2 mem leak on premature close and ERR_PROTO (Med... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -49,7 +49,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V23.md#23.0.0\">23.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.13.0\">22.13.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.13.1\">22.13.1... | 2025-01-15T21:10:39 |
facebook/react | 243c0670acbfb062750981d65649058092212e2e | 34a788907bab504462c449c5e6da96b9016243b2 | [ci] Add RELEASE_CHANNEL_stable_yarn_test_dom_fixtures to gh actions
ghstack-source-id: 53a431f9528db3f18fc205b6e67779c3d2d8c87a
Pull Request resolved: https://github.com/facebook/react/pull/30358 | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -347,6 +347,41 @@ jobs:\n run: ls -R build\n - run: yarn check-release-dependencies\n \n+ RELEASE_CHANNEL_stable_yarn_test_dom_fixtures:\n+ name: Check fixtures DOM (stable)\n+ needs: build_and_lint\n+ runs-on: ub... | 2024-07-16T18:35:41 |
rust-lang/rust | 890434af218987d48f092524490c9a25ff910eeb | 3282e2cb9c8c16f6d22d90a6af2515b592b2c692 | Fix rustc test suite | [
{
"path": "scripts/test_rustc_tests.sh",
"patch": "@@ -151,7 +151,6 @@ rm -r tests/run-make/short-ice # ICE backtrace begin/end marker mismatch\n rm -r tests/run-make/remap-path-prefix-dwarf # requires llvm-dwarfdump\n rm -r tests/run-make/strip # same\n rm -r tests/run-make-cargo/compiler-builtins # Expect... | 2026-02-24T16:13:56 |
vercel/next.js | 64b0986c05ee1b49d98b7055a38f5edfed886322 | 5ff4a9c520a78cbd8bd4bdd2ca4e4b3cbe6e8b60 | Feat: `get_page_metadata` MCP endpoint (#84211)
Enables AI agents to programmatically access the runtime metadata of the
current page. At the moment, we only include the segment trie details,
but this endpoint will be open to extension. Like `get_errors`, we
support collecting information from multiple tabs. | [
{
"path": "packages/next/errors.json",
"patch": "@@ -822,5 +822,6 @@\n \"821\": \"Unprocessable request\",\n \"822\": \"Stack frame resolver not initialized. This is a bug in Next.js.\",\n \"823\": \"Timeout waiting for error state from frontend. The browser may not be responding to HMR messages.\",\n... | 2025-09-25T19:51:32 |
electron/electron | 7f3dc7d4ceab7c33656ccb204a9bb7eb06821559 | 1c6d7d7eceab2755473ec117c0cb06ba417035cb | fix: utilityProcess exit codes (#42297) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -129,3 +129,4 @@ fix_use_app_launch_prefetch_namespace_for_subprocesstype.patch\n feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch\n cherry-pick-22db6918bac9.patch\n fix_font_face_resolution_when_renderer_is_blocked.patch\n+feat_enable_p... | 2024-06-07T08:06:00 |
facebook/react | 34a788907bab504462c449c5e6da96b9016243b2 | 9a8f3de0a82124c594c9799289702db58366844a | [ci] Remove run_fixtures_flight_tests from circleci
ghstack-source-id: f907271b9575777d79ec929c181e18df12bd7589
Pull Request resolved: https://github.com/facebook/react/pull/30357 | [
{
"path": ".circleci/config.yml",
"patch": "@@ -222,52 +222,6 @@ jobs:\n RELEASE_CHANNEL: experimental\n command: ./scripts/circleci/run_devtools_e2e_tests.js\n \n- run_fixtures_flight_tests:\n- docker: *docker\n- environment: *environment\n- steps:\n- - checkout\n- ... | 2024-07-16T18:35:40 |
golang/go | 78a3968c2c9f2d6e8eb6dc263b4a2517c72d71be | ab8121a407280bf39bdd401699476feb39ccd0f7 | runtime/metrics: add metric for current Go-owned thread count
Fixes #15490.
Change-Id: I6ce9edc46398030ff639e22d4ca4adebccdfe1b7
Reviewed-on: https://go-review.googlesource.com/c/go/+/690399
Auto-Submit: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservic... | [
{
"path": "src/runtime/metrics.go",
"patch": "@@ -532,6 +532,13 @@ func initMetrics() {\n \t\t\t\tsched.stwTotalTimeOther.write(out)\n \t\t\t},\n \t\t},\n+\t\t\"/sched/threads/total:threads\": {\n+\t\t\tdeps: makeStatDepSet(schedStatsDep),\n+\t\t\tcompute: func(in *statAggregate, out *metricValue) {\n+\t\t\... | 2025-07-24T21:38:37 |
nodejs/node | b845dc6fbeb0684b83e314dd2233958e95166aa2 | 7bc2946293757389468f1fa09714860f8e1147b7 | 2025-01-21, Version 23.6.1 (Current)
This is a security release.
Notable changes:
* CVE-2025-23083: throw on InternalWorker use when permission model is enabled (High)
* CVE-2025-23084: fix path traversal in normalize() on Windows (Medium)
* CVE-2025-23085: fix HTTP2 mem leak on premature close and ERR_PROTO (Medium... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -39,7 +39,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.6.0\">23.6.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.6.1\">23.6.1</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V23.md#23.6.0\">2... | 2025-01-15T15:03:56 |
rust-lang/rust | b26ef2a45d867135135f7fbe2d2545f95454b952 | df995ede1b3e61f0e87081d9548e6cd2a3ec9095 | fix: `cmp_owned` suggests wrongly on `PathBuf` | [
{
"path": "clippy_lints/src/operators/cmp_owned.rs",
"patch": "@@ -100,10 +100,10 @@ fn check_op(cx: &LateContext<'_>, outer: &Expr<'_>, expr: &Expr<'_>, other: &Exp\n \n let mut applicability = Applicability::MachineApplicable;\n let (arg_snip, _) = snippet_with_context(cx, arg_span... | 2026-02-24T05:08:42 |
vercel/next.js | 3abe25186f7868f0885e4950410d69d4edc53e20 | 4350081689818d805dbe0b6ade4577b9061a3b16 | Turbopack: fix NFT of readFileSync of relative path (#84155)
Tests are missing
Previously, `readFileSync("./data/foo.txt")` was relative to the current file, not relative to `process.cwd()` | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -998,7 +998,7 @@ impl Project {\n let this = self.await?;\n Ok(get_server_compile_time_info(\n // `/ROOT` corresponds to `[project]/`, so we need exactly the `path` part.\n- format!(\"/ROOT/{}\", self.project_pat... | 2025-09-25T16:19:15 |
facebook/react | 9a8f3de0a82124c594c9799289702db58366844a | 16d3ca38cc2cd11bd2d3badfcd936198ec329b5c | [ci] Add run_fixtures_flight_tests to gh actions
ghstack-source-id: 76761e302fc8e6c3c3243582250c168460b54739
Pull Request resolved: https://github.com/facebook/react/pull/30356 | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -347,6 +347,64 @@ jobs:\n run: ls -R build\n - run: yarn check-release-dependencies\n \n+ # ----- FLIGHT -----\n+ run_fixtures_flight_tests:\n+ name: Run fixtures Flight tests\n+ needs: build_and_lint\n+ runs-on:... | 2024-07-16T18:35:40 |
electron/electron | 1c6d7d7eceab2755473ec117c0cb06ba417035cb | 6ccb9861f666da08e6f99285514df4514d5409e2 | build: fix `depot_tools` patch (#42388)
build: fix depot_tools patch | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -260,9 +260,9 @@ step-depot-tools-get: &step-depot-tools-get\n index c305c248..e6e0fbdc 100755\n --- a/gclient.py\n +++ b/gclient.py\n- @@ -735,7 +735,8 @@ class Dependency(gclient_utils.WorkItem, DependencySettings):\n- \n- ... | 2024-06-06T20:49:59 |
golang/go | bca3e98b8aa4f754ea3604b62ef42f64dec88800 | 052fcde9fdd1655f823e810a284c651b3481a433 | cmd/go: test barrier actions
Add a barrier action between test run action and it's dependencies.
Run will depend on this barrier action, and the barrier action will depend on:
1. The run action's dependencies
2. The previous barrier action
This will force internal/work to schedule test run actions in-order, preventin... | [
{
"path": "src/cmd/go/internal/test/test.go",
"patch": "@@ -1044,11 +1044,36 @@ func runTest(ctx context.Context, cmd *base.Command, args []string) {\n \t\tprints = append(prints, printTest)\n \t}\n \n-\t// Order runs for coordinating start JSON prints.\n+\t// Order runs for coordinating start JSON prints v... | 2025-08-13T20:06:31 |
nodejs/node | fdad2fa66e77739583591f9991360a87532cb3c7 | da5f7aca6ac1fac2b7840dc11c0ef8e740cfc414 | http2: omit server name when HTTP2 host is IP address
Fixes: https://github.com/nodejs/node/issues/56189
PR-URL: https://github.com/nodejs/node/pull/56530
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -636,15 +636,21 @@ function initOriginSet(session) {\n if (originSet === undefined) {\n const socket = session[kSocket];\n session[kState].originSet = originSet = new SafeSet();\n- if (socket.servername != null) {\n- let originString = `... | 2024-12-29T04:41:34 |
rust-lang/rust | 78ea9996cd057887698af79f74375cae650f50d1 | 0028f344ce9f64766259577c998a1959ca1f6a0b | std random.rs: update link to RTEMS docs
The old URL with `master` resulted in a 404 error - use `main` instead. | [
{
"path": "library/std/src/random.rs",
"patch": "@@ -37,7 +37,7 @@ use crate::sys::random as sys;\n /// Horizon, Cygwin | `getrandom`\n /// AIX, Hurd, L4Re, QNX | `/dev/urandom`\n /// Redox | `/scheme/rand`\n-/// RTEMS | [`arc4random_buf`](https://docs.rtems.org/br... | 2026-02-24T15:38:46 |
vercel/next.js | f9248ea5bf6ac66573a96f02d94bb335d4073a16 | f1a650fc9c493bbc2ff2b900b82aef2521b65eb7 | Turbopack: avoid panic on updating output when a task was cancelled (#84214)
### What?
When a task was cancelled, updating the output should not lead to a panic. | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/update_output.rs",
"patch": "@@ -54,11 +54,16 @@ impl UpdateOutputOperation {\n \n 'output: {\n let mut task = ctx.task(task_id, TaskDataCategory::All);\n+ let in_progress_state = get!(task, InProgress);\n+ ... | 2025-09-25T11:53:17 |
facebook/react | 16d3ca38cc2cd11bd2d3badfcd936198ec329b5c | 43d535f545bf3f7a0c155903432c5bdf327346c9 | [ci] Remove check_error_codes from circleci
ghstack-source-id: 3a587af04d19f6c1f0425023c8f5a504f5b32823
Pull Request resolved: https://github.com/facebook/react/pull/30355 | [
{
"path": ".circleci/config.yml",
"patch": "@@ -311,19 +311,6 @@ jobs:\n - store_artifacts:\n path: ./tmp/screenshots\n \n- check_error_codes:\n- docker: *docker\n- environment: *environment\n- steps:\n- - checkout\n- - attach_workspace: *attach_workspace\n- - setup_... | 2024-07-16T18:35:39 |
electron/electron | 6ccb9861f666da08e6f99285514df4514d5409e2 | ec4461d1f25ded60d02b41b37480192039c971ac | build: increase fetch-deps (#42387)
* build: use fetch-depth: 0 and fetch-tags
* debug: readd tmate SSH debugging
* build: run SSH by default, remove debug conditional
* build: remove redundent fetch-tags
* build: pin tmate to SHA
* build: remove tmate action | [
{
"path": ".github/workflows/macos-build.yml",
"patch": "@@ -293,6 +293,7 @@ jobs:\n uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29\n with:\n path: src/electron\n+ fetch-depth: 0\n - name: Run Electron Only Hooks\n run: |\n echo \"Running Electro... | 2024-06-06T19:09:50 |
nodejs/node | a5ed762d82bc7cf0b44026d073d60cef3219ed2c | 322056dc327d4a2dd006a90c5fd54075df7f502b | deps: fixup some minor coverity warnings
Fixes: https://github.com/nodejs/node/issues/56611
PR-URL: https://github.com/nodejs/node/pull/56612
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Michael Daw... | [
{
"path": "deps/ncrypto/ncrypto.cc",
"patch": "@@ -1346,8 +1346,11 @@ DHPointer DHPointer::New(BignumPointer&& p, BignumPointer&& g) {\n if (DH_set0_pqg(dh.get(), p.get(), nullptr, g.get()) != 1) return {};\n \n // If the call above is successful, the DH object takes ownership of the\n- // BIGNUMs, so ... | 2025-01-19T16:55:54 |
golang/go | a8564bd412d4495a6048f981d30d4d7abb1e45a7 | 924fe98902cdebf20825ab5d1e4edfc0fed2966f | runtime: make all synctest bubble violations fatal panics
Unblocking a bubbled goroutine from outside the bubble is an error
and panics. Currently, some of those panics are regular panics
and some are fatal. We use fatal panics in cases where its difficult
to panic without leaving something in an inconsistent state.
... | [
{
"path": "src/internal/synctest/synctest_test.go",
"patch": "@@ -383,57 +383,59 @@ func TestChannelMovedOutOfBubble(t *testing.T) {\n \tfor _, test := range []struct {\n \t\tdesc string\n \t\tf func(chan struct{})\n-\t\twantPanic string\n+\t\twantFatal string\n \t}{{\n \t\tdesc: \"receive\",\n... | 2025-08-14T17:27:54 |
vercel/next.js | 0f68f3e98688bcb7fe158f9926ac608b94857815 | fbea93e9f3783a445b0f503d2a53a15f405bd412 | [devtools] Disable React's default Transition indicator (#84202)
Next.js DevTools should be fully separate from the actual Next.js app. In fact, it should be able to live in an iframe or extension. Right now it's still its own React root so we need to make sure it's isolated as much as possible from the actual React a... | [
{
"path": "packages/next/src/next-devtools/dev-overlay.browser.tsx",
"patch": "@@ -335,6 +335,9 @@ export function renderAppDevOverlay(\n \n const root = createRoot(container, {\n identifierPrefix: 'ndt-',\n+ // We don't have design for a default Transition indicator for the NDT frontend.\n+ ... | 2025-09-25T07:48:53 |
electron/electron | ec4461d1f25ded60d02b41b37480192039c971ac | c9349a2590ab777d558d7305cc6550d52f1f191d | fix: `iframe.contentWindow.document.fonts` resolution (#42366)
fix: iframe.contentWindow.document.fonts resolution | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -128,3 +128,4 @@ partially_revert_is_newly_created_to_allow_for_browser_initiated.patch\n fix_use_app_launch_prefetch_namespace_for_subprocesstype.patch\n feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch\n cherry-pick-22db6918bac9.patch\... | 2024-06-06T13:06:28 |
facebook/react | 43d535f545bf3f7a0c155903432c5bdf327346c9 | c3c4ab31e4cb42dcfa8fbb1dee573fd5dafcd612 | [ci] Add check_error_codes to gh actions
ghstack-source-id: b6dbee275be58c14341dec1a823ff7773e5a6a59
Pull Request resolved: https://github.com/facebook/react/pull/30354 | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -290,6 +290,36 @@ jobs:\n ./build.tgz\n ./build2.tgz\n \n+ check_error_codes:\n+ name: Search build artifacts for unminified errors\n+ needs: build_and_lint\n+ runs-on: ubuntu-latest\n+ steps:\n+ ... | 2024-07-16T18:35:39 |
nodejs/node | 009d53ec3c3a411e9ad28eaae419c95b300cb62a | 840f95226876f86ed04ce2963e6d3dc6492c7d1c | child_process: fix parsing messages with splitted length field
Fixes: https://github.com/nodejs/node/issues/55834
PR-URL: https://github.com/nodejs/node/pull/56106
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/child_process/serialization.js",
"patch": "@@ -61,7 +61,12 @@ const advanced = {\n *parseChannelMessages(channel, readData) {\n if (readData.length === 0) return;\n \n- ArrayPrototypePush(channel[kMessageBuffer], readData);\n+ if (channel[kMessageBufferSize] && channel[kM... | 2025-01-18T19:39:56 |
golang/go | 9783f86bc8953c3d93853b2382a4de011c5e26a7 | a4ad41708d8303a561ed072596222aae990f8dbd | [dev.simd] cmd/compile: accounts rematerialize ops's output reginfo
This CL implements the check for rematerializeable value's output
regspec at its remateralization site. It has some potential problems,
please see the TODO in regalloc.go.
Fixes #70451.
Change-Id: Ib624b967031776851136554719e939e9bf116b7c
Reviewed-o... | [
{
"path": "src/cmd/compile/internal/ssa/func.go",
"patch": "@@ -102,6 +102,7 @@ func (c *Config) NewFunc(fe Frontend, cache *Cache) *Func {\n \t\tNamedValues: make(map[LocalSlot][]*Value),\n \t\tCanonicalLocalSlots: make(map[LocalSlot]*LocalSlot),\n \t\tCanonicalLocalSplits: make(map[LocalSlotSpli... | 2025-08-12T16:53:44 |
vercel/next.js | ef29f501b25472adea40c590a96d46e3546e07c2 | dbdf9ca95273198d56bef531eeb127fc38f8f8e0 | Turbopack: increase retry duration, reduce busy looping when there is other work (#84171)
### What?
The short retry timeout of 10s could lead to false panics. Increasing the retry count to 60s makes it less likely.
There is this case where the job need to wait for another job in the same queue to continue. This is h... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs",
"patch": "@@ -1285,7 +1285,7 @@ impl AggregationUpdateQueue {\n let _span = trace_span!(\"lost follower (n uppers)\", uppers = upper_ids.len()).entered();\n \n // see documentation of `retry_loop` f... | 2025-09-25T05:47:09 |
electron/electron | c9349a2590ab777d558d7305cc6550d52f1f191d | 791907f0f3559ed5e6c829a0387b12c9437a3ba7 | build: [GHA] cross-compile x64 MacOS jobs on arm64 (#42370)
* build: split x64 mas/darwin to run concurrently
* Retry src cache download on failure
* build: gate FFMpeg, etc, to release & darwin
* build: cross-compile x64 on arm hardware
* chore (do not merge): comment out CircleCI config
* build: fix F... | [
{
"path": ".github/workflows/config/release/arm64/evm.mas.json",
"patch": "@@ -0,0 +1,26 @@\n+{\n+ \"root\": \"/Users/runner/work/electron/electron/\",\n+ \"remotes\": {\n+ \"electron\": {\n+ \"origin\": \"https://github.com/electron/electron.git\"\n+ }\n+ },\n+ \"gen\": {\n+ \"args\": [\n... | 2024-06-06T06:06:25 |
facebook/react | 0117239720b6ea830376f4f8605957ccae8b3735 | fee423e083eccc19d69ecc3db4483c6740db7a75 | [Fiber] Ensure `srcset` and `src` are assigned last on `img` instances (#30340)
Safari has a behavior (bug) where when you consturct an Image in
javascript if you set srcset before properties for `sizes` the brwoser
will download the largest image size because it starts to load before
you communicate the sizes info... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js",
"patch": "@@ -1031,6 +1031,53 @@ export function setInitialProperties(\n // Fast track the most common tag types\n break;\n }\n+ // img tags previously were implemented as void elements with non delegated events howe... | 2024-07-16T15:25:24 |
nodejs/node | 2e45656eb2308f1a0c0b170a593f073e147f5a56 | 90840ccc772974cda34e281ad8e6e3561c1254c8 | crypto: add missing return value check
Add return value check for call to SSL_CTX_add_client_CA
to be consistent with other places it is called
Fixed unused warning in one of the static analysis tools we use
at Red Hat even though it is not being reported by coverity in
the configuration we run.
Signed-off-by: Micha... | [
{
"path": "src/crypto/crypto_context.cc",
"patch": "@@ -1164,7 +1164,7 @@ void SecureContext::LoadPKCS12(const FunctionCallbackInfo<Value>& args) {\n X509* ca = sk_X509_value(extra_certs.get(), i);\n \n X509_STORE_add_cert(sc->GetCertStoreOwnedByThisSecureContext(), ca);\n- SSL_CTX_add_client_CA(... | 2025-01-17T17:58:47 |
vercel/next.js | bbeaeeaa93157862dcb26e0d2b6b9195a48009cc | f9ee7a1aba52c7341cc4ea97a3c3fbcec92d7d85 | Revert "[turbopack] Set `liveness` of exports based on assignment ana… (#84207)
We believe this is causing an issue that was caught during internal
dogfooding.
This reverts commit ba227046ef42a8080b1fbe274fe842c0c7067bff.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is ha... | [
{
"path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts",
"patch": "@@ -664,7 +664,7 @@ describe('Cache Components Errors', () => {\n } else {\n expect(output).toMatchInlineSnapshot(`\n \"Error: Route \"/dynamic-root\": A component accesse... | 2025-09-25T00:27:02 |
electron/electron | 406f644d26904303663f40d7713140267c9981cb | 5fb117a7d7fd454f7ecbec4d18eac85c32db3186 | feat: duplicate navigation related APIs to `contents.navigationHistory` (#41752)
* refactor: move navigation related api to navigationHistory
* docs: add deprecation messages to old web content methods
* fix: add deprecation warnings to webcontents
* fix: add deprecation warnings and make existing naviagation... | [
{
"path": "docs/api/navigation-history.md",
"patch": "@@ -9,6 +9,24 @@ Each navigation entry corresponds to a specific page. The indexing system follow\n \n ### Instance Methods\n \n+#### `navigationHistory.canGoBack()`\n+\n+Returns `boolean` - Whether the browser can go back to previous web page.\n+\n+####... | 2024-06-05T16:34:47 |
facebook/react | 2683c0a18c1d0c2834f371d9dc6ef25495a208de | 1f60a41801bde7fa6970c8cf36019248c2ee8996 | [compiler] Fix mode for generating scopes for reassignments
We have an experimental mode where we generate scopes for simple phi values, even if they aren't subsequently mutated. This mode was incorrectly generating scope ranges, leaving the start at 0 which is invalid. The fix is to allow non-zero identifier ranges t... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/InferReactiveScopeVariables.ts",
"patch": "@@ -114,9 +114,13 @@ export function inferReactiveScopeVariables(fn: HIRFunction): void {\n };\n scopes.set(groupIdentifier, scope);\n } else {\n- scope.range.start = m... | 2024-07-12T04:00:51 |
nodejs/node | 90840ccc772974cda34e281ad8e6e3561c1254c8 | 74717cb7fa21eb7d7c2abc579334f28c66d96fb0 | tools: fix permissions in `lint-release-proposal` workflow
PR-URL: https://github.com/nodejs/node/pull/56614
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Ruy Adorno <ruy@vlt.sh>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": ".github/workflows/lint-release-proposal.yml",
"patch": "@@ -19,6 +19,8 @@ permissions:\n jobs:\n lint-release-commit:\n runs-on: ubuntu-latest\n+ permissions:\n+ pull-requests: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2\n ... | 2025-01-17T16:43:26 |
electron/electron | 5fb117a7d7fd454f7ecbec4d18eac85c32db3186 | 39c984e23a4459cc3204d0fb256263bff2305839 | fix: don't destroy BrowserView webContents when owning BrowserWindow hasn't been closed (#42353)
* fix: moves bv webContents close to closed event
* chore: adds unit tests
* chore: test that bv webContents are destroyed when parent bw closed | [
{
"path": "lib/browser/api/browser-window.ts",
"patch": "@@ -77,7 +77,7 @@ BrowserWindow.prototype._init = function (this: BWT) {\n \n this._browserViews = [];\n \n- this.on('close', () => {\n+ this.on('closed', () => {\n this._browserViews.forEach(b => b.webContents?.close({ waitForBeforeUnload: tr... | 2024-06-05T07:58:38 |
facebook/react | 735d3d2baa684857d2a3358f0aad4f8920d0e8f4 | e307a4954446d1aeda9cbe23fda914289406c5f7 | [compiler][ez] Upgrade babel generator version for playground
---
The current version of `@babel/generator` used by playground has some bugs (see https://github.com/babel/babel/issues/10966)
```js
// Try pasting this into playground
function useFoo(a, b) {
return (a ?? b) == c;
}
// Current playground output
functi... | [
{
"path": "compiler/apps/playground/package.json",
"patch": "@@ -12,6 +12,7 @@\n },\n \"dependencies\": {\n \"@babel/core\": \"^7.19.1\",\n+ \"@babel/generator\": \"^7.19.1\",\n \"@babel/parser\": \"^7.19.1\",\n \"@babel/plugin-syntax-typescript\": \"^7.18.6\",\n \"@babel/plugin-trans... | 2024-07-15T21:44:14 |
vercel/next.js | f9ee7a1aba52c7341cc4ea97a3c3fbcec92d7d85 | e8a1342e0ec2b576465ae33e1c7392c92703e7ec | Feat: `get_errors` MCP endpoint (#84161)
Enables AI agents to programmatically access the runtime/build errors
from the current devtool overlay of a dev session. The errors are
pretty-printed by default with source-mapped stack frames. In
particular, it supports pulling error information from multiple browser
tabs. | [
{
"path": ".eslintignore",
"patch": "@@ -43,6 +43,7 @@ bench/heavy-npm-deps/**\n packages/next-bundle-analyzer/index.d.ts\n examples/with-typescript-graphql/lib/gql/\n test/development/basic/hmr/components/parse-error.js\n+test/development/mcp-server/fixtures/default-template/app/build-error/page.tsx\n pack... | 2025-09-24T23:41:41 |
nodejs/node | 22f1518d2f03a10ebac3b95e7ec1dd61a566c3f8 | 00d49649dabac5dd11e05d2558b2cb0edb607c1b | test_runner: remove unused errors
PR-URL: https://github.com/nodejs/node/pull/56607
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -2829,25 +2829,6 @@ An unspecified or non-specific system error has occurred within the Node.js\n process. The error object will have an `err.info` object property with\n additional details.\n \n-<a id=\"ERR_TAP_LEXER_ERROR\"></a>\n-\n-### `ERR_TAP_LEXER_ERROR`\n-... | 2025-01-17T10:34:55 |
golang/go | ca66f907dd44d57c93b2dc5ecafcb8addf2b23c3 | 4b1800e47632d52006e3080580e4e60792389759 | cmd/compile: use generated loops instead of DUFFCOPY on amd64
This reverts commit 4e182db5fc876564a4f87a0602c58ea0ddc6e37c (CL 695196),
which is itself a revert of
ec9e1176c3209cf92e73e3deb2d8073fab5ea4d6 (CL 678620).
So this CL is exactly the same as CL 678620, but with a regalloc fix
(CL 696035) submitted first.
C... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -142,45 +142,6 @@ func memIdx(a *obj.Addr, v *ssa.Value) {\n \ta.Index = i\n }\n \n-// DUFFZERO consists of repeated blocks of 4 MOVUPSs + LEAQ,\n-// See runtime/mkduff.go.\n-const (\n-\tdzBlocks = 16 // number of MOV/ADD blocks\n-\tdzBlockL... | 2025-08-13T16:41:17 |
electron/electron | 39c984e23a4459cc3204d0fb256263bff2305839 | b74d3e14b004d751f1920efae62f730c98bce344 | fix: WebUSB should not crash when using in-memory partitions (#42347) | [
{
"path": "shell/browser/usb/electron_usb_delegate.cc",
"patch": "@@ -174,6 +174,9 @@ std::unique_ptr<content::UsbChooser> ElectronUsbDelegate::RunChooser(\n bool ElectronUsbDelegate::CanRequestDevicePermission(\n content::BrowserContext* browser_context,\n const url::Origin& origin) {\n+ if (!brow... | 2024-06-04T13:24:08 |
facebook/react | e307a4954446d1aeda9cbe23fda914289406c5f7 | 6cca9c31847b4a31da0a3a5ceca659e5c642e993 | [compiler][eslint] Use logger callback instead of exceptions to report eslint diagnostics
---
* panicThreshold: `all_errors` -> `none`
* inject an error logger through compiler config (instead of using exceptions)
We currently report at most one lint warning per file, this lets us exhaustively report all available on... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/__tests__/ReactCompilerRule-test.ts",
"patch": "@@ -149,6 +149,36 @@ const tests: CompilerTestCases = {\n },\n ],\n },\n+ {\n+ name: \"Multiple diagnostics are surfaced\",\n+ options: [\n+ {\n+ reportabl... | 2024-07-15T21:44:14 |
nodejs/node | c6960ee194fe952e65be5667a47e7e4a4ccf8cd1 | 0e7ec5e7a1427eb418bf82833a5c308cb8e0ecda | src: handle duplicate paths granted
This commit fixes a crash whenever someone tries to allow access to the
same path twice.
PR-URL: https://github.com/nodejs/node/pull/56591
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "src/permission/fs_permission.cc",
"patch": "@@ -143,10 +143,12 @@ void FSPermission::Apply(Environment* env,\n \n void FSPermission::GrantAccess(PermissionScope perm, const std::string& res) {\n const std::string path = WildcardIfDir(res);\n- if (perm == PermissionScope::kFileSystemRead) {\n+ ... | 2025-01-16T14:53:39 |
vercel/next.js | e6180250bcd34890f63881f760bf750245fbff6e | 2921fb33503e45bc29626f64dbe8071a09a7569d | fix(server): fix pages router resume router matching (#84158)
### What?
Prevents PPR resume requests on Pages Router data routes by rejecting
them with a 422 status code and adds debug cache entry handlers for
testing PPR cache behavior in standalone mode.
### Why?
PPR (Partial Pre-Rendering) is an App Router-speci... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -818,5 +818,6 @@\n \"817\": \"`cacheLifeProfiles` should always be provided.\",\n \"818\": \"`cacheLife()` can only be called inside a \\\"use cache\\\" function.\",\n \"819\": \"`cacheTag()` can only be called inside a \\\"use cache\\\" function.\",... | 2025-09-24T21:49:05 |
electron/electron | 5f8a490a008f40b147457803d3b0c0ab6c00189f | 361b37592af3e79606440ca0c229c27df78676cf | build: add release config/dsymutil fix, test-releases for GHA (#42350)
* build: add publishing workflow for GHActions
* build: add test repo/bucket for uploads
* build: clean up conditionals, add macos-14-large, review comments
* build: remove host_cpu var from GCLIENT_EXTRA_ARGS
* build: use GN_CONFIG
... | [
{
"path": ".github/workflows/config/release/evm.mas.json",
"patch": "@@ -0,0 +1,25 @@\n+{\n+ \"root\": \"/Users/runner/work/electron/electron/\",\n+ \"remotes\": {\n+ \"electron\": {\n+ \"origin\": \"https://github.com/electron/electron.git\"\n+ }\n+ },\n+ \"gen\": {\n+ \"args\": [\n+ ... | 2024-06-03T18:43:54 |
golang/go | 4b1800e47632d52006e3080580e4e60792389759 | af8870708bbaf15956a27cbab15582b4c666855e | encoding/json/v2: cleanup error constructors
There is no need to explicitly pass in the options
since this contained within the Encoder or Decoder struct
ever since https://github.com/go-json-experiment/json/pull/163.
Thus, remove it as an argument and fetch it from the coder.
This only modifies code that is compile... | [
{
"path": "src/encoding/json/v2/arshal_default.go",
"patch": "@@ -128,7 +128,7 @@ func makeBoolArshaler(t reflect.Type) *arshaler {\n \tfncs.marshal = func(enc *jsontext.Encoder, va addressableValue, mo *jsonopts.Struct) error {\n \t\txe := export.Encoder(enc)\n \t\tif mo.Format != \"\" && mo.FormatDepth ==... | 2025-07-24T22:07:39 |
nodejs/node | e96072ad57348ce423a8dd7639dcc3d1c34e847d | 58ac6551ffeef6ce4657b01e4a411df79aed54a1 | util: inspect: do not crash on an Error with a regex `name`
See #56570
PR-URL: https://github.com/nodejs/node/pull/56574
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -88,6 +88,7 @@ const {\n StringPrototypePadEnd,\n StringPrototypePadStart,\n StringPrototypeRepeat,\n+ StringPrototypeReplace,\n StringPrototypeReplaceAll,\n StringPrototypeSlice,\n StringPrototypeSplit,\n@@ -733,6 +734,7 @@ function addPro... | 2025-01-15T19:27:22 |
facebook/react | 6cca9c31847b4a31da0a3a5ceca659e5c642e993 | 1d5a208fda6064022d25204ee47da29a3229648f | [compiler][be] Fix lint violations in eslint-plugin
ghstack-source-id: 7c11dce833fcf8f46aaa23858ac94a05e870fae8
Pull Request resolved: https://github.com/facebook/react/pull/30335 | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/__tests__/ReactCompilerRule-test.ts",
"patch": "@@ -15,7 +15,7 @@ import ReactCompilerRule from \"../src/rules/ReactCompilerRule\";\n */\n function normalizeIndent(strings: TemplateStringsArray): string {\n const codeLines = strings[0].split(\"\\n... | 2024-07-15T21:44:14 |
vercel/next.js | 2921fb33503e45bc29626f64dbe8071a09a7569d | 9bd5a76df7c5bcf02d1de4507353a46191424898 | fix: prevent URL mutation in router rewrites (#83963)
### What?
This PR fixes critical URL mutation issues in Next.js routing that were
causing state pollution between requests and breaking compatibility
between App Router and Pages Router during rewrite handling.
### Why?
Several interconnected problems were disco... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -678,6 +678,39 @@ jobs:\n \n secrets: inherit\n \n+ test-new-tests-deploy-experimental:\n+ name: Test new tests when deployed (experimental)\n+ needs:\n+ [\n+ 'optimize-ci',\n+ 'test-experimental-prod',\n+ 't... | 2025-09-24T19:13:33 |
electron/electron | 9f88820be9b39bd1d87b542234afca657d64853b | 85df2a86dda7b99af99310566601ee04b72e55c8 | fix: dialogs should work with BaseWindows internally (#42315) | [
{
"path": "lib/browser/api/dialog.ts",
"patch": "@@ -1,4 +1,4 @@\n-import { app, BrowserWindow } from 'electron/main';\n+import { app, BaseWindow } from 'electron/main';\n import type { OpenDialogOptions, OpenDialogReturnValue, MessageBoxOptions, SaveDialogOptions, SaveDialogReturnValue, MessageBoxReturnVal... | 2024-05-31T10:04:22 |
golang/go | af8870708bbaf15956a27cbab15582b4c666855e | 0a75e5a07b858cbe6216c99fa12d582d063499d9 | encoding/json/v2: fix incorrect marshaling of NaN in float64 any
There is a fast-path optimization for marshaling an any type
that should be semantically identical to when the optimization
is not active (i.e., optimizeCommon is false).
Unfortunately, the optimization accidentally allows NaN,
which this change fixes.
... | [
{
"path": "src/encoding/json/v2/arshal_any.go",
"patch": "@@ -8,6 +8,7 @@ package json\n \n import (\n \t\"cmp\"\n+\t\"math\"\n \t\"reflect\"\n \t\"strconv\"\n \n@@ -35,20 +36,23 @@ func marshalValueAny(enc *jsontext.Encoder, val any, mo *jsonopts.Struct) error\n \tcase string:\n \t\treturn enc.WriteToken(j... | 2025-08-12T08:56:43 |
nodejs/node | c8df98d2f9f62a12da969ae1cd283df2d6d1dec9 | e799ebd7ff8e691958dfbdb8baf2b81236f87669 | module: fix jsdoc for `format` parameter in cjs/loader
PR-URL: https://github.com/nodejs/node/pull/56501
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jason Zhang <xzha4350@gmail.com>
Reviewed-By: Qingyu Deng <i@ayase-lab.com> | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -1682,9 +1682,8 @@ function wrapSafe(filename, content, cjsModuleInstance, format) {\n * `exports`) to the file. Returns exception, if any.\n * @param {string} content The source code of the module\n * @param {string} filename The file path of ... | 2025-01-15T10:25:46 |
vercel/next.js | dabf1f664f882cccde8f19d7b760a782a6518914 | 7d9b384d1be37308484d96bc4816d435bd22ff55 | Fix double comma in build manifest (#84131)
## What?
Fixes a bug highlighted by Vercel Agent while moving code in #84125.
Specific comment:
https://github.com/vercel/next.js/pull/84125/files#r2371621679 | [
{
"path": "packages/next/src/build/webpack/plugins/build-manifest-plugin-utils.ts",
"patch": "@@ -72,9 +72,9 @@ export function createEdgeRuntimeManifest(\n `globalThis.__BUILD_MANIFEST.lowPriorityFiles = [\\n` +\n manifestFilenames\n .map((filename) => {\n- return `\"/static/\" + proce... | 2025-09-24T09:28:40 |
electron/electron | ae0c55c0b19fc317708e573d30d6d10ea9777a13 | 705d92c5f6dfaaa7be9459b3ea7fa8060ecdb194 | refactor: inherit Observer classes privately, pt. 2 (#42237)
* refactor: use private inheritance in PushNotifications
* refactor: use private inheritance in electron::api::App
* refactor: use private inheritance in electron::api::BrowserWindow
* refactor: use private inheritance in electron::api::NativeTheme
... | [
{
"path": "shell/browser/api/electron_api_app.h",
"patch": "@@ -50,9 +50,9 @@ namespace api {\n class App : public ElectronBrowserClient::Delegate,\n public gin::Wrappable<App>,\n public gin_helper::EventEmitterMixin<App>,\n- public BrowserObserver,\n- public co... | 2024-05-29T18:07:02 |
golang/go | 0a75e5a07b858cbe6216c99fa12d582d063499d9 | de9b6f98759f718fb48ecef22c2275ac98f1871d | encoding/json/v2: fix wrong type with cyclic marshal error in map[string]any
The type reported in a ErrCycle is the wrong type due to a typo.
This discrepency was detected by setting optimizeCommon to false
and running the tests.
This only modifies code that is compiled in under goexperiment.jsonv2.
Change-Id: I6826... | [
{
"path": "src/encoding/json/v2/arshal_any.go",
"patch": "@@ -104,7 +104,7 @@ func marshalObjectAny(enc *jsontext.Encoder, obj map[string]any, mo *jsonopts.St\n \tif xe.Tokens.Depth() > startDetectingCyclesAfter {\n \t\tv := reflect.ValueOf(obj)\n \t\tif err := visitPointer(&xe.SeenPointers, v); err != nil ... | 2025-08-12T08:45:44 |
nodejs/node | e799ebd7ff8e691958dfbdb8baf2b81236f87669 | d1a3f306427b24655a61d9dee9ab0a5fcacfbf4b | module: rethrow amaro error message
PR-URL: https://github.com/nodejs/node/pull/56568
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Paolo In... | [
{
"path": "lib/internal/modules/typescript.js",
"patch": "@@ -49,7 +49,7 @@ function parseTypeScript(source, options) {\n try {\n return parse(source, options);\n } catch (error) {\n- throw new ERR_INVALID_TYPESCRIPT_SYNTAX(error);\n+ throw new ERR_INVALID_TYPESCRIPT_SYNTAX(error.message);\n ... | 2025-01-14T15:35:14 |
rust-lang/rust | 87e4a3dad1321d26ce25f223e89fd6511ce52b71 | d8ffd9181f8265ca01e292b4060b49ea9d4265d5 | fix: detect E0804 when casting raw ptr-to-dyn adds auto traits
the `check_ptr_ptr_cast` function had an early return when the source and
destination dyn trait objects shared the same principal trait def id:
if src_principal == dst_principal {
return Ok(());
}
this bypassed all three remaining checks ... | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/cast.rs",
"patch": "@@ -328,11 +328,7 @@ impl<'db> CastCheck<'db> {\n //\n // Note that trait upcasting goes through a different mechanism (`coerce_unsized`)\n // and is unaffected by this ... | 2026-02-24T12:56:08 |
vercel/next.js | f46e17ac7d37b0c6ed135091363c1ca6e5625bb3 | 088a519039d319ab2a48d7963d717647d943190d | docs: update Security section to direct disclosures (#84156)
This PR updates the README.md Security section:
- Removes reference to GitHub’s private vulnerability reporting feature.
- Directs researchers to email responsible.disclosure@vercel.com.
- Clarifies that researchers will be added to our Open Source Softwar... | [
{
"path": "packages/next/README.md",
"patch": "@@ -42,9 +42,8 @@ Contributions to Next.js are welcome and highly appreciated. However, before you\n We have a list of **[good first issues](https://github.com/vercel/next.js/labels/%22good%20first%20issue%22)** that contain bugs that have a relatively limited ... | 2025-09-23T23:30:56 |
facebook/react | f510ece86d4621d3b0faf9fe59d850f7807dbb16 | fc1371f6bf656821e92c3c41bf65f58686504001 | Fix fastAddProperties to properly nullify style props (#30334)
## Summary
This PR fixes the `fastAddProperties` function. Now it nullifies a prop
if it was defined in one of the items of a style array, but then set to
`undefined` or `null` in one of the subsequent items. E.g. `style:
[{top: 0}, {top: undefined}]... | [
{
"path": "packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js",
"patch": "@@ -464,10 +464,6 @@ function fastAddProperties(\n for (const propKey in props) {\n const prop = props[propKey];\n \n- if (prop === undefined) {\n- continue;\n- }\n-\n const attributeConfig = ... | 2024-07-15T16:32:04 |
nodejs/node | 2570f95ad14b91e0095a12d418580e6852345389 | 294abc2ffcda213b544c345aaa60efd8c98df118 | util: do not crash on inspecting function with `Symbol` name
Refs: https://github.com/nodejs/node/issues/56570
PR-URL: https://github.com/nodejs/node/pull/56572
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Re... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -989,7 +989,7 @@ function formatRaw(ctx, value, recurseTimes, typedArray) {\n keys = getKeys(value, ctx.showHidden);\n braces = ['{', '}'];\n if (typeof value === 'function') {\n- base = getFunctionBase(value, constructor, tag);\n+ ... | 2025-01-15T00:16:48 |
electron/electron | 705d92c5f6dfaaa7be9459b3ea7fa8060ecdb194 | 22ba8b6f011795ec2b4b356c90e03f06d56fcc61 | docs: fix broken notification-spec markdown link (#42243)
* docs: fix broken notification-spec markdown link
* docs: update notification-spec linkt to point to freedesktop | [
{
"path": "docs/tutorial/notifications.md",
"patch": "@@ -161,7 +161,7 @@ Notifications are sent using `libnotify`, which can show notifications on any\n desktop environment that follows [Desktop Notifications Specification][notification-spec],\n including Cinnamon, Enlightenment, Unity, GNOME, and KDE.\n \... | 2024-05-29T12:41:17 |
golang/go | 674c5f0edd82b5d1dd5cb44eb4b85830245c151e | 9bbea0f21a4539ea365d4804131b17d3b963c4f7 | os/exec: fix incorrect expansion of ".." in LookPath on plan9
The correction in CL 685755 is incomplete for plan9, where path
search is performed even on file strings containing "/". By
applying filepath.Clean to the argument of validateLookPath,
we can check for bogus file strings containing ".." where the
later call... | [
{
"path": "src/os/exec/lp_plan9.go",
"patch": "@@ -36,7 +36,7 @@ func findExecutable(file string) error {\n // As of Go 1.19, LookPath will instead return that path along with an error satisfying\n // [errors.Is](err, [ErrDot]). See the package documentation for more details.\n func LookPath(file string) (s... | 2025-08-07T10:15:23 |
vercel/next.js | 7f29f1740d0ec524cb150bb80ba57ea8c61309e4 | 49b83495aab6cd7d9ad74126f93ec3917bedc4e5 | Turbopack: add more details to the graph panic (#84143)
### What?
add more details to the panic message | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs",
"patch": "@@ -1419,7 +1419,7 @@ impl AggregationUpdateQueue {\n if retry > MAX_RETRIES {\n panic!(\n \"inner_of_uppers_lost_follower is not able to remove follower \\... | 2025-09-23T18:37:10 |
facebook/react | c5eca9b0824b6325dbc9613f9befb41077fe35a0 | 127a0fbf1a4b2607c11854f97d8798a9f6dd99f8 | Fixed `useSyncExternalStoreWithSelector` to update memoizedSnapshot on change (#25968)
## Summary
<!--
Explain the **motivation** for making this change. What existing problem
does the pull request solve?
-->
A proposed fix for the bug described in
https://github.com/facebook/react/issues/25967
## How di... | [
{
"path": "packages/use-sync-external-store/src/useSyncExternalStoreWithSelector.js",
"patch": "@@ -93,6 +93,9 @@ export function useSyncExternalStoreWithSelector<Snapshot, Selection>(\n // to React that the selections are conceptually equal, and we can bail\n // out of rendering.\n if (is... | 2024-07-13T03:57:45 |
electron/electron | 22ba8b6f011795ec2b4b356c90e03f06d56fcc61 | 09fb892c6ed584ab7a15eb48c741c8586abe5faa | fix: restore original BrowserWindow.show() behavior (#42300) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -457,11 +457,7 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n \n // Panels receive key focus when shown but should not activate the app.\n if (!IsPanel()) {\n- if (@available(macOS 14.0, *)) {\n- [[... | 2024-05-29T06:31:11 |
golang/go | 9bbea0f21a4539ea365d4804131b17d3b963c4f7 | 08eef97500bd814a1dc83596a45837e6c7a7d43c | cmd/compile: during regalloc, fixedreg values are always available
It is ok to clobber registers that have a copy of a fixedreg value,
as that value is always available in its original location later
if we need it. (See 14 lines below the change.)
This CL will fix the regalloc infinite loop that CL 678620 introduced.... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -2476,7 +2476,7 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t}\n \n \t// Check if we're allowed to clobber the destination location.\n-\tif len(e.cache[occupant.vid]) == 1 && !e.s.values[occupant.vi... | 2025-08-13T21:01:30 |
rust-lang/rust | 4eaf448fae00fa7971dac07826987228c5ab1f34 | d8ffd9181f8265ca01e292b4060b49ea9d4265d5 | fix: Fix scrutinee expr indent for replace_if_let_with_match
- Remove some redundant `.clone_for_update()` and `.indent(IndentLevel::single())`
Example
---
```rust
fn main() {
if true {
$0if true
&& false
{
foo()
}
}
}
```
**Before this PR**
```rust
fn main() ... | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/replace_if_let_with_match.rs",
"patch": "@@ -57,7 +57,7 @@ pub(crate) fn replace_if_let_with_match(acc: &mut Assists, ctx: &AssistContext<'\n let if_exprs = successors(Some(if_expr.clone()), |expr| match expr.else_branch()? {\n a... | 2026-02-24T10:50:21 |
vercel/next.js | 6478e9195140bcb936edc7083fd8095f0511b402 | 45e28f8fe8a5436e0cc0b9160d5b3b92b18cbf8e | Turbopack: fix run_once when returning error (#84142)
Errors returned from the callback are never read.
Instead, send errors returned from the `future` over the channel. | [
{
"path": "turbopack/crates/turbo-tasks/src/manager.rs",
"patch": "@@ -526,13 +526,13 @@ impl<B: Backend + 'static> TurboTasks<B> {\n ) -> Result<T> {\n let (tx, rx) = tokio::sync::oneshot::channel();\n self.spawn_once_task(async move {\n- let result = future.await?;\n+ ... | 2025-09-23T16:30:28 |
facebook/react | 127a0fbf1a4b2607c11854f97d8798a9f6dd99f8 | ff89ba734668fdac06e8de476486830bbf9e0785 | Add build-for-flight-dev script to package.json (#30326)
Similar to the build-for-devtools script. I often have to build locally
for the flight fixture. This builds a subset that makes it work (in
DEV). | [
{
"path": "package.json",
"patch": "@@ -112,6 +112,7 @@\n \"build-for-devtools\": \"cross-env RELEASE_CHANNEL=experimental yarn build react/index,react/jsx,react/compiler-runtime,react-dom/index,react-dom/client,react-dom/unstable_testing,react-dom/test-utils,react-is,react-debug-tools,scheduler,react-t... | 2024-07-12T22:03:10 |
rust-lang/rust | b4644fda3083a131c68be9d2869cd79d5e6c0338 | 0028f344ce9f64766259577c998a1959ca1f6a0b | fix error on missing value for -C flags | [
{
"path": "compiler/rustc_session/src/options.rs",
"patch": "@@ -760,7 +760,7 @@ fn build_options<O: Default>(\n match value {\n None => early_dcx.early_fatal(\n format!(\n- \"{outputname} option `{key}` r... | 2026-02-24T08:44:03 |
golang/go | e001300cf21bad54afb5052e9ff823f8c1cbd407 | d5dea86993e1bc07bb9a49d2930655050da006d7 | [dev.simd] cmd/compile: fix LoadReg so it is aware of register target
SIMD code generation created interesting new type/register
combintations.
Change-Id: I9c9a73bf51f6cb54551db1fdc88f9dd1eef7ab26
Reviewed-on: https://go-review.googlesource.com/c/go/+/695895
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -47,8 +47,8 @@ func isFPReg(r int16) bool {\n \treturn x86.REG_X0 <= r && r <= x86.REG_Z31\n }\n \n-// loadByType returns the load instruction of the given type.\n-func loadByType(t *types.Type) obj.As {\n+// loadByTypeAndReg returns the load i... | 2025-08-13T16:44:01 |
electron/electron | bb4374ee2c0907c550147b1f0c4a29e13d3b5cb1 | 6423968dc56ce40259ed4a90744dbb9368dffd4e | fix: potential null dereference in normalizeSpawnArguments() patch (#42260)
fix: potential null deref in normalizeSpawnArguments() patch
Use upstream's practice of using `env = options.env || process.env`.
Previously, we were unconditionally assigning CRASHDUMP_SIGNAL_FD
and CRASHPAD_HANDLER_PID to options.env. | [
{
"path": "patches/node/enable_crashpad_linux_node_processes.patch",
"patch": "@@ -8,7 +8,7 @@ to child processes spawned with `ELECTRON_RUN_AS_NODE` which is used\n by the crashpad client to connect with the handler process.\n \n diff --git a/lib/child_process.js b/lib/child_process.js\n-index c09fca512584... | 2024-05-27T08:41:42 |
vercel/next.js | c2081b134ef6a9c54f8d005c72f8c077e8e1a699 | 58a60479550ee4c2e7a3ff5de696c01c196303f9 | Bump Rust to nightly-2025-09-21 (#83415)
It compiles fine, but we have another problem: `cargo fmt` really doesn't like it
```
cargo fmt -- turbopack/crates/turbo-tasks-fs/src/lib.rs
error: let chains are only allowed in Rust 2024 or later
--> /Users/niklas/code/next.js/turbopack/crates/turbo-tasks-fs/src/lib.rs:7... | [
{
"path": ".devcontainer/rust/devcontainer-feature.json",
"patch": "@@ -5,7 +5,7 @@\n \"dependsOn\": {\n \"ghcr.io/devcontainers/features/rust:1\": {\n // this should match the `rust-toolchain.toml`\n- \"version\": \"nightly-2025-06-04\",\n+ \"version\": \"nightly-2025-09-21\",\n ... | 2025-09-23T15:15:44 |
facebook/react | ff89ba734668fdac06e8de476486830bbf9e0785 | 400e82227747f6b60fecbc3b43f7515b4fd89d8c | Disable consoleWithStackDev Transform except in RN/WWW (#30313)
Stacked on #30308.
This is now a noop module so we can stop applying the transform of
console.error using the Babel plugin in the mainline builds. I'm keeping
the transform for RN/WWW for now although it might be nice if the
transform moved into tho... | [
{
"path": "packages/react-client/src/ReactClientConsoleConfigBrowser.js",
"patch": "@@ -7,8 +7,6 @@\n * @flow\n */\n \n-import {warn, error} from 'shared/consoleWithStackDev';\n-\n const badgeFormat = '%c%s%c ';\n // Same badge styling as DevTools.\n const badgeStyle =\n@@ -65,12 +63,6 @@ export function ... | 2024-07-12T18:39:38 |
rust-lang/rust | b91417bbfc7ef4c07572cea162be5ab84c20f767 | dc97f4d41c8be5d998b6c905ad2398f66422ce4d | Fix impossible doc link | [
{
"path": "compiler/rustc_hir/src/attrs/diagnostic.rs",
"patch": "@@ -458,7 +458,7 @@ pub struct ConditionOptions {\n pub self_types: Vec<String>,\n // The kind of compiler desugaring.\n pub from_desugaring: Option<DesugaringKind>,\n- /// Match on a variant of [rustc_infer::traits::Obligation... | 2026-02-17T00:45:52 |
electron/electron | 6423968dc56ce40259ed4a90744dbb9368dffd4e | 3ffa35dc8d1cfe54a3343c51958c6e9f3d70ace3 | fix: fixed the type of `WebviewTag.webpreferences` (#42275)
fix: fixed the type of WebviewTag.webpreferences | [
{
"path": "docs/api/structures/web-preferences.md",
"patch": "@@ -143,6 +143,7 @@\n contain the layout of the document—without requiring scrolling. Enabling\n this will cause the `preferred-size-changed` event to be emitted on the\n `WebContents` when the preferred size changes. Default is `false`.\n+... | 2024-05-26T05:06:06 |
golang/go | d5dea86993e1bc07bb9a49d2930655050da006d7 | 08ab8e24a310944768717356e188a14c46c7447b | [dev.simd] cmd/compile: fix isIntrinsic for methods; fix fp <-> gp moves
also includes a handy debugging hook for the inliner.
Change-Id: I23d0619506219d21db78c6c801612ff058562142
Reviewed-on: https://go-review.googlesource.com/c/go/+/694118
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservic... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -43,6 +43,10 @@ func ssaMarkMoves(s *ssagen.State, b *ssa.Block) {\n \t}\n }\n \n+func isFPReg(r int16) bool {\n+\treturn x86.REG_X0 <= r && r <= x86.REG_Z31\n+}\n+\n // loadByType returns the load instruction of the given type.\n func loadByTy... | 2025-08-07T20:44:50 |
vercel/next.js | 521dcf55bffc12bfab7b1de4dde729865febc28e | 90d4ff74debe7e7f1eb4fb719b9e214c36b3932c | Turbopack: add more details to the graph panic (#84126)
### What?
give more information when a graph panic happens | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs",
"patch": "@@ -1419,8 +1419,14 @@ impl AggregationUpdateQueue {\n if retry > MAX_RETRIES {\n panic!(\n \"inner_of_uppers_lost_follower is not able to remove follower \... | 2025-09-23T13:04:29 |
nodejs/node | 7b60bcb2f0319e2802c83edd0cdcf5d4fd0927ee | 732744cc7667ef33289516dd3ecbd24ffbadc2e1 | quic: fixup errant LocalVector usage
PR-URL: https://github.com/nodejs/node/pull/56564
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de> | [
{
"path": "src/quic/session.cc",
"patch": "@@ -2728,7 +2728,7 @@ void Session::EmitVersionNegotiation(const ngtcp2_pkt_hd& hd,\n \n LocalVector<Value> versions(env()->isolate(), nsv);\n for (size_t n = 0; n < nsv; n++) {\n- versions.push_back(Integer::NewFromUnsigned(env()->isolate(), sv[n]));\n+ ... | 2025-01-11T21:17:54 |
facebook/react | 400e82227747f6b60fecbc3b43f7515b4fd89d8c | 1e8efe7fd401384226865fb4e220038f3505a748 | Remove Component Stack from React Logged Warnings and Error Reporting (#30308)
React transpiles some of its own `console.error` calls into a helper
that appends component stacks to those calls. However, this doesn't
cover user space `console.error` calls - which includes React helpers
that React has moved into thir... | [
{
"path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js",
"patch": "@@ -866,16 +866,40 @@ describe('ReactInternalTestUtils console assertions', () => {\n const message = expectToThrowFailure(() => {\n expect(root).toMatchRenderedOutput(<div>foobarbaz</div>);\n })... | 2024-07-12T17:02:22 |
electron/electron | 3ffa35dc8d1cfe54a3343c51958c6e9f3d70ace3 | 7ec813732aff4bc428e4946efb1934cc9f6a1fd6 | fix: calculate a hash for the Tag property of ToastNotification. (#42239)
* fix: calculate a hash for the Tag property of ToastNotification.
* fix: calculate a hash for the Tag property of ToastNotification.
---------
Co-authored-by: bill.shen <shenyb32768@gmail.com> | [
{
"path": "shell/browser/notifications/win/windows_toast_notification.cc",
"patch": "@@ -14,6 +14,7 @@\n #include <wrl\\wrappers\\corewrappers.h>\n \n #include \"base/environment.h\"\n+#include \"base/hash/hash.h\"\n #include \"base/logging.h\"\n #include \"base/strings/strcat.h\"\n #include \"base/strings/... | 2024-05-24T19:20:59 |
golang/go | 08eef97500bd814a1dc83596a45837e6c7a7d43c | 2fe5d51d0494d3241a8006d797d02510b030c0e3 | runtime/trace: fix documentation typo
Change-Id: I3d8dc20536c7a1fb4b1d895fcf989f86bf45f499
GitHub-Last-Rev: 234aea60e25b01e84abdf485cebbd0da5f392fed
GitHub-Pull-Request: golang/go#74991
Reviewed-on: https://go-review.googlesource.com/c/go/+/695535
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gs... | [
{
"path": "src/runtime/trace/flightrecorder.go",
"patch": "@@ -158,7 +158,7 @@ type FlightRecorderConfig struct {\n \t//\n \t// The flight recorder will strive to promptly discard events older than the minimum age,\n \t// but older events may appear in the window snapshot. The age setting will always be\n-\... | 2025-08-13T06:37:55 |
nodejs/node | 7a9d78306b68b15e06eecbf30370c551da18bd90 | 187007a5ecdd154a4f587237473b0c14284339f7 | crypto: fix checkPrime crash with large buffers
Fixes: https://github.com/nodejs/node/issues/56512
PR-URL: https://github.com/nodejs/node/pull/56559
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "src/crypto/crypto_random.cc",
"patch": "@@ -176,6 +176,11 @@ Maybe<void> CheckPrimeTraits::AdditionalConfig(\n ArrayBufferOrViewContents<unsigned char> candidate(args[offset]);\n \n params->candidate = BignumPointer(candidate.data(), candidate.size());\n+ if (!params->candidate) {\n+ Thro... | 2025-01-11T13:17:38 |
facebook/react | ff3f1fac65e7b82efe3f90af42af1278bc6f1d5d | df5f273629d8da586351573347e8b32ba19dafa7 | [RN] Set enableOwnerStacks and enableUseDeferredValueInitialArg to false
In www, the experimental versions get a .modern.js or .classic.js prefix
and get copied into the same folder. In RN, they don't seem to have
.modern.js and .classic.js versions so they end up getting the same
name.
sebmarkbage's theory is that w... | [
{
"path": "packages/shared/forks/ReactFeatureFlags.native-oss.js",
"patch": "@@ -57,7 +57,7 @@ export const enableLegacyFBSupport = false;\n export const enableLegacyHidden = false;\n export const enableNoCloningMemoCache = false;\n export const enableObjectFiber = false;\n-export const enableOwnerStacks = ... | 2024-07-12T15:21:10 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.