repo
stringclasses
11 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
59.2k
files
listlengths
1
300
timestamp
timestamp[s]date
2016-04-11 04:39:55
2026-04-09 07:34:40
golang/go
043b9de65825abef6d8946affda075a777dfb322
e432b4f3a1e067ac8fe7b8e0edbe60ca1f52475d
net: parse addresses without separators in ParseMac IEEE EUI guidelines states that "an EUI-48 can be represented in the IEEE RA hexadecimal (hex) form with the octets separated by hyphens, or as a pure base-16 numerical representation without hyphens" (https://standards.ieee.org/wp-content/uploads/import/documents/tu...
[ { "path": "src/net/mac.go", "patch": "@@ -36,8 +36,9 @@ func (a HardwareAddr) String() string {\n //\t0000.5e00.5301\n //\t0200.5e10.0000.0001\n //\t0000.0000.fe80.0000.0000.0000.0200.5e10.0000.0001\n+//\t00005e005301\n func ParseMAC(s string) (hw HardwareAddr, err error) {\n-\tif len(s) < 14 {\n+\tif len(s...
2025-11-25T07:38:09
nodejs/node
2258f22672a084ea1de6354bbc3b69c218654e20
3903ee8cf3da6961eb3f5939a84235fa12f8d7a3
test_runner: fix todo inheritance PR-URL: https://github.com/nodejs/node/pull/59721 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-B...
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -647,7 +647,7 @@ class Test extends AsyncResource {\n this.expectedAssertions = plan;\n this.cancelled = false;\n this.skipped = skip !== undefined && skip !== false;\n- this.isTodo = todo !== undefined && todo !== false;\n+ this.i...
2025-09-04T09:35:48
rust-lang/rust
b2e8177455cad2c001a58d43a4dec6d896cea0ad
fd0c901b00ee1e08a250039cdb90258603497e20
Reorder `define_callbacks`. This is nitpicky, but the lack of a sensible order has been bugging me. - Within `mod $name`, put all the typedefs together. - After that: - First, types definitions and their impls. - Then the `TyCtxt*` impls, in a sensible order. - Likewise, put `TyCtxt::at` before the similar me...
[ { "path": "compiler/rustc_middle/src/query/plumbing.rs", "patch": "@@ -201,6 +201,13 @@ pub struct TyCtxtEnsureDone<'tcx> {\n }\n \n impl<'tcx> TyCtxt<'tcx> {\n+ /// Returns a transparent wrapper for `TyCtxt` which uses\n+ /// `span` as the location of queries performed through it.\n+ #[inline(alwa...
2026-03-19T04:59:16
facebook/react
acee65d6d031697ab8c71932a5b028351cbc3b03
1ae0a845bde5b95dfc319cadf366cb7b3fb1ca92
[Flight] Track Awaits on I/O as Debug Info (#33388) This lets us track what data each Server Component depended on. This will be used by Performance Track and React DevTools. We use Node.js `async_hooks`. This has a number of downside. It is Node.js specific so this feature is not available in other runtimes until so...
[ { "path": "packages/react-server/src/ReactFlightAsyncSequence.js", "patch": "@@ -0,0 +1,41 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ *\n+ * @flow\n...
2025-06-03T18:14:40
vercel/next.js
631b2c60c89352e794b7d863db79457a278fe2ac
599fc3f82a40044bb31d64f08dcd7b5a6ded2b8d
Add Graphite workflow Cursor command (#88939) ### What? Adds a Cursor command file (`.cursor/commands/gt-workflow.md`) that provides guidance on using Graphite (gt) instead of git for branch and commit operations. ### Why? To make the Graphite workflow easily accessible within Cursor IDE via the `/gt-workflow` comm...
[ { "path": ".cursor/commands/gt-workflow.md", "patch": "@@ -0,0 +1,67 @@\n+# Git Workflow with Graphite\n+\n+## Overview\n+\n+Use Graphite (`gt`) instead of git for ALL branch and commit operations in this repository.\n+\n+## Forbidden Git Commands\n+\n+NEVER use these git commands directly:\n+\n+- `git push...
2026-01-23T12:42:30
nodejs/node
a87f1c140ed24deeaf4f512b2f8f3037556bf9a2
b8fa294994210f8bedb9de2b7fba292bae0b7ae2
build: fix getting OpenSSL version on Windows Node.js on Windows is built with `clang`, not `gcc`. PR-URL: https://github.com/nodejs/node/pull/59609 Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "configure.py", "patch": "@@ -20,9 +20,9 @@\n original_argv = sys.argv[1:]\n \n # gcc and g++ as defaults matches what GYP's Makefile generator does,\n-# except on OS X.\n-CC = os.environ.get('CC', 'cc' if sys.platform == 'darwin' else 'gcc')\n-CXX = os.environ.get('CXX', 'c++' if sys.platform == ...
2025-09-04T09:28:24
golang/go
c1acdcb34560b20291cf55c988d0f883a38e8bbf
8ae5d408ed62d234cb72adebb9a23e08da1cedc6
crypto/x509: prevent HostnameError.Error() from consuming excessive resource Constructing HostnameError.Error() takes O(N^2) runtime due to using a string concatenation in a loop. Additionally, there is no limit on how many names are included in the error message. As a result, a malicious attacker could craft a certif...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -108,31 +108,38 @@ type HostnameError struct {\n \n func (h HostnameError) Error() string {\n \tc := h.Certificate\n+\tmaxNamesIncluded := 100\n \n \tif !c.hasSANExtension() && matchHostnames(c.Subject.CommonName, h.Host) {\n \t\treturn \"x509: certificate...
2025-11-24T19:56:23
electron/electron
38e7ff944ed8239d2130c284e4b63e749b2cfe7c
8f09d7037b2b7263605005f0279650573c4e5a34
refactor: make `NativeWindow::has_frame_` const (#47200) * refactor: make NativeWindow::is_modal_ const * refactor: make NativeWindow::title_bar_style_ const and private * refactor: make NativeWindow::has_client_frame() protected refactor: make NativeWindow::transparent() protected * refactor: make NativeWindow::e...
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -75,10 +75,12 @@ namespace electron {\n namespace {\n \n #if BUILDFLAG(IS_WIN)\n-gfx::Size GetExpandedWindowSize(const NativeWindow* window, gfx::Size size) {\n+gfx::Size GetExpandedWindowSize(const NativeWindow* window,\n+ ...
2025-05-22T22:32:46
facebook/react
526dd340b3e77193846fe5eed02b9bb89d7c2d15
ee76351917106c6146745432a52e9a54a41ee181
[compiler][patch] Emit unary expressions instead of negative numbers (#33383) This is a babel bug + edge case. Babel compact mode produces invalid JavaScript (i.e. parse error) when given a `NumericLiteral` with a negative value. See https://codesandbox.io/p/devbox/5d47fr for repro.
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -1726,7 +1726,7 @@ function codegenInstructionValue(\n }\n case 'UnaryExpression': {\n value = t.unaryExpression(\n- instrValue.operator as 'throw', // todo\n+ in...
2025-06-02T15:43:45
vercel/next.js
13c47b3ff46ec4dc323130b7b5beec4b1df9121b
c582bf8eb2e1fabb020c940f360562b70a26c6c2
Turbopack: improve module type error message (#88815) ### What? improve module type error message
[ { "path": "turbopack/crates/turbopack/src/lib.rs", "patch": "@@ -674,10 +674,12 @@ async fn process_default_internal(\n ModuleIssue::new(\n *ident,\n rcstr!(\"Invalid module type\"),\n- ...
2026-01-23T09:14:06
nodejs/node
5600c0eb4094c78b833666840561242dd24d618b
5b32bb1573dace2dd058c05ac4fab1e4e446c775
src: fix build on NetBSD Include missing cmath.h header. Fixes: https://github.com/nodejs/node/issues/59714 PR-URL: https://github.com/nodejs/node/pull/59718 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Re...
[ { "path": "src/tracing/traced_value.cc", "patch": "@@ -9,6 +9,7 @@\n #include <unicode/utypes.h>\n #endif\n \n+#include <cmath>\n #include <sstream>\n \n #include \"node_metadata.h\"", "additions": 1, "deletions": 0 } ]
2025-09-04T08:00:30
golang/go
8ae5d408ed62d234cb72adebb9a23e08da1cedc6
c5c05a0e43d062a89fc8d4172d3c043617d9dd81
spec: more precise prose for built-in function new 1) explain new(type) (simpler) before new(expr) (more complicated) 2) for new(expr), explain what happens when expr is an untyped bool 3) explain that new(nil) is not permitted 4) streamline examples slightly Fixes #76122. Change-Id: I5ddb26bd88241b4b2b9aa9b532a62f7...
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.26 (Nov 18, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Dec 2, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -7794,40 +7794,32...
2025-11-20T22:05:27
electron/electron
b2d0074cc68c93c5db5ecd826e0eb829fb13aa01
2e8fc17f07d0e842599bd9979d304aa2b97bec5d
build: fix depot tool pathing on Windows (#47194) build: properly set depot_tools pathing for Windows
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -15,12 +15,16 @@ runs:\n fi\n export BUILD_TOOLS_SHA=6e8526315ea3b4828882497e532b8340e64e053c\n npm i -g @electron/build-tools\n+ # Update depot_tools to ensure python\n e d update_depot_tools\n e aut...
2025-05-21T23:05:50
facebook/react
ee76351917106c6146745432a52e9a54a41ee181
8b55eb4e724271206bd5dec7dba0a35aedc74493
fix typo in compiler validation filename (#33345) ## Summary While investigating the root cause of #33208, I noticed a clear typo for one of the validation files. ## How did you test this change? Inside `/react/compiler/packages/babel-plugin-react-compiler` I ran the test script successfully: <img width="415" alt=...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/index.ts", "patch": "@@ -9,7 +9,7 @@ export {validateContextVariableLValues} from './ValidateContextVariableLValues';\n export {validateHooksUsage} from './ValidateHooksUsage';\n export {validateMemoizedEffectDependencies} from './Valid...
2025-05-30T23:31:16
rust-lang/rust
a3e469ea1f03936e2156b7d683aa7fc83d56a252
fcdaca4d9b14274ddcfa47eda8183d3db9be4137
fix some outdated comments in tests
[ { "path": "src/tools/miri/tests/fail/stacked_borrows/transmute-is-no-escape.rs", "patch": "@@ -2,7 +2,7 @@\n // (i.e, no EscapeToRaw happened).\n // We could, in principle, do EscapeToRaw lazily to allow this code, but that\n // would no alleviate the need for EscapeToRaw (see `ref_raw_int_raw` in\n-// `run...
2026-03-19T06:48:27
vercel/next.js
c582bf8eb2e1fabb020c940f360562b70a26c6c2
2e2dd02c120ebe62c154043acb1fdbd8537dd1b7
fix typo (#88934) typo
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -1347,7 +1347,7 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n .flatten()\n } {\n // Task exists in backing storage\n- // So we only need to insert it in...
2026-01-23T08:52:09
nodejs/node
35053d82299d1b31627664c80f045102c4bf06b2
737b42e4eeaf975ae11d15887898fb99f0e8da1c
build: fix 'implicit-function-declaration' on OpenHarmony platform PR-URL: https://github.com/nodejs/node/pull/59547 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@ho...
[ { "path": "deps/uvwasi/uvwasi.gyp", "patch": "@@ -28,7 +28,7 @@\n 'include_dirs': ['include']\n },\n 'conditions': [\n- [ 'OS==\"linux\"', {\n+ [ 'OS==\"linux\" or OS==\"openharmony\"', {\n 'defines': [\n '_GNU_SOURCE',\n '_POSIX_C_SOURCE=2...
2025-09-02T16:27:04
golang/go
8b5db48db11f6ec075fd1ea528a5d611579c3a0d
94616dad425959b92d50498e1a18e47e5e6c8709
net/http: deflake TestClientConnReserveAndConsume This test includes an assertion that a client conn's state hook is called exactly once, but some of the test cases can result in two events occurring: A request completes and a connection closes. Change the assertion to just check that the hook is called at least once...
[ { "path": "src/net/http/clientconn_test.go", "patch": "@@ -286,9 +286,10 @@ func TestClientConnReserveAndConsume(t *testing.T) {\n \t\t\t\tsynctest.Wait()\n \n \t\t\t\t// State hook should be called, either to report the\n-\t\t\t\t// connection availability increasing or the connection closing.\n-\t\t\t\tif...
2025-12-01T20:28:19
electron/electron
2e8fc17f07d0e842599bd9979d304aa2b97bec5d
4af0c5d7620c4abe49706133242a31ea69b37848
refactor: pass views::Widget* into constructors of our TreeHosts and NativeWidgets (#47177) * refactor: remove unnecessary downcast in MenuViews::PopupAt() * refactor: pass a views::Widget as an arg to the ElectronDesktopWindowTreeHostLinux ctor * refactor: pass a views::Widget as an arg to the ElectronDesktopNative...
[ { "path": "shell/browser/api/electron_api_menu_views.cc", "patch": "@@ -27,7 +27,7 @@ void MenuViews::PopupAt(BaseWindow* window,\n int positioning_item,\n ui::mojom::MenuSourceType source_type,\n base::OnceClosure callback) {\n- auto*...
2025-05-21T21:02:55
rust-lang/rust
f60b6499d84ccf8bf0c325bf7ff3f736e134b730
fd0c901b00ee1e08a250039cdb90258603497e20
rustc_resolve: improve const generic errors Signed-off-by: Usman Akinyemi <usmanakinyemi202@gmail.com>
[ { "path": "compiler/rustc_resolve/src/build_reduced_graph.rs", "patch": "@@ -898,7 +898,7 @@ impl<'a, 'ra, 'tcx> BuildReducedGraphVisitor<'a, 'ra, 'tcx> {\n }\n \n // These items live in both the type and value namespaces.\n- ItemKind::Struct(ident, _, ref vdata) => {\n+ ...
2026-02-20T14:41:37
facebook/react
14094f80cbf52cad4024211080d8491f3334ef61
5717f1933f2e8b10406fde1043c3047cbfbddc82
Allow `nonce` to be used on hoistable styles (#32461) fixes https://github.com/facebook/react/issues/32449 This is my first time touching this code. There are multiple systems in place here and I wouldn't be surprised to learn that this has to be handled in some other areas too. I have found some other style-related ...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -135,6 +135,13 @@ const SentMarkShellTime /* */ = 0b001000000;\n const NeedUpgradeToViewTransitions /* */ = 0b010000000;\n const SentUpgradeToViewTransitions /* */ = 0b100000000;\n \n+type NonceOpti...
2025-05-29T15:17:10
nodejs/node
737b42e4eeaf975ae11d15887898fb99f0e8da1c
961554c89dd2793a43e7c8e2a2e5768c7d0b2b73
src: fix race on process exit and off thread CA loading When calling `process.exit()` or on uncaught exceptions as soon as the process starts, the process will try to terminate immediately. In this case, there could be a race condition on the unfinished off-thread system CA loader which tries to access the OpenSSL API...
[ { "path": "src/api/environment.cc", "patch": "@@ -1,4 +1,7 @@\n #include <cstdlib>\n+#if HAVE_OPENSSL\n+#include \"crypto/crypto_util.h\"\n+#endif // HAVE_OPENSSL\n #include \"env_properties.h\"\n #include \"node.h\"\n #include \"node_builtins.h\"\n@@ -1004,6 +1007,11 @@ void DefaultProcessExitHandlerInter...
2025-09-02T10:19:25
golang/go
42e03bbd27a31e389ca37863b0bb90692086f408
18015e8c369df15ca73fc00d6db8efc0590236ba
debug/elf: correct case of DWARF in comment Change-Id: I5b80b0e3e50fafdb732c732cdae6e2756d919d20 Reviewed-on: https://go-review.googlesource.com/c/go/+/725360 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Mark Freeman <markfreeman@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -1300,7 +1300,7 @@ func (f *File) DWARF() (*dwarf.Data, error) {\n \t\treturn b, nil\n \t}\n \n-\t// There are many DWARf sections, but these are the ones\n+\t// There are many DWARF sections, but these are the ones\n \t// the debug/dwarf package started with....
2025-11-28T22:34:06
vercel/next.js
7282ce6759ea2373b2060e0720abe8983e1a87ae
5a0b9787c7ef8beb5bc194c5e7182112919f0567
[prebuilt-skew-protection] feat: adding in automatic deploymentId (#88496) Original [PR](https://github.com/vercel/next.js/pull/88012/) has a bug that attempted to validate on environment variables. Edited function to not run validations on environment variables, only on the user provided deployment id. <!-- Thanks f...
[ { "path": "errors/deploymentid-invalid-characters.mdx", "patch": "@@ -0,0 +1,71 @@\n+---\n+title: '`deploymentId` contains invalid characters'\n+---\n+\n+## Why This Error Occurred\n+\n+The `deploymentId` in your `next.config.js` contains characters that are not allowed. Only alphanumeric characters (a-z, A...
2026-01-22T21:07:34
electron/electron
a7a3e10300926898db0ceff1f778cd9cd06e05c6
7b77a24211784e4c8e54072703ea961a4991069c
refactor: prefer `base::circular_deque` over `std::deque` (#47171) * refactor: use base::circular_deque in ResolveProxyHelper * refactor: use base::circular_deque in GetExtraCrashKeys() refactor: reduce visibility of kMaxCrashKeyValueSize This change is to match Chromium's usage advice from base/containers/README.m...
[ { "path": "shell/browser/net/resolve_proxy_helper.h", "patch": "@@ -5,10 +5,10 @@\n #ifndef ELECTRON_SHELL_BROWSER_NET_RESOLVE_PROXY_HELPER_H_\n #define ELECTRON_SHELL_BROWSER_NET_RESOLVE_PROXY_HELPER_H_\n \n-#include <deque>\n #include <optional>\n #include <string>\n \n+#include \"base/containers/circular...
2025-05-21T17:04:36
facebook/react
c0464aedb16b1c970d717651bba8d1c66c578729
6a1dfe37776e5a41f4c1e07c33cf1f26c4a82979
[Fizz] Block on Suspensey Fonts during reveal (#33342) This is the same technique we do for the client except we don't check whether this is newly created font loading to keep code small. Unfortunately, we can't use this technique for Suspensey images. They'll need to block before we call `startViewTransition` in a s...
[ { "path": "packages/react-dom-bindings/src/server/fizz-instruction-set/ReactDOMFizzInstructionSetInlineCodeStrings.js", "patch": "@@ -8,7 +8,7 @@ export const clientRenderBoundary =\n export const completeBoundary =\n '$RB=[];$RV=function(c){$RT=performance.now();for(var a=0;a<c.length;a+=2){var b=c[a],h=...
2025-05-23T17:26:02
nodejs/node
fe1a2e33f5e71787546213f20442dc3173bddde1
dddc4a597288ba30a46bfef762dd22ab732b941e
fs: fix dereference: false on cpSync PR-URL: https://github.com/nodejs/node/pull/59681 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pin...
[ { "path": "src/node_file.cc", "patch": "@@ -3245,8 +3245,8 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n errorno, dereference ? \"stat\" : \"lstat\", nullptr, src.out());\n }\n auto dest_status =\n- dereference ? std::filesystem::symlink_status(dest_path, erro...
2025-08-31T17:30:53
golang/go
18015e8c369df15ca73fc00d6db8efc0590236ba
4be545115cf8ed42aa0337cbb6c3a92f718192b9
doc/next: clean up some Go 1.26 release notes The Var.Kind stuff was in Go 1.25. And the net additions were in the wrong tense and didn't have links. Change-Id: Ie710e1d41c714fe627a3a21a5afb6b7f78301f68 Reviewed-on: https://go-review.googlesource.com/c/go/+/724780 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> ...
[ { "path": "doc/initial/6-stdlib/99-minor/0-heading.md", "patch": "@@ -1,10 +1 @@\n ### Minor changes to the library {#minor_library_changes}\n-\n-#### go/types\n-\n-The `Var.Kind` method returns an enumeration of type `VarKind` that\n-classifies the variable (package-level, local, receiver, parameter,\n-res...
2025-11-26T18:11:41
rust-lang/rust
ca2139d3262232d6b15471783f503ffe125531f6
53d60bb1c5d325b43419c7618287a1405dec36d0
Point at return type when it is the source of the type expectation When calling an fn that returns a return type as a returned expression, point at the return type to explain that it affects the expected type. ``` error[E0308]: mismatched types --> f56.rs:5:15 | 3 | fn main() { | - the call ...
[ { "path": "compiler/rustc_hir_typeck/src/fn_ctxt/checks.rs", "patch": "@@ -11,7 +11,7 @@ use rustc_hir::attrs::DivergingBlockBehavior;\n use rustc_hir::def::{CtorKind, CtorOf, DefKind, Res};\n use rustc_hir::def_id::DefId;\n use rustc_hir::intravisit::Visitor;\n-use rustc_hir::{Expr, ExprKind, HirId, LangIt...
2026-03-16T22:38:16
electron/electron
7b77a24211784e4c8e54072703ea961a4991069c
7112c592c9ce0f0e55ee23ca8415b2f14f62a56c
fix: remove extra 'suspend'/'resume' handling from `powerMonitor` (#47162) fix: remove extra 'suspend'/'resume' handling from powerMonitor
[ { "path": "shell/browser/api/electron_api_power_monitor_mac.mm", "patch": "@@ -34,17 +34,6 @@ - (id)init {\n selector:@selector(onScreenUnlocked:)\n name:@\"com.apple.screenIsUnlocked\"\n object:nil];\n- // A notificat...
2025-05-21T15:00:38
vercel/next.js
092458fd6a84bd0cf1b6fa7eb814bcb13f4e6637
4e8671cf5c142b1661b6b53404782aace2fb8d71
feat: implement LRU cache with invocation ID scoping for minimal mode response cache (#88509) ## Summary Implements an LRU cache with compound keys for the minimal mode response cache to improve cache hit rates during parallel revalidation scenarios. **Problem**: The previous single-entry cache (`previousCacheItem`)...
[ { "path": "packages/next/src/server/lib/lru-cache.test.ts", "patch": "@@ -226,4 +226,75 @@ describe('LRUCache', () => {\n expect(cache.has('key149')).toBe(true) // recent keys retained\n })\n })\n+\n+ describe('onEvict Callback', () => {\n+ it('should call onEvict when an entry is evicted', ...
2026-01-22T18:45:15
facebook/react
6a1dfe37776e5a41f4c1e07c33cf1f26c4a82979
99efc627a5a8cb56f50cfffee544c86c49572b6f
Disable moveBefore experiment (#33348) There seems to be some bugs still to work out in Chrome. See #33187. Additionally, since you can't really rely on this function existing across browsers, it's hard to depend on its behavior anyway. In fact, you now have a source of inconsistent behaviors across browsers to deal ...
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -194,7 +194,7 @@ export const disableLegacyContext = true;\n export const disableLegacyContextForFunctionComponents = true;\n \n // Enable the moveBefore() alternative to insertBefore(). This preserves states of moves.\n-export const enableMoveB...
2025-05-23T17:25:13
rust-lang/rust
45b22efe06630703e20de19c589299e6a592469e
1e2183119f0ee19cc26df899e26b04ad0de3475d
tests: Activate must_not_suspend test for MutexGuard dropped before await The test pass in `nightly-2023-09-24` but fail in `nightly-2023-09-23`: $ rustc +nightly-2023-09-23 --edition 2018 tests/ui/lint/must_not_suspend/mutex-guard-dropped-before-await.rs error: `MutexGuard` held across a suspend point, but s...
[ { "path": "src/tools/tidy/src/issues.txt", "patch": "@@ -1476,7 +1476,6 @@ ui/lint/issue-97094.rs\n ui/lint/issue-99387.rs\n ui/lint/let_underscore/issue-119696-err-on-fn.rs\n ui/lint/let_underscore/issue-119697-extra-let.rs\n-ui/lint/must_not_suspend/issue-89562.rs\n ui/lint/unused/issue-103320-must-use-op...
2026-03-18T20:29:45
electron/electron
263c76df091f2dae65db19e9e3375a3afb56c556
517f5c15b957a43702bd0cc5009440d5a0a339d6
fix: prevent gc monitor 2nd pass crash (#46987)
[ { "path": "shell/common/gin_converters/osr_converter.cc", "patch": "@@ -143,19 +143,21 @@ v8::Local<v8::Value> Converter<electron::OffscreenSharedTextureValue>::ToV8(\n // texture, output it in second pass callback.\n data.SetSecondPassCallback([](const v8::WeakCallbackInfo<\n ...
2025-05-20T13:54:03
vercel/next.js
61bf6f633f26a6eadee31693fe4b11c5f43e97cd
85d043a64aec4f49a6432e4c1a693881e6688e49
Turbopack: Fix next/font preloading for page.mdx (#88848) ## What? This PR fixes font preloading for MDX pages in Turbopack and adds an e2e test to verify the fix. ## Why? When using `next/font` with MDX pages, font preloading was failing with Turbopack because the LoaderTree was storing the **transformed module pa...
[ { "path": "crates/next-core/src/base_loader_tree.rs", "patch": "@@ -1,7 +1,7 @@\n use anyhow::Result;\n use indoc::formatdoc;\n use turbo_rcstr::RcStr;\n-use turbo_tasks::{FxIndexMap, ResolvedVc, ValueToString, Vc};\n+use turbo_tasks::{FxIndexMap, ResolvedVc, Vc};\n use turbo_tasks_fs::FileSystemPath;\n use...
2026-01-22T14:56:50
nodejs/node
dddc4a597288ba30a46bfef762dd22ab732b941e
494909b4f8f2f10b277140eaf96343d4dc26a115
lib: fix DOMException subclass support PR-URL: https://github.com/nodejs/node/pull/59680 Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jordan Harband <ljharb@gmail.com>
[ { "path": "lib/internal/per_context/domexception.js", "patch": "@@ -60,7 +60,6 @@ const disusedNamesSet = new SafeSet()\n .add('NoDataAllowedError')\n .add('ValidationError');\n \n-let DOMExceptionPrototype;\n // The DOMException WebIDL interface defines that:\n // - ObjectGetPrototypeOf(DOMException) =...
2025-08-31T17:20:02
facebook/react
99efc627a5a8cb56f50cfffee544c86c49572b6f
bfaeb4a46175fa0f4edf2eba58349d5029e5e86e
[eslint] Add an option to require dependencies on effect hooks (#33344) Summary: To prepare for automatic effect dependencies, some codebases may want to codemod existing useEffect calls with no deps to include an explicit undefined second argument in order to preserve the "run on every render" behavior. In sufficien...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -8344,6 +8344,23 @@ const testsTypescript = {\n },\n ],\n },\n+ {\n+ code: normalizeIndent`\n+ function MyComponent(props) {\n+ useEffect(() => {\n+ co...
2025-05-23T14:09:41
golang/go
1555fad47ddfe149ae5f2eb593124fd7371968a9
eec1afeb28522df37c78c29506ae89233bbce4e9
vendor/golang.org/x/tools: update to 1ad6f3d cmd$ go get golang.org/x/tools@1ad6f3d cmd$ GOWORK=off go mod tidy cmd$ GOWORK=off go mod vendor This merge pulls in the following commits, which include several fixes needed for go1.26, marked by an asterisk. None of the unmarked commits affects vendored packages, so it i...
[ { "path": "src/cmd/go.mod", "patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.38.0\n \tgolang.org/x/telemetry v0.0.0-20251111182119-bc8e575c7b54\n \tgolang.org/x/term v0.34.0\n-\tgolang.org/x/tools v0.39.1-0.20251120214200-68724afed209\n+\tgolang.org/x/tools v0.39.1-0.20251130212600-1ad6f3d02713...
2025-12-01T15:26:29
rust-lang/rust
49bb371ca74904400330e065dd847b6b9390b2a0
53d60bb1c5d325b43419c7618287a1405dec36d0
When single impl can satisfy inference error, suggest type When encountering an inference error where a return type must be known, like when calling `Iterator::sum::<T>()` without specifying `T`, look for all `T` that would satisfy `Sum<S>`. If only one, suggest it. ``` error[E0283]: type annotations needed --> $DI...
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/infer/need_type_info.rs", "patch": "@@ -158,6 +158,7 @@ impl UnderspecifiedArgKind {\n \n struct ClosureEraser<'a, 'tcx> {\n infcx: &'a InferCtxt<'tcx>,\n+ depth: usize,\n }\n \n impl<'a, 'tcx> ClosureEraser<'a, 'tcx> {\n@@ -172,7 +173,8 @...
2026-03-11T16:39:03
vercel/next.js
85d043a64aec4f49a6432e4c1a693881e6688e49
98fd3456fb19b1305816ccba8f45d43eb1e367da
Create-next-app update message (#88706) ### What? This PR fixes `create-next-app` update notifications for prerelease versions by checking against the correct npm dist-tag. ### Why? Users running `pnpx create-next-app@canary` were incorrectly prompted to update to the stable version because: 1. The `update-check` ...
[ { "path": "packages/create-next-app/index.ts", "patch": "@@ -656,7 +656,18 @@ async function run(): Promise<void> {\n conf.set('preferences', preferences)\n }\n \n-const update = updateCheck(packageJson).catch(() => null)\n+// Determine the appropriate dist-tag to check for updates.\n+// For prerelease ve...
2026-01-22T14:38:37
electron/electron
e0ea069859bae238eac3ea65d51500607393c166
7cc76c094a38e350045c1346bfe8ce6ebf6f1c44
build: remove `fix_linter_error.patch` (#47150) build: remove fix_linter_error.patch
[ { "path": "patches/chromium/.patches", "patch": "@@ -133,6 +133,5 @@ feat_add_signals_when_embedder_cleanup_callbacks_run_for.patch\n feat_separate_content_settings_callback_for_sync_and_async_clipboard.patch\n fix_win32_synchronous_spellcheck.patch\n fix_enable_wrap_iter_in_string_view_and_array.patch\n-fi...
2025-05-19T20:52:01
nodejs/node
f36de728115d257bcb23723ef3202cdaffc401cd
eefe3b14bfb33f0a14decd687a77bbb00099c054
wasi: fix `clean` target in `test/wasi/Makefile` PR-URL: https://github.com/nodejs/node/pull/59576 Refs: https://www.gnu.org/software/make/manual/make.html#Cleanup Refs: https://www.gnu.org/software/make/manual/make.html#Parallel-Disable Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigi...
[ { "path": "test/wasi/Makefile", "patch": "@@ -12,5 +12,7 @@ wasm/pthread.wasm : c/pthread.c\n wasm/%.wasm : c/%.c\n \t$(CC) $< $(CFLAGS) --target=$(TARGET) --sysroot=$(SYSROOT) -s -o $@\n \n-.PHONY clean:\n+.PHONY: clean\n+.NOTPARALLEL: clean\n+clean:\n \trm -f $(OBJ)", "additions": 3, "deletions": ...
2025-08-30T19:06:03
golang/go
eec1afeb28522df37c78c29506ae89233bbce4e9
3f94f3d4b2f03a913de3f5a737bad793418e751f
debug/elf: make check for empty symbol section consistent for 64-bit and 32-bit binaries The check for whether a binary's symbols section is empty is inconsistent across the 32-bit and 64-bit flows. Change-Id: I1abc235320a53cf957cfb83c9e7bcad6e52bc529 GitHub-Last-Rev: f264915ca2964ad8f34ce1deee4f42c2f9dc21bf GitHub-P...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -641,7 +641,7 @@ func (f *File) getSymbols32(typ SectionType) ([]Symbol, []byte, error) {\n \t\treturn nil, nil, fmt.Errorf(\"cannot load symbol section: %w\", err)\n \t}\n \tif len(data) == 0 {\n-\t\treturn nil, nil, errors.New(\"symbol section is empty\")\n+...
2025-09-10T02:34:03
facebook/react
bfaeb4a46175fa0f4edf2eba58349d5029e5e86e
3e9db65fc3341148a5248b3ffc6bc68c0640fd3f
Fix incorrect use of NoLanes in executionContext check (#33170) ## Summary This PR fixes a likely incorrect condition in the `scheduleUpdateOnFiber` function inside `ReactFiberWorkLoop.js`. Previously, the code checked: ```js (executionContext & RenderContext) !== NoLanes ```` However, `NoLanes` is part of the lan...
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.js", "patch": "@@ -908,7 +908,7 @@ export function scheduleUpdateOnFiber(\n markRootUpdated(root, lane);\n \n if (\n- (executionContext & RenderContext) !== NoLanes &&\n+ (executionContext & RenderContext) !== NoContext &&\n root === ...
2025-05-23T02:02:39
rust-lang/rust
9d9f68f52769edef5710ded13d80b3e2fe7a0dfe
1cd4c2a0f7efcab799992b46fdff90c5c5c31ae9
fix: .let no complete semicolon before semicolon Make `.let` `.letm` `.return` `.break` not duplicate semicolons Example --- ```rust fn main() { baz.l$0; } ``` **Before this PR** ```rust fn main() { let $0 = baz;; } ``` **After this PR** ```rust fn main() { let $0 = baz; } ```
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs", "patch": "@@ -66,6 +66,12 @@ pub(crate) fn complete_postfix(\n Some(it) => it,\n None => return,\n };\n+ let semi =\n+ if expr_ctx.in_block_expr && ctx.token.next_token().is_none_or(|it| it.ki...
2026-03-18T11:33:05
vercel/next.js
9e933be762ada796e4d263739cda3360a3c38e91
71ac1ec75cfe04785e87e8b8b071cdad9d0d954f
[devtools] Fix notch coloring of error overlay in forced colors mode (#88892)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/overlay/styles.tsx", "patch": "@@ -15,6 +15,8 @@ const styles = css`\n align-items: center;\n flex-direction: column;\n padding: 10vh 15px 0;\n+ /* color schemes we handle. Every other scheme the UA would need to overwrite */\n...
2026-01-22T11:46:54
electron/electron
7cc76c094a38e350045c1346bfe8ce6ebf6f1c44
3660432f42ae7ab311f12d139fb0032bd06a0f2b
chore: bump node to v22.15.1 (main) (#47105) * chore: bump node in DEPS to v22.15.1 * chore: fixup patch indices * src: fix error handling on async crypto operations https://github.com/nodejs-private/node-private/pull/709 --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply....
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '138.0.7178.0',\n 'node_version':\n- 'v22.15.0',\n+ 'v22.15.1',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1 }, { "p...
2025-05-19T20:12:48
facebook/react
3e9db65fc3341148a5248b3ffc6bc68c0640fd3f
0d072884f9201f645ae298936f2933970b73bec4
Fix typo in error message. (#33313) ## Summary I am writing code that isn't so good, so I saw this error message many times. It appears to have a typo. This PR fixes the typo. ## How did you test this change? Ran the tests
[ { "path": "packages/react-dom/src/__tests__/ReactCompositeComponentState-test.js", "patch": "@@ -573,7 +573,7 @@ describe('ReactCompositeComponent-state', () => {\n assertConsoleErrorDev([\n \"Can't perform a React state update on a component that hasn't mounted yet. \" +\n 'This indicates...
2025-05-22T20:18:23
nodejs/node
67cb0adbc29190a4558378c3d4c22c415cc53a45
5af035503a1621dfac7b3d63e307c16671fc6c8a
test: fix internet/test-dns The `nodejs.org` domain has now two TXT records. Do not verify the exact number of records returned (only their shape), and check that one of them is the SPF. PR-URL: https://github.com/nodejs/node/pull/59660 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Joyee C...
[ { "path": "test/internet/test-dns.js", "patch": "@@ -523,9 +523,9 @@ TEST(function test_resolveTlsa_failure(done) {\n \n TEST(async function test_resolveTxt(done) {\n function validateResult(result) {\n- assert.ok(Array.isArray(result[0]));\n- assert.strictEqual(result.length, 1);\n- assert(resul...
2025-08-30T09:47:38
golang/go
3f94f3d4b2f03a913de3f5a737bad793418e751f
2ac1f9cbc3eb2b97ad82730569199ba6ffea956d
test/codegen: fix shift tests on riscv64 These were broken by CL 721206, which changes Rsh to RshU for positive inputs. Change-Id: I9e38c3c428fb8aeb70cf51e7e76f4711c864f027 Reviewed-on: https://go-review.googlesource.com/c/go/+/723340 Reviewed-by: Meng Zhuo <mengzhuo1203@gmail.com> Reviewed-by: Mark Ryan <markdryan@r...
[ { "path": "test/codegen/shift.go", "patch": "@@ -661,7 +661,7 @@ func rsh64to32(v int64) int32 {\n \tx := int32(v)\n \t// riscv64:\"MOVW\"\n \tif x > 8 {\n-\t\t// riscv64:\"SRAIW\" -\"MOVW\" -\"SLLI\"\n+\t\t// riscv64:\"SRLIW\" -\"MOVW\" -\"SLLI\"\n \t\tx >>= 2\n \t}\n \treturn x\n@@ -671,7 +671,7 @@ func r...
2025-11-22T14:10:41
vercel/next.js
71ac1ec75cfe04785e87e8b8b071cdad9d0d954f
37ac3974db79adc7d8da7923f09df6d1509986e4
[devtools] Wrap long file names of stack frames in the error overlay (#88886) https://github.com/user-attachments/assets/0594744b-5dd5-4550-90b8-77071962f666 See [overflow-wrap docs](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/overflow-wrap) for break-word vs anywhere. Just a one-line...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/call-stack-frame/call-stack-frame.tsx", "patch": "@@ -2,7 +2,7 @@ import type { OriginalStackFrame } from '../../../shared/stack-frame'\n \n import { HotlinkedText } from '../hot-linked-text'\n import { ExternalIcon, SourceMappingErrorIcon } ...
2026-01-22T11:38:35
electron/electron
5dd6481e53b253463ec65ebe806f5c14dc855924
d72e622a3fd25c462e2e3916469c2ac571bcdb47
fix: explicit microtask scope DCHECK condition (#47134)
[ { "path": "shell/common/node_util.cc", "patch": "@@ -15,6 +15,7 @@\n #include \"shell/browser/javascript_environment.h\"\n #include \"shell/common/gin_converters/callback_converter.h\"\n #include \"shell/common/node_includes.h\"\n+#include \"shell/common/process_util.h\"\n #include \"third_party/electron_no...
2025-05-19T03:08:59
nodejs/node
5af035503a1621dfac7b3d63e307c16671fc6c8a
cbabdbf3f246dd0e65cb9262d89719c0a2c36b2f
src: migrate WriteOneByte to WriteOneByteV2 PR-URL: https://github.com/nodejs/node/pull/59634 Fixes: https://github.com/nodejs/node/issues/59555 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Darsh...
[ { "path": "src/node_buffer.cc", "patch": "@@ -1037,8 +1037,11 @@ void IndexOfString(const FunctionCallbackInfo<Value>& args) {\n if (needle_data == nullptr) {\n return args.GetReturnValue().Set(-1);\n }\n- needle->WriteOneByte(\n- isolate, needle_data, 0, needle_length, String::NO_NU...
2025-08-29T22:41:00
golang/go
2ac1f9cbc3eb2b97ad82730569199ba6ffea956d
de456450e7a49789de63c515cb78a1e38e88440e
cmd/compile: avoid unnecessary interface conversion in bloop Fixes #76482 Change-Id: I076568d8ae92ad6c9e0a5797cfe5bbfb615f63d2 Reviewed-on: https://go-review.googlesource.com/c/go/+/725180 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@golang....
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -74,7 +74,7 @@ func getNameFromNode(n ir.Node) *ir.Name {\n }\n \n // keepAliveAt returns a statement that is either curNode, or a\n-// block containing curNode followed by a call to runtime.keepAlive for each\n+// block containing curNode fo...
2025-11-28T10:19:42
facebook/react
3710c4d4f9ffb6aa07e291b822e4ec7d69ed5a32
2388481283640d034fd6b4edfca4f11e67953673
Prevent errors from comment node roots with enableViewTransition (#33205) We have many cases internally where the `containerInstance` resolves to a comment node. `restoreRootViewTransitionName` is called when `enableViewTransition` is on, even without introducing a `<ViewTransition />`. So that means it can crash page...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1549,6 +1549,19 @@ export function cancelRootViewTransitionName(rootContainer: Container): void {\n rootContainer.nodeType === DOCUMENT_NODE\n ? (rootContainer: any).documentElement\n : rootContainer.own...
2025-05-21T17:57:35
vercel/next.js
acd5d5edda97f263818b7bc5606f31afb4e785dc
4095107fd39711b4a875cf67a9173ceb4cfb38c5
Turbopack: [chore] Fix Rust check warnings (#88871) # What? Fix some unimportant `check` warnings that appear as noise in the build logs.
[ { "path": "crates/napi/src/next_api/turbopack_ctx.rs", "patch": "@@ -158,7 +158,7 @@ pub struct NapiNextTurbopackCallbacks {\n throw_turbopack_internal_error: ThreadsafeFunction<TurbopackInternalErrorOpts>,\n }\n \n-/// Arguments for [`NapiNextTurbopackCallbacks::throw_turbopack_internal_error`].\n+/// ...
2026-01-22T08:37:23
electron/electron
e2bcd8f0aadffd74bc85eedebe1a2ceab91e1356
99a3e360ec1783f25399a25c6efb3bae017bdcea
test: fix desktopCapturer mocha syntax (#47088) * test: fix desktopCapturer mocha syntax do not nest `it` calls in desktopCapturer specs * empty commit
[ { "path": "spec/api-desktop-capturer-spec.ts", "patch": "@@ -99,7 +99,7 @@ ifdescribe(!process.arch.includes('arm') && process.platform !== 'win32')('deskt\n expect(isEmpties.every(e => e === true)).to.be.true();\n });\n \n- it('getMediaSourceId should match DesktopCapturerSource.id', async () => {\n...
2025-05-15T20:54:49
nodejs/node
a240a9c2229fc9cc780266424047ce3091323561
95bef5af8884a11dd4ba36b665d8b786ef7596b0
doc: update install_tools.bat free disk space Fixes: https://github.com/nodejs/node/issues/59326 PR-URL: https://github.com/nodejs/node/pull/59579 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/msvs/install_tools/install_tools.bat", "patch": "@@ -13,7 +13,7 @@ echo This script will install Python and the Visual Studio Build Tools, necessar\n echo to compile Node.js native modules. Note that Chocolatey and required Windows\n echo updates will also be installed.\n echo.\n-echo This ...
2025-08-29T12:34:55
golang/go
de456450e7a49789de63c515cb78a1e38e88440e
67d4a28707fe948b4d5fe3e171717ab887730c2b
runtime/secret: disable tests under memory validating modes These tests rely on reading memory that has been freed, so any of the modes that validate memory accesses are going to fail. Disable them for now. Fixes #76586. Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-msan-clang15,gotip-linux-amd64-asan-clang1...
[ { "path": "src/runtime/secret/secret_test.go", "patch": "@@ -2,10 +2,14 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-// the race detector does not like our pointer shenanigans\n-// while checking the stack.\n-\n-//go:build goexperiment.r...
2025-11-28T09:40:00
facebook/react
9c7b10e22ea4c184c0465df15705f17ba36b115a
50389e179273558d0919d45bc5db99a21b258b03
[Fizz] Clean up row that was blocked by an aborted boundary (#33318) Fixes a bug that we caused us to hang after an abort because we didn't manage the ref count correctly.
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzSuspenseList-test.js", "patch": "@@ -27,9 +27,10 @@ let writable;\n let container;\n let buffer = '';\n let hasErrored = false;\n+let hasCompleted = false;\n let fatalError = undefined;\n \n-describe('ReactDOMFizSuspenseList', () => {\n+describe('React...
2025-05-21T00:31:16
nodejs/node
d08a1f96b262b628b273e830b6c80e1af50a6268
fba8e6ab4a59fe608fdd0c171a81924392ea3ec6
doc: fix quic session instance typo PR-URL: https://github.com/nodejs/node/pull/59642 Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/quic.md", "patch": "@@ -438,7 +438,7 @@ added: v23.8.0\n \n The callback to invoke when the path validation is updated. Read/write.\n \n-### `seesion.onsessionticket`\n+### `session.onsessionticket`\n \n <!-- YAML\n added: v23.8.0", "additions": 1, "deletions": 1 } ]
2025-08-29T02:24:57
electron/electron
99a3e360ec1783f25399a25c6efb3bae017bdcea
883f48b9b499b0f626b354910bfa4b6f427a7363
fix: opening package paths as directory on macOS (#47077)
[ { "path": "shell/browser/ui/file_dialog_mac.mm", "patch": "@@ -318,9 +318,10 @@ void ReadDialogPathsWithBookmarks(NSOpenPanel* dialog,\n BOOL exists =\n [[NSFileManager defaultManager] fileExistsAtPath:path\n isDirectory:&is_directory];\n- ...
2025-05-15T17:47:46
golang/go
67d4a28707fe948b4d5fe3e171717ab887730c2b
c079dd13c0b0e977d607cf2775bc2f16dd3d106e
fmt: document space behavior of Append Also, introduce the {Print,Fprint,Sprint,Append}{,f,ln} cross product of functions at the top of the docs. Fixes #74656 Change-Id: I85a156cd545ca866e579d8020ddf165cd4bcb26f Reviewed-on: https://go-review.googlesource.com/c/go/+/688877 Reviewed-by: Rob Pike <r@golang.org> LUCI-T...
[ { "path": "src/fmt/doc.go", "patch": "@@ -9,6 +9,18 @@ are simpler.\n \n # Printing\n \n+There are four families of printing functions defined by their output destination.\n+[Print], [Println] and [Printf] write to [os.Stdout];\n+[Sprint], [Sprintln] and [Sprintf] return a string;\n+[Fprint], [Fprintln] and...
2025-07-18T18:57:38
vercel/next.js
0866832665da1b7fbd51e5ae6c8153028288340c
78bc2bad8be1f7e11a8cbe76bc8175fb7ee781ae
refactor: migrate to typed accessors and remove CachedDataItem adapter (#88397) Adopt the new generated accessor methods in turbo-tasks-backend. Remove the CachedDataItem enum and related support macros. This new approach is more ergonomic, memory efficient, and generates slightly smaller serialized payloads. Fro...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/counter_map.rs", "patch": "@@ -106,15 +106,7 @@ impl<K, V> CounterMap<K, V> {\n {\n self.0.get(key)\n }\n- // TODO(lukesandberg): this is just here for the CachedDataItem adaptor layer, can be removed\n- // once that is gone.\...
2026-01-22T01:53:40
facebook/react
4c6967be290fc31182c61cfdac19915fdb16aa60
c6c2a52ad8fb1894b03a3bb618eb57e5deca5aa0
[Fiber] Support AsyncIterable children in SuspenseList (#33299) We support AsyncIterable (more so when it's a cached form like in coming from Flight) as children. This fixes some warnings and bugs when passed to SuspenseList. Ideally SuspenseList with `tail="hidden"` should support unblocking before the full result ...
[ { "path": "packages/react-reconciler/src/ReactChildFiber.js", "patch": "@@ -13,6 +13,7 @@ import type {\n Thenable,\n ReactContext,\n ReactDebugInfo,\n+ SuspenseListRevealOrder,\n } from 'shared/ReactTypes';\n import type {Fiber} from './ReactInternalTypes';\n import type {Lanes} from './ReactFiberLa...
2025-05-20T13:39:25
nodejs/node
bfcba89cc212b826f3dea07909cdd3898bbd14c1
28225857d7e613fad0909e0345aca25c739cc1fb
test: mark test-inspector-network-fetch as flaky again https://redirect.github.com/nodejs/node/pull/59104 did not fix it and it's still flaky in the CI. Refs: https://github.com/nodejs/reliability/blob/main/reports/2025-08-26.md Refs: https://github.com/nodejs/node/issues/59090 PR-URL: https://github.com/nodejs/node/...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -20,6 +20,8 @@ test-fs-read-stream-concurrent-reads: PASS, FLAKY\n test-snapshot-incompatible: SKIP\n \n [$system==win32]\n+# https://github.com/nodejs/node/issues/59090\n+test-inspector-network-fetch: PASS, FLAKY\n # https://github.com/nodejs/node/iss...
2025-08-28T20:21:07
electron/electron
6170a5af40b12cfc2d32fb6690fafb22b743fb40
d65a856bf3cfda04db4c4a2725272e825366a60d
chore: combine all the "patch out Profiles" changes into a single patch (#47063) * chore: fold the profile patches into one patch * chore: e patches all * chore: patch out ProfileSelections::ApplyProfileSelection() Another profile reference. Referenced iff making a debug build.
[ { "path": "patches/chromium/.patches", "patch": "@@ -91,14 +91,11 @@ fix_remove_caption-removing_style_call.patch\n build_allow_electron_to_use_exec_script.patch\n chore_introduce_blocking_api_for_electron.patch\n chore_patch_out_partition_attribute_dcheck_for_webviews.patch\n-chore_patch_out_profile_method...
2025-05-14T14:21:11
golang/go
c079dd13c0b0e977d607cf2775bc2f16dd3d106e
2947cb0469aa89aac70cc6e3968f00f4c625671a
runtime/secret: reorganize tests to fix -buildmode=shared The testing assembly methods had a linkname that was implicitly satisfied during the regular build but not there during the shared build. Fix by moving the testing routine into the package itself. For good measure, section off the assembly files from the non-e...
[ { "path": "src/runtime/secret/asm_amd64.s", "patch": "@@ -2,6 +2,8 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n+//go:build goexperiment.runtimesecret\n+\n // Note: this assembly file is used for testing only.\n // We need to access regis...
2025-11-27T06:45:20
facebook/react
c6c2a52ad8fb1894b03a3bb618eb57e5deca5aa0
5dc1b212c330b6f456789f8d58e0f87abefbb86c
[compiler] Fix error message for custom hooks (#33310) We were printing "Custom" instead of "hook".
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateHooksUsage.ts", "patch": "@@ -452,7 +452,7 @@ function visitFunctionExpression(errors: CompilerError, fn: HIRFunction): void {\n reason:\n 'Hooks must be called at the top level in the body of a...
2025-05-19T22:29:58
vercel/next.js
78bc2bad8be1f7e11a8cbe76bc8175fb7ee781ae
21fcfb01ac21c596a9109a4deeb2b39a355a53fd
Turbopack: Use webpki-root-certs in addition to rustls-platform-verifier on Linux for bare-bones Linux images without root CA stores (#88869) This should fix the user-reported issue here: https://github.com/vercel/next.js/pull/88290#issuecomment-3762940063 That issue occurs when building with bare-bones docker images...
[ { "path": "Cargo.lock", "patch": "@@ -610,7 +610,7 @@ dependencies = [\n \"bitflags 2.9.1\",\n \"cexpr\",\n \"clang-sys\",\n- \"itertools 0.10.5\",\n+ \"itertools 0.12.1\",\n \"lazy_static\",\n \"lazycell\",\n \"log\",\n@@ -4641,7 +4641,7 @@ version = \"0.50.3\"\n source = \"registry+https://github.co...
2026-01-22T01:18:28
rust-lang/rust
74909ec285fb12f2a14234009354ad883b7cdabd
fac53a0cf82ed94246b8159a1d40e297e385bef4
fix ICE for arrays in diverging never-pattern closure bodies
[ { "path": "compiler/rustc_hir_typeck/src/expr.rs", "patch": "@@ -1660,14 +1660,6 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n expr: &'tcx hir::Expr<'tcx>,\n ) -> Ty<'tcx> {\n let element_ty = if !args.is_empty() {\n- // This shouldn't happen unless there's another error\n- ...
2026-03-18T03:41:27
nodejs/node
28225857d7e613fad0909e0345aca25c739cc1fb
487938ba64c1cc1d69898a37f217b8b45bc66177
test: skip test-fs-cp* tests that are constantly failing on Windows These tests are likely actual regressions introduced when the monolithic test-fs-cp.mjs was marked as flaky and got ignored due to the flaky status. They are now constantly failing the Windows CI and require the CI to always be re-run on Windows when ...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -24,11 +24,11 @@ test-snapshot-incompatible: SKIP\n test-async-context-frame: PASS, FLAKY\n # https://github.com/nodejs/node/issues/54534\n test-runner-run-watch: PASS, FLAKY\n-# https://github.com/nodejs/node/pull/59408#issuecomment-3170650933\n-test-...
2025-08-28T19:57:08
electron/electron
d65a856bf3cfda04db4c4a2725272e825366a60d
f2639d13ccc2c70cc45d63518924d1a4e08886b6
chore: bump chromium to 138.0.7177.0 (main) (#47081) * chore: bump chromium in DEPS to 138.0.7177.0 * 6530423: [WebContents] Fix IsNeverComposited() calls during initialization Refs https://chromium-review.googlesource.com/c/chromium/src/+/6530423 * 6512551: [ios] Enable -Wobjc-property-assign-on-object-type Refs ...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7175.0',\n+ '138.0.7177.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "patches/chromium/adjust_accessibi...
2025-05-14T14:08:31
golang/go
2947cb0469aa89aac70cc6e3968f00f4c625671a
cead111a772c2852c870fb140029d89152da4d14
runtime/_mkmalloc: fix log.Fatal formatting directive Change-Id: I9b9b9dbde440c3a24599efd55ef6f85a6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/724281 Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj...
[ { "path": "src/runtime/_mkmalloc/mkmalloc.go", "patch": "@@ -288,7 +288,7 @@ func inline(config generatorConfig) []byte {\n \t\t\tcase foldCondition:\n \t\t\t\tstamped = foldIfCondition(stamped, repl.from, repl.to)\n \t\t\tdefault:\n-\t\t\t\tlog.Fatal(\"unknown op kind %v\", repl.kind)\n+\t\t\t\tlog.Fatalf(...
2025-11-27T10:42:27
facebook/react
4448b18760d867f9e009e810571e7a3b8930bb19
4a45ba92c4097a97333c04b5516ba2d5c81af716
[eslint-plugin-react-hooks] fix exhaustive deps lint rule with component syntax (#33182)
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -7746,6 +7746,34 @@ const testsFlow = {\n },\n ],\n invalid: [\n+ {\n+ code: normalizeIndent`\n+ hook useExample(a) {\n+ useEffect(() => {\n+ console.log(a);\n+ ...
2025-05-15T16:51:18
vercel/next.js
8fe8ff79157a675b56259a8eaf2d16fc1647b254
f263c5622d0a48ddac1fc8e88d9f396f24a818e7
Turbopack: Tweak retry loop for link creation to try to fix os error 80 on Windows (#88669) Though I've been unable to reproduce the issue (prior PRs in this stack are my attempts at that), I believe this *should* fix the OS Error 80 ([`ERROR_FILE_EXISTS`](https://learn.microsoft.com/en-us/windows/win32/debug/system-e...
[ { "path": "Cargo.lock", "patch": "@@ -9544,6 +9544,7 @@ dependencies = [\n \"serde_path_to_error\",\n \"sha2\",\n \"tempfile\",\n+ \"thiserror 1.0.69\",\n \"tokio\",\n \"tracing\",\n \"triomphe 0.1.12\",", "additions": 1, "deletions": 0 }, { "path": "turbopack/crates/turbo-tasks-fs/Car...
2026-01-22T01:17:42
nodejs/node
487938ba64c1cc1d69898a37f217b8b45bc66177
cc0cdb1ed1086ff9a1ec5bfffab7e4a85ae39acb
doc: fix filehandle.read typo PR-URL: https://github.com/nodejs/node/pull/59635 Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/fs.md", "patch": "@@ -397,7 +397,7 @@ changes:\n from the file. If `null` or `-1`, data will be read from the current file\n position, and the position will be updated. If `position` is a non-negative\n integer, the current file position will remain unchanged.\n- **Default:**: `nul...
2025-08-28T19:23:59
golang/go
c2af9f14b429741cfd4fed11a67a52427dec3931
6be5de4bc4e30ac0e2843c781393235d78e384a8
internal/runtime/cgroup: fix path on non-root mount point We should trim the mount root (4th field in /proc/self/mountinfo) from cgroup path read from /proc/self/cgroup before appending it to the mount point. Non-root mount points are very common in containers with cgroup v1. parseCPURelativePath is renamed to parse...
[ { "path": "src/internal/cgrouptest/cgrouptest_linux.go", "patch": "@@ -50,9 +50,8 @@ func (c *CgroupV2) SetCPUMax(quota, period int64) error {\n //\n // This must not be used in parallel tests, as it affects the entire process.\n func InCgroupV2(t *testing.T, fn func(*CgroupV2)) {\n-\tmount, rel := findCurr...
2025-11-21T17:44:14
facebook/react
4a45ba92c4097a97333c04b5516ba2d5c81af716
08cb2d7ee732f35ef1935c75c081754bd81d60b9
[sync] Fix noop for xplat (#33214) Noop detection for xplat syncs broke because `eslint-plugin-react-hooks` uses versions like: - `0.0.0-experimental-d85f86cf-20250514` But xplat expects them to be of the form: - `19.2.0-native-fb-63d664b2-20250514` This PR fixes the noop by ignoring `eslint-plugin-react-hooks/pac...
[ { "path": ".github/workflows/runtime_commit_artifacts.yml", "patch": "@@ -332,10 +332,10 @@ jobs:\n git --no-pager diff -U0 --cached | grep '^[+-]' | head -n 100\n echo \"====================\"\n # Ignore REVISION or lines removing @generated headers.\n- if git diff --...
2025-05-15T16:12:51
vercel/next.js
f263c5622d0a48ddac1fc8e88d9f396f24a818e7
4674a4358739f2e203a445a33bc3672fc499f615
Turbopack: Various cleanup for turbo-tasks-fs, mostly retry logic and string formatting (#88668) - https://github.com/vercel/next.js/pull/87661 removed the `tokio::task::spawn_blocking` call from `retry_blocking`, so we can simplify things a lot by removing the `Send + 'static` bounds, and eliminate a bunch of cloning...
[ { "path": "turbopack/crates/turbo-tasks-fs/src/lib.rs", "patch": "@@ -39,7 +39,7 @@ use std::{\n fmt::{self, Debug, Display, Formatter},\n fs::FileType,\n future::Future,\n- io::{self, BufRead, BufReader, ErrorKind, Read},\n+ io::{self, BufRead, BufReader, ErrorKind, Read, Write as _},\n ...
2026-01-22T00:43:20
rust-lang/rust
eda328c6cfce47bb99d2daba946bf938dad8f78e
62b9fa15e72e613c1e318e895b84bf593768f9db
delete incorrect test
[ { "path": "tests/ui/borrowck/kindck-implicit-close-over-mut-var.rs", "patch": "@@ -1,49 +0,0 @@\n-//@ run-pass\n-\n-#![allow(unused_must_use)]\n-#![allow(dead_code)]\n-use std::thread;\n-\n-fn user(_i: isize) {}\n-\n-fn foo() {\n- // Here, i is *copied* into the proc (heap closure).\n- // Requires all...
2026-03-17T22:08:51
nodejs/node
cc0cdb1ed1086ff9a1ec5bfffab7e4a85ae39acb
42021e4b4c491f77b1dbe93573f24a9f91e31fc1
test: deflake test-http-keep-alive-empty-line - Do not call `client.end()` to ensure that the socket is closed by the server. - Remove the timer and send the empty line when the response is received. Fixes: https://github.com/nodejs/node/issues/59577 PR-URL: https://github.com/nodejs/node/pull/59595 Reviewed-By: ...
[ { "path": "test/parallel/test-http-keep-alive-empty-line.mjs", "patch": "@@ -3,6 +3,10 @@ import assert from 'node:assert';\n import { createServer } from 'node:http';\n import { connect } from 'node:net';\n \n+// This test ensures that data like an empty line (`\\r\\n`) recevied by the\n+// server after a ...
2025-08-28T19:02:10
electron/electron
e3e647d21e3997810f446a9e75b5548719e86858
7ab032f5940cc7bf6189163d130b284516d16bc0
chore: bump chromium to 138.0.7175.0 (main) (#46986) * chore: bump chromium in DEPS to 138.0.7166.0 * chore: bump chromium in DEPS to 138.0.7166.2 * 6508373: Add WebContents, Tab getters for future Clank navigation capture rework https://chromium-review.googlesource.com/c/chromium/src/+/6508373 * 6470924: Introduc...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7165.0',\n+ '138.0.7175.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "patches/chromium/.patches", "...
2025-05-13T18:51:20
facebook/react
08cb2d7ee732f35ef1935c75c081754bd81d60b9
203df2c9409f580fd63eeacd4f80d70c2741bd4f
[ci] Log author_association (#33213) For debugging purposes, log author_association
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -15,6 +15,7 @@ jobs:\n outputs:\n is_member_or_collaborator: ${{ steps.check_is_member_or_collaborator.outputs.is_member_or_collaborator }}\n steps:\n+ - run: echo ${{ github.event.pull_request.author_association }}\n...
2025-05-15T15:49:56
rust-lang/rust
7d82c5dab3760142380ef4477e9885673a45f7b0
eaf4e7489b6ae3d4ba9a71b720b03b6d58e4f102
Fix invalid add of duplicated call locations for the rustdoc scraped examples feature
[ { "path": "src/librustdoc/scrape_examples.rs", "patch": "@@ -3,7 +3,7 @@\n use std::fs;\n use std::path::PathBuf;\n \n-use rustc_data_structures::fx::FxIndexMap;\n+use rustc_data_structures::fx::{FxHashSet, FxIndexMap};\n use rustc_errors::DiagCtxtHandle;\n use rustc_hir as hir;\n use rustc_hir::intravisit:...
2026-03-17T21:53:30
golang/go
481c6df7b9006e59febbb24689ab8bf686695e9d
cec4d4303f6475475d1a632cca506e8a82072d25
io: reduce intermediate allocations in ReadAll and have a smaller final result Currently, io.ReadAll allocates a significant amount of intermediate memory as it grows its result slice to the size of the input data. This CL aims to reduce the allocated memory. Geomean benchstat results comparing existing io.ReadAll to...
[ { "path": "src/io/io.go", "patch": "@@ -707,20 +707,44 @@ func (c nopCloserWriterTo) WriteTo(w Writer) (n int64, err error) {\n // defined to read from src until EOF, it does not treat an EOF from Read\n // as an error to be reported.\n func ReadAll(r Reader) ([]byte, error) {\n+\t// Build slices of exponen...
2025-11-20T19:43:50
vercel/next.js
4674a4358739f2e203a445a33bc3672fc499f615
aa8754c3f4095781402e46fd3ef550cc4a50b527
Turbopack: Make the priority_runner testcase deterministic (#88651) # What Fixes the `test_mixed_cpu_bound_and_waiting_tasks` to avoid flakes. # Why The `test_mixed_cpu_bound_and_waiting_tasks` was non-deterministic and relied on thread scheduling order. The previous test relied on timing-based synchroniza...
[ { "path": "turbopack/crates/turbo-tasks/src/priority_runner.rs", "patch": "@@ -389,7 +389,11 @@ impl Future for JoinHandle {\n \n #[cfg(test)]\n mod tests {\n- use std::{sync::Arc, thread::sleep, time::Duration};\n+ use std::{\n+ sync::{Arc, Barrier},\n+ thread::sleep,\n+ time::Du...
2026-01-22T00:34:39
nodejs/node
bcb802cca06db2a5b0e5c8a48c825183900ef83d
4e0af201841f531062f1157f780051d923a9e158
sea: allow using inspector command line flags with SEA The inspector command line flags should be allowed via NODE_OPTIONS, though it should not be consumed when passed directly to the SEA. This patch allows it to consume inspector flags from NODE_OPTIONS and add tests for different behaviors. PR-URL: https://github....
[ { "path": "src/node_options.cc", "patch": "@@ -422,10 +422,6 @@ void Parse(\n // TODO(addaleax): Make that unnecessary.\n \n DebugOptionsParser::DebugOptionsParser() {\n-#ifndef DISABLE_SINGLE_EXECUTABLE_APPLICATION\n- if (sea::IsSingleExecutable()) return;\n-#endif\n-\n AddOption(\"--inspect-port\",\n ...
2025-08-27T19:38:55
electron/electron
7ab032f5940cc7bf6189163d130b284516d16bc0
2493e530d0ad2b68091e4388352e6c1ab6491c7d
fix: white window flicker on window creation (#47022)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -37,6 +37,7 @@\n #include \"shell/common/options_switches.h\"\n #include \"ui/aura/window_tree_host.h\"\n #include \"ui/base/hit_test.h\"\n+#include \"ui/compositor/compositor.h\"\n #include \"ui/display/screen.h\"\n #include \"ui/gfx/image/imag...
2025-05-10T23:24:35
rust-lang/rust
4845f7842228c03910b3bf5d1a4221eea4e14f5d
384f363b7023244df33bef7eb8070a334eae9b48
Reword the incremental finalize diagnostic Remove the confusing word "error". The diagnostic is already prefixed with a level when it is displayed, so this is redundant and possibly confusing ("warning: error ..."). Add some help text summarizing the impact of what happened: the next build won't be able to reuse wor...
[ { "path": "compiler/rustc_incremental/src/errors.rs", "patch": "@@ -192,7 +192,8 @@ pub(crate) struct DeleteFull<'a> {\n }\n \n #[derive(Diagnostic)]\n-#[diag(\"error finalizing incremental compilation session directory `{$path}`: {$err}\")]\n+#[diag(\"did not finalize incremental compilation session direct...
2026-03-17T19:59:08
facebook/react
65b5aae010002ef88221cc4998711eaef6068006
3f67d0857efc3ab21b9d30851f5a8451471166ab
[Fizz] Add vt- prefix attributes to annotate <ViewTransition> in HTML (#33206) Stacked on #33194 and #33200. When Suspense boundaries reveal during streaming, the Fizz runtime will be responsible for animating the reveal if necessary (not in this PR). However, for the future runtime to know what to do it needs to kno...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -72,6 +72,7 @@ import {\n enableScrollEndPolyfill,\n enableSrcObject,\n enableTrustedTypesIntegration,\n+ enableViewTransition,\n } from 'shared/ReactFeatureFlags';\n import {\n mediaEventTypes,\n@@ -3217,6 +3218,...
2025-05-15T05:04:10
golang/go
cec4d4303f6475475d1a632cca506e8a82072d25
f1bbc66a10a545811a21dcf9f9431e783aafcb42
os: allow direntries to have zero inodes on Linux Some Linux filesystems have been known to return valid enties with zero inodes. This new behavior also puts Go in agreement with recent glibc. Fixes #76428 Change-Id: Ieaf50739a294915a3ea2ef8c5a3bb2a91a186881 GitHub-Last-Rev: 8f83d009ef0320fd3fe7cf03e55d5d24df57f015 ...
[ { "path": "src/os/dir_unix.go", "patch": "@@ -112,7 +112,8 @@ func (f *File) readdir(n int, mode readdirMode) (names []string, dirents []DirEn\n \t\t// or might expose a remote file system which does not have the concept\n \t\t// of inodes. Therefore, we cannot make the assumption that it is safe\n \t\t// t...
2025-11-25T03:55:45
vercel/next.js
917ff14ce2a1dc60913dab436e8bddb8952ae93b
7026785ff128efa2debd1b65f1008f3dc7f62a96
Turbopack: Add a stress test / fuzzer that tries creating many symlinks in a tight loop (#88667) In an attempt to reproduce https://github.com/vercel/next.js/discussions/88382, this tries creating and updating a bunch of symlinks/junction points in a tight loop with some parallelism. However, I've been unable to repro...
[ { "path": "Cargo.lock", "patch": "@@ -9535,6 +9535,7 @@ dependencies = [\n \"mime\",\n \"notify\",\n \"parking_lot\",\n+ \"rand 0.9.0\",\n \"regex\",\n \"rstest\",\n \"rustc-hash 2.1.1\",", "additions": 1, "deletions": 0 }, { "path": "turbopack/crates/turbo-tasks-fs/Cargo.toml", "p...
2026-01-21T21:04:38
nodejs/node
89067de3917088f1b97434ef0328efc192715cb3
5c9db1046f88cbf1b17236f1731fae701a16e7c4
src: remove JSONParser This is now unused after https://redirect.github.com/nodejs/node/pull/59473 and and https://redirect.github.com/nodejs/node/pull/59323 PR-URL: https://github.com/nodejs/node/pull/59619 Fixes: https://github.com/nodejs/node/issues/59288 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed...
[ { "path": "node.gyp", "patch": "@@ -96,8 +96,6 @@\n 'src/js_stream.cc',\n 'src/json_utils.cc',\n 'src/js_udp_wrap.cc',\n- 'src/json_parser.h',\n- 'src/json_parser.cc',\n 'src/module_wrap.cc',\n 'src/node.cc',\n 'src/node_api.cc',", "additions": 0, "delet...
2025-08-27T14:46:43
electron/electron
10e4f9ad373bd29c61f5ed20238a308687e882ff
b9f0aebb2f54d4f6ea547a39278cf595e880ba90
feat: enable secondary label for macOS menu (#46887) * feat: enable secondary label for macOS menu * Update shell/browser/ui/cocoa/electron_menu_controller.mm Co-authored-by: Robo <hop2deep@gmail.com> * fix for lint * update docs for sublabel --------- Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "docs/api/menu-item.md", "patch": "@@ -19,7 +19,7 @@ See [`Menu`](menu.md) for examples.\n * `type` string (optional) - Can be `normal`, `separator`, `submenu`, `checkbox` or\n `radio`.\n * `label` string (optional)\n- * `sublabel` string (optional)\n+ * `sublabel` string (optional) _mac...
2025-05-09T16:05:26
rust-lang/rust
36381555bb78f41f178032dbabbf9ebd602c3530
f3654324e6da3fd388035418c9db1912a0d8c4cf
Put statics in .data section in raw-dylib for ELF This fixes issues with statics when using static relocation model and linking with GNU ld. Other linkers don't work yet.
[ { "path": "compiler/rustc_codegen_ssa/src/back/link/raw_dylib.rs", "patch": "@@ -296,6 +296,8 @@ fn create_elf_raw_dylib_stub(sess: &Session, soname: &str, symbols: &[DllImport]\n stub.reserve_shstrtab_section_index();\n let text_section_name = stub.add_section_name(\".text\".as_bytes());\n let ...
2026-03-13T17:54:40
facebook/react
0cac32d60dd4482b27fe8a54dffbabceb22c6272
676f0879f315130309262ff3532707029f0288bb
[Fiber] Stash the entangled async action lane on currentEventTransitionLane (#33188) When we're entangled with an async action lane we use that lane instead of the currentEventTransitionLane. Conversely, if we start a new async action lane we reuse the currentEventTransitionLane. So they're basically supposed to be i...
[ { "path": "packages/react-reconciler/src/ReactFiberRootScheduler.js", "patch": "@@ -78,6 +78,7 @@ import {\n resetNestedUpdateFlag,\n syncNestedUpdateFlag,\n } from './ReactProfilerTimer';\n+import {peekEntangledActionLane} from './ReactFiberAsyncAction';\n \n // A linked list of all the roots with pend...
2025-05-13T19:20:59
golang/go
43cfd785e72ccd04fe638395aa80029aae23fef6
312b2034a4e16583fac00070e698c3d464eca1c8
cmd/link, runtime, debug/gosym: move pclntab magic to internal/abi Change-Id: I2d3c41b0e61b994d7b04bd16a791fd226dc45269 Reviewed-on: https://go-review.googlesource.com/c/go/+/720302 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Cherry Mui <cherryyz@google...
[ { "path": "src/cmd/link/internal/ld/pcln.go", "patch": "@@ -261,7 +261,7 @@ func (state *pclntab) generatePCHeader(ctxt *Link) {\n \n \t\t// Write header.\n \t\t// Keep in sync with runtime/symtab.go:pcHeader and package debug/gosym.\n-\t\theader.SetUint32(ctxt.Arch, 0, 0xfffffff1)\n+\t\theader.SetUint32(ct...
2025-11-13T21:01:14
rust-lang/rust
c679e3daf2166e2bcd56e8acc2cacfe6dc9757a8
ec03f4ef294d3a75ed12b36662d1a40441b0a726
Simplify tests and fix test tidy issue
[ { "path": "tests/assembly-llvm/sanitizer/hwasan-vs-khwasan.rs", "patch": "@@ -4,7 +4,9 @@\n //@ assembly-output: emit-asm\n //@ revisions: hwasan khwasan\n //@[hwasan] compile-flags: --target aarch64-unknown-linux-gnu -Zsanitizer=hwaddress\n+//@[hwasan] needs-llvm-components: aarch64\n //@[khwasan] compile-...
2026-03-17T07:49:28
nodejs/node
2894849284fd58f902f2066e6c134429c4c0fc0c
ec8c73d6ca6eb58adb1df7715da2f81e64c1fb1a
doc: fix missing link to the Error documentation in the `http` page PR-URL: https://github.com/nodejs/node/pull/59080 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
[ { "path": "doc/api/http.md", "patch": "@@ -2641,7 +2641,7 @@ will check whether `Content-Length` and the length of the body which has\n been transmitted are equal or not.\n \n Attempting to set a header field name or value that contains invalid characters\n-will result in a \\[`Error`]\\[] being thrown.\n+w...
2025-08-27T10:40:48