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
nodejs/node
220f5c644ed4b6654bf9e65ba12949d8d5e0f8e3
8a2fec1f6ff83bad3264032e54c8fc0a10247ca3
test: exclude mock from coverage Fixes: https://github.com/nodejs/node/issues/59112 PR-URL: https://github.com/nodejs/node/pull/59348 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
[ { "path": "lib/internal/test_runner/coverage.js", "patch": "@@ -28,7 +28,7 @@ const {\n const { setupCoverageHooks } = require('internal/util');\n const { tmpdir } = require('os');\n const { join, resolve, relative } = require('path');\n-const { fileURLToPath } = require('internal/url');\n+const { fileURLTo...
2025-08-11T05:49:53
electron/electron
3a982ecad5af4ff4c8badd71a94e85ac407eb082
926a6ee8bdd44b769f09c7b910938d41fbfec6b2
fix: do not run microtasks in V8Serializer in browser process (#46668)
[ { "path": "shell/common/v8_util.cc", "patch": "@@ -36,7 +36,7 @@ class V8Serializer : public v8::ValueSerializer::Delegate {\n \n bool Serialize(v8::Local<v8::Value> value, blink::CloneableMessage* out) {\n gin_helper::MicrotasksScope microtasks_scope{\n- isolate_->GetCurrentContext(), false,\n...
2025-04-19T02:43:02
vercel/next.js
7b63bd360bfda310e7fcf508bf3c91c91e2cbccb
7fc6b947688aa91896a5017c1c973acf129f146c
Turbopack: add lint rule to not cell in async map (#88474) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contr...
[ { "path": ".config/ast-grep/rule-tests/__snapshots__/no-map-async-cell-snapshot.yml", "patch": "@@ -0,0 +1,282 @@\n+id: no-map-async-cell\n+snapshots:\n+ ? |\n+ items.into_iter()\n+ .map(async |item| Ok(item.process().await?.cell()))\n+ .try_join()\n+ .await\n+ : labels:\n+ - ...
2026-01-13T18:45:14
facebook/react
bc6184dd993e6ea0efdee7553293676db774c3ca
ce578f9c59be73e6e32c633e6d251e8ec6dcad84
[devtools] Fix "View source" for sources with URLs that aren't normalized (#32951)
[ { "path": "packages/react-devtools-extensions/src/main/fetchFileWithCaching.js", "patch": "@@ -1,6 +1,6 @@\n /* global chrome */\n \n-import {normalizeUrl} from 'react-devtools-shared/src/utils';\n+import {normalizeUrlIfValid} from 'react-devtools-shared/src/utils';\n import {__DEBUG__} from 'react-devtools...
2025-04-17T19:56:05
electron/electron
437542767a4eabc34fe92cfacd88ad5c8da1b5e2
a29e1170b98028a8db5d23e48bf867eae69610e7
fix: `backgroundMaterial` on initial activate (#46657) * fix: backgroundMaterial on initial activate Closes https://github.com/electron/electron/issues/38466 * Update patches/chromium/fix_activate_background_material_on_windows.patch Co-authored-by: Charles Kerr <charles@charleskerr.com> --------- Co-authored-by:...
[ { "path": "patches/chromium/fix_activate_background_material_on_windows.patch", "patch": "@@ -14,7 +14,7 @@ This patch likely can't be upstreamed as-is, as Chromium doesn't have\n this use case in mind currently.\n \n diff --git a/ui/views/win/hwnd_message_handler.cc b/ui/views/win/hwnd_message_handler.cc\n...
2025-04-17T18:34:45
nodejs/node
aac7925801edfc8dd1de051a29aac85332e7d200
ca76b393561e0bdb19818407e6ec950a97d714b0
test: split test-fs-cp.js This test previously squeezed 70+ test cases into one single file and has been constantly crashing on Windows with exit code 3221226505 and no stack trace. As it is already marked as flaky there is no way to understand which test case is failing and the Windows CI was constantly orange. This ...
[ { "path": "test/common/fs.js", "patch": "@@ -0,0 +1,49 @@\n+'use strict';\n+\n+const { mustNotMutateObjectDeep } = require('.');\n+const { readdirSync } = require('node:fs');\n+const { join } = require('node:path');\n+const assert = require('node:assert');\n+const tmpdir = require('./tmpdir.js');\n+\n+let d...
2025-08-10T19:35:42
electron/electron
352a403efdf5bf32ffcb6ef6162535faa351e287
e8117f8e40e488578f8ba5c57ff8e429fc9c3d6c
fix: `postMessage` crash with invalid transferrable (#46639)
[ { "path": "shell/browser/api/electron_api_utility_process.cc", "patch": "@@ -330,6 +330,9 @@ void UtilityProcessWrapper::PostMessage(gin::Arguments* args) {\n return;\n \n blink::TransferableMessage transferable_message;\n+ gin_helper::ErrorThrower thrower(args->isolate());\n+\n+ // |message| is any...
2025-04-17T13:09:48
facebook/react
b8bedc267f79db375f3147db4d766e09de599b68
4a36d3eab7d9bbbfae62699989aa95e5a0297c16
[compiler][autodeps/fire] Do not include fire functions in autodep arrays (#32532) Summary: We landed on not including fire functions in dep arrays. They aren't needed because all values returned from the useFire hook call will read from the same ref. The linter will error if you include a fired function in an explici...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts", "patch": "@@ -9,6 +9,7 @@ import {Effect, ValueKind, ValueReason} from './HIR';\n import {\n BUILTIN_SHAPES,\n BuiltInArrayId,\n+ BuiltInFireFunctionId,\n BuiltInFireId,\n BuiltInMapId,\n BuiltInMixedReadonlyId,\n@@ -67...
2025-04-17T17:03:19
nodejs/node
3c741f7ccd47119077eabdb15ee2427a6bd09a1b
a73b575304722a3682fbec3a5fb13b39c5791342
doc: fix Pbkdf2Params hash attribute heading PR-URL: https://github.com/nodejs/node/pull/59395 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
[ { "path": "doc/api/webcrypto.md", "patch": "@@ -1573,7 +1573,7 @@ added: v15.0.0\n added: v15.0.0\n -->\n \n-#### `pbkdb2Params.hash`\n+#### `pbkdf2Params.hash`\n \n <!-- YAML\n added: v15.0.0", "additions": 1, "deletions": 1, "language": "Markdown" } ]
2025-08-09T16:35:12
electron/electron
e8117f8e40e488578f8ba5c57ff8e429fc9c3d6c
32fea719b393c2757c4737386564c910d49b529e
build: update build tools (#46656) * build: update build tools * chore: fix core.fscache * chore: fix core.preloadindex --------- Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -10,8 +10,10 @@ runs:\n git config --global core.filemode false\n git config --global core.autocrlf false\n git config --global branch.autosetuprebase always\n+ git config --global core.fscache true\n+ ...
2025-04-17T08:32:17
facebook/react
2ddf8caa9d3abd22f54304bf7650e512efb93f18
95ff37f5f5ee7c756f844aea2947e961e7151ac9
[ci] Fix check_access again (#32935) I can see the value being output and set correctly but not sure why it's skipping the 2nd job. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32935). * #32936 * _...
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -13,15 +13,15 @@ jobs:\n check_access:\n runs-on: ubuntu-latest\n outputs:\n- is_member_or_collaborator: ${{ steps.check_access.outputs.is_member_or_collaborator }}\n+ is_member_or_collaborator: ${{ steps.check_is_me...
2025-04-16T22:00:25
rust-lang/rust
1d43a421b5ec13e9c8f6d43c92dedad9c9c5fe0c
f3f4ab9205af504e9f58268645b41b743587a965
Remove `Clone` impl from `CycleError`. It's unused.
[ { "path": "compiler/rustc_middle/src/query/plumbing.rs", "patch": "@@ -50,7 +50,7 @@ pub enum ActiveKeyStatus<'tcx> {\n Poisoned,\n }\n \n-#[derive(Clone, Debug)]\n+#[derive(Debug)]\n pub struct CycleError<'tcx> {\n /// The query and related span that uses the cycle.\n pub usage: Option<Spanned<...
2026-03-11T03:22:31
nodejs/node
21eac793cd746eab0b36d75af5e16aed11f9aa4b
f3adc11e37b8bfaaa026ea85c1cf22e3a0e29ae9
build: fix node_use_sqlite for GN builds PR-URL: https://github.com/nodejs/node/pull/59017 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
[ { "path": "node.gni", "patch": "@@ -42,6 +42,9 @@ declare_args() {\n # The variable is called \"openssl\" for parity with node's GYP build.\n node_use_openssl = true\n \n+ # Build node with SQLite support.\n+ node_use_sqlite = true\n+\n # Use the specified path to system CA (PEM format) in addition ...
2025-08-09T00:22:24
vercel/next.js
fe6a3385e6bfd2a8c5c1280dea532a2f0d6a6c55
6339e63839f0f322087d0049fec9e2a324d27501
Turbopack: use mimalloc on Linux musl (#88426) Closes #88174 With musl (i.e. Alpine), the system memory allocator can cause catastrophic slowdowns - https://medium.com/p/stop-using-alpine-images-b51d12b0fde2 - https://nickb.dev/blog/default-musl-allocator-considered-harmful-to-performance/ We were seeing it ca...
[ { "path": "turbopack/crates/turbo-tasks-malloc/Cargo.toml", "patch": "@@ -12,13 +12,13 @@ bench = false\n [dependencies]\n \n \n-[target.'cfg(not(any(target_os = \"linux\", target_family = \"wasm\", target_env = \"musl\")))'.dependencies]\n+[target.'cfg(not(any(target_os = \"linux\", target_family = \"wasm\...
2026-01-13T14:11:01
rust-lang/rust
f3f4ab9205af504e9f58268645b41b743587a965
d27207d3d64a1399f90344d6ef3c5743204b3fd3
Remove `QueryInfo`. `CycleError` has one field containing a `(Span, QueryStackFrame<I>)` and another field containing a `QueryInfo`, which is a struct containing just a `Span` and a `QueryStackFrame<I>`. We already have the `Spanned` type for adding a span to something. This commit uses it for both fields in `CycleEr...
[ { "path": "compiler/rustc_middle/src/query/job.rs", "patch": "@@ -7,17 +7,8 @@ use parking_lot::{Condvar, Mutex};\n use rustc_span::Span;\n \n use crate::query::plumbing::CycleError;\n-use crate::query::stack::QueryStackFrame;\n use crate::ty::TyCtxt;\n \n-/// Represents a span and a query key.\n-#[derive(C...
2026-03-10T00:57:05
facebook/react
3c75bf21dd2fca130635c5b67b5361f4759a7d29
3e04b2a214cdc962dd5acde412c7107321ec7a56
[mcp] Fix bailout loc (#32931) Use the correct loc line numbers and not [Object:object] --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32931). * #32932 * __->__ #32931 * #32930 * #32929 * #32928
[ { "path": "compiler/packages/react-mcp-server/src/index.ts", "patch": "@@ -283,7 +283,7 @@ server.tool(\n if (typeof err.loc !== 'symbol') {\n return {\n type: 'text' as const,\n- text: `React Compiler bailed out: ${err.message}@${err.loc.start}:${err.loc.end...
2025-04-16T21:49:15
electron/electron
14df4aab83bb016e5195d8d2076e9a7ef09b7ccf
24e46849c7d6ef30f99d32b532da67fa34440165
fix: window border on Gnome Wayland (#46624)
[ { "path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -195,7 +195,7 @@ void ElectronDesktopWindowTreeHostLinux::UpdateFrameHints() {\n if (ui::OzonePlatform::GetInstance()->IsWindowCompositingSupported()) {\n // Set the opaque region.\n std::vector<gfx::Rect> ...
2025-04-15T13:45:33
vercel/next.js
2af84065cbbbe7bfd9c132f022c3989ab24a26f3
9a55a09627ba682b50e4e90fa9dc040bbb5bf00b
[test] Always run all tests without aborting on failure (#88435) It's more useful and efficient to run all tests and report all failures instead of aborting on the first failure. This way, developers get a complete picture of what needs to be fixed in a single run, and don't have to go through multiple iterations of f...
[ { "path": ".github/workflows/integration_tests_reusable.yml", "patch": "@@ -91,7 +91,6 @@ jobs:\n afterBuild: |\n # e2e and ${{ inputs.test_type }} tests with `node run-tests.js`\n \n- export NEXT_TEST_CONTINUE_ON_ERROR=true\n export NEXT_TEST_MODE=${{\n inputs.test_ty...
2026-01-13T11:37:29
golang/go
02d1f3a06bc6900ad5c1b7c11b1fd38cbddef395
a593ca9d657efb1ea021c9fc51cb528c398bbf4e
runtime: respect GOTRACEBACK for user-triggered runtime panics The documentation for GOTRACEBACK says that "single" is the default where the stack trace for only a single routine is printed except that it prints all stack traces if: there is no current goroutine or the failure is internal to the run-time. In the r...
[ { "path": "src/runtime/runtime1.go", "patch": "@@ -39,7 +39,7 @@ func gotraceback() (level int32, all, crash bool) {\n \tgp := getg()\n \tt := atomic.Load(&traceback_cache)\n \tcrash = t&tracebackCrash != 0\n-\tall = gp.m.throwing >= throwTypeUser || t&tracebackAll != 0\n+\tall = gp.m.throwing > throwTypeUs...
2025-02-13T23:59:32
electron/electron
e748b521b2c77768bc1c7761299b9607c0076670
51bffb533e01430218f742adcb83560104515eff
test: fix node spec disabled tests (#46627)
[ { "path": "script/node-disabled-tests.json", "patch": "@@ -20,7 +20,6 @@\n \"parallel/test-crypto-key-objects\",\n \"parallel/test-crypto-keygen\",\n \"parallel/test-crypto-keygen-deprecation\",\n- \"parallel/test-crypto-rsa-dsa-revert\",\n \"parallel/test-crypto-rsa-dsa\",\n \"parallel/test-cryp...
2025-04-14T15:38:27
golang/go
a593ca9d657efb1ea021c9fc51cb528c398bbf4e
89552911b383b78cd8807ec747ca5df8ba52e239
runtime/cgo: add support for `any` param and return type When using `any` as param or return type of an exported function, we currently have the error `unrecognized Go type any`. `any` is an alias of `interface{}` which is already supported. This would avoid such change: https://github.com/php/frankenphp/pull/1976 F...
[ { "path": "src/cmd/cgo/gcc.go", "patch": "@@ -1121,6 +1121,9 @@ func (p *Package) hasPointer(f *File, t ast.Expr, top bool) bool {\n \t\tif t.Name == \"error\" {\n \t\t\treturn true\n \t\t}\n+\t\tif t.Name == \"any\" {\n+\t\t\treturn true\n+\t\t}\n \t\tif goTypes[t.Name] != nil {\n \t\t\treturn false\n \t\t...
2025-11-24T08:14:18
vercel/next.js
de3e9d4f36e865c7ace2dda209cf89df25883647
2b314e744a0d8035a2234f3359976689352d850e
Turbopack: Update reqwest, remove experimental system TLS feature (#88290) I added this as an option in https://github.com/vercel/next.js/pull/81818 as a solution for users with corporate firewalls that MITM TLS traffic. Reqwest 0.13.x now uses `rustls-platform-verifier` by default, which doesn't have the tradeoffs t...
[ { "path": "Cargo.lock", "patch": "@@ -443,6 +443,29 @@ dependencies = [\n \"arrayvec 0.7.6\",\n ]\n \n+[[package]]\n+name = \"aws-lc-rs\"\n+version = \"1.13.3\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"5c953fe1ba023e6b7730c0d4b031d06f267f23a46167dcbd40316644b10a17...
2026-01-12T22:45:46
electron/electron
51bffb533e01430218f742adcb83560104515eff
62b5b5f99dad509b9e7bea9ada2e5731d8b04371
fix: paint and flash issues on macOS (#46615) * fix: paint and flash issues on macOS * Adhere to paintWhenInitiallyHidden
[ { "path": "patches/chromium/.patches", "patch": "@@ -131,7 +131,7 @@ osr_shared_texture_remove_keyed_mutex_on_win_dxgi.patch\n feat_allow_usage_of_sccontentsharingpicker_on_supported_platforms.patch\n chore_partial_revert_of.patch\n fix_software_compositing_infinite_loop.patch\n-fix_add_method_which_disable...
2025-04-14T14:29:07
vercel/next.js
0daf2b58b4a75c908775a7df0b5a473e646531f8
0fd7d90d6385fbf0822db50c919272fe72b86997
[prebuilt-skew-protection] feat: adding in automatic deploymentId (#88012) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're makin...
[ { "path": "errors/deploymentid-not-a-string.mdx", "patch": "@@ -0,0 +1,34 @@\n+---\n+title: '`deploymentId` function must return a string'\n+---\n+\n+## Why This Error Occurred\n+\n+The `deploymentId` option in your `next.config.js` is defined as a function, but it did not return a string value.\n+\n+## Pos...
2026-01-12T21:27:26
rust-lang/rust
1bc2c442870a669669880b7487d46f4ce90e71b0
d4e76b7cb893ae3dfa6a128acc0d78726cdfcf55
fix: remove empty angle brackets in inline type alias code assist. fixes https://github.com/rust-lang/rust-analyzer/issues/21769
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/inline_type_alias.rs", "patch": "@@ -12,7 +12,7 @@ use itertools::Itertools;\n use syntax::ast::syntax_factory::SyntaxFactory;\n use syntax::syntax_editor::SyntaxEditor;\n use syntax::{\n- AstNode, NodeOrToken, SyntaxNode,\n+ AstNode, ...
2026-03-08T15:21:00
nodejs/node
5baff3e47b10e1360a99d973e6ff18284e850301
60a58f63a1589e4fb45d558e58b9be149c6cb6f6
deps: support madvise(3C) across ALL illumos revisions In illumos, madvise(3C) now takes `void *` for its first argument post-illumos#14418, but uses `caddr_t` pre-illumos#14418. This fix will detect if the illumos mman.h file in use is pre-or-post-illumos#14418 so builds can work either way. PR-URL: https://github.c...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.17',\n+ 'v8_embedder_string': '-node.18',\n \n ##### V8 defaults for Node.js #####\n...
2025-08-07T14:14:08
electron/electron
62b5b5f99dad509b9e7bea9ada2e5731d8b04371
a9b2ec514b9d2d8e8992514b1a42486ef17446cd
fix: handle potential missing close event property (#46605) fix: handle missing close event property
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -54,7 +54,7 @@ BrowserWindow.prototype._init = function (this: BWT) {\n });\n this.on('close', (event) => {\n queueMicrotask(() => {\n- if (!unresponsiveEvent && !event.defaultPrevented) {\n+ if (!unresponsiveEvent && !event?.defa...
2025-04-11T17:07:26
facebook/react
35ab8ffef7b755c899d9e19d61277a4fceb760d1
68013725ac5671ab06572bd361e168681782a727
[mcp] Add inspect script (#32928) Uses https://github.com/modelcontextprotocol/inspector to inspect and debug the mcp server. `yarn workspace react-mcp-server dev` will build the server in watch mode and launch the inspector. Default address is http://127.0.0.1:6274. --- [//]: # (BEGIN SAPLING FOOTER) Stack created w...
[ { "path": "compiler/packages/react-mcp-server/package.json", "patch": "@@ -8,6 +8,8 @@\n \"scripts\": {\n \"build\": \"rimraf dist && tsup\",\n \"test\": \"echo 'no tests'\",\n+ \"dev\": \"concurrently --kill-others -n build,inspect \\\"yarn run watch\\\" \\\"wait-on dist/index.js && yarn run i...
2025-04-16T21:48:38
vercel/next.js
818be9ae62a850dc60faf8f8dcb55c922f0a83ac
7a2f4ad140b6e00d1d240ce84c6c9c7ca7550ba4
Warn when overriding Cache-Control header on `/_next/` routes (#88353) Custom `Cache-Control` headers on `/_next/` routes can cause hard-to-debug development behaviors. Normally the dev server sends no-cache values to ensure that assets are always fresh. If a developer sets the max-age or immutable flag,, the browser ...
[ { "path": "packages/next/src/lib/load-custom-routes.ts", "patch": "@@ -725,6 +725,27 @@ export default async function loadCustomRoutes(\n )\n }\n \n+ const cacheControlSources: string[] = []\n+ for (const headerRoute of headers) {\n+ if (!headerRoute.source.startsWith('/_next/')) {\n+ contin...
2026-01-12T19:02:07
rust-lang/rust
774f23201523e60fd729c654061f82492760adec
35f1109ece895199e4b8d755b101e9a481d18243
Provide better suggestions for inference errors on `.collect()?` When encountering an inference error when calling `.collect()` followed by `?`, detect the return type of the enclosing function and suggest `.collect::<Result<_, _>>()?` instead of `.collect::<Vec<_>>()?`: ``` error[E0283]: type annotations needed --...
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/infer/need_type_info.rs", "patch": "@@ -555,6 +555,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n def_id: _,\n generic_args,\n have_turbofish,\n+ hir_id,\n } => {\n ...
2026-03-15T17:39:06
electron/electron
a9b2ec514b9d2d8e8992514b1a42486ef17446cd
3064b24c9df15dbc7bcb55e78a12a92fd761daf6
fix: fallback to old MacOS context menu behavior if no frame is present (#46595) * fix: fallback to old MacOS context menu behavior if no frame is present Co-authored-by: georgexu99 <georgexu99@electronjs.org> Co-authored-by: erickzhao <erickzhao@electronjs.org> Co-authored-by: clavin <calvin@electronjs.org> * docs:...
[ { "path": "docs/api/menu.md", "patch": "@@ -74,7 +74,7 @@ The `menu` object has the following instance methods:\n * `options` Object (optional)\n * `window` [BaseWindow](base-window.md) (optional) - Default is the focused window.\n * `frame` [WebFrameMain](web-frame-main.md) (optional) - Provide the rel...
2025-04-11T14:15:35
nodejs/node
0309806a74f8596059061525ba56fd9c82c56a8f
cce8c4dd83d7d78fc670d206e91d25eaff3d0ebb
doc: fix missing reference links for server.keepAliveTimeoutBuffer PR-URL: https://github.com/nodejs/node/pull/59356 Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/http.md", "patch": "@@ -1945,7 +1945,7 @@ incoming data, after it has finished writing the last response, before a socket\n will be destroyed.\n \n This timeout value is combined with the\n-\\[`server.keepAliveTimeoutBuffer`]\\[] option to determine the actual socket\n+[`server.keepAliveT...
2025-08-07T02:53:30
facebook/react
68013725ac5671ab06572bd361e168681782a727
bf39780a066626ebef67d4b3faf7eb163e35782a
[ci] Fix check_access fr (#32934) 💀
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -13,7 +13,7 @@ jobs:\n check_access:\n runs-on: ubuntu-latest\n outputs:\n- is_member_or_collaborator: ${{ steps.check_access.outputs.result }}\n+ is_member_or_collaborator: ${{ steps.check_access.outputs.is_member_o...
2025-04-16T21:39:24
vercel/next.js
7a2f4ad140b6e00d1d240ce84c6c9c7ca7550ba4
d067b620784e8293d1bef3ad85bf3f9110a4366a
Type-check `run-tests.js` and remove unused `related` flag (#88433) The file already had the `@ts-check` directive, so the IDE did show errors in that file. But since it was not included in the root `tsconfig.json`, those errors were not reported during CI runs. One issue found this way was that the `related` flag ...
[ { "path": "package.json", "patch": "@@ -168,6 +168,7 @@\n \"@types/shell-quote\": \"1.7.1\",\n \"@types/string-hash\": \"1.1.1\",\n \"@types/trusted-types\": \"2.0.3\",\n+ \"@types/yargs\": \"16.0.11\",\n \"@vercel/devlow-bench\": \"workspace:*\",\n \"@vercel/kv\": \"3.0.0\",\n \"...
2026-01-12T18:46:11
golang/go
f045ed4110aa430da0ba118d2be46f0d602d6633
220d73cc44a0c580dc8ee10df6395c8e517e118f
[dev.simd] go/doc/comment: don't include experimental packages in std list go/doc/comment/std.go has a list of top-level package prefixes in the standard library. This list can vary depending on goexperiment, but the file is static. E.g. GOEXPERIMENT=arenas go test -run=TestStd go/doc/comment would fail. Don't incl...
[ { "path": "src/go/doc/comment/mkstd.sh", "patch": "@@ -19,6 +19,6 @@ echo \"// Copyright 2022 The Go Authors. All rights reserved.\n package comment\n \n var stdPkgs = []string{\"\n-go list std | grep -v / | sort | sed 's/.*/\"&\",/'\n+GOEXPERIMENT=none go list std | grep -v / | sort | sed 's/.*/\"&\",/'\n ...
2025-11-24T17:03:59
electron/electron
c6e6a03a2421dc3da6a67d3976cb6fbcce342592
c1c74b0a6c734773f224422b83879703a4e7f271
fix: `NativeWindow.window_id()` returns same value for all windows (#46562) fix: NativeWindow.window_id() returns same value for all windows
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -94,8 +94,6 @@ gfx::Size GetExpandedWindowSize(const NativeWindow* window, gfx::Size size) {\n NativeWindow::NativeWindow(const gin_helper::Dictionary& options,\n NativeWindow* parent)\n : widget_(std::make_unique<views:...
2025-04-09T15:45:06
nodejs/node
c8b64bd02324ec48d73c7e01982f06c0218b0f87
e2fefd78e218515dc657486d7abe60b7a928cb3f
quic: fixup NO_ERROR macro conflict on windows PR-URL: https://github.com/nodejs/node/pull/59381 Fixes: https://github.com/nodejs/node/issues/59369 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <richard.lau@ibm.com>
[ { "path": "src/quic/data.cc", "patch": "@@ -386,6 +386,8 @@ const QuicError QuicError::FromConnectionClose(ngtcp2_conn* session) {\n QUIC_TRANSPORT_ERRORS(V)\n #undef V\n \n+const QuicError QuicError::TRANSPORT_NO_ERROR =\n+ ForTransport(TransportError::NO_ERROR_);\n const QuicError QuicError::HTTP3_NO_E...
2025-08-06T22:48:10
facebook/react
bf39780a066626ebef67d4b3faf7eb163e35782a
b04254fdcee30871760301f34236ee0dfadf86ab
[ci] Fix check_access output (#32933) the joy of yml
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -18,7 +18,7 @@ jobs:\n - name: Check access\n id: check_access\n if: ${{ github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' }}\n- run: ...
2025-04-16T21:27:09
vercel/next.js
d067b620784e8293d1bef3ad85bf3f9110a4366a
d90847dead1f5c135741043f7720844583a26d0a
docs: add rebuild guidance and ICE troubleshooting to AGENTS.md (#88337) Update AGENTS.md with better instructions abotu rebuilding and handling rustc crashes Also make the graphite instructions more emphatic
[ { "path": "AGENTS.md", "patch": "@@ -41,13 +41,20 @@ The main Next.js framework lives in `packages/next/`. This is what gets publishe\n \n ## Git Workflow\n \n-**Use Graphite for all git operations** instead of raw git commands:\n+**CRITICAL: Use Graphite (`gt`) instead of git for ALL branch and commit oper...
2026-01-12T18:14:32
rust-lang/rust
461038f0c9fd7a403b29d3ac0e384d410ab16f07
798a011ace1c2b5be80767ba1d97a4dff0546f93
improve `#[track_caller]` invalid ABI error
[ { "path": "compiler/rustc_ast_passes/src/ast_validation.rs", "patch": "@@ -1487,6 +1487,15 @@ impl<'a> Visitor<'a> for AstValidator<'a> {\n ident,\n sig,\n );\n+\n+ if let Some(attr) = attr::find_by_name(fi.attrs(), sym::track_caller)\n+...
2026-03-15T16:04:38
nodejs/node
e2fefd78e218515dc657486d7abe60b7a928cb3f
24e28c41b5b20dbeaa247ca053d7a2711a2058da
quic: fixup windows coverage compile error PR-URL: https://github.com/nodejs/node/pull/59381 Fixes: https://github.com/nodejs/node/issues/59369 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <richard.lau@ibm.com>
[ { "path": "src/quic/data.cc", "patch": "@@ -149,15 +149,15 @@ T Store::convert() const {\n }\n \n Store::operator uv_buf_t() const {\n- return convert<uv_buf_t, typeof(*uv_buf_t::base)>();\n+ return convert<uv_buf_t, char>();\n }\n \n Store::operator ngtcp2_vec() const {\n- return convert<ngtcp2_vec, typ...
2025-08-06T21:15:45
electron/electron
c1c74b0a6c734773f224422b83879703a4e7f271
45a049428795402cefa4799bb04567db65da4429
fix: re-enable OOP printing on Linux (#46529)
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -932,3 +932,19 @@ index 63f170c95050416c595e62f4c460c4cd6b7dbd1c..157e3d046889f9c63fdf0fd5d503890f\n // Does bookkeeping when an error occurs.\n virtual mojom::ResultCode OnError();\n \n+diff --git a/printing/printing_context_linux.cc b/printi...
2025-04-09T13:42:16
facebook/react
b04254fdcee30871760301f34236ee0dfadf86ab
539bbdbd86d9cd342aabde4cb08e398751789103
Don't try to hydrate a hidden Offscreen tree (#32862) I found a bug even before the Activity hydration stuff. If we're hydrating an Offscreen boundary in its "hidden" state it won't have any content to hydrate so will trigger hydration errors (which are then eaten by the Offscreen boundary itself). Leaving it not pre...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js", "patch": "@@ -3723,6 +3723,11 @@ describe('ReactDOMServerPartialHydration', () => {\n <Activity mode=\"hidden\">\n <HiddenChild />\n </Activity>\n+ <Suspense fallback={null}...
2025-04-15T21:43:42
vercel/next.js
90a4927806cbcd52d65cc9ff0330dc9bb4b6bcb7
76a15d8db611453a08924b936c88b3738dff02f6
fix: use RDC for server action requests (#88129) When a server action triggers a re-render of the underlying page (eg by calling `refresh()`), cached data that was part of the Resume Data Cache (RDC) was not provided to the server action handler, and so those parts of the UI would update with new data. A subsequent re...
[ { "path": "packages/next/errors.json", "patch": "@@ -976,5 +976,6 @@\n \"975\": \"Failed to find Server Action. This request might be from an older or newer deployment.\\\\nRead more: https://nextjs.org/docs/messages/failed-to-find-server-action\",\n \"976\": \"Decompressed resume data cache exceeded %s...
2026-01-12T17:17:44
nodejs/node
2b4a09ef8bd8945268b0ad6d03caae8f7a1a8082
31aacfa67cecf89d12062a3bacc644d6af7c9e30
build: fix OpenSSL version detection Fix OpenSSL version detection in `configure.py` when `pkg-config` is used to configure building with a shared OpenSSL library. PR-URL: https://github.com/nodejs/node/pull/59353 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-B...
[ { "path": "configure.py", "patch": "@@ -1205,7 +1205,7 @@ def get_gas_version(cc):\n warn(f'Could not recognize `gas`: {gas_ret}')\n return '0.0'\n \n-def get_openssl_version():\n+def get_openssl_version(o):\n \"\"\"Parse OpenSSL version from opensslv.h header file.\n \n Returns the version as a num...
2025-08-06T19:47:18
electron/electron
45a049428795402cefa4799bb04567db65da4429
521108e2a52a9449323e7493355ae9b32523f105
fix: remove obsoleted `--inspect-brk` logic (#46560) fix: remove obsoleted --inspect-brk logic
[ { "path": "lib/browser/init.ts", "patch": "@@ -218,7 +218,6 @@ if (packagePath) {\n } else {\n // Call appCodeLoaded before just for safety, it doesn't matter here as _load is synchronous\n appCodeLoaded!();\n- process._firstFileName = Module._resolveFilename(path.join(packagePath, mainStartupS...
2025-04-09T13:35:40
facebook/react
7ff4d057b69683dd6c512c7940dbadd10788306f
08075929f2d5eea319418ea379773bb7276ff940
[DevTools] feat: show changed hooks names in the Profiler tab (#31398) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pul...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/Components.js", "patch": "@@ -19,7 +19,6 @@ import {\n } from 'react-devtools-shared/src/storage';\n import InspectedElementErrorBoundary from './InspectedElementErrorBoundary';\n import InspectedElement from './InspectedElement';\n-imp...
2025-04-15T10:10:00
vercel/next.js
76a15d8db611453a08924b936c88b3738dff02f6
17acc812237db6eee64a13844beb45a11a5758b4
fix(turbo-tasks-backend): use correct TaskDataCategory for is_immutable check (#88331) ## Fix task immutability check by using correct TaskDataCategory ### What? This PR fixes a bug in the task immutability check by ensuring we use `TaskDataCategory::Meta` instead of `TaskDataCategory::Data` when checking if dependen...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -2133,7 +2133,7 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n if let Some(dependencies) = task_dependencies_for_immutable\n && dependencies\n .iter()\n- .all(|&task...
2026-01-12T16:56:12
nodejs/node
31aacfa67cecf89d12062a3bacc644d6af7c9e30
134625d76139b4b3630d5baaf2efccae01ede564
meta: clarify pr objection process further Based on some recent confusion around the objection process for PRs, this commit adds some additional clarification to the collaborator guide. Specifically, it clarifies that: * Objections must be made in the PR itself * All objections are considered equal... no special a...
[ { "path": "doc/contributing/collaborator-guide.md", "patch": "@@ -154,10 +154,13 @@ requirements. If a pull request meets all requirements except the\n \n Collaborators can object to a pull request by using the \"Request\n Changes\" GitHub feature. Dissent comments alone don't constitute an\n-objection. Any...
2025-08-06T14:30:52
electron/electron
521108e2a52a9449323e7493355ae9b32523f105
93a51cc7560939b011224c6fdfea02ffea12969b
fix: crash on parent window close and focur/blur (#46559)
[ { "path": "shell/browser/api/electron_api_browser_window.cc", "patch": "@@ -219,14 +219,14 @@ void BrowserWindow::CloseImmediately() {\n }\n \n void BrowserWindow::Focus() {\n- if (api_web_contents_->IsOffScreen())\n+ if (api_web_contents_ && api_web_contents_->IsOffScreen())\n FocusOnWebView();\n e...
2025-04-09T13:35:30
facebook/react
5e9b48778c83dd8b2c63966db3e23abefebe910c
c44e4a250557e53b120e40db8b01fb5fd93f1e35
[RN] Map Fabric priorities to reconciler priorities correctly (#32847) ## Summary This fixes how we map priorities between Fabric and the React reconciler. At the moment, we're only considering default and discrete priorities, when there's a larger range of priorities available. In Fabric, we'll test supporting addi...
[ { "path": "packages/react-native-renderer/src/ReactFiberConfigFabric.js", "patch": "@@ -18,6 +18,8 @@ import {\n NoEventPriority,\n DefaultEventPriority,\n DiscreteEventPriority,\n+ ContinuousEventPriority,\n+ IdleEventPriority,\n type EventPriority,\n } from 'react-reconciler/src/ReactEventPriori...
2025-04-10T16:35:15
golang/go
0c69e7734308f36de7acbeda4cabced8018c04e3
da92168ec8cedf08603fd77929a4b9d7e3183275
Revert "[dev.simd] internal/runtime/gc: add simd package based greentea kernels" This reverts CL 719520. Reason for revert: Naming is confusing. Also, this has a semantic merge conflict with CL 722040. Let's revert, fix the naming and conflict, and do it again. Change-Id: I0dc0c7c58470d63d48a4f69adb38c18f95db0beb Re...
[ { "path": "src/cmd/compile/internal/ssa/stmtlines_test.go", "patch": "@@ -140,7 +140,7 @@ func TestStmtLines(t *testing.T) {\n \tvar m float64\n \tswitch runtime.GOARCH {\n \tcase \"amd64\":\n-\t\tm = 0.0112 // > 98.88% obtained on amd64, no backsliding\n+\t\tm = 0.0111 // > 98.89% obtained on amd64, no bac...
2025-11-22T02:17:10
nodejs/node
134625d76139b4b3630d5baaf2efccae01ede564
09c906ade8783d8775a7dd3d2a117e5137fefc16
doc: fix grammar in global dispatcher usage Add missing preposition "by" to clarify how to change the global dispatcher. PR-URL: https://github.com/nodejs/node/pull/59344 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/globals.md", "patch": "@@ -537,7 +537,7 @@ The dispatcher must be compatible with `undici`'s\n fetch(url, { dispatcher: new MyAgent() });\n ```\n \n-It is possible to change the global dispatcher in Node.js installing `undici` and using\n+It is possible to change the global dispatcher in ...
2025-08-06T03:53:35
vercel/next.js
9857ed1e091cc39eefe2f756ee4ea16789f5ded0
9c5e3da9daace868479bd8eb5c0aa09414c1452a
fix: support TypeScript `noUncheckedSideEffectImports` for CSS imports (#88199) ## Summary This PR adds type declarations for plain CSS side-effect imports (`*.css`, `*.sass`, `*.scss`) to support TypeScript 5.6's `noUncheckedSideEffectImports` option. ### What? Added empty module declarations for non-module CSS im...
[ { "path": "packages/next/types/global.d.ts", "patch": "@@ -39,6 +39,13 @@ declare module '*.module.scss' {\n export default classes\n }\n \n+// CSS side-effect imports (non-modules)\n+// These are needed for `noUncheckedSideEffectImports` support\n+// See: https://www.typescriptlang.org/tsconfig/#noUnchec...
2026-01-12T13:15:33
facebook/react
336614679600af371b06371c0fbdd31fd9838231
365c031fd2354e94248ed9390f13fe2975b994f6
Fix `Failed to execute 'measure' on 'Performance'` error (#32823) When `startTime` still has its initial value of `-1.1` we must not call `logComponentMount`. This can occur when rendering a `'next/dynamic'` component with `{ssr: false}` in a client component, for example. Unfortunately, I didn't manage to reproduce t...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -3756,7 +3756,7 @@ function commitPassiveMountOnFiber(\n ) {\n // Log the reappear in the render phase.\n const startTime = ((finishedWork.actualStartTime: any): number);\n- if (endTi...
2025-04-07T14:13:34
electron/electron
1a6de10da85dba77ebc1e52570cc028af2d9de38
b1731407bc595084d9982df96a8e4a93afd0be44
fix: `assert.ok` in the renderer process (#46528) fix: assert.ok in the renderer process
[ { "path": "patches/node/feat_add_oom_error_callback_in_node_isolatesettings.patch", "patch": "@@ -13,7 +13,7 @@ To fix this issue, provide the interface oom_error_callback to enable a\n custom oom error callback set from Electron.\n \n diff --git a/src/api/environment.cc b/src/api/environment.cc\n-index 32f...
2025-04-08T12:09:54
nodejs/node
b8e643259ee1baccb36518221c3215984e003eb4
f7c2a7ed4a888aad50c9075c8aec531a27b94c22
zlib: add dictionary support to zstdCompress and zstdDecompress Adds optional dictionary support to zlib’s zstdCompress and zstdDecompress APIs. This enables better compression ratios when the dictionary matches expected input structure or content patterns. The implementation allows passing a `dictionary` buffer thro...
[ { "path": "doc/api/zlib.md", "patch": "@@ -1069,6 +1069,9 @@ Each Zstd-based class takes an `options` object. All options are optional.\n * `maxOutputLength` {integer} Limits output size when using\n [convenience methods][]. **Default:** [`buffer.kMaxLength`][]\n * `info` {boolean} If `true`, returns an o...
2025-08-04T16:13:57
golang/go
e88be8a128d167c5ab91eabc998ab364370c702e
a318843a2ad17d853b13599a73b2912a13474490
runtime: fix stale comment for mheap/malloc mheap use pageAlloc to manage free/scav address space instead of using free/scav treap. The comment on mheap states mheap uses treaps. Update the comment to reflect the use of pageAlloc. In the fallback code when sizeSpecializedMalloc is enabled, heapBitsInSpan is false. Up...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1169,7 +1169,7 @@ func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer {\n \tvar x unsafe.Pointer\n \tvar elemsize uintptr\n \tif sizeSpecializedMallocEnabled {\n-\t\t// we know that heapBitsInSpan is true.\n+\t\t// we know that heapBitsInSpa...
2025-11-21T03:14:46
vercel/next.js
e99a92bbada5c2811b00f2abc0795b7171ee47fb
f814b8b51a8207d28640348dc347f18ad0dc64c8
[test] Remove rogue debug log (#88423) Logging the work unit store caused the following runtime error under some circumstances: ``` TypeError: Cannot read private member #headersList from an object whose class did not declare it ```
[ { "path": "test/e2e/app-dir/segment-cache/prefetch-runtime/app/(default)/errors/sync-io-after-runtime-api/dynamic-params/[id]/page.tsx", "patch": "@@ -1,6 +1,5 @@\n import { Suspense } from 'react'\n import { DebugRenderKind } from '../../../../../shared'\n-import { workUnitAsyncStorage } from 'next/dist/se...
2026-01-12T12:59:37
facebook/react
365c031fd2354e94248ed9390f13fe2975b994f6
a9d63f3f9798355cd814237b5f5391d6adbfa750
Workaround against display: inline bug in Safari (#32822) Safari has a bug where if you put a block element inside an inline element and the inline element has a `view-transition-name` assigned it finds it as duplicate names. https://bugs.webkit.org/show_bug.cgi?id=290923 This adds a warning if we detect this scenar...
[ { "path": "fixtures/view-transition/src/components/Page.js", "patch": "@@ -113,7 +113,9 @@ export default function Page({url, navigate}) {\n \n const exclamation = (\n <ViewTransition name=\"exclamation\" onShare={onTransition}>\n- <span>!</span>\n+ <span>\n+ <div>!</div>\n+ </sp...
2025-04-07T14:08:07
electron/electron
85dce12be3c4fb45dee53cd2ff13746aebf6887e
a6875c732cbd5be58bc00291ba5dc65b3a89292b
refactor: migrate to `View::AddChildView(std::unique_ptr<ui::View*>)` (#46474) * refactor: use AddChildView(std::unique_ptr<View>) in OpaqueFrameView::CreateButton() Xref: https://issues.chromium.org/issues/40485510 * refactor: use AddChildView(std::unique_ptr<View>) in MenuBar::RebuildChildren() * refactor: use Ad...
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -323,7 +323,7 @@ static bool FromV8(v8::Isolate* isolate,\n root_view->RemoveChildView(content_view());\n \n set_content_view(view);\n- root_view->AddChildView(content_view());\n+ root_view->AddChildViewRaw(content_view());\n \n root_vie...
2025-04-07T14:20:46
nodejs/node
99c80e3a45eb8ac25c904dc699e9289bfabbd02f
ebfc28a037bc880070928efc4a3db1ca8e6b064e
quic: update the guard to check openssl version Since we need to be able to use the openssl adapter provided by the ngtcp2 library, and because that adapter does not include any compile guards to ensure that OpenSSL 3.5 is being used and that the APIs are actually available, we need to add a compile time check for the...
[ { "path": "configure.py", "patch": "@@ -1205,6 +1205,65 @@ def get_gas_version(cc):\n warn(f'Could not recognize `gas`: {gas_ret}')\n return '0.0'\n \n+def get_openssl_version():\n+ \"\"\"Parse OpenSSL version from opensslv.h header file.\n+\n+ Returns the version as a number matching OPENSSL_VERSION_...
2025-07-27T21:34:12
vercel/next.js
f8553f86bfd11646459ad4555f292572f661602f
5746e3bb14e72db37b4dc75d37137af8ed7c0310
ci: Fix retry comments in workflow files (#88412) The retry comments for e2e tests and deploy tests were off by one.
[ { "path": ".github/workflows/retry_deploy_test.yml", "patch": "@@ -15,7 +15,7 @@ permissions:\n jobs:\n retry-on-failure:\n name: retry failed jobs\n- # Retry the test-e2e-deploy-release workflow up to 2 times\n+ # Retry the test-e2e-deploy-release workflow once\n if: >-\n ${{\n ...
2026-01-12T10:53:27
golang/go
437323ef7b933255c5c7fbb0775019e95f19b05e
1993dca4002267b772566d6c8055c6ace46dfd4f
slices: fix incorrect comment in slices.Insert function documentation The comment previously stated that r[i+len(v)] would equal the value originally at r[i], but it should be the value originally at s[i]. Change-Id: I635ddbdd5dc4da9c06ed426d5542bf969b7fe6dd Reviewed-on: https://go-review.googlesource.com/c/go/+/7226...
[ { "path": "src/slices/slices.go", "patch": "@@ -128,7 +128,7 @@ func ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool {\n // returning the modified slice.\n // The elements at s[i:] are shifted up to make room.\n // In the returned slice r, r[i] == v[0],\n-// and, if i < len(s), r[i+len(v)] == value or...
2025-11-21T02:47:06
facebook/react
a9d63f3f9798355cd814237b5f5391d6adbfa750
6a7650c75c1bc110517bd9b3eefdc66eadbb9cbf
fix: incorrect type in getTypeSymbol (#32825) `getTypeSymbol` also returns string
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -248,7 +248,7 @@ function createVirtualInstance(\n type DevToolsInstance = FiberInstance | VirtualInstance | FilteredFiberInstance;\n \n type getDisplayNameForFiberType = (fiber: Fiber) => string | null;\n-type getTypeSym...
2025-04-07T09:51:28
electron/electron
c0fdf09f283ba927c8913a60aa9b033ee96cfccf
41d8f90d6864174634dfbbb8285d605e4000a9a9
perf: on Windows, make `Archive::HeaderIntegrity()` faster (#46509) * perf: do not clone the map each time we call Archive::HeaderIntegrity() * perf: use absl::flat_hash_map for the integrity cache * perf: do not clone the JSON payload string * perf: preallocate capacity for the integrity cache * perf: use move va...
[ { "path": "shell/common/asar/archive_win.cc", "patch": "@@ -6,9 +6,10 @@\n #include \"shell/common/asar/archive.h\"\n \n #include <algorithm>\n-#include <sstream>\n+#include <string_view>\n \n #include \"base/base_paths.h\"\n+#include \"base/containers/map_util.h\"\n #include \"base/json/json_reader.h\"\n #...
2025-04-07T09:10:29
nodejs/node
9bc923ac6386a122c1142480cd5115f42aa0bb8f
55b7d2890dc32a445808ff695addb50e1029fd0a
doc: clarify the need of compiler compatible with c++20 Very often someone appear in the #node-core slack channel asking for guidance on this compilation error PR-URL: https://github.com/nodejs/node/pull/59297 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "BUILDING.md", "patch": "@@ -272,6 +272,11 @@ export CXX=g++-12\n make -j4\n ```\n \n+> \\[!IMPORTANT]\n+> If you face a compilation error during this process such as\n+> `error: no matching conversion for functional-style cast from 'unsigned int' to 'TypeIndex'`\n+> Make sure to use a `g++` or `c...
2025-08-02T18:23:28
vercel/next.js
ec11c8622f58e3746b04edffcebcc5206718e418
38ac035394d6f834f50a442182c6fe2b39487c61
docs: fix CSP example to only include unsafe-eval in development (#88407) ## What Fixes the CSP documentation "Without Nonces" example to only include `'unsafe-eval'` in development mode. ## Why The example was showing `'unsafe-eval'` without a development check, which would cause it to be shipped to production. Th...
[ { "path": "docs/01-app/02-guides/content-security-policy.mdx", "patch": "@@ -415,9 +415,11 @@ Consider nonces when:\n For applications that do not require nonces, you can set the CSP header directly in your [`next.config.js`](/docs/app/api-reference/config/next-config-js) file:\n \n ```js filename=\"next.co...
2026-01-12T09:13:16
golang/go
337f7b1f5d18e8b2469a37174c24baced4c23801
3c26aef8fba0ef1f4d26d802ba037b43671924e9
cmd/go: update default go directive in mod or work init This commit updates the default go directive when initializing a new module. The current logic is to use the latest version supported by the toolchain. This behavior is simple, predictable, and importantly, it can work while completely offline (i.e., no interne...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -29,6 +29,7 @@ import (\n \t\"cmd/go/internal/lockedfile\"\n \t\"cmd/go/internal/modfetch\"\n \t\"cmd/go/internal/search\"\n+\tigover \"internal/gover\"\n \n \t\"golang.org/x/mod/modfile\"\n \t\"golang.org/x/mod/module\"\n@@ -826,7 +827,7 @@ func...
2025-11-13T21:38:20
facebook/react
6a7650c75c1bc110517bd9b3eefdc66eadbb9cbf
efb22d8850382c3b53c1b2b8d22036d7e6cc9488
[Bugfix] Infinite uDV loop in popstate event (#32821) Found a bug that occurs during a specific combination of very subtle implementation details. It occurs sometimes (not always) when 1) a transition is scheduled during a popstate event, and 2) as a result, a new value is passed to an already-mounted useDeferredValu...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFiberAsync-test.js", "patch": "@@ -776,6 +776,74 @@ describe('ReactDOMFiberAsync', () => {\n });\n });\n \n+ it('regression: useDeferredValue in popState leads to infinite deferral loop', async () => {\n+ // At the time this test was written, it ...
2025-04-05T04:49:28
electron/electron
ac18decc566c9641475c0c677bf2e60758c2f08a
052da50aeb0d56ae8f4c7a749bc37d5a985fe71d
revert: allow NSMenuItems to be disabled (#46502) Revert "fix: allow NSMenuItems to be disabled (#46307)" This reverts commit ac616ef41d9379ead79130d6da071cad220b21d2.
[ { "path": "shell/browser/ui/cocoa/electron_menu_controller.mm", "patch": "@@ -320,10 +320,6 @@ - (NSMenuItem*)makeMenuItemForIndex:(NSInteger)index\n NSMenuItem* item = [[NSMenuItem alloc] initWithTitle:label\n action:@selector(itemSelected:)\n ...
2025-04-07T01:42:05
rust-lang/rust
5030e8119f40ea31e1f2c78719baf39b02d3dd76
f441cc675bfa7bc98630a21f8f9b3a63d2e19c20
rename min/maxnum intrinsics to min/maximum_number and fix their LLVM lowering
[ { "path": "src/intrinsics/mod.rs", "patch": "@@ -1266,7 +1266,7 @@ fn codegen_regular_intrinsic_call<'tcx>(\n ret.write_cvalue(fx, val);\n }\n \n- sym::minnumf16 => {\n+ sym::minimum_number_nsz_f16 => {\n intrinsic_args!(fx, args => (a, b); intrinsic);\n ...
2026-03-03T11:35:41
nodejs/node
4a06d470ef71637d31a296ea0bdaa1f78ae197ea
8a87ba031b56bb115043240a740246a88c881195
test: add known issue test for fs.cpSync dereference bug Refs: https://github.com/nodejs/node/issues/58939 PR-URL: https://github.com/nodejs/node/pull/58941 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/known_issues/test-fs-cp-sync-dereference.js", "patch": "@@ -0,0 +1,39 @@\n+'use strict';\n+\n+// Refs: https://github.com/nodejs/node/issues/58939\n+//\n+// The cpSync function is not correctly handling the `dereference` option.\n+// In this test, both the cp and cpSync functions are attempt...
2025-08-02T14:23:15
vercel/next.js
78c102f2e55ecfe3fe7fbccd48f5a9c2119af715
774b78a0972402e87b71ea485d877df8d5007c69
fix: skip stats-aggregate job for docs-only changes (#88330) ## What? Adds the docs-only change check to the `stats-aggregate` job. ## Why? The `stats` job already skips work for docs-only changes using `scripts/run-for-change.mjs`, but the `stats-aggregate` job was missing this check. This caused unnecessary job r...
[ { "path": ".github/workflows/pull_request_stats.yml", "patch": "@@ -95,25 +95,33 @@ jobs:\n steps:\n - uses: actions/checkout@v4\n with:\n- fetch-depth: 1\n+ fetch-depth: 25\n+\n+ - name: Check non-docs only change\n+ run: echo \"DOCS_CHANGE<<EOF\" >> $GITHUB_...
2026-01-11T21:03:59
golang/go
31aa9f800bc8d4089e05b8726b599abe04a486a3
d68aec8db1bc3c167d2f0e5fdee8c1346ee35418
crypto/tls: use inner hello for earlyData when using QUIC and ECH I don't think we have good QUIC ECH tests. BoGo has some for this, but I'm not sure how easy it would be to enable those for QUIC. Fixes #76283 Change-Id: I0ffa535fd89a624b7f9bfd73441ce2a1683e0549 Reviewed-on: https://go-review.googlesource.com/c/go/+...
[ { "path": "src/crypto/tls/handshake_client.go", "patch": "@@ -308,7 +308,11 @@ func (c *Conn) clientHandshake(ctx context.Context) (err error) {\n \tif hello.earlyData {\n \t\tsuite := cipherSuiteTLS13ByID(session.cipherSuite)\n \t\ttranscript := suite.hash.New()\n-\t\tif err := transcriptMsg(hello, transcr...
2025-11-17T00:09:16
facebook/react
efb22d8850382c3b53c1b2b8d22036d7e6cc9488
540cd65252ced9f970fb97d5f5b7f029bd7cac83
Add Suspensey Images behind a Flag (#32819) We've known we've wanted this for many years and most of the implementation was already done for Suspensey CSS. This waits to commit until images have decoded by default or up to 500ms timeout (same as suspensey fonts). It only applies to Transitions, Retries (Suspense), Ge...
[ { "path": "fixtures/view-transition/src/components/Page.js", "patch": "@@ -41,6 +41,12 @@ function Component() {\n transitions['enter-slide-right'] + ' ' + transitions['exit-slide-left']\n }>\n <p className=\"roboto-font\">Slide In from Left, Slide Out to Right</p>\n+ <p>\n+ ...
2025-04-04T18:54:05
electron/electron
c2ae4afb8f98c0180e9e67f8f1c7cf76cb88ce9c
e81e3acd2dcaf4f0a77c5fae87d1a1f88d39e29a
fix: destroy parent port backend when JS env exits (#46437) * fix: destroy parent port backend when JS env exits * fix: close parent port before destroying --------- Co-authored-by: deepak1556 <hop2deep@gmail.com>
[ { "path": "shell/services/node/node_service.cc", "patch": "@@ -96,6 +96,7 @@ NodeService::NodeService(\n NodeService::~NodeService() {\n if (!node_env_stopped_) {\n node_env_->set_trace_sync_io(false);\n+ ParentPort::GetInstance()->Close();\n js_env_->DestroyMicrotasksRunner();\n node::Stop...
2025-04-04T16:02:54
rust-lang/rust
c7220f423b335974509b603b8e1dcbb08a92184d
79d2026ae87386ccbe8fc729d130e5e298959a48
rename min/maxnum intrinsics to min/maximum_number and fix their LLVM lowering
[ { "path": "compiler/rustc_codegen_cranelift/src/intrinsics/mod.rs", "patch": "@@ -1266,7 +1266,7 @@ fn codegen_regular_intrinsic_call<'tcx>(\n ret.write_cvalue(fx, val);\n }\n \n- sym::minnumf16 => {\n+ sym::minimum_number_nsz_f16 => {\n intrinsic_args!(fx, args...
2026-03-03T11:35:41
nodejs/node
fa458d2feec2e3510f10b77b936ac0acd7ab1672
e4b748a9cc0f7ceeb3a4299da68e42c8c83d2743
test: deflake stream-readable-to-web test Co-authored-by: Luigi Pinca <luigipinca@gmail.com> PR-URL: https://github.com/nodejs/node/pull/58948 Fixes: https://github.com/nodejs/node/issues/58949 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Mattias Buelens <mattias@buelens.com> Reviewed-By: Juan J...
[ { "path": "test/parallel/test-stream-readable-to-web.js", "patch": "@@ -1,62 +0,0 @@\n-'use strict';\n-const common = require('../common');\n-if (!common.hasCrypto) { common.skip('missing crypto'); }\n-\n-const { Readable } = require('stream');\n-const process = require('process');\n-const { randomBytes } =...
2025-08-02T04:25:35
vercel/next.js
77c69a7115cf0befcb0b3ad0e97419ff9e8989fe
6caeccb1fea08e14bfd07456c18abb2cf90519ea
Turbopack: improve error message for incompatible swc plugins (#86346) Before: ``` Module not found: Can't resolve 'next/dist/esm/build/templates/helpers' failed to analyze ecmascript module '[project]/node_modules/.pnpm/next@file+..+next-repo-2bf56e024dbccc85257a8c308492f2375d690b206153b02d3bea2029707d4c38+packa_t...
[ { "path": "Cargo.lock", "patch": "@@ -9903,6 +9903,7 @@ dependencies = [\n \"anyhow\",\n \"async-trait\",\n \"bincode 2.0.1\",\n+ \"either\",\n \"indexmap 2.9.0\",\n \"rustc-hash 2.1.1\",\n \"serde\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "crates/next...
2026-01-09T19:57:40
golang/go
6aeacdff3889bc743f2baf8e8239b8cb83afd807
9570036ca5a95bff4c6768288a7c1db68277b9c0
cmd/go: support sha1 repos when git default is sha256 When git is recent enough (beyond 2.29), always set the --object-format flag. This fixes repo cloning when users have set the git configuration init.defaultObjectFormat to sha256. Git is planning[1] to switch the default hash function to sha256 with the 3.0 relea...
[ { "path": "src/cmd/go/internal/modfetch/codehost/git.go", "patch": "@@ -17,6 +17,7 @@ import (\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n+\t\"regexp\"\n \t\"runtime\"\n \t\"slices\"\n \t\"sort\"\n@@ -91,9 +92,21 @@ func newGitRepo(ctx context.Context, remote string, local bool) (Repo, error) {\n \t\...
2025-11-14T02:16:43
facebook/react
c0f08ae74a46686f5718e9e6c511d27419fd632c
b10cb4c01ec1ae41b67422239d919f261fefa7d1
Fix Bugs Measuring Performance Track for Effects (#32815) This fixes two bugs with commit phase effect tracking. I missed, or messed up the rebase for, deletion effects when a subtree was deleted and for passive disconnects when a subtree was hidden. The other bug is that when I started using self time (componentEff...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -119,6 +119,8 @@ import {\n resetComponentEffectTimers,\n pushComponentEffectStart,\n popComponentEffectStart,\n+ pushComponentEffectDuration,\n+ popComponentEffectDuration,\n pushComponentEffectErrors,\n popComponen...
2025-04-04T03:33:14
nodejs/node
7f37d39a876d39a8bf7aea17e3bcec8c21e4df04
c7d7ec7cda56b7776797cbdef3d4497fc98e8440
node-api: reword "implementation in an alternative VM" as implementable PR-URL: https://github.com/nodejs/node/pull/59036 Fixes: https://github.com/nodejs/node/issues/58852 Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
[ { "path": "doc/contributing/adding-new-napi-api.md", "patch": "@@ -37,7 +37,7 @@ please follow these principles and guidelines:\n \n 2. **Review and approval**\n * A new API addition **must** be signed off by at least two Node-API team members.\n- * **Should** be implemented in at least one other VM im...
2025-08-01T16:58:49
electron/electron
9c019b6147e88dc14959cdb8e555de0fe52f51a4
0a5da83a1b8bb9316f4b171a0da72587080638d1
chore: bump chromium to 136.0.7095.0 (main) (#46118) * chore: bump chromium in DEPS to 136.0.7076.0 * chore: bump chromium in DEPS to 136.0.7077.0 * 6368856: Migrate absl variant.h and utility.h in content (part 2/2) | https://chromium-review.googlesource.com/c/chromium/src/+/6368856 * 6356528: Clean up LegacyRende...
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -20,3 +20,4 @@ runs:\n cp \"C:\\Python311\\python.exe\" \"C:\\Python311\\python3.exe\"\n fi\n echo \"$HOME/.electron_build_tools/third_party/depot_tools\" >> $GITHUB_PATH\n+ echo \"$HOME/.electron_build_tools/t...
2025-04-04T00:02:49
vercel/next.js
6caeccb1fea08e14bfd07456c18abb2cf90519ea
2b04d2eecd5ac482157e8f69e781424d9d00b8e0
Time logs: Show full millisecond instead of 1 decimal (#88313) ## Fix: Remove unnecessary decimal place in millisecond duration formatting ### What Fixed `durationToString` to display whole milliseconds (e.g., "193ms") instead of showing a redundant decimal place (e.g., "193.0ms"). ### Why The "Ready in X" message...
[ { "path": "packages/next/src/build/duration-to-string.ts", "patch": "@@ -21,7 +21,7 @@ const MILLISECONDS_THRESHOLD_NANOSECONDS = 2_000_000 // 2 milliseconds in nanose\n * - >= 2 minutes: show in minutes with 1 decimal place (e.g., \"2.5min\")\n * - >= 40 seconds: show in whole seconds (e.g., \"45s\")\n ...
2026-01-09T17:57:28
golang/go
155efbbeeb532473c0ac3cc93f9a8a7597322157
6f16669e346038c983ae33025ca02dccd78b6f20
crypto/sha3: make the zero value of SHA3 useable Fixes #75154 Change-Id: I860ab0b4bd5d64e1f58aa5dfbab19d77e2925430 Reviewed-on: https://go-review.googlesource.com/c/go/+/714120 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Mark Freeman <markfreeman@google.com> ...
[ { "path": "src/crypto/sha3/sha3.go", "patch": "@@ -97,6 +97,7 @@ func sumSHAKE256(out, data []byte, length int) []byte {\n }\n \n // SHA3 is an instance of a SHA-3 hash. It implements [hash.Hash].\n+// The zero value is a usable SHA3-256 hash.\n type SHA3 struct {\n \ts sha3.Digest\n }\n@@ -126,43 +127,57 @...
2025-10-23T09:20:10
facebook/react
040f8286e97eab7aac23a89d5f59967be3bf8f3e
450f8df8865303f14be7ddd7c951f020115aa27c
Follow through all the phases when an error happens during snapshotting (#32803) This can happen for example if you have duplicate names in the "old" state. This errors the transition before the updateCallback is invoked so we haven't yet applied mutations etc. This runs through those phases after the error to get us...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1802,6 +1802,12 @@ export function startViewTransition(\n }\n } finally {\n // Continue the reset of the work.\n+ // If the error happened in the snapshot phase before the update callback\n+...
2025-04-02T14:49:44
nodejs/node
5794e644b724c6c6cac02d306d87a4d6b78251e5
5f5f9cb0150ce74a5f03be044e0019f3a3c27bba
fs: fix glob TypeError on restricted dirs When a directory cannot be read due to permission issues, the async version of fs.glob() returns null from readdir(), while the sync version returns an empty array. This causes a TypeError when trying to access the 'length' property of null. PR-URL: https://github.com/nodejs/...
[ { "path": "lib/internal/fs/glob.js", "patch": "@@ -143,7 +143,7 @@ class Cache {\n if (cached) {\n return cached;\n }\n- const promise = PromisePrototypeThen(readdir(path, { __proto__: null, withFileTypes: true }), null, () => null);\n+ const promise = PromisePrototypeThen(readdir(path, ...
2025-08-01T00:06:56
electron/electron
7601af52002a716f211d24f11c757dd5adb1fe3a
e46b0c8ddc73800f816ffec5c072deeaaa876e9e
fix: don't copy 'package.json's out of ASAR file (#46390) New Node.js module resolution system reads `package.json` from imported modules by reading from the file natively in C++ without calling into `fs.readFileSync`. The ASAR FS wrapper code had copied files out into a temporary folder as a workaround, but it is ine...
[ { "path": "lib/node/asar-fs-wrapper.ts", "patch": "@@ -667,10 +667,10 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n return p(pathArgument, options);\n };\n \n- const { readFileSync } = fs;\n- fs.readFileSync = function (pathArgument: string, options: any) {\n- const pathInfo =...
2025-04-03T20:39:53
vercel/next.js
2b04d2eecd5ac482157e8f69e781424d9d00b8e0
77071f90f61d7680f286dfe8e970f5f63cd2417e
Turbopack: make GraphTraversal deterministically calling all nodes before erroring (#88119) ### What? The graph traversal used to early exit when there are errors. This leads to cycles to continuously executing the graph traversal to discover more task one by one. This leads to bad incremental performance.
[ { "path": "turbopack/crates/turbo-tasks/src/graph/control_flow.rs", "patch": "@@ -8,6 +8,4 @@ pub enum VisitControlFlow {\n /// The edge is excluded, and the traversal should not continue on the outgoing edges of the\n /// given node.\n Exclude,\n- /// The traversal should abort and return im...
2026-01-09T16:37:36
golang/go
6f16669e346038c983ae33025ca02dccd78b6f20
121bc3e464b901327a5c138d8a992bb85c440862
database/sql: don't ignore ColumnConverter for unknown input count In the case a sql driver implements the ColumnConverter interface and also returns -1 for NumInputs, indicating an unknown number of input arguments to a query, the previous implementation would ignore the column converter would not be called, leading ...
[ { "path": "src/database/sql/convert.go", "patch": "@@ -55,7 +55,7 @@ func (c ccChecker) CheckNamedValue(nv *driver.NamedValue) error {\n \t// it isn't expecting. The final error will be thrown\n \t// in the argument converter loop.\n \tindex := nv.Ordinal - 1\n-\tif c.want <= index {\n+\tif c.want >= 0 && c...
2024-07-08T16:14:43
facebook/react
deca96520f1e9e804b0e5b0d81563327d9c55521
0b1a9e90c5d5b6a4633c225c9100af69f53752c8
Warn if addTransitionType is called when there are no pending Actions (#32793) Stacked on #32792. It's tricky to associate a specific `addTransitionType` call to a specific `startTransition` call because we don't have `AsyncContext` in browsers yet. However, we can keep track if there are any async transitions runnin...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -2219,6 +2219,11 @@ function handleActionReturnValue<S, P>(\n typeof returnValue.then === 'function'\n ) {\n const thenable = ((returnValue: any): Thenable<Awaited<S>>);\n+ if (__DEV__) {\n+ // Keep track of the num...
2025-04-01T16:10:10
rust-lang/rust
ed15a20647524f82c0f75a4666af002dfcc146d2
687b82e1e13eb8d1d592b86f10d9306e2b9999ab
fix: fill match arms on last comma and empty expr Example --- ```rust fn foo() { match Some(2) { Some(_) => ()$0, } } ``` **Before this PR** Assist not applicable **After this PR** ```rust fn foo() { match Some(2) { Some(_) => (), None => ${1:todo!()},$0 } } ```
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_missing_match_arms.rs", "patch": "@@ -245,14 +245,7 @@ pub(crate) fn add_missing_match_arms(acc: &mut Assists, ctx: &AssistContext<'_>)\n .arms()\n .filter(|arm| {\n if matches!(arm.pat...
2026-03-15T11:45:38
vercel/next.js
a5f8baf4ddd7dffd00355696631fbed1dea6961a
a6f23d8d309d3c0db1bb67fe8f0c3978ffaa7c50
Turbopack: fix task category on reading cells (#88309) ### What? fix the task category
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -835,10 +835,10 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n // Having a task_pair here is not optimal, but otherwise this would lead to a race\n // condition. See below.\n // TO...
2026-01-09T10:05:06
golang/go
121bc3e464b901327a5c138d8a992bb85c440862
b604148c4e8ad61640d12cde40379bc3c137d8a6
runtime/pprof: remove hard-coded sleep in CPU profile reader The CPU profiler reader goroutine has a hard-coded 100ms sleep between reads of the CPU profile sample buffer. This is done because waking up the CPU profile reader is not signal-safe on some platforms. As a consequence, stopping the profiler takes 200ms (on...
[ { "path": "src/runtime/pprof/pprof.go", "patch": "@@ -924,7 +924,10 @@ func profileWriter(w io.Writer) {\n \tb := newProfileBuilder(w)\n \tvar err error\n \tfor {\n-\t\ttime.Sleep(100 * time.Millisecond)\n+\t\tif runtime.GOOS == \"darwin\" || runtime.GOOS == \"ios\" {\n+\t\t\t// see runtime_pprof_readProfil...
2025-11-21T16:01:29
nodejs/node
d9fe28bd6b7836accff5a174ef76f7340bf5e600
9dbbf58cf193314c97b81714c725b6267694087c
doc: fix `CHANGELOG.md` version listing PR-URL: https://github.com/nodejs/node/pull/59299 Reviewed-By: Ruy Adorno <ruy@vlt.sh> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "CHANGELOG.md", "patch": "@@ -39,6 +39,41 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.4.1\">24.4.1</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V24.md#24.4.0\">24.4.0</a><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V24.md#24.3.0\">24.3.0<...
2025-07-31T15:24:02
rust-lang/rust
7ec77fd4d5cb035b81a8477c50763c727ceb09c1
e0a8361373c88bd791b5b1335c6cbf83cd68e4d5
Fix invalid suggestion on `for-loops-over-fallibles`
[ { "path": "compiler/rustc_lint/src/for_loops_over_fallibles.rs", "patch": "@@ -77,6 +77,8 @@ impl<'tcx> LateLintPass<'tcx> for ForLoopsOverFallibles {\n };\n \n let sub = if let Some(recv) = extract_iterator_next_call(cx, arg)\n+ && recv.span.can_be_used_for_suggestions()\n+ ...
2026-03-15T11:29:39
facebook/react
b286430c8a585dc2e2e3cc023e7c455ec2b34ab7
d3b8ff6e589bcacfd1c9b0aa48c42fd1c93001c1
Add startGestureTransition API (#32785) Stacked on #32783. This will replace [the `useSwipeTransition` API](https://github.com/facebook/react/pull/32373). Instead, of a special Hook, you can make updates to `useOptimistic` Hooks within the `startGestureTransition` scope. ``` import {unstable_startGestureTransition a...
[ { "path": "fixtures/view-transition/src/components/Page.js", "patch": "@@ -1,13 +1,14 @@\n import React, {\n unstable_ViewTransition as ViewTransition,\n unstable_Activity as Activity,\n- unstable_useSwipeTransition as useSwipeTransition,\n useLayoutEffect,\n useEffect,\n useState,\n useId,\n+ ...
2025-04-01T00:05:50
electron/electron
e46b0c8ddc73800f816ffec5c072deeaaa876e9e
0e3246e20d709ddfdc4a1820278068d771f1e9d7
fix: gin_helper::Promise in GPUInfoManager must be destroyed before destroying Node/V8 (#46434) * fix: gin_helper::Promise in GPUInfoManager must be destroyed before destroying Node/V8 * fix: use CleanedUpAtExit to control the lifetime of GPUInfoManager
[ { "path": "shell/browser/api/gpuinfo_manager.cc", "patch": "@@ -17,7 +17,9 @@\n namespace electron {\n \n GPUInfoManager* GPUInfoManager::GetInstance() {\n- return base::Singleton<GPUInfoManager>::get();\n+ // will be deleted by CleanedUpAtExit::DoCleanup\n+ static GPUInfoManager* instance = new GPUInfoM...
2025-04-03T17:12:12
vercel/next.js
a6f23d8d309d3c0db1bb67fe8f0c3978ffaa7c50
10213b360b665a0a5ea034d6340c3db7aee7f095
Turbopack: use correct flags in tests (#88307) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ###...
[ { "path": "turbopack/crates/turbopack-tests/tests/execution.rs", "patch": "@@ -521,7 +521,7 @@ async fn run_test_operation(prepared_test: ResolvedVc<PreparedTest>) -> Result<V\n )\n .unused_references(\n options\n- .remove_unused_exports\n+ .remove_unused_imports\n ...
2026-01-09T09:05:22