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
rust-lang/rust
0aee25f826177c3f507bcab4d36c88896bdd76a8
166f219169267be776fd6200f5825568cd20dc40
fix: offer on empty else block for 'convert_let_else_to_match' When editing, there are situations where the else block has not been filled in yet but needs to be converted Example --- ```rust fn main() { let Ok(x) = f() else$0 {}; } ``` **Before this PR** Assist not applicable **After this PR** ```rust fn mai...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_let_else_to_match.rs", "patch": "@@ -32,8 +32,10 @@ pub(crate) fn convert_let_else_to_match(acc: &mut Assists, ctx: &AssistContext<'\n .or_else(|| ctx.find_token_syntax_at_offset(T![let])?.parent())?;\n let let_stmt = Let...
2026-04-04T13:06:47
golang/go
9ce4f3876e89a43dbd8508cb2762a2e4644dfe84
b3ee07636a1fe4ba5129705fd4692b442cf6b6f0
cmd/compile: keep blank nodes alive in b.loop The current bloop pass implementation skips blank nodes silently. This CL makes it aware of that and keep them alive in temps. Fixes #77654. Change-Id: Iaffa5194ba1f0fe8d7c80a4c8e5c9a65a47bf534 Reviewed-on: https://go-review.googlesource.com/c/go/+/754920 LUCI-TryBot-Res...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -216,11 +216,49 @@ func preserveCallArgs(curFn *ir.Func, call *ir.CallExpr) ir.Node {\n func preserveStmt(curFn *ir.Func, stmt ir.Node) ir.Node {\n \tswitch n := stmt.(type) {\n \tcase *ir.AssignStmt:\n+\t\t// If the left hand side is blank, ...
2026-03-12T20:56:24
nodejs/node
d0e75fd65b19cf0629da0a1ff0993cb91bc65113
b864049f024860556fb4ee70d0dcb1af3b4d3201
doc: fix broken links of net.md PR-URL: https://github.com/nodejs/node/pull/61673 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gma...
[ { "path": "doc/api/net.md", "patch": "@@ -695,7 +695,7 @@ added:\n \n * Type: {boolean}\n \n-Set this property to `true` to begin closing connections once the number of connections reaches the \\[`server.maxConnections`]\\[] threshold. This setting is only effective in cluster mode.\n+Set this property to `...
2026-02-09T15:32:50
vercel/next.js
5dd48e3598b1d70188e7af5828ea724aa3eb8203
9bec0cce145116cb75788b1e4c1db5e8e8435ec0
Add `unstable_dynamicStaleTime` route segment config (#91437) ## Background Next.js has an existing global config, `experimental.staleTimes.dynamic`, that controls how long the client-side router cache retains data from dynamic navigation responses. By default this is 0 — meaning dynamic data is always refetched on e...
[ { "path": "packages/next/errors.json", "patch": "@@ -1133,5 +1133,7 @@\n \"1132\": \"Route %s used \\\\`draftMode()\\\\` inside \\\\`generateStaticParams\\\\`. This is not supported because \\\\`generateStaticParams\\\\` runs at build time without an HTTP request. Read more: https://nextjs.org/docs/messag...
2026-03-16T19:38:17
facebook/react
986323f8c65927490036183357d644974a14b8a3
8f8b336734d7c807f5aa11b0f31540e63302d789
[Fiber] SuspenseList with "hidden" tail row should "catch" suspense (#35042) Normally if you suspend in a SuspenseList row above a Suspense boundary in that row, it'll suspend the parent. Which can itself delay the commit or resuspend a parent boundary. That's because SuspenseList mostly just coordinates the state of ...
[ { "path": "packages/react-reconciler/src/ReactFiberBeginWork.js", "patch": "@@ -3397,6 +3397,13 @@ function updateSuspenseListComponent(\n \n let suspenseContext: SuspenseContext = suspenseStackCursor.current;\n \n+ if (workInProgress.flags & DidCapture) {\n+ // This is the second pass after having su...
2025-11-05T03:11:33
electron/electron
b9a09acff36d268fd4ade597be2d6ff8a051d59d
fd9bf54243f68083ce5716ddc5c8cb1032ae9f1d
docs: mark "Show hidden files" file dialog setting as deprecated on Linux (#46926) * fix: don't overwrite "Show hidden files" setting on Linux/GTK * docs: deprecate showHiddenFiles property in dialogs on Linux * docs: mark Electron 42 as the removal date for this feature --------- Co-authored-by: Charles Kerr <cha...
[ { "path": "docs/api/dialog.md", "patch": "@@ -30,7 +30,7 @@ The `dialog` module has the following methods:\n * `openFile` - Allow files to be selected.\n * `openDirectory` - Allow directories to be selected.\n * `multiSelections` - Allow multiple paths to be selected.\n- * `showHiddenFiles` -...
2026-02-25T16:05:01
rust-lang/rust
7a6617669b3aa4f7cd90c1cf7ad18d1fb233a389
166f219169267be776fd6200f5825568cd20dc40
fix: offer 'type_mismatch' some fixes inside macro - Supports macro for `add_missing_ok_or_some` and `str_ref_to_owned` Example --- ```rust macro_rules! identity { ($($t:tt)*) => ($($t)*) } identity! { fn test() -> String { "a"$0 } } ``` **Before this PR** Invalid trigger range and edit range **Aft...
[ { "path": "src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/type_mismatch.rs", "patch": "@@ -101,7 +101,7 @@ fn add_missing_ok_or_some(\n ) -> Option<()> {\n let root = ctx.sema.db.parse_or_expand(expr_ptr.file_id);\n let expr = expr_ptr.value.to_node(&root);\n- let expr_range = expr.s...
2026-04-04T12:44:00
golang/go
b3ee07636a1fe4ba5129705fd4692b442cf6b6f0
0dc89195f9aece70476320be3fc9d6d657904056
net/http/internal/http2: drop benchmarks which use synctest Drop a number of low-level benchmarks which use internal test APIs that now use synctest. Synctest and benchmarks don't really mix; we don't necessarily expect bubbled code to perform in the same fashion as unbubbled code. Fixes #78114 Change-Id: I23f0a5d29...
[ { "path": "src/net/http/internal/http2/export_test.go", "patch": "@@ -166,10 +166,6 @@ func SummarizeFrame(f Frame) string {\n \treturn summarizeFrame(f)\n }\n \n-func SetTestHookGetServerConn(t testing.TB, f func(*serverConn)) {\n-\tSetForTest(t, &testHookGetServerConn, f)\n-}\n-\n func init() {\n \ttestHo...
2026-03-12T21:44:28
nodejs/node
b864049f024860556fb4ee70d0dcb1af3b4d3201
a8479a219da6a96b8b1fb18ec0a8e68d3a377cc8
src: fix cjs_lexer external reference registration It needs to be added to the list to actually get registered. PR-URL: https://github.com/nodejs/node/pull/61718 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_external_reference.h", "patch": "@@ -67,6 +67,7 @@ class ExternalReferenceRegistry {\n V(buffer) \\\n V(builtins) \\\n V(cares_wrap) ...
2026-02-09T14:21:34
facebook/react
8f8b336734d7c807f5aa11b0f31540e63302d789
d000261eef6109c332a1880e92836856473f6a39
[eslint] Fix useEffectEvent checks in component syntax (#35041) We were not recording uEE calls in component/hook syntax. Easy fix. Added tests matching function component syntax for component syntax + added one for hooks
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRulesOfHooks-test.js", "patch": "@@ -585,6 +585,29 @@ const allTests = {\n code: normalizeIndent`\n // Valid: useEffectEvent can be called in custom effect hooks configured via ESLint settings\n function MyComponent({ theme ...
2025-11-04T19:59:29
vercel/next.js
9bec0cce145116cb75788b1e4c1db5e8e8435ec0
4f693363363e06cb6f07de001beeb93687ec658e
Avoid `undefined` outer work unit store in `"use cache"` (#91190) The `outerWorkUnitStore` in the public cache context could previously be `undefined`, which was needed when `"use cache"` was called without a `WorkUnitStore` (e.g. inside `generateStaticParams`) and during background revalidation of stale cache entries...
[ { "path": "packages/next/errors.json", "patch": "@@ -1132,5 +1132,6 @@\n \"1131\": \"createServerParamsForRoute should not be called inside generateStaticParams.\",\n \"1132\": \"Route %s used \\\\`draftMode()\\\\` inside \\\\`generateStaticParams\\\\`. This is not supported because \\\\`generateStaticP...
2026-03-16T15:40:16
rust-lang/rust
2ae6c6176e1e058368ff4035281dbce1c8f9f30b
86c839ffb36d0e21405dee5ab38e3f85c5b63699
float: Fix panic at max exponential precision Rust's formatting machinery allows precision values of up to u16::MAX. Exponential formatting works out the number of significant digits to use by adding one (for the integral digit before the decimal point). This previously used usize precision, so the maximum validated ...
[ { "path": "library/core/src/fmt/float.rs", "patch": "@@ -171,8 +171,7 @@ where\n };\n \n if let Some(precision) = fmt.options.get_precision() {\n- // 1 integral digit + `precision` fractional digits = `precision + 1` total digits\n- float_to_exponential_common_exact(fmt, num, sign, pre...
2026-03-18T17:40:39
electron/electron
fd9bf54243f68083ce5716ddc5c8cb1032ae9f1d
d9170093aafcc111712a28909b4fdf06e50ae43a
build: fix Chromium roll linting merge base determination in CI (#49937)
[ { "path": "script/lint-roller-chromium-changes.mjs", "patch": "@@ -124,7 +124,7 @@ async function main () {\n // Get the merge base with the target branch\n let mergeBase;\n try {\n- mergeBase = execSync(`git merge-base ${currentBranch} origin/${targetBranch}`, {\n+ mergeBase = execSync(`git mer...
2026-02-25T13:38:31
golang/go
9e2189ef8e04d2745d18ac870ae54dcdcbc008db
75cfb36608a3457f182eb3284d99cd677f463dcb
cmd/go: isolate some very long tests These tests are exceptionally slow. Move them out of the normal cmd/go test suite to try to make it more reasonable to run 'go test cmd/go' in a regular dev cycle. More tests can be moved here as needed. (Hopefully this can also help longtest sharding) Change-Id: I4ca0696d0afe72aa...
[ { "path": "src/cmd/go/internal/verylongtest/script_test.go", "patch": "@@ -0,0 +1,26 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package verylongtest\n+\n+import (\n+\t\"cmd/inter...
2026-03-10T21:34:02
facebook/react
f646e8ffd85ddf5bd8be23327ac887196355bf9b
edd05f181b72272fb87b77bd84d2c048a4613955
[Flight] Fix `hasReadable` flag in Node.js clients' debug channel (#35039) For Edge Flight servers, that use Web Streams, we're defining the `debugChannel` option as: ``` debugChannel?: {readable?: ReadableStream, writable?: WritableStream, ...} ``` Whereas for Node.js Flight servers, that use Node.js Streams, we're...
[ { "path": "packages/react-server-dom-esm/src/client/ReactFlightDOMClientNode.js", "patch": "@@ -93,10 +93,7 @@ function createFromNodeStream<T>(\n ): Thenable<T> {\n const debugChannel: void | DebugChannel =\n __DEV__ && options && options.debugChannel !== undefined\n- ? {\n- hasReadable...
2025-11-04T15:30:08
nodejs/node
71b36ee68ae492077436708bc4e334ad519046ad
aa3e649ca1efce190d0b98b5afe3826a401df290
repl: fix FileHandle leak in history initialization Ensure that the history file handle is closed if initialization fails or flushing throws an error. This prevents ERR_INVALID_STATE errors where a FileHandle object is closed during garbage collection. PR-URL: https://github.com/nodejs/node/pull/61706 Reviewed-By: Lu...
[ { "path": "lib/internal/repl/history.js", "patch": "@@ -327,6 +327,7 @@ class ReplHistory {\n \n await this[kFlushHistory]();\n } catch (err) {\n+ await this[kCloseHandle]();\n return this[kHandleHistoryInitError](err, onReadyCallback);\n }\n }", "additions": 1, "deletions...
2026-02-09T10:46:26
rust-lang/rust
44c71398cde84ae24ad6c7bd568e8f91a20cf2d0
119a40916195b0c99481b5ff96a9bb647b37ec9e
fix: report `expected type, found {` in parser
[ { "path": "src/tools/rust-analyzer/crates/parser/src/grammar/types.rs", "patch": "@@ -59,6 +59,9 @@ fn type_with_bounds_cond(p: &mut Parser<'_>, allow_bounds: bool) {\n }\n _ if paths::is_path_start(p) => path_or_macro_type(p, allow_bounds),\n LIFETIME_IDENT if p.nth_at(1, T![+]) => ...
2026-04-04T12:28:23
golang/go
81908597a8787b09b1da90e7c6d3461b4302820f
2cd24ace83bb8055280b9302efb1a21a14d7c763
net/http/internal/http2: skip TestTransportNewClientConnCloseOnWriteError Rewrote this test to use newTestClientConn, discovered that the assertion that it's supposed to make (if a write to a conn fails, the conn is closed) doesn't hold for all writes. Skip the amended test for now. For #67810 Change-Id: I1b696afcd...
[ { "path": "src/net/http/internal/http2/transport_test.go", "patch": "@@ -3850,31 +3850,36 @@ func testTransportBodyLargerThanSpecifiedContentLength(t testing.TB, body *chunk\n \t}\n }\n \n-type fakeConnErr struct {\n-\tnet.Conn\n-\twriteErr error\n-\tclosed bool\n-}\n-\n-func (fce *fakeConnErr) Write(b []...
2026-03-10T21:02:10
electron/electron
d9170093aafcc111712a28909b4fdf06e50ae43a
aca83afeef7cdebce10c6fa9835baed26c806b9f
build: exit upload with error code if github upload fails (#49936)
[ { "path": "script/release/uploaders/upload.py", "patch": "@@ -368,6 +368,9 @@ def upload_io_to_github(release, filename, filepath, version):\n for c in iter(lambda: upload_process.stdout.read(1), b\"\"):\n sys.stdout.buffer.write(c)\n sys.stdout.flush()\n+ upload_process.wait()\n+ ...
2026-02-25T13:16:13
vercel/next.js
4f693363363e06cb6f07de001beeb93687ec658e
46789444d5b5089477d8704dba759ef5a1807242
Support accessing root params in `generateStaticParams` (#91189) A new `GenerateStaticParamsStore` work unit store type is now provided during `generateStaticParams` execution. This enables root param getters (`import { lang } from 'next/root-params'`) to be called inside `generateStaticParams`, allowing shared helper...
[ { "path": "errors/next-dynamic-api-wrong-context.mdx", "patch": "@@ -34,6 +34,12 @@ export async function GET() {\n }\n ```\n \n+## `generateStaticParams`\n+\n+Request-time APIs like `headers()`, `cookies()`, `connection()`, and `draftMode()` are not available inside `generateStaticParams` because it runs a...
2026-03-16T14:44:53
facebook/react
67f7d47a9b8f450c93ee69edd16aed68e910ff1e
561ee24d4a7c805e9837ee4cfbb5671a35e41b5a
[Flight] Fix debug info filtering to include later resolved I/O (#35036) In #35019, we excluded debug I/O info from being considered for enhancing the owner stack if it resolved after the defined `endTime` option that can be passed to the Flight client. However, we should include any I/O that was awaited before that e...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -510,7 +510,9 @@ function filterDebugInfo(\n return;\n }\n \n- // Remove any debug info entries that arrived after the defined end time.\n+ // Remove any debug info entries after the defined end time. For async info\n+ // that...
2025-11-03T21:59:40
nodejs/node
aa3e649ca1efce190d0b98b5afe3826a401df290
f0be1c00da356954ba7f47e5c39fe7dc0e85fe89
esm: update outdated FIXME comment in translators.js PR-URL: https://github.com/nodejs/node/pull/61715 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "lib/internal/modules/esm/translators.js", "patch": "@@ -142,8 +142,8 @@ function loadCJSModule(module, source, url, filename, isMain) {\n specifier = `${pathToFileURL(path)}`;\n }\n \n- // FIXME(node:59666) Currently, the ESM loader re-invents require() here for imported CJS and this...
2026-02-09T09:11:35
golang/go
a8a0dc9ea2e8cd37f667614e1b9a6dd5fc0af040
29ada7aa481930fbddab626e0686f84c1fcd63a2
net/http/internal/http2: make server write errors sticky After encountering a write error on a server's connection, remember the error and reuse it for future writes. Fixes a rare flakiness in TestServerWriteByteTimeout, where we can sometimes attempt to flush the write buffer after encountering a write timeout. Chan...
[ { "path": "src/net/http/internal/http2/http2.go", "patch": "@@ -258,6 +258,7 @@ type bufferedWriter struct {\n \tconn net.Conn // immutable\n \tbw *bufio.Writer // non-nil when data is buffered\n \tbyteTimeout time.Duration // immutable, WriteByteTimeout\n+\twerr error\n }\n \n f...
2026-03-10T16:38:22
electron/electron
e5d3fbf6dca089c39f9f28191524008deb9161ef
0aaea4eaa04b581ef31e5befdd2fc0c7a997b0aa
chore: bump chromium to 147.0.7699.0 (main) (#49831) * chore: bump chromium in DEPS to 147.0.7693.0 * chore: bump chromium in DEPS to 147.0.7694.0 * chore: bump chromium in DEPS to 147.0.7695.0 * chore: bump chromium in DEPS to 147.0.7697.0 * chore: bump chromium in DEPS to 147.0.7698.0 * fix(patch): IsGuest move...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '147.0.7687.0',\n+ '147.0.7699.0',\n 'node_version':\n 'v24.13.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2026-02-24T21:42:05
rust-lang/rust
51c4299433f4ca3e018edcf4665282cfc5537c60
f908263775fa86408d0d529dec82baa9ae350529
coretests: add argument order regression tests for min_by/max_by/minmax_by A recent regression swapped the argument order passed to the compare closure in min_by, max_by and minmax_by (compare(&v2, &v1) instead of compare(&v1, &v2)). This was fixed, but no regression test was added. Add tests that record the argument...
[ { "path": "library/coretests/tests/cmp.rs", "patch": "@@ -48,6 +48,37 @@ fn test_ord_min_max_by() {\n assert_eq!(cmp::max_by(2, -1, f), 2);\n }\n \n+// Regression test for #136307 / #139357: ensure compare() receives (v1, v2), not (v2, v1).\n+#[test]\n+fn min_by_compare_argument_order() {\n+ let mut ...
2026-04-03T15:37:13
vercel/next.js
261922df82272dd44ec18f2042173b7797526fda
742b186670001882fbe56cd1898befa14133149c
Show generated code from loaders in parse error messages (#89898) ## What? When a webpack/turbopack loader produces broken code, error messages now display **both** the original source and the generated code with source map information, making it much easier to debug loader issues. ## Why? Previously, when loaders ...
[ { "path": "crates/next-core/src/next_image/source_asset.rs", "patch": "@@ -1,8 +1,8 @@\n use std::io::Write;\n \n use anyhow::{Result, bail};\n-use turbo_rcstr::rcstr;\n-use turbo_tasks::{ResolvedVc, Vc};\n+use turbo_rcstr::{RcStr, rcstr};\n+use turbo_tasks::{ResolvedVc, ValueToString, Vc};\n use turbo_task...
2026-03-16T12:41:29
facebook/react
4f93170066c5ee7519749b45c5962a6b970cf977
0fa32506dab4293dfffae662e181d2f970aa95ba
[Flight] Cache the value if we visit the same I/O or Promise multiple times along different paths (#35005) We avoid visiting the same async node twice but if we see it again we returned "null" indicating that there's no I/O there. This means that if you have two different Promises both resolving from the same I/O nod...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -2316,15 +2316,37 @@ function visitAsyncNode(\n request: Request,\n task: Task,\n node: AsyncSequence,\n- visited: Set<AsyncSequence | ReactDebugInfo>,\n+ visited: Map<\n+ AsyncSequence | ReactDebugInfo,\n+ void | null | ...
2025-10-29T14:55:43
golang/go
26d5e160750b34a537cce0f1bfd47f663a110d27
6b7763407c83e9014c94997f1d454b175a6ea601
runtime/cgo: clarify pinning requirement in Handle example Add a comment to the void* example in the Handle documentation highlighting that if the C code keeps the pointer after the call returns, runtime.Pinner should be used to pin it. The existing documentation already mentions this requirement in prose (lines 69-7...
[ { "path": "src/runtime/cgo/handle.go", "patch": "@@ -97,6 +97,9 @@ import (\n //\tfunc main() {\n //\t\tval := \"hello Go\"\n //\t\th := cgo.NewHandle(val)\n+//\t\t// In this example, unsafe.Pointer(&h) is valid because myprint\n+//\t\t// does not keep a copy of the pointer. If the C code keeps the\n+//\t\t...
2026-02-03T14:34:08
nodejs/node
f0be1c00da356954ba7f47e5c39fe7dc0e85fe89
286828be013d0095a78242a330edb5e0e70a64e6
http2: fix FileHandle leak in respondWithFile Ensure that the file handle is closed if header validation fails in respondWithFile. This prevents ERR_INVALID_STATE errors where a FileHandle object is closed during garbage collection. PR-URL: https://github.com/nodejs/node/pull/61707 Reviewed-By: Matteo Collina <matteo...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -2680,6 +2680,8 @@ function processRespondWithFD(self, fd, headers, offset = 0, length = -1,\n try {\n headersList = buildNgHeaderString(headers, assertValidPseudoHeaderResponse);\n } catch (err) {\n+ if (self.ownsFd)\n+ tryClose(fd);\n ...
2026-02-08T23:46:52
electron/electron
0aaea4eaa04b581ef31e5befdd2fc0c7a997b0aa
818b28410f493c20fabfb27addeeec65f8166328
fix: crash after `win.showAllTabs()` new tab (#49917) fix: crash after win.showAllTabs new tab
[ { "path": "shell/browser/ui/cocoa/electron_ns_window.mm", "patch": "@@ -35,6 +35,41 @@ - (void)cr_mouseDownOnFrameView:(NSEvent*)event;\n \n typedef void (*MouseDownImpl)(id, SEL, NSEvent*);\n \n+// Work around an Apple bug where the visual tab picker's\n+// grid animation creates NSLayoutConstraints agains...
2026-02-24T21:09:09
vercel/next.js
742b186670001882fbe56cd1898befa14133149c
d9751eaa14fc764aadd3c58f2373998e567192bd
Ready in X - prints wrong timing on dev server restart (#90874) ### What? Fixes the "Ready in" printout for the Next.js dev server after restarts. ### Why? When the dev server restarts (e.g., due to `next.config` changes), the "Ready in" time was incorrect, showing the total process uptime instead of the actual start...
[ { "path": "packages/next/src/cli/next-dev.ts", "patch": "@@ -391,6 +391,10 @@ const nextDev = async (\n })\n }\n \n+ // Reset the start time so \"Ready in X\" reflects the restart\n+ // duration, not time since the original process started.\n+ process.env.NEX...
2026-03-16T11:28:43
facebook/react
0fa32506dab4293dfffae662e181d2f970aa95ba
fb0d96073c588ca2f652f9c97849234576db534f
[Flight] Clone subsequent I/O nodes if it's resolved more than once (#35003) IO tasks can execute more than once. E.g. a connection may fire each time a new message or chunk comes in or a setInterval every time it executes. We used to treat these all as one I/O node and just updated the end time as we go. Most of the...
[ { "path": "packages/react-server/src/ReactFlightServerConfigDebugNode.js", "patch": "@@ -208,10 +208,29 @@ export function initAsyncDebugInfo(): void {\n switch (node.tag) {\n case IO_NODE: {\n lastRanAwait = null;\n- // Log the end time when we resolved the ...
2025-10-28T17:27:35
golang/go
6b7763407c83e9014c94997f1d454b175a6ea601
3fc4af70d04682ab42744e4ce78f95025688996d
testing: recognize helper functions that use range-over-function This assumes the current behavior of the gc compiler: range functions use a suffix of -rangeNNNN. Fixes #72794 Change-Id: I3c10c60829853cf2cb4c17a75f6243def0313ae9 Reviewed-on: https://go-review.googlesource.com/c/go/+/656775 LUCI-TryBot-Result: Go LUC...
[ { "path": "src/testing/helper_test.go", "patch": "@@ -85,6 +85,28 @@ func TestTBHelperParallel(t *testing.T) {\n \t}\n }\n \n+// Issue 72794.\n+func TestHelperRange(t *testing.T) {\n+\tif os.Getenv(\"GO_WANT_HELPER_PROCESS\") == \"1\" {\n+\t\trangeHelperHelper(t)\n+\t\treturn\n+\t}\n+\n+\tt.Parallel()\n+\n+...
2025-03-11T17:10:57
vercel/next.js
d9751eaa14fc764aadd3c58f2373998e567192bd
1ab534927b5e617454d34690861661411f27d6a5
Turbopack: use ChunkGroupEntry::Shared, part 2 (#91279) Followup to https://github.com/vercel/next.js/pull/90978, which fixed the `ChunkGroup`s passed to `.chunk_group()`, forgot to update the the module graph entry types, which didn't match up. The `ChunkGroupEntry::Shared(ResolvedVc::upcast(*server_component))` on...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -930,9 +930,7 @@ impl AppProject {\n .take(server_component_entries.len().saturating_sub(1))\n {\n let graph = SingleModuleGraph::new_with_entries_visited_intern(\n- ...
2026-03-16T11:02:31
electron/electron
25db585a23bb14c9b2a5c23c1e99d4a71a88ad51
02eed1ec0b7453a4ddbe2386d5e1d090596ae124
docs: fix some string enum typings (#49923)
[ { "path": "docs/api/app.md", "patch": "@@ -1332,7 +1332,7 @@ Returns `boolean` - Whether the current desktop environment is Unity launcher.\n ### `app.getLoginItemSettings([options])` _macOS_ _Windows_\n \n * `options` Object (optional)\n- * `type` string (optional) _macOS_ - Can be one of `mainAppService`...
2026-02-24T15:11:22
facebook/react
fb0d96073c588ca2f652f9c97849234576db534f
b4455a6ee6450fae830ae0b6e53e77f7a147bc27
[tests] disableLegacyMode in test-renderer (#35002) 500 tests failed from not using async act. Will fix the tests and then re-land this.
[ { "path": "packages/shared/forks/ReactFeatureFlags.test-renderer.native-fb.js", "patch": "@@ -16,7 +16,7 @@ export const disableCommentsAsDOMContainers = true;\n export const disableInputAttributeSyncing = false;\n export const disableLegacyContext = false;\n export const disableLegacyContextForFunctionComp...
2025-10-28T16:53:30
facebook/react
d3d0ce329e81c7081feda5d37130d01e0607b8a4
ba0590f3068829327cb25689b46926d6509893ea
[script] Add yarn generate-changelog (#34962) (disclaimer: I used codex to write this script) Adds a new `yarn generate-changelog` script to simplify the process of writing changelogs. You can use it as follows: ``` $ yarn generate-changelog --help Usage: yarn generate-changelog [--codex|--claude] [--debug] [<pkg@v...
[ { "path": "package.json", "patch": "@@ -152,6 +152,7 @@\n \"download-build-in-codesandbox-ci\": \"yarn build --type=node react/index react.react-server react-dom/index react-dom/client react-dom/src/server react-dom/test-utils react-dom.react-server scheduler/index react/jsx-runtime react/jsx-dev-runtim...
2025-10-27T19:48:36
vercel/next.js
909a9c9b18e31857259dc3d0e31cd75a34bccaa9
2e4f08ca0aa4a7f6fb1fc04bbc72e17713edfac4
[test] Improve actions-tree-shaking tests (#91326) 1. Don't build twice for edge, patch source before building 2. Use the names for snapshots, as opposed to just a count that is impossible to debug.
[ { "path": "test/production/app-dir/actions-tree-shaking/_testing/utils.ts", "patch": "@@ -1,71 +1,89 @@\n-// @ts-ignore avoid ts errors during manual testing\n-import { type NextInstance } from 'e2e-utils'\n+import { nextTestSetup, type NextInstance } from 'e2e-utils'\n+\n+// This is from 'next/dist/build/w...
2026-03-16T08:49:12
electron/electron
acd01e15e282bfd3a61585a37aaf53caf34bfe56
fc3a0abf19b9bad25a5ac312f72dbec8669ab268
fix: prevent crash on Windows when closing child windows (#49901) * guard against window destruction in min/max size checks * use weakptr to prevent hit test crash on teardown * revove web contents views during teardown * fix test failure * fix other tests
[ { "path": "shell/browser/api/electron_api_web_contents_view.cc", "patch": "@@ -33,7 +33,7 @@ WebContentsView::WebContentsView(v8::Isolate* isolate,\n gin_helper::Handle<WebContents> web_contents)\n : View(web_contents->inspectable_web_contents()->GetView()),\n web_...
2026-02-24T14:48:04
rust-lang/rust
a5181d2fd6d149dac10a7f888be0c46ba4a34d89
2972b5e59f1c5529b6ba770437812fd83ab4ebd4
Remove `rfail` support from incremental tests Incremental revisions beginning with `rfail` would cause the incremental test runner to build the test program, expecting success, and then run the test program, expecting failure. Expecting incremental tests to fail at runtime is of questionable utility, because in almos...
[ { "path": "src/doc/rustc-dev-guide/src/tests/compiletest.md", "patch": "@@ -158,9 +158,9 @@ then runs the compiler for each revision, reusing the incremental results from p\n \n The revisions should start with:\n \n-* `rpass` — the test should compile and run successfully\n-* `rfail` — the test should compi...
2026-04-03T09:37:45
facebook/react
408b38ef7304faf022d2a37110c57efce12c6bad
09056abde76c464f4632f322a0ac30cd3984cee6
[compiler] Improve display of errors on multi-line expressions (#34963) When a longer function or expression is identified as the source of an error, we currently print the entire expression in our error message. This is because we delegate to a Babel helper to print codeframes. Here, we add some checking and abbrevia...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -12,6 +12,28 @@ import {Err, Ok, Result} from './Utils/Result';\n import {assertExhaustive} from './Utils/utils';\n import invariant from 'invariant';\n \n+// Number of context lines to display above the source of a...
2025-10-23T18:30:28
vercel/next.js
2e4f08ca0aa4a7f6fb1fc04bbc72e17713edfac4
136b77e4d971de868b56066e714c1f187af6cb23
fix(build): don't block SSG on telemetry flush, add persistence spans to trace-build (#91335) ### What? Two fixes for the Turbopack build tracing introduced in #90397: 1. **Don't block SSG on Turbopack shutdown**: `workerMain()` no longer awaits the shutdown promise before returning. Trace event collection is de...
[ { "path": "crates/next-napi-bindings/src/next_api/project.rs", "patch": "@@ -2152,6 +2152,16 @@ pub fn project_compilation_events_subscribe(\n break;\n }\n }\n+ // Signal the JS side that the subscription has ended (e.g. after\n+ // project shutdown drops al...
2026-03-16T06:42:17
rust-lang/rust
d6be991fb4da0acac3d9fb2938f9ad00db999c4f
e6b64a2f4c696b840f8a384ec28690eed6a5d267
llvm: Fix array ABI test to not check equality implementation LLVM has moved memcmp expansion in the pipeline, resulting in the bcmp call being expanded into loads and register comparisons, which breaks the test. Based on history, I believe the test actually intended validate that these arrays were being passed as po...
[ { "path": "tests/codegen-llvm/array-equality.rs", "patch": "@@ -1,3 +1,6 @@\n+//@ revisions: llvm-current llvm-next\n+//@[llvm-current] ignore-llvm-version: 23-99\n+//@[llvm-next] min-llvm-version: 23\n //@ compile-flags: -Copt-level=3 -Z merge-functions=disabled\n //@ only-x86_64\n #![crate_type = \"lib\"]...
2026-04-02T20:57:18
electron/electron
fc3a0abf19b9bad25a5ac312f72dbec8669ab268
fa2b9ac466a9a9556e7b8f2ce4ac568c8e0c1469
build: fix roller branch detection in CI (#49920)
[ { "path": "script/lint-roller-chromium-changes.mjs", "patch": "@@ -14,6 +14,23 @@ const DEPS_REGEX = /chromium_version':\\n +'(.+?)',/m;\n const CL_REGEX = /https:\\/\\/chromium-review\\.googlesource\\.com\\/c\\/(?:chromium\\/src|v8\\/v8)\\/\\+\\/(\\d+)(#\\S+)?/g;\n const ROLLER_BRANCH_PATTERN = /^roller\\/...
2026-02-24T02:10:22
facebook/react
09056abde76c464f4632f322a0ac30cd3984cee6
c91783c1f2231ca5d99f5700f4c7fda4006a217e
[Compiler] Improve error for calculate in render useEffect validation (#34580) Summary: Change error and update snapshots The error now mentions what values are causing the issue which should provide better context on how to fix the issue --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://saplin...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -103,6 +103,7 @@ import {validateNoFreezingKnownMutableFunctions} from '../Validation/ValidateNoF\n import {inferMutationAliasingEffects} from '../Inference/InferMutationAliasingEffects';\n import {inferMutati...
2025-10-23T18:05:55
nodejs/node
b220fbe455797f8225b461bd5bddd0bc16f0c834
a879b39778edcc26d18f87fb09d093923be9c708
deps: V8: backport 6a0a25abaed3 Original commit message: [riscv] Fix sp handling in MacroAssembler::LeaveFrame Keep sp <= fp to ensure that data right above fp doesn't get clobbered by an inopportune signal and its handler. Such clobbering can happen in e.g. Node.js when JIT-compiled code is int...
[ { "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.11',\n+ 'v8_embedder_string': '-node.12',\n \n ##### V8 defaults for Node.js #####\n...
2026-02-03T08:46:02
rust-lang/rust
df848e78d9b2ef68b08d46aa0aea440df92d530a
6f751ec1824d98e7b7537d0878849df155ce6116
Fix merge conflict
[ { "path": "compiler/rustc_lint/src/lib.rs", "patch": "@@ -129,7 +129,7 @@ use unused::*;\n #[rustfmt::skip]\n pub use builtin::{MissingDoc, SoftLints};\n pub use context::{EarlyContext, LateContext, LintContext, LintStore};\n-pub use early::diagnostics::{DecorateAttrLint, DecorateBuiltinLint};\n+pub use ear...
2026-04-03T19:48:20
vercel/next.js
4a99afc90f2afebbfe66afb932985029722b5846
0f599731b86e177508c9d28af7414e9d94a01193
fix: test-cargo-unit CI job timing out since LTO was enabled (#91424) ## What Fixes the `test cargo unit` CI job which has been consistently timing out (30 min) on canary since #91343 landed on Mar 14. ## Why Two issues were contributing to the timeout: 1. **LTO on unit test binaries**: #91343 added `lto = "thin"`...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -191,7 +191,7 @@ jobs:\n needsRust: 'yes'\n needsNextest: 'yes'\n skipNativeBuild: 'yes'\n- afterBuild: pnpm dlx turbo@${TURBO_VERSION} run test-cargo-unit\n+ afterBuild: pnpm dlx turbo@${TURBO_VERSION} run test-cargo...
2026-03-15T22:07:00
electron/electron
fa2b9ac466a9a9556e7b8f2ce4ac568c8e0c1469
481e22499200f287825ebed4fa449bd39bd09641
ci: fix checking latest release for website docs update (#49918)
[ { "path": ".github/workflows/update-website-docs.yml", "patch": "@@ -31,7 +31,7 @@ jobs:\n echo \"isLatestRelease=false\" >> $GITHUB_OUTPUT\n fi\n - name: Trigger website docs update\n- if: ${{ steps.check-if-latest-release.outputs.isLatestRelease }}\n+ if: ${{ step...
2026-02-23T23:22:01
facebook/react
eb2f784e752ba690f032db4c3d87daac77a5a2aa
723b25c6444e4dcabe710ae33bc93cea79324428
Add hint for Node.js cjs-module-lexer for eslint-plugin-react-hook types (#34953) <!-- 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 submi...
[ { "path": "packages/eslint-plugin-react-hooks/index.js", "patch": "@@ -1,11 +1 @@\n module.exports = require('./src/index.ts');\n-\n-// Hint to Node’s cjs-module-lexer to make named imports work\n-// https://github.com/facebook/react/issues/34801#issuecomment-3433478810\n-// eslint-disable-next-line ft-flow...
2025-10-22T21:51:01
rust-lang/rust
a08257840b8a17f6e5602959e36d7b87b8394ec1
2972b5e59f1c5529b6ba770437812fd83ab4ebd4
Fix ICE in read_discriminant for enums with non-contiguous discriminants
[ { "path": "compiler/rustc_const_eval/src/interpret/discriminant.rs", "patch": "@@ -121,20 +121,20 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {\n // discriminants are int-like.\n let discr_val = self.int_to_int_or_float(&tag_val, discr_layout).unwrap();\n ...
2026-04-03T19:36:53
vercel/next.js
2b4bde2ebbe8a6b6358b694428cc5c69cff69350
4cd8a9890f93d1b79856f9957dd3d3b20fdf1e00
Enable thin LTO for release builds (#91343) # What Add `lto = "thin"` to the workspace-level `[profile.release]` in `Cargo.toml`. # Why Thin LTO enables cross-crate optimization at link time, improving runtime performance of the final artifacts (next-napi-bindings native module, turbopack-cli binary, and benchmarks...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -21,7 +21,6 @@ env:\n NAPI_CLI_VERSION: 2.18.4\n TURBO_VERSION: 2.8.11\n NODE_LTS_VERSION: 20\n- CARGO_PROFILE_RELEASE_LTO: 'true'\n TURBO_TEAM: 'vercel'\n TURBO_CACHE: 'remote:rw'\n # Without this environment variable, rust-lld w...
2026-03-14T18:49:43
nodejs/node
a879b39778edcc26d18f87fb09d093923be9c708
99cfb34cee507bb310d1bd542f6e07c9b89b4308
test: split test-embedding.js and run tests in parallel Split the tests so that it's easier to isolate and debug issues, and we can run the test cases in parallel to speed up. Also add more comments about what they are testing. PR-URL: https://github.com/nodejs/node/pull/61571 Reviewed-By: Luigi Pinca <luigipinca@gma...
[ { "path": "test/embedding/test-embedding-create-require-fs.js", "patch": "@@ -0,0 +1,17 @@\n+'use strict';\n+\n+// Tests that createRequire() works correctly with local fs in embedded environments.\n+// The createRequire() call is in embedtest.cc.\n+\n+const common = require('../common');\n+const fixtures =...
2026-02-08T13:18:27
golang/go
3fc4af70d04682ab42744e4ce78f95025688996d
c43088c7a6b58861078eb96617c7fc12764dbf76
net/http: document which headers Request.Write handles specially Document that Header values for Host, Content-Length, Transfer-Encoding, and Trailer are not used by Write, as these are derived from other Request fields. Also document that User-Agent defaults to "Go-http-client/1.1" if not set in Header. Fixes #68635...
[ { "path": "src/net/http/request.go", "patch": "@@ -558,6 +558,11 @@ const defaultUserAgent = \"Go-http-client/1.1\"\n // If Body is present, Content-Length is <= 0 and [Request.TransferEncoding]\n // hasn't been set to \"identity\", Write adds \"Transfer-Encoding:\n // chunked\" to the header. Body is close...
2026-02-27T22:13:56
electron/electron
90c9de70acc4dd36b2e5dc08c3730bbeca36ad45
9d0a0a54595a299328d4b54673f21e52cfcd1a34
fix: updated Alt detection to explicitly exclude AltGraph/AltGr (#49778) Updated Alt detection to explicitly exclude AltGraph/AltGr
[ { "path": "shell/browser/ui/views/root_view.cc", "patch": "@@ -9,6 +9,7 @@\n #include \"components/input/native_web_keyboard_event.h\"\n #include \"shell/browser/native_window.h\"\n #include \"shell/browser/ui/views/menu_bar.h\"\n+#include \"ui/events/keycodes/dom/keycode_converter.h\"\n #include \"ui/views...
2026-02-23T18:00:27
vercel/next.js
4cd8a9890f93d1b79856f9957dd3d3b20fdf1e00
83e47acd77eeae03aa251ce5ab2fe5323a4b8c42
Turbopack: use keyed cell access for AsyncModulesInfo (#91305) ### What? Switch `AsyncModulesInfo` to use `cell = "keyed"` and per-key access (`is_async()`) instead of reading the full `FxHashSet` via `.await?`. ### Why? `AsyncModulesInfo` is a large set that gets read from many call sites. With the default cell, a...
[ { "path": "turbopack/crates/turbopack-core/src/chunk/chunk_group.rs", "patch": "@@ -81,7 +81,7 @@ pub async fn make_chunk_group(\n )\n .await?;\n \n- let async_modules_info = module_graph.async_module_info().await?;\n+ let async_module_info = module_graph.async_module_info();\n \n // Attac...
2026-03-14T13:02:25
electron/electron
9d0a0a54595a299328d4b54673f21e52cfcd1a34
19d0c072d5cbf1247efc5b838ead7f123d6a36a7
fix: apply `zoomFactor` from `setWindowOpenHandler` to `window.open()` windows (#49886) fix: apply zoomFactor from setWindowOpenHandler to window.open() windows
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -4746,6 +4746,19 @@ gin_helper::Handle<WebContents> WebContents::CreateFromWebPreferences(\n existing_preferences->SetFromDictionary(web_preferences_dict);\n web_contents->SetBackgroundColor(\n existing_preference...
2026-02-23T08:02:48
golang/go
3d7681ebab6fca8f859d8fc7d6c02c90ef379c05
a8f99ef1f6e550d5d73e9c8f792337ad001bdcf4
cmd/link: fix macOS 13 build Write our own load command for macOS builds, to make sure we can put the versions in. Builds on older macOS were seeing an LC_VERSION_MIN instead and scribbling over fields that didn't exist. Fixes #78070. Change-Id: If338d0506b1156b133253e496f29818a29a22a91 Reviewed-on: https://go-revie...
[ { "path": "src/cmd/link/internal/ld/macho.go", "patch": "@@ -461,14 +461,9 @@ func (ctxt *Link) domacho() {\n \t\tif err != nil {\n \t\t\tExitf(\"%v\", err)\n \t\t}\n-\t\tif load != nil {\n-\t\t\tmachoPlatform = load.platform\n+\t\tif load != nil && load.platform != PLATFORM_MACOS {\n \t\t\tml := newMachoLo...
2026-03-11T16:52:44
nodejs/node
6aa465c962e7c1541bbba54eb3f4caeb1170e1f5
c2a035332f9a96565be207cd481818e3cc20ecd3
doc: clarify EventEmitter error handling in threat model Add documentation explaining that applications are expected to attach 'error' event handlers to EventEmitters that can emit errors, including HTTP streams. Crashes resulting from missing error handlers are not considered denial-of-service vulnerabilities in Node...
[ { "path": "SECURITY.md", "patch": "@@ -335,6 +335,18 @@ the community they pose.\n proper security boundaries between trusted application logic and untrusted\n user input.\n \n+#### Unhandled 'error' Events on EventEmitters (CWE-248)\n+\n+* EventEmitters that can emit `'error'` events require the applic...
2026-02-07T23:03:34
golang/go
a8f99ef1f6e550d5d73e9c8f792337ad001bdcf4
96d6d38872a56eba26cd2e3dbd65bab138f9c599
go/printer: use architecture-independent math for alignment decisions The `exprList` function uses a geometric mean of expression sizes to decide whether to break column alignment in composite literals. Previously, this was computed using `math.Exp` and `math.Log`, which are not guaranteed to produce bit-for-bit ident...
[ { "path": "src/go/printer/math.go", "patch": "@@ -0,0 +1,28 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package printer\n+\n+import \"math\"\n+\n+// log2ish returns a crude approx...
2026-03-09T10:08:36
vercel/next.js
83e47acd77eeae03aa251ce5ab2fe5323a4b8c42
855f0a3f5251fc46796bbeeb7dd30b6f264d1f6b
Simplify scroll restoration with shared ScrollRef on CacheNode (#91348) Replaces the segment-path-matching scroll system with a simpler model based on a shared mutable ScrollRef on CacheNode. The old system accumulated segment paths during navigation and matched them in layout-router to decide which segments should s...
[ { "path": "packages/next/src/client/app-dir/link.tsx", "patch": "@@ -8,6 +8,7 @@ import { useMergedRef } from '../use-merged-ref'\n import { isAbsoluteUrl } from '../../shared/lib/utils'\n import { addBasePath } from '../add-base-path'\n import { warnOnce } from '../../shared/lib/utils/warn-once'\n+import {...
2026-03-14T12:38:36
electron/electron
19d0c072d5cbf1247efc5b838ead7f123d6a36a7
2b80f4ccc9b5d500f318a989f9936e3e0f2060c4
feat: lazy electron download (#49328) * feat: lazy electron download * better error messaging? * add breaking changes script doc * add binary download step to install instructions * respect no binary env var
[ { "path": "docs/breaking-changes.md", "patch": "@@ -24,6 +24,35 @@ for more consistent output sizes.\n \n ## Planned Breaking API Changes (41.0)\n \n+### Behavior Changed: `electron` no longer downloads itself via `postinstall` script\n+\n+Previously, the `electron` npm package would download the Electron b...
2026-02-20T20:35:38
nodejs/node
c2a035332f9a96565be207cd481818e3cc20ecd3
88760f9e8b917ae31454e45856e349489ccf9868
test: print stack immediately avoiding GC interleaving `require(mod)` does not keep the mod in require cache if mod throws synchronously. This fixes the tests to print the stack immediately in case that source map cache could be cleaned up when the CJS module is reclaimed by GC in the next event loop tick. PR-URL: ht...
[ { "path": "lib/internal/source_map/source_map_cache_map.js", "patch": "@@ -13,6 +13,9 @@ const {\n source_map_data_private_symbol,\n },\n } = internalBinding('util');\n+let debug = require('internal/util/debuglog').debuglog('source_map', (fn) => {\n+ debug = fn;\n+});\n \n /**\n * Specialized map of...
2026-02-07T22:14:40
golang/go
d3651c588846e1147e5a72f71c133dc8288e1e13
97d643045888d1af2004410365a00bafe1713f47
runtime/poll: fix race condition in Window's SendFile The destination of SendFile is a socket, which doesn't support file offsets. There is no need to keep track of the file offset, and doing so causes a race between SendFile and Read. While here, make sure that SendFile tests do call poll.SendFile. Fixes #78015 Cq...
[ { "path": "src/internal/poll/sendfile_windows.go", "patch": "@@ -68,8 +68,8 @@ func SendFile(fd *FD, src uintptr, size int64) (written int64, err error, handle\n \t\t\tchunkSize = size\n \t\t}\n \n-\t\tfd.setOffset(startpos + written)\n \t\tn, err := fd.execIO('w', func(o *operation) (uint32, error) {\n+\t\...
2026-03-08T13:18:04
rust-lang/rust
f1a4ae02ed35e9f3c96c8acc9419aeaa8a6747c9
f908263775fa86408d0d529dec82baa9ae350529
fix ice generics of crate node
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs", "patch": "@@ -55,7 +55,7 @@ use rustc_data_structures::fx::{FxIndexMap, FxIndexSet};\n use rustc_errors::{Applicability, Diag, DiagStyledString, IntoDiagArg, StringPart, pluralize};\n use rustc_hir as hir;\n use rustc_hir::def::Def...
2026-03-09T15:50:42
vercel/next.js
855f0a3f5251fc46796bbeeb7dd30b6f264d1f6b
baad064fd1c509fa0c7ff2dfdaec5412ded20766
Turbopack: `require(/* turbopackChunkingType: parallel */` (#91278) 1. Add the CJS version of `import ... with {"turbopack-chunking-type: "parallel"` 2. Allow `shared` as a chunking type 3. Improve error message for invalid values: <img width="718" height="455" alt="Bildschirmfoto 2026-03-13 um 15 07 06" src="htt...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs", "patch": "@@ -5,12 +5,7 @@ use rustc_hash::{FxHashMap, FxHashSet};\n use smallvec::SmallVec;\n use swc_core::{\n atoms::Wtf8Atom,\n- common::{\n- BytePos, Span, Spanned, SyntaxContext,\n- comments::Comments,\n- ...
2026-03-14T12:05:21
electron/electron
2b80f4ccc9b5d500f318a989f9936e3e0f2060c4
5795689fd929b3c5c77a75e55c78e5c4e4de9cd3
fix: prevent GBytes leak in GdkPixbufFromSkBitmap on Linux/GTK (#49863) Inside gtk_util::GdkPixbufFromSkBitmap, g_bytes_new() was called inline as an argument to gdk_pixbuf_new_from_bytes(), which per GTK docs does not take ownership of the GBytes - it adds its own internal reference. The caller's GBytes* was never st...
[ { "path": "shell/browser/ui/gtk_util.cc", "patch": "@@ -82,11 +82,13 @@ GdkPixbuf* GdkPixbufFromSkBitmap(const SkBitmap& bitmap) {\n constexpr GdkColorspace kColorspace = GDK_COLORSPACE_RGB;\n constexpr gboolean kHasAlpha = true;\n constexpr int kBitsPerSample = 8;\n- return gdk_pixbuf_new_from_bytes...
2026-02-20T20:00:46
facebook/react
723b25c6444e4dcabe710ae33bc93cea79324428
bbb7a1fdf741eed6b7adcd48a441259819d664cc
Add hint for Node.js cjs-module-lexer for eslint-plugin-react-hook types (#34951) <!-- 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 submi...
[ { "path": "packages/eslint-plugin-react-hooks/index.js", "patch": "@@ -1 +1,11 @@\n module.exports = require('./src/index.ts');\n+\n+// Hint to Node’s cjs-module-lexer to make named imports work\n+// https://github.com/facebook/react/issues/34801#issuecomment-3433478810\n+// eslint-disable-next-line ft-flow...
2025-10-22T18:05:49
golang/go
97d643045888d1af2004410365a00bafe1713f47
45c6fb4b9bff9eaaaae000ff223452403b9def4e
cmd/compile: fix arm direct tail call CL 752560 accidentally niled out the target symbol. Re-initialize the target symbol field when doing a direct tail call. Fixes #78053 Change-Id: I007471587a38077b52daa134640d09c7b8b6becb Reviewed-on: https://go-review.googlesource.com/c/go/+/753840 Reviewed-by: Keith Randall <kh...
[ { "path": "src/cmd/internal/obj/arm/obj5.go", "patch": "@@ -367,6 +367,8 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\t\t\tp.From = obj.Addr{}\n \t\t\t\t\tif retSym != nil { // retjmp\n \t\t\t\t\t\tp.To.Type = obj.TYPE_BRANCH\n+\t\t\t\t\t\tp.To.Name = obj.NAME_EXTERN\...
2026-03-10T21:02:13
nodejs/node
3ab9dd86e7df43d275c952b6a308d50519963c5f
9bc369f2b44cbb2bbbda07be234ca632e84c3051
src: consolidate C++ ReadFileSync/WriteFileSync utilities This patch moves `ReadFileSync` and `WriteFileSync` from `src/util.cc` to `src/node_file_utils.cc`, consolidates the implementation to reuse code, and adds a few more enhancements: For `ReadFileSync`: - Use fstat-based pre-allocation to minimize buffer resizi...
[ { "path": "node.gyp", "patch": "@@ -125,6 +125,7 @@\n 'src/node_errors.cc',\n 'src/node_external_reference.cc',\n 'src/node_file.cc',\n+ 'src/node_file_utils.cc',\n 'src/node_http_parser.cc',\n 'src/node_http2.cc',\n 'src/node_i18n.cc',", "additions": 1, "del...
2026-02-03T20:10:23
facebook/react
6b344c7c5359d0113389ef92d0a6a4d5cbb76677
71b3a03cc936c8eb30a6e6108abf5550f5037f71
Switch to `export =` to fix eslint-plugin-react-hooks types (#34949) <!-- 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 pull ...
[ { "path": "packages/eslint-plugin-react-hooks/npm/index.d.ts", "patch": "@@ -5,4 +5,6 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-export {default} from './cjs/eslint-plugin-react-hooks';\n+import reactHooks from './cjs/eslint-plugin-react-hooks';\n+\n+export = reactHooks;", ...
2025-10-22T16:31:09
vercel/next.js
914df17a13ca78b4b538bec11f28be34e4545537
cf4d3ae89c1f49ac1a7d9c4d7c5bd557995dd02e
docs: remove incorrect _document.tsx font example (#91346) saw the issue about the _document.tsx example not working. next/font cant be used in _document.tsx, it throws an error. removed that section from the docs since _app.tsx already has the correct example. fixes #88832 Co-authored-by: Kahfi Elhady <kahfie@gmail...
[ { "path": "docs/01-app/01-getting-started/13-fonts.mdx", "patch": "@@ -89,50 +89,6 @@ export default function MyApp({ Component, pageProps }) {\n }\n ```\n \n-If you want to apply the font to the `<html>` element, you can use a [Custom Document](/docs/pages/building-your-application/routing/custom-document)...
2026-03-14T00:39:40
golang/go
45c6fb4b9bff9eaaaae000ff223452403b9def4e
59b188cee2cdf522b621d1ee72c811fcd46e22b2
cmd/compile: unwrap OCONVIFACE in staticinit for OAS2 Static initialization only expected OCONVNOP wrappings. Unwrap OCONVIFACE too, since it occurs when multiple return values of an OAS2FUNC are implicitly converted to an interface. Fixes #78016 Change-Id: Ic3fd6151403aabfc087d3240c1fcfabe7108cc0e GitHub-Last-Rev: ...
[ { "path": "src/cmd/compile/internal/staticinit/sched.go", "patch": "@@ -114,7 +114,7 @@ func (s *Schedule) tryStaticInit(n ir.Node) bool {\n \t\t// \"var a, b = f()\" that needs type conversion, which is not static.\n \t\tn := n.(*ir.AssignListStmt)\n \t\tfor _, rhs := range n.Rhs {\n-\t\t\tfor rhs.Op() == ...
2026-03-08T11:12:17
nodejs/node
9bc369f2b44cbb2bbbda07be234ca632e84c3051
9afa802892c134d32211000e60f69c8db82b5e5c
doc: fix --inspect security warning section PR-URL: https://github.com/nodejs/node/pull/61675 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -1684,26 +1684,6 @@ When enabled, the parser will accept the following:\n All the above will expose your application to request smuggling\n or poisoning attack. Avoid using this option.\n \n-<!-- Anchor to make sure old links find a target -->\n-\n-<a id=\"inspector_...
2026-02-06T22:37:55
electron/electron
5795689fd929b3c5c77a75e55c78e5c4e4de9cd3
3e58c6cb3adc2db649bf71e5347a00f73d6fa72d
fix: fullscreen restoration on Windows (#49872)
[ { "path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc", "patch": "@@ -197,6 +197,14 @@ void ElectronDesktopWindowTreeHostWin::SetAllowScreenshots(bool allow) {\n UpdateAllowScreenshots();\n }\n \n+// Refs https://chromium-review.googlesource.com/c/chromium/src/+/7095963\n+// Chromium's ...
2026-02-20T16:58:37
vercel/next.js
69e2b9df2681da84a824930bd11105e993e67122
202db657d8392cbd2dd5f8f48cf39074e20b4136
[test] Current behavior for request APIs in `generateStaticParams` (#91188) Adds a dedicated test suite that asserts on the errors thrown when `cookies`, `headers`, `connection`, `draftMode`, and `next/root-params` are called inside `generateStaticParams`. Currently, these all fail because `generateStaticParams` runs ...
[ { "path": "test/production/app-dir/generate-static-params-errors/app/[lang]/connection/[slug]/page.tsx", "patch": "@@ -0,0 +1,10 @@\n+import { connection } from 'next/server'\n+\n+export default function Page() {\n+ return <p>connection</p>\n+}\n+\n+export async function generateStaticParams() {\n+ await ...
2026-03-13T21:37:40
facebook/react
71b3a03cc936c8eb30a6e6108abf5550f5037f71
39c6545cef85b5251e519080fd315bff728d87de
[forgive] Various fixes to prepare for internal sync (#34928) Fixes a few small things: - Update imports to reference root babel-plugin-react-compiler rather than from `[...]/src/...` - Remove unused cosmiconfig options parsing for now - Update type exports in babel-plugin-react-compiler accordingly
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/index.ts", "patch": "@@ -29,10 +29,13 @@ export {\n ProgramContext,\n tryFindDirectiveEnablingMemoization as findDirectiveEnablingMemoization,\n findDirectiveDisablingMemoization,\n+ defaultOptions,\n type CompilerPipelineValue,\n type ...
2025-10-21T14:57:18
golang/go
59b188cee2cdf522b621d1ee72c811fcd46e22b2
23fde5c48c9bacb0ec8f5e21cc72191c64364ce1
cmd/internal/obj/arm: set spadj in arm32 tailcall In the normal case spadj is not needed because ARET handles the frame pop and return in a single instruction. However, if the ARET is a tailcall then there will be a second instruction where the pcsp stack depth is incorrect. Fixes #78021 Change-Id: I20db57eee03945a3...
[ { "path": "src/cmd/internal/obj/arm/obj5.go", "patch": "@@ -387,12 +387,18 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \n \t\t\t// If there are instructions following\n \t\t\t// this ARET, they come from a branch\n-\t\t\t// with the same stackframe, so no spadj.\n+\t\t\t/...
2026-03-09T22:04:38
rust-lang/rust
964481b47619e6515e26cf889c59d3200cafa2fb
bd8cb7bb22a71bfdab4a98414619a4f4e42b502a
Update fixtures
[ { "path": "src/tools/rust-analyzer/crates/base-db/src/lib.rs", "patch": "@@ -347,8 +347,7 @@ pub fn set_all_crates_with_durability(\n ///\n /// **Warning**: do not use this query in `hir-*` crates! It kills incrementality across crate metadata modifications.\n pub fn all_crates(db: &dyn salsa::Database) -> ...
2026-04-03T13:55:51
electron/electron
3e58c6cb3adc2db649bf71e5347a00f73d6fa72d
ea89ba5b8d4c7ccbe4415f280c74120c8c56115a
fix: refresh menu item state on key equivalent dispatch (#49875)
[ { "path": "shell/browser/ui/cocoa/electron_menu_controller.mm", "patch": "@@ -258,7 +258,7 @@ - (void)addSeparatorToMenu:(NSMenu*)menu atIndex:(int)index {\n \n // Empties the source menu items to the destination.\n - (void)moveMenuItems:(NSMenu*)source to:(NSMenu*)destination {\n- const NSInteger count = ...
2026-02-20T16:35:44
nodejs/node
102cdfe36bbbc59f1ec92e383b82cc2287943c67
d8c00ad316e2ae25322b2f1c405a902384d2867d
test: fix case-insensitive path matching on Windows On Windows, file paths are case-insensitive but string comparison is case-sensitive. When the drive letter case differs between the computed project root and the actual output (e.g., 'C:/' vs 'c:/'), the path replacement in transformProjectRoot() would fail. This fi...
[ { "path": "test/common/assertSnapshot.js", "patch": "@@ -64,12 +64,18 @@ function transformProjectRoot(replacement = '<project-root>') {\n const winPath = replaceWindowsPaths(projectRoot);\n // Handles URL encoded project root in file URL strings as well.\n const urlEncoded = pathToFileURL(projectRoot...
2026-02-06T16:54:15
facebook/react
39c6545cef85b5251e519080fd315bff728d87de
613cf80f263663f2c9923324ca41591c230c20ad
Fix indices of hooks in devtools when using useSyncExternalStore (#34547) ## Summary This PR updates getChangedHooksIndices to account for the fact that useSyncExternalStore internally mounts two hooks, while DevTools should treat it as a single user-facing hook. It introduces a helper isUseSyncExternalStoreHook to ...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -1913,6 +1913,20 @@ export function attach(\n return false;\n }\n \n+ function isUseSyncExternalStoreHook(hookObject: any): boolean {\n+ const queue = hookObject.queue;\n+ if (!queue) {\n+ return false;\...
2025-10-21T12:59:20
rust-lang/rust
a7790ba90a17d599b13884efbb36ee85aef1c508
256ea68c4b8123d8c58f49f98f796a1f448b5d03
fix clippy
[ { "path": "src/tools/rust-analyzer/crates/hir-def/src/attrs/docs.rs", "patch": "@@ -539,7 +539,7 @@ pub(crate) fn extract_docs<'a, 'db>(\n let mut indent = usize::MAX;\n // For inline docs, use the item's own resolver.\n let needs_expansion = has_doc_macro_attr(source.value.syntax())\n- |...
2026-04-03T11:29:33
golang/go
23fde5c48c9bacb0ec8f5e21cc72191c64364ce1
2433a3f2d6463541269fcc65597f20f2d7613434
cmd/link: add -macos and -macsdk flags to set LC_BUILD_VERSION These are for debugging problems with the build versions in the load commands. We still want to set them correctly by default for most users, provided we can determine what that means. Fixes #58722. Change-Id: Iccab7044ac7b0c58e7e01258a5e374c4155528fc Re...
[ { "path": "src/cmd/link/internal/ld/elf.go", "patch": "@@ -878,7 +878,7 @@ func addbuildinfo(ctxt *Link) {\n \t\t}\n \n \t\tif ctxt.IsDarwin() {\n-\t\t\tbuildinfo = uuidFromGoBuildId(buildID)\n+\t\t\tbuildinfo = uuidFromHash(hash.Sum32([]byte(buildID)))\n \t\t\treturn\n \t\t}\n ", "additions": 1, "d...
2026-03-03T22:06:03
facebook/react
613cf80f263663f2c9923324ca41591c230c20ad
ea0c17b0952e2b866a1f0dd4b5ac28c7df9d8518
[DevTools] chore: add useSyncExternalStore examples to shell (#34932) Few examples of using `useSyncExternalStore` that can be useful for debugging hook tree reconstruction logic and hook names parsing feature.
[ { "path": "packages/react-devtools-shell/src/app/InspectableElements/InspectableElements.js", "patch": "@@ -20,6 +20,7 @@ import SimpleValues from './SimpleValues';\n import SymbolKeys from './SymbolKeys';\n import UseMemoCache from './UseMemoCache';\n import UseEffectEvent from './UseEffectEvent';\n+import...
2025-10-21T12:51:44
electron/electron
ea89ba5b8d4c7ccbe4415f280c74120c8c56115a
5ddd8a020035970094df86efe8c266b3cca011ab
feat: Shadows and CSD for frameless windows on Wayland (#49295) * fix window sizing and content sizing on Linux when CSD is in use * fixed size constraints * layout helper * CSD shadows for frameless windows on Linux * simplify min/max size calculation * use base window size for min/max * respect HasShadow opti...
[ { "path": "filenames.gni", "patch": "@@ -50,6 +50,8 @@ filenames = {\n \"shell/browser/ui/views/caption_button_placeholder_container.h\",\n \"shell/browser/ui/views/client_frame_view_linux.cc\",\n \"shell/browser/ui/views/client_frame_view_linux.h\",\n+ \"shell/browser/ui/views/linux_frame_la...
2026-02-20T00:53:13
nodejs/node
d8c00ad316e2ae25322b2f1c405a902384d2867d
413dffc691eae3b63983415671cc236eb1705622
net: defer synchronous destroy calls in internalConnect Defer socket.destroy() calls in internalConnect and internalConnectMultiple to the next tick. This ensures that error handlers have a chance to be set up before errors are emitted, particularly important when using http.request with a custom lookup function that ...
[ { "path": "lib/net.js", "patch": "@@ -1125,7 +1125,7 @@ function internalConnect(\n err = checkBindError(err, localPort, self._handle);\n if (err) {\n const ex = new ExceptionWithHostPort(err, 'bind', localAddress, localPort);\n- self.destroy(ex);\n+ process.nextTick(emitErrorAndDest...
2026-02-06T14:30:07
golang/go
2433a3f2d6463541269fcc65597f20f2d7613434
bd5dc3a2fbde68835326d3b1d9fc480bcf6da086
net: actually re-check resolv.conf when no explicit nameservers detected Follow-up of CL 739620. I think it is wrong, since there is no way dc.servers == 0, since we always set it to defaultNS. Change-Id: Ibb76bfeb2b7974301d3515d90517d7766a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/741140 Reviewed-...
[ { "path": "src/net/dnsclient_unix.go", "patch": "@@ -366,7 +366,11 @@ type resolverConfig struct {\n var resolvConf resolverConfig\n \n func getSystemDNSConfig() *dnsConfig {\n-\tresolvConf.tryUpdate(\"/etc/resolv.conf\")\n+\treturn getSystemDNSConfigNamed(\"/etc/resolv.conf\")\n+}\n+\n+func getSystemDNSCon...
2026-02-02T18:31:31
rust-lang/rust
256ea68c4b8123d8c58f49f98f796a1f448b5d03
f3a108a26f04133046975848e8d6a41a79654d17
fix: adjust review comments
[ { "path": "src/tools/rust-analyzer/crates/hir-def/src/attrs.rs", "patch": "@@ -12,52 +12,44 @@\n //! its value. This way, queries are only called on items that have the attribute, which is\n //! usually only a few.\n //!\n-//! An exception to this model that is also defined in this module is documentation (...
2026-04-03T11:18:10
vercel/next.js
e22988e5ee494a248e878cf15d8c14afedcc8bab
fb0686d866613f0fb1c88121a80f36b491e88f37
Turbopack: switch chunk/asset hashes from hex to base40 encoding (#91137) ### What? Switch Turbopack's hash encoding for chunk and asset output filenames from hexadecimal (base16) to base40, using the alphabet \`0-9 a-z _ - ~ .\`. Version hashes (used for HMR update comparison, not filenames) use base64 instead. ###...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -11,13 +11,13 @@ use turbopack::module_options::{\n side_effect_free_packages_glob,\n };\n use turbopack_browser::{\n- BrowserChunkingContext, ContentHashing, CurrentChunkMethod,\n- react_refresh::assert_can_resolve_react_refres...
2026-03-13T20:38:02
facebook/react
ea0c17b0952e2b866a1f0dd4b5ac28c7df9d8518
031595d720955723a0dab67068abc3db759cbc69
[compiler] loosen computed key restriction for compiler (#34902) We have a whole ton of compiler errors due to us using a helper to return breakpoints for CSS-in-js, which results in code like: ``` const styles = { [responsive.up('xl')]: { ... } } ``` this results in TONS of bailouts due to `(BuildHIR::lowerExpres...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -1568,20 +1568,6 @@ function lowerObjectPropertyKey(\n name: key.node.value,\n };\n } else if (property.node.computed && key.isExpression()) {\n- if (!key.isIdentifier() && !key.isMemberExpression()) {...
2025-10-20T20:52:11
nodejs/node
ae2ffce5f3d5ac5ad153d98839d5a19a70e073b2
c74c73dd186e4ac078418d69424604c47129a8ce
repl: fix flaky test-repl-programmatic-history The test was flaky because the FileHandle for the history file could be garbage collected before being explicitly closed, causing ERR_INVALID_STATE errors when the handle was already closed by the GC finalizer. This fix adds an explicit closeHandle() method to ReplHistor...
[ { "path": "lib/internal/repl/history.js", "patch": "@@ -58,6 +58,7 @@ const kResolveHistoryPath = Symbol('_kResolveHistoryPath');\n const kReplHistoryMessage = Symbol('_kReplHistoryMessage');\n const kFlushHistory = Symbol('_kFlushHistory');\n const kGetHistoryPath = Symbol('_kGetHistoryPath');\n+const kClo...
2026-02-05T15:09:00
golang/go
e22dc6c86685aef76a9bb22ff186d4cd5a822027
a95f60871f52f3701e596c07b0e7bf8a3b1619ed
context: modernize AfterFunc example using WaitGroup.Go The context.AfterFunc example currently uses the traditional sync.WaitGroup pattern with Add and Done. Update the example to use sync.WaitGroup.Go instead. Fixes #78018 Change-Id: I079a773a6ec1c65f26af2bd8092067843adb1cd1 GitHub-Last-Rev: 9e648ae4241ca0647d3a5...
[ { "path": "src/context/example_test.go", "patch": "@@ -161,11 +161,8 @@ func ExampleAfterFunc_cond() {\n \tcond := sync.NewCond(new(sync.Mutex))\n \n \tvar wg sync.WaitGroup\n-\tfor i := 0; i < 4; i++ {\n-\t\twg.Add(1)\n-\t\tgo func() {\n-\t\t\tdefer wg.Done()\n-\n+\tfor range 4 {\n+\t\twg.Go(func() {\n \t\...
2026-03-09T01:31:02
rust-lang/rust
acb162e15894648da4b26e4afa708eb0e1b26233
166f219169267be776fd6200f5825568cd20dc40
fix: silence type mismatch diagnostic when type is unknown
[ { "path": "src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/type_mismatch.rs", "patch": "@@ -20,7 +20,14 @@ use crate::{Assist, Diagnostic, DiagnosticCode, DiagnosticsContext, adjusted_dis\n //\n // This diagnostic is triggered when the type of an expression or pattern does not match\n // the exp...
2026-04-03T11:05:46
electron/electron
491fa0442b1dd7f2296035512a9c90f0a20b3f45
b508510cab6d19b06c50b6fe16644cfc054c4ce2
fix: rgbaf16 shared texture remove keyed mutex. (#49798) * fix: rgbaf16 shared texture remove keyed mutex. * fix: rgbaf16 patch. * 更新 shared-texture-handle.md Co-authored-by: John Kleinschmidt <kleinschmidtorama@gmail.com> --------- Co-authored-by: John Kleinschmidt <kleinschmidtorama@gmail.com>
[ { "path": "docs/api/structures/shared-texture-handle.md", "patch": "@@ -1,6 +1,6 @@\n # SharedTextureHandle Object\n \n-* `ntHandle` Buffer (optional) _Windows_ - NT HANDLE holds the shared texture. Note that this NT HANDLE is local to current process.\n+* `ntHandle` Buffer (optional) _Windows_ - NT HANDLE ...
2026-02-19T16:28:53
facebook/react
3cde211b0cb1c707114c27d7fd23683d02086e31
1d3664665b4e52bd1daee775e1e95feb563799d9
React DevTools 7.0.0 -> 7.0.1 (#34926) Full list of changes: * Text layout fixes for stack traces with badges ([eps1lon](https://github.com/eps1lon) in [#34925](https://github.com/facebook/react/pull/34925)) * chore: read from build/COMMIT_SHA fle as fallback for commit hash ([hoxyq](https://github.com/hoxyq) in [#34...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"7.0.0\",\n+ \"version\": \"7.0.1\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2025-10-20T17:39:28
golang/go
a95f60871f52f3701e596c07b0e7bf8a3b1619ed
3694f3369276d072d3eccd03b1855b18d3ecee18
cmd/compile: fix mips64 CALLtailinter argument count It should be 2, not 1. Fixes #78013 Change-Id: If1c48c84c324a3fd50e9f4b43cca2ea62a995dc5 Reviewed-on: https://go-review.googlesource.com/c/go/+/752740 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Mark Freeman <markfreeman@google.com> Auto-Submit: Keith...
[ { "path": "src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go", "patch": "@@ -275,7 +275,7 @@ func init() {\n \t\t// function calls\n \t\t{name: \"CALLstatic\", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: \"CallOff\", clobberFlags: true, call: true}, // c...
2026-03-08T04:17:39
vercel/next.js
236a76dd0fb61196dfb4da1568c0eb42c5d17283
00067f40bdcf642ce69b8110819bf114d256c228
[turbopack] Remove `turbo_tasks::function` from ModuleReference getters (#91229) ### What? Refactors the `ModuleReference` trait to make `chunking_type()` and `binding_usage()` methods return direct values instead of `Vc<T>` wrapped values, removing the need for async task functions. Also removes the `get_referenced...
[ { "path": "crates/next-api/src/nft_json.rs", "patch": "@@ -7,7 +7,7 @@ use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n FxIndexMap, ReadRef, ResolvedVc, TryFlatJoinIterExt, TryJoinIterExt, ValueToString, Vc,\n graph::{AdjacencyMap, GraphTraversal, Visit},\n- turbobail, turbofmt,\n+ turb...
2026-03-13T18:54:56
nodejs/node
c6a89f953dc06f4638965581eb740292423d8c1e
36ca6275c7a170b66baa00099fd88ecc6b48a724
doc: fix grammatical error in README.md Corrected wording for clarity in README. PR-URL: https://github.com/nodejs/node/pull/61653 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "README.md", "patch": "@@ -105,7 +105,7 @@ curl -fsLo \"/path/to/nodejs-keyring.kbx\" \"https://github.com/nodejs/release-keys\n ```\n \n Alternatively, you can import the releaser keys in your default keyring, see\n-[Release keys](#release-keys) for commands to how to do that.\n+[Release keys](#r...
2026-02-05T13:11:25
rust-lang/rust
a24ee0329e0e2c810f9468285505809be75d847b
4fbcb031de05becc6cf2984446d0ce9972376757
cg_llvm/debuginfo: scalable vectors Generate debuginfo for scalable vectors, following the structure that Clang generates for scalable vectors.
[ { "path": "compiler/rustc_codegen_gcc/src/common.rs", "patch": "@@ -145,6 +145,10 @@ impl<'gcc, 'tcx> ConstCodegenMethods for CodegenCx<'gcc, 'tcx> {\n self.const_int(self.type_i32(), i as i64)\n }\n \n+ fn const_i64(&self, i: i64) -> RValue<'gcc> {\n+ self.const_int(self.type_i64(), i...
2026-02-26T15:35:20