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
facebook/react
c137dd6f5484f1bb68a64f07dd0e40d474a29759
22a20e1f2f557b99115d82b639ff5a32b6453cb6
Fix exhaustive deps bug with flow type casting. (#35691) Summary: I noticed there's a bug where the lint will recognize the type on a cast annotation as a missing dependency; ``` function MyComponent() { type ColumnKey = 'id' | 'name'; type Item = {id: string, name: string}; con...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -7913,6 +7913,25 @@ const testsFlow = {\n }\n `,\n },\n+ // Flow type aliases in type assertions should not be flagged as missing dependencies\n+ {\n+ code: normalizeIndent`\n...
2026-02-04T16:24:24
vercel/next.js
e464ca398c5992c4ec9fb23192fc60ef7b1b5f94
3421858b5bef076965d99fd88fedc483193a496e
Fix pr-status.js: retry on API errors and report timed-out jobs (#92205) ### What? Fixes two bugs in `scripts/pr-status.js` that caused the script to silently report zero failures when there were actual CI failures. ### Why? When running `node scripts/pr-status.js 92080`, the script reported "No failed jobs found" ...
[ { "path": "scripts/pr-status.js", "patch": "@@ -216,15 +216,17 @@ function getRunMetadata(runId) {\n )\n }\n \n+const FAILED_CONCLUSIONS = new Set(['failure', 'timed_out', 'startup_failure'])\n+\n function getFailedJobs(runId) {\n // Fetch all jobs first, then filter for failures in JS.\n // We can't ...
2026-04-02T11:22:13
golang/go
238d7bddeba8436ff6eea8f9216978afb7d6e7cc
9301a3eab246d3ddb49415cfd892c00382189264
go/types, types2: in range-over-func, the yield function cannot be variadic Fixes #78483. For #78314. Change-Id: If83983c0bf79840aa02dc0d2fa8945f5e8b4e969 Reviewed-on: https://go-review.googlesource.com/c/go/+/761682 Auto-Submit: Robert Griesemer <gri@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-projec...
[ { "path": "src/cmd/compile/internal/types2/range.go", "patch": "@@ -240,6 +240,7 @@ func rangeKeyVal(check *Checker, orig Type, allowVersion func(goVersion) bool) (\n \t\t\treturn bad(\"requires go1.23 or later\")\n \t\t}\n \t\t// check iterator arity\n+\t\t// TODO(gri) error messages could be less verbose ...
2026-03-31T22:38:36
electron/electron
a839fb94aa9f56e865857e3b853d4a62f4d93144
2e2c56adde6652c9a80655ac1267ea0755f910fa
fix: [a11y] fire AXMenuOpened event when ARIA menu is added to DOM (#50377) * fix: fire AXMenuOpened event when a visible ARIA menu instance is added to the DOM * fix: remove redundent FireMenuPopupEndForDeletedMenus MENU_POPUP_END for deleted menus is already handled by AXTreeManager::OnNodeWillBeDeleted, which fir...
[ { "path": "patches/chromium/.patches", "patch": "@@ -148,3 +148,4 @@ feat_plumb_node_integration_in_worker_through_workersettings.patch\n fix_restore_sdk_inputs_cross-toolchain_deps_for_macos.patch\n fix_use_fresh_lazynow_for_onendworkitemimpl_after_didruntask.patch\n fix_pulseaudio_stream_and_icon_names.pa...
2026-03-25T21:33:49
nodejs/node
9fc6b64c12eaf4569446f1cec9a119c16fc6ab39
f08e2e06eb382de9f4a7bc0578de6fdea5db47a4
doc: test and test-only targets do not run linter `make test` and `make test-only` targets no longer runs linters. This commit updates the inline comments and building doc to reflect reality. Fixes: https://github.com/nodejs/node/issues/58606 PR-URL: https://github.com/nodejs/node/pull/62120 Reviewed-By: Michaël Zass...
[ { "path": "BUILDING.md", "patch": "@@ -404,11 +404,9 @@ If you are running tests before submitting a pull request, use:\n make -j4 test\n ```\n \n-`make -j4 test` does a full check on the codebase, including running linters and\n-documentation tests.\n+`make -j4 test` does a full check on the codebase, incl...
2026-03-17T23:19:31
rust-lang/rust
89a4742773beb36a52ce4876aadb151e0fc5b8e1
906ca7ff5e1f01cdf59388574b4822365bffabea
Fix ICE in next-solver dyn-compatibility check The next solver treated error-containing dispatchability goals as proven and misclassified the trait as dyn compatible. Short-circuit receivers with type errors so object-method confirmation stays on the normal error path.
[ { "path": "compiler/rustc_trait_selection/src/traits/dyn_compatibility.rs", "patch": "@@ -603,6 +603,9 @@ fn receiver_for_self_ty<'tcx>(\n /// contained by the trait object, because the object that needs to be coerced is behind\n /// a pointer.\n ///\n+/// If lowering already produced an error in the receiv...
2026-04-07T14:55:42
facebook/react
22a20e1f2f557b99115d82b639ff5a32b6453cb6
90c6d1b218bbe07eeb757ce8777805a9b7f8e3c3
[compiler] Fix setState-in-effect for React.useEffect namespace calls (#35377) (#35419) ## Summary Fix react-hooks/set-state-in-effect false negatives when Hooks are called via a namespace import (e.g. `import * as React from 'react'` and `React.useEffect(...))`. The validation now checks the MethodCall property (the ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoSetStateInEffects.ts", "patch": "@@ -97,7 +97,7 @@ export function validateNoSetStateInEffects(\n case 'CallExpression': {\n const callee =\n instr.value.kind === 'MethodCall'\n- ? in...
2026-02-04T16:07:17
vercel/next.js
3421858b5bef076965d99fd88fedc483193a496e
0aec1df2106066342bd8d88cd4074eea0416f322
Node.js streams: First pass (#90500) ### What? Note: This is only the first step. There's more follow-up PRs to implement the transforms as Node.js streams. Introduces a compile-time switchable Node.js streams layer for the app rendering pipeline, gated behind `__NEXT_USE_NODE_STREAMS`. When enabled, React's `render...
[ { "path": "packages/next/src/server/app-render/app-render-prerender-utils.ts", "patch": "@@ -1,28 +1,53 @@\n+import type { Readable } from 'node:stream'\n import { InvariantError } from '../../shared/lib/invariant-error'\n \n+export type AnyStream = ReadableStream<Uint8Array> | Readable\n+\n+function isWebS...
2026-04-02T11:13:06
golang/go
9301a3eab246d3ddb49415cfd892c00382189264
0dcd7ab1b9658183d52ccadf9135834fdd57e2ba
runtime: rename _mkmalloc's module to avoid GOROOT conflict Often we want to run _mkmalloc using a different toolchain. The previous module path runtime/_mkmalloc would produce an ambiguous import path error because the directory runtime/_mkmalloc exists in a Go 1.26+ toolchain. Rename the module to avoid the conflict...
[ { "path": "src/runtime/_mkmalloc/go.mod", "patch": "@@ -1,4 +1,4 @@\n-module runtime/_mkmalloc\n+module _mkmalloc\n \n go 1.24\n ", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2026-04-01T16:47:25
electron/electron
678adeaf7c3f31405e7b271c0e8f84eacdd414c9
1d14694dec0b02f73c18a9c1b4d95b3a777563f4
fix: crash calling OSR shared texture release() after texture GC'd (#50473) The weak persistent tracking the OffscreenReleaseHolderMonitor was tied to the texture object, but the release() closure holds a raw pointer to the monitor via its v8::External data. If JS retained texture.release while dropping the texture it...
[ { "path": "shell/common/gin_converters/osr_converter.cc", "patch": "@@ -155,9 +155,12 @@ v8::Local<v8::Value> Converter<electron::OffscreenSharedTextureValue>::ToV8(\n root.Set(\"textureInfo\", ConvertToV8(isolate, dict));\n auto root_local = ConvertToV8(isolate, root);\n \n- // Create a persistent ref...
2026-03-25T17:48:41
nodejs/node
3db22062cfe0452177b0f9c163228ebef2a08bb2
06a8240384419a072be5a73e75d7a153da8d51e4
tools: fix timeout errors in `lint-nix` job PR-URL: https://github.com/nodejs/node/pull/62265 Fixes: https://github.com/nodejs/node/issues/62219 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
[ { "path": "tools/nix/pkgs.nix", "patch": "@@ -8,3 +8,14 @@ let\n }) arg;\n in\n nixpkgs\n+// {\n+ nixfmt-tree = nixpkgs.nixfmt-tree.overrideAttrs (old: {\n+ patches = (old.patches or [ ]) ++ [\n+ (nixpkgs.fetchpatch2 {\n+ url = \"https://github.com/numtide/treefmt/commit/b96016b4e38ffc7651...
2026-03-17T16:36:20
facebook/react
90c6d1b218bbe07eeb757ce8777805a9b7f8e3c3
f84ce5a45c47b1081a09c17eea58c16ef145c113
[compiler][snap] More minimization improvements (#35689) * A few new minimization strategies, removing function params and array/object pattern elements * Ensure that we preserve the same set of errors based on not just category+reason but also description.
[ { "path": "compiler/packages/snap/src/minimize.ts", "patch": "@@ -18,7 +18,7 @@ type CompileSuccess = {kind: 'success'};\n type CompileParseError = {kind: 'parse_error'; message: string};\n type CompileErrors = {\n kind: 'errors';\n- errors: Array<{category: string; reason: string}>;\n+ errors: Array<{c...
2026-02-04T15:09:28
vercel/next.js
0aec1df2106066342bd8d88cd4074eea0416f322
e9597e6cc10a5a831903c3bec3e7be140c5b7497
Add telemetry for adapterPath config usage (#92228) <!-- CURSOR_AGENT_PR_BODY_BEGIN --> ## What? Adds telemetry tracking for when the `adapterPath` config option is used in Next.js. ## Why? As mentioned in the Slack discussion, telemetry for adapter usage was missing. This helps track adoption of the adapter featur...
[ { "path": "packages/next/src/telemetry/events/version.ts", "patch": "@@ -40,6 +40,7 @@ type EventCliSessionStarted = {\n reactCompiler: boolean\n reactCompilerCompilationMode: string | null\n reactCompilerPanicThreshold: string | null\n+ adapterPath: boolean\n }\n \n export function eventCliSession(\...
2026-04-02T08:41:12
electron/electron
a48f03fb8d03933547281ddb2dbb6c6b9e705287
f6b43cb0efe2f763631c9d0609ecaa92c62635a6
fix: crash in clipboard.readImage() on malformed image data (#50475) gfx::PNGCodec::Decode() returns a null SkBitmap when it fails to decode the clipboard contents as a PNG. Passing that null bitmap to gfx::Image::CreateFrom1xBitmap() triggers a crash. Return an empty gfx::Image instead, matching the existing null-ch...
[ { "path": "shell/common/api/electron_api_clipboard.cc", "patch": "@@ -378,7 +378,11 @@ gfx::Image Clipboard::ReadImage(gin::Arguments* const args) {\n [](std::optional<gfx::Image>* image, base::RepeatingClosure cb,\n const std::vector<uint8_t>& result) {\n SkBitmap bitmap ...
2026-03-25T17:47:00
facebook/react
3ce1316b05968d2a8cffe42a110f2726f2c44c3e
cd0c4879a2959db91f9bd51a09dafefedd95fb17
[compiler][snap] Fixes to relative path resolution; compile subcommand (#35688) More snap improvements for use with agents: * `yarn snap compile [--debug] <path>` for compiling any file, optionally with debug logs * `yarn snap minimize <path>` now accepts path as a positional param for consistency w 'compile' command ...
[ { "path": "compiler/.claude/agents/investigate-error.md", "patch": "@@ -13,7 +13,7 @@ You are an expert React Compiler debugging specialist with deep knowledge of com\n Create a new fixture file at `packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/<fixture-name>.js` containing the proble...
2026-02-04T03:12:21
nodejs/node
193c49505a54ae72634cce8ed55b640c292c0321
6f7b948a492edb4a12f52a33bcb61775bfc17d5e
doc: clarify fs.ReadStream and fs.WriteStream are not constructable Add explicit wording that fs.ReadStream and fs.WriteStream should not be constructed directly, matching the existing pattern used by fs.Stats ("not to be created directly using the new keyword"). The factory functions fs.createReadStream() and fs.crea...
[ { "path": "doc/api/fs.md", "patch": "@@ -7155,8 +7155,8 @@ added: v0.1.93\n \n * Extends: {stream.Readable}\n \n-Instances of {fs.ReadStream} are created and returned using the\n-[`fs.createReadStream()`][] function.\n+Instances of {fs.ReadStream} cannot be constructed directly. They are created and\n+retur...
2026-03-17T16:03:11
golang/go
50f94b1dcd45b88c61d73fce2ec56cedc4c13b14
b5b9e3cdfee825829c95205dcae3e1d528990cd9
cmd/go/internal/doc: follow up to CL 733200 I submitted a rebased variant of the CL that dropped changes in response to Sean Liao and Ian Alexander's comments. Add the bug updates below and re-implement Ian's suggestion. Fixes #34750 For #53446 For #60645 Change-Id: Ie132ac65efd27e811edabfbbb083b6946a6a6964 Reviewe...
[ { "path": "src/cmd/go/internal/doc/doc.go", "patch": "@@ -373,7 +373,7 @@ func parseArgs(ctx context.Context, flagSet *flag.FlagSet, args []string) (pkg *\n \t}\n \tloader := modload.NewState()\n \tif testGOPATH {\n-\t\tloader = modload.DisabledState()\n+\t\tloader = modload.NewDisabledState()\n \t}\n \tif ...
2026-03-31T18:43:38
vercel/next.js
0167a026958bded7b617fda97d11d5c032e53222
93dc872d0d6df3552abef6a7b598d79a9566eea2
Docs/adapters review (#92223) Some corrections to the adapters docs. - The example deploy script ran `cat .next/BUILD_ID` before `pnpm build`. Under `set -euo pipefail` that kills the script immediately since the file doesn't exist yet. Moved the build step first. - `resolveRoutes` requires `URL` and `Headers` objec...
[ { "path": "docs/01-app/03-api-reference/07-adapters/04-testing-adapters.mdx", "patch": "@@ -168,6 +168,9 @@ require('fs').writeFileSync('package.json',JSON.stringify(pkg,null,2));\n # Set the adapter path so that the app uses it.\n export NEXT_ADAPTER_PATH=\"${ADAPTER_DIR}/dist/index.js\"\n \n+# Build the a...
2026-04-01T22:31:08
electron/electron
f6b43cb0efe2f763631c9d0609ecaa92c62635a6
7451d560ba5f65729d28d77d83f3f38ee3f62133
fix: fall back to default DPI when GTK returns 0 on Linux (#50453) GetDefaultPrinterDPI() creates a blank GtkPrintSettings and reads its resolution, which returns 0 for uninitialized settings. With DPI=0, SetPrintableAreaIfValid() computes a zero scale factor, producing empty page dimensions that fail PrintMsgPrintPar...
[ { "path": "shell/browser/printing/printing_utils.cc", "patch": "@@ -59,6 +59,8 @@ gfx::Size GetDefaultPrinterDPI(const std::u16string& device_name) {\n GtkPrintSettings* print_settings = gtk_print_settings_new();\n int dpi = gtk_print_settings_get_resolution(print_settings);\n g_object_unref(print_set...
2026-03-25T17:37:40
facebook/react
cd0c4879a2959db91f9bd51a09dafefedd95fb17
6853d7ab2f73989f31fb5a8ed652bd58225ead26
[compiler] Fix `for` loops in try/catch (#35686) This is a combination of a) a subagent for investigating compiler errors and b) testing that agent by fixing bugs with for loops within try/catch. My recent diffs to support maybe-throw within value blocks was incomplete and handled many cases, like optionals/logicals/e...
[ { "path": "compiler/.claude/agents/investigate-error.md", "patch": "@@ -0,0 +1,113 @@\n+---\n+name: investigate-error\n+description: Investigates React compiler errors to determine the root cause and identify potential mitigation(s). Use this agent when the user asks to 'investigate a bug', 'debug why this ...
2026-02-03T23:04:34
golang/go
e3a10fe3749eea3d7d5f284c3a1e57479131176f
836b0984ee0b930c02ca62f9e8801f1016c9b253
net/http/internal/http2: prevent hanging Transport due to bad SETTINGS frame When processing SETTINGS frame, Transport currently only checks if the frame is valid for SETTINGS_ENABLE_CONNECT_PROTOCOL. As a result, a SETTINGS_MAX_FRAME_SIZE with the invalid value of 0 is erroneously accepted. This will then result in T...
[ { "path": "src/net/http/internal/http2/transport.go", "patch": "@@ -2836,6 +2836,9 @@ func (rl *clientConnReadLoop) processSettingsNoWrite(f *SettingsFrame) error {\n \n \tvar seenMaxConcurrentStreams bool\n \terr := f.ForeachSetting(func(s Setting) error {\n+\t\tif err := s.Valid(); err != nil {\n+\t\t\tre...
2026-03-31T19:02:11
vercel/next.js
93dc872d0d6df3552abef6a7b598d79a9566eea2
a6df8603a4e164da7d758d0eb4082dc70353450d
Generate a CLI warning if using Rosetta 2 on Apple Silicon (#92220) This PR is AI generated. Test plan (following https://github.com/vercel/next.js/pull/81950): - Build a preview deployment: https://github.com/vercel/next.js/actions/runs/23858712091/job/69559813673 - Enable Rosetta - Download a standalone x64 macos ...
[ { "path": "packages/next/src/bin/next.ts", "patch": "@@ -2,6 +2,7 @@\n \n import '../server/require-hook'\n \n+import os from 'os'\n import {\n Argument,\n Command,\n@@ -89,6 +90,16 @@ class NextRootCommand extends Command {\n ;(process.env as any).NODE_ENV = process.env.NODE_ENV || defaultEnv\n ...
2026-04-01T22:25:21
nodejs/node
6f7b948a492edb4a12f52a33bcb61775bfc17d5e
9e89867fe6990036225896a0dfb9971c6cb358b3
module: fix coverage of mocked CJS modules imported from ESM Signed-off-by: marcopiraccini <marco.piraccini@gmail.com> PR-URL: https://github.com/nodejs/node/pull/62133 Fixes: https://github.com/nodejs/node/issues/61709 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54...
[ { "path": "lib/internal/modules/esm/translators.js", "patch": "@@ -108,7 +108,9 @@ const kShouldNotSkipModuleHooks = { __proto__: null, shouldSkipModuleHooks: fals\n * @param {boolean} isMain - Whether the module is the entrypoint\n */\n function loadCJSModule(module, source, url, filename, isMain) {\n- ...
2026-03-17T16:02:55
golang/go
974764364aa09a34cad2d74a6b7c52c12a136ea3
2000e27ea6a644ea3623db201d8ba2818e8f5838
runtime: unix: sane exit in dieFromSignal for pid 1 A curious bug was reported to kubernetes[1] and runc[2] recently: sometimes runc init reports exit status of 2. Turns out, Go runtime assumes that on any UNIX system signals such as SIGTERM (or any other that has _sigKill flag set in sigtable) with no signal handler...
[ { "path": "src/runtime/signal_linux_test.go", "patch": "@@ -0,0 +1,95 @@\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 runtime_test\n+\n+import (\n+\t\"bufio\"\n+\t\"bytes\"\n+...
2026-03-25T05:18:47
electron/electron
7451d560ba5f65729d28d77d83f3f38ee3f62133
27edd6e21c976ef62ac81af59860dc7bad665242
fix: register `PrintDialogLinuxFactory` on Linux (#50430) fix: register PrintDialogLinuxFactory on Linux Chromium 145 refactored Linux print dialog creation to use a factory pattern instead of directly calling LinuxUi::CreatePrintDialog(). Chrome registers this factory in ChromeBrowserMainExtraPartsViewsLinux::Toolki...
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -127,6 +127,10 @@\n #include \"shell/common/plugin_info.h\"\n #endif // BUILDFLAG(ENABLE_PLUGINS)\n \n+#if BUILDFLAG(ENABLE_PRINTING)\n+#include \"components/printing/common/print_dialog_linux_factory.h\"\n+#endif\n+\n namespace electro...
2026-03-25T17:37:03
facebook/react
6853d7ab2f73989f31fb5a8ed652bd58225ead26
e32c1261219a9d665f392a4799b8a24ea326f1a1
[Perf Tracks] Prevent crash when accessing `$$typeof` (#35679)
[ { "path": "packages/react-reconciler/src/__tests__/ReactPerformanceTrack-test.js", "patch": "@@ -523,4 +523,110 @@ describe('ReactPerformanceTracks', () => {\n ],\n ]);\n });\n+\n+ // @gate __DEV__ && enableComponentPerformanceTrack\n+ it('diffs HTML-like objects', async () => {\n+ const Ap...
2026-02-03T16:53:45
electron/electron
27edd6e21c976ef62ac81af59860dc7bad665242
ec3a18d438d795a48174c1035130a08fc6462705
fix: pulseaudio stream and icon names (#49270) Use platform_util::GetXdgAppId() with fallback to argv0 as PA_PROP_APPLICATION_ICON_NAME. Use electron::GetPossiblyOverriddenApplicationName() to set environment variable "ELECTRON_PA_APP_NAME" in audio_service.cc, to use it in pulse_util.cc for setting input/output pa_co...
[ { "path": "patches/chromium/.patches", "patch": "@@ -147,3 +147,4 @@ fix_pass_trigger_for_global_shortcuts_on_wayland.patch\n feat_plumb_node_integration_in_worker_through_workersettings.patch\n fix_restore_sdk_inputs_cross-toolchain_deps_for_macos.patch\n fix_use_fresh_lazynow_for_onendworkitemimpl_after_d...
2026-03-25T17:25:44
vercel/next.js
9e1509307e336bc422bc6d1c1cc0a32ce00d9523
3e0158846e490509c6a26a4536d33777d9778101
Fix DashMap read-write self-deadlock in task_cache causing hangs (#92210)
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -1532,8 +1532,9 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n // Create a single ExecuteContext for both lookup and connect_child\n let mut ctx = self.execute_context(turbo_tasks);\n // First...
2026-04-01T20:25:03
golang/go
2000e27ea6a644ea3623db201d8ba2818e8f5838
f9d2c2fd692e3aa81b80fbe1d0479866abff54df
cmd/go/internal/doc: use internal go command logic to load packages We've been using go/build to load packages, and that doesn't always do the right thing, because it doesn't have the same context and settings that the go command uses to load packages. Use the go command's loader to load packages. This CL doesn't rem...
[ { "path": "src/cmd/go/internal/doc/dirs.go", "patch": "@@ -15,6 +15,9 @@ import (\n \t\"strings\"\n \t\"sync\"\n \n+\t\"cmd/go/internal/cfg\"\n+\t\"cmd/go/internal/modload\"\n+\n \t\"golang.org/x/mod/semver\"\n )\n \n@@ -41,29 +44,18 @@ var dirs Dirs\n // dirsInit starts the scanning of package directories ...
2025-12-29T18:16:53
nodejs/node
9e89867fe6990036225896a0dfb9971c6cb358b3
ac6375417a5305433c735c781d0f6d1eaec9f2ba
doc,test: clarify --eval syntax for leading '-' scripts If the script passed to --eval starts with a hyphen, the CLI parser treats it as another option flag. Document the --eval=<script> form as the workaround and add tests for --eval=-42, --eval=-0, and the -e -p missing-argument error. Co-authored-by: jorge guerrer...
[ { "path": "doc/api/cli.md", "patch": "@@ -997,6 +997,9 @@ changes:\n Evaluate the following argument as JavaScript. The modules which are\n predefined in the REPL can also be used in `script`.\n \n+If `script` starts with `-`, pass it using `=` (for example,\n+`node --print --eval=-42`) so it is parsed as t...
2026-03-13T17:15:54
facebook/react
e32c1261219a9d665f392a4799b8a24ea326f1a1
3e00319b352092949ba146e70829310fe6362062
[flags] Turn on `enableAsyncDebugInfo` everywhere (#35683)
[ { "path": "packages/shared/forks/ReactFeatureFlags.native-fb.js", "patch": "@@ -39,7 +39,7 @@ export const disableLegacyContextForFunctionComponents: boolean = false;\n export const disableLegacyMode: boolean = false;\n export const disableSchedulerTimeoutInWorkLoop: boolean = false;\n export const disableT...
2026-02-03T16:52:57
electron/electron
ec3a18d438d795a48174c1035130a08fc6462705
02d4101ca37e8f8ccbcd35f82b9bc7db7cf1929b
fix: hex-encode Windows notification icon temp filenames (#50454) * fix: hex-encode Windows notification icon temp filenames NotificationPresenterWin was using SHA1HashString(origin.spec()) directly as the basename for the temporary PNG written for toast icons. SHA1HashString returns raw digest bytes, so the generat...
[ { "path": "shell/browser/notifications/win/notification_presenter_win.cc", "patch": "@@ -72,7 +72,8 @@ std::wstring NotificationPresenterWin::SaveIconToFilesystem(\n \n std::string filename;\n if (origin.is_valid()) {\n- filename = base::SHA1HashString(origin.spec()) + \".png\";\n+ const auto hash...
2026-03-25T16:29:58
golang/go
f9d2c2fd692e3aa81b80fbe1d0479866abff54df
1582ad41058df1092eaed9dec4d97b7856953ade
test/codegen: forbid commas as separators We need to leave the comma in the regexp so we get the entire comment for processing, but report an error if commas are actually used. Change-Id: Ia19a329deda2524cea292d866a84d1bf3b4518c6 Reviewed-on: https://go-review.googlesource.com/c/go/+/760780 Reviewed-by: Junyang Shao ...
[ { "path": "src/cmd/internal/testdir/testdir_test.go", "patch": "@@ -1489,7 +1489,6 @@ var (\n \t//\t\"[\\s,]+\" matches \" \"\n \t//\tsecond reMatchCheck matches \"`SUB`\"\n \t//\t\")*)\" closes started groups; \"*\" means that there might be other elements in the space-separated list\n-\t// (TODO: remove a...
2026-03-28T15:12:15
facebook/react
3e00319b352092949ba146e70829310fe6362062
3419420e8b8415c80ead82e4d95f0a039380aee5
[Flight] allow context providers from client modules (#35675) Allows Server Components to import Context from a `"use client'` module and render its Provider. Only tricky part was that I needed to add `REACT_CONTEXT_TYPE` handling in mountLazyComponent so lazy-resolved Context types can be rendered. Previously only f...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -2,7 +2,7 @@ import * as React from 'react';\n import {renderToReadableStream} from 'react-server-dom-unbundled/server';\n import {createFromReadableStream} from 'react-server-dom-webpack/client';\n import {PassThrough, Readable} from 'stream';\n-\n+impor...
2026-02-03T15:22:57
nodejs/node
b4ea3238330c7ef215a5ab6414ef01fa83cd318a
a62f6411aeac95d7c17bd4ac806b4843b11592c9
diagnostics_channel: ensure tracePromise consistency with non-Promises PR-URL: https://github.com/nodejs/node/pull/61766 Fixes: https://github.com/nodejs/node/issues/59936 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Benjamin Gruenbaum <b...
[ { "path": "doc/api/diagnostics_channel.md", "patch": "@@ -829,23 +829,36 @@ channels.traceSync(() => {\n added:\n - v19.9.0\n - v18.19.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/61766\n+ description: Custom thenables will no longer be wrapped in native Promi...
2026-03-17T11:54:48
electron/electron
02d4101ca37e8f8ccbcd35f82b9bc7db7cf1929b
fdaba4c6b0caedfed99f125a625ddb68d0f36f1b
chore: remove redundant chromium patches (#50463) - export_gin_v8platform_pageallocator_for_usage_outside_of_the_gin.patch: gin::V8Platform::GetPageAllocator() is now exported upstream via the public v8::Platform interface, so we no longer need to patch gin to expose a custom accessor. Update javascript_environm...
[ { "path": "patches/chromium/.patches", "patch": "@@ -52,7 +52,6 @@ adjust_accessibility_ui_for_electron.patch\n worker_feat_add_hook_to_notify_script_ready.patch\n chore_provide_iswebcontentscreationoverridden_with_full_params.patch\n fix_properly_honor_printing_page_ranges.patch\n-export_gin_v8platform_pag...
2026-03-25T00:21:13
facebook/react
b1533b034ee5e38e825fe20d789f2e83ede163ad
5dad2b47b87d93db51f3bd41453a39124127b75d
[Flight] Allow overriding `request.timeOrigin` via `options.startTime` (#35598) Currently, IO that finished before the request started is not considered IO: https://github.com/facebook/react/blob/6a0ab4d2dd62dfdf8881ba1c3443c6d5acedc871/packages/react-server/src/ReactFlightServer.js#L5338-L5343 This leads to loss of ...
[ { "path": "packages/react-markup/src/ReactMarkupServer.js", "patch": "@@ -184,6 +184,7 @@ export function experimental_renderToHTML(\n handleFlightError,\n options ? options.identifierPrefix : undefined,\n undefined,\n+ undefined,\n 'Markup',\n undefined,\n false,", ...
2026-02-03T14:29:51
golang/go
1582ad41058df1092eaed9dec4d97b7856953ade
d5b6d583c16f60e4a2f80f8b0fe78abab503f84c
test/codegen: fix some unbalanced quotes Change-Id: I081da8c79f0264118e079af21ff58c511ae37e6c Reviewed-on: https://go-review.googlesource.com/c/go/+/760682 Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Joel Sing...
[ { "path": "src/cmd/internal/testdir/testdir_test.go", "patch": "@@ -1683,6 +1683,8 @@ func (t test) wantedAsmOpcodes(fn string) asmChecks {\n \t\t\ttail := comment[lastUsed:]\n \t\t\tif possibleOpcodeRx.MatchString(tail) {\n \t\t\t\tt.Errorf(\"%s:%d: possible unused assembly pattern: %v\", t.goFileName(), i...
2026-03-28T00:14:43
vercel/next.js
4582b5fa93dd65b6f9ed1dff7e66bdb93ddd653c
77c84b4dacb2f9693f8f44a9ee16dad8bce99f9c
Reapply "ci: add node-stream test coverage workflow (#89861)" (#91664) Re-apply #89861. Somehow the tests passed in the PR but failed after merging. Will dig into it. Edit: Dug into it, there was a missing env var. Fixed and ready to merge now. PR doesn't add the Node.js streams code path. Implementation starts in ...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -812,7 +812,6 @@ jobs:\n \n uses: ./.github/workflows/build_reusable.yml\n with:\n- # Keep Next.js related env variables in sync with additionalEnv in next-deploy.ts\n afterBuild: |\n export __NEXT_CACHE_COMPONENTS=tru...
2026-04-01T18:42:25
electron/electron
1828690467017b7b0b67e01e0b14564c87f65f1b
f4c4cd14ac8eebf4ed33d75ca4f9b35b0e013208
fix: deprecate ELECTRON_SKIP_BINARY_DOWNLOAD env (#50406) * fix: remove ELECTRON_SKIP_BINARY_DOWNLOAD it is redundant as of electron v42 its purpose was to skip the binary download for post install script but as of electron v42, post install script is gone and replaced with a lazy download it was also slated fo...
[ { "path": "docs/breaking-changes.md", "patch": "@@ -98,6 +98,9 @@ npm install electron --save-dev\n ELECTRON_INSTALL_PLATFORM=mas npx electron . --no\n ```\n \n+This also means the `ELECTRON_SKIP_BINARY_DOWNLOAD` environment variable is no\n+longer supported, as its primary purpose was to prevent the `posti...
2026-03-24T13:42:15
facebook/react
5dad2b47b87d93db51f3bd41453a39124127b75d
748ee74e22ab86994c12564a19fc73950d00ad72
[DevTools] Fix commit index reset when switching profiler roots (#35672) Fixes https://github.com/facebook/react/issues/31463, https://github.com/facebook/react/issues/30114. When switching between roots in the profiler flamegraph, the commit index was preserved from the previous root. This caused an error "Invalid c...
[ { "path": "packages/react-devtools-shared/src/__tests__/profilerContext-test.js", "patch": "@@ -776,6 +776,84 @@ describe('ProfilerContext', () => {\n document.body.removeChild(profilerContainer);\n });\n \n+ it('should reset commit index when switching to a different root', async () => {\n+ const...
2026-02-03T12:44:04
electron/electron
dbcf0fb5f0351c0cceca24f6ae31944b89299fa4
29750dda082501f5b728f58fb57765813d59a193
fix: lazily initialize safeStorage async encryptor (#50419) * fix: lazily initialize safeStorage async encryptor The SafeStorage constructor previously registered a browser observer that called os_crypt_async()->GetInstance() on app-ready. Because ESM named imports (import { x } from 'electron') eagerly evaluate all ...
[ { "path": "docs/api/safe-storage.md", "patch": "@@ -59,7 +59,12 @@ On Windows, returns true once the app has emitted the `ready` event.\n \n ### `safeStorage.isAsyncEncryptionAvailable()`\n \n-Returns `Promise<Boolean>` - Whether encryption is available for asynchronous safeStorage operations.\n+Returns `Pr...
2026-03-23T17:47:14
vercel/next.js
c2914790119fe06835dd555928f4aa3616cdc613
faa4b992965537cf260eca4887951b7b7eae97be
partial fallbacks: adapter support for intermediate shells (#91902) Previously, `partialFallback` was only emitted when all dynamic params could become fully concrete after upgrade. For a route like `/prefix/[one]/[two]` where only `[one]` has generateStaticParams, the feature was disabled entirely. This relaxes the ...
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -1638,16 +1638,8 @@ export async function handleBuildComplete({\n typeof fallback === 'string' &&\n Boolean(meta.postponed)\n \n- // Today, consumers of this build output can only upgrade a fallback shell\...
2026-04-01T16:49:59
golang/go
1673075d4bd324e69cb4e6e58760316e2c84e604
9387929d09490ae30a8da75c64d9c64e2c16936d
test/codegen: fix broken syntax A bunch of tests had broken yet undetected syntax errors in their assembly output regexps. Things like mismatched quotes, using ^ instead of - for negation, etc. In addition, since CL 716060 using commas as separators between regexps doesn't work, and ends up just silently dropping eve...
[ { "path": "src/cmd/internal/testdir/testdir_test.go", "patch": "@@ -1394,10 +1394,11 @@ type wantedError struct {\n }\n \n var (\n-\terrRx = regexp.MustCompile(`// (?:GC_)?ERROR (.*)`)\n-\terrAutoRx = regexp.MustCompile(`// (?:GC_)?ERRORAUTO (.*)`)\n-\terrQuotesRx = regexp.MustCompile(`\"([^\"]*)\"`...
2026-03-27T22:12:23
nodejs/node
a62f6411aeac95d7c17bd4ac806b4843b11592c9
f6d02af01f1a73048fac350c50a8eccc7e4c292b
util: allow color aliases in styleText Fixes an issue where `util.styleText()` would throw an error for valid color aliases like 'grey' in Node.js >= 25.7.0. It now uses `ObjectGetOwnPropertyNames` instead of `ObjectKeys` to fetch both keys and aliases. Fixes: https://github.com/nodejs/node/issues/62177 PR-URL: https...
[ { "path": "lib/util.js", "patch": "@@ -32,6 +32,7 @@ const {\n ObjectDefineProperties,\n ObjectDefineProperty,\n ObjectGetOwnPropertyDescriptors,\n+ ObjectGetOwnPropertyNames,\n ObjectKeys,\n ObjectSetPrototypeOf,\n ObjectValues,\n@@ -115,7 +116,7 @@ function getStyleCache() {\n if (styleCach...
2026-03-17T07:57:07
facebook/react
748ee74e22ab86994c12564a19fc73950d00ad72
d4a325df4dbc595cceede81555dd177fc791e8e1
Use modern JSX runtime in Flight fixture (#35677)
[ { "path": "fixtures/flight/config/webpack.config.js", "patch": "@@ -76,19 +76,6 @@ const cssModuleRegex = /\\.module\\.css$/;\n const sassRegex = /\\.(scss|sass)$/;\n const sassModuleRegex = /\\.module\\.(scss|sass)$/;\n \n-const hasJsxRuntime = (() => {\n- if (process.env.DISABLE_NEW_JSX_TRANSFORM === 'tr...
2026-02-03T11:05:24
vercel/next.js
f7de136c60d0567c62e2bd8b456172170cc778c9
36fcc163070a5a0788a56a89791e00cc8ce0b861
fix: pin 19 actions to commit SHA, extract 7 expressions to env vars (#92016) Re-submission of #91933. Had a problem with my fork and had to delete it, which closed the original PR. Apologies for the noise. ## Summary This PR pins all GitHub Actions to immutable commit SHAs instead of mutable version tags and extrac...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -65,7 +65,7 @@ jobs:\n if [[ $(node ./scripts/check-is-release.js 2> /dev/null || :) == v* ]];\n then\n echo \"value=production\" >> $GITHUB_OUTPUT\n- elif [ '${{ github.ref }}' == 'refs/heads/canary' ]...
2026-04-01T00:57:59
golang/go
9387929d09490ae30a8da75c64d9c64e2c16936d
f665ff8bc1ab2576d173cb69c3b2e87916dc74fd
cmd/link, runtime: record size of itabs We were depending on runtime.etypes immediately following the itabs. However, on AIX, runtime.etypes, as a zero-sized symbol, can float when using external linking. It won't necessarily stay right at the end of the itabs. Rather than worry about this, just record the size of the...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -2549,6 +2549,19 @@ func (state *dodataState) dodataSect(ctxt *Link, symn sym.SymKind, syms []loader\n \t\t\tsu.SetUint(ctxt.Arch, ctxt.moduledataItabOffset, uint64(typeSize))\n \t\t}\n \n+\t\titabSize := int64(0)\n+\t\tfor ; i < len(sl); i++ {\n+\t...
2026-03-30T04:05:35
vercel/next.js
36fcc163070a5a0788a56a89791e00cc8ce0b861
5ef10c67f52ed96d5b4e26e4dc0ea2225c96c738
Improve revalidateTag JSDoc to include guidance about required second parameter (#92176) ### What? Improved the JSDoc comment on `revalidateTag` to explain the required second `profile` parameter, linking to `cacheLife` profile docs and mentioning `updateTag` as an alternative for immediate expiration. ### Why? The...
[ { "path": "packages/next/src/server/web/spec-extension/revalidate.ts", "patch": "@@ -24,6 +24,10 @@ type CacheLifeConfig = {\n /**\n * This function allows you to purge [cached data](https://nextjs.org/docs/app/building-your-application/caching) on-demand for a specific cache tag.\n *\n+ * The second argu...
2026-04-01T00:44:53
golang/go
f665ff8bc1ab2576d173cb69c3b2e87916dc74fd
9002bd9fa1a3b500ca570844ea563967268a3878
cmd/compile: fix wrong label loop during rangefunc rewrite During the rangefunc rewrite, the compiler must correctly identify the target of branch statements. When a label is defined within a nested scope - such as inside a function literal or a closure - it can shadow a label with the same name in the outer scope. I...
[ { "path": "src/cmd/compile/internal/rangefunc/rewrite.go", "patch": "@@ -994,7 +994,14 @@ func (r *rewriter) computeBranchNext() {\n \t\t\t\tl := n.Label.Value\n \t\t\t\tlabels = append(labels, l)\n \t\t\t\tf := forStack[len(forStack)-1]\n-\t\t\t\tr.labelLoop[l] = f\n+\t\t\t\tif _, existed := r.labelLoop[l]...
2026-03-31T11:53:51
nodejs/node
e0928d6cc46adbc02ae15733d6fd62e6a524ffd6
9c1c08e73a876f741b64544eb8e1780de87230f1
esm: fix path normalization in `finalizeResolution` PR-URL: https://github.com/nodejs/node/pull/62080 Refs: https://github.com/nodejs/node/pull/61478/changes/BASE..6cd90e1c0167f94c7dc671d10316e561c81f26af#r2871221559 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-...
[ { "path": "lib/internal/modules/esm/resolve.js", "patch": "@@ -245,7 +245,7 @@ function finalizeResolution(resolved, base, preserveSymlinks) {\n }\n \n const stats = internalFsBinding.internalModuleStat(\n- StringPrototypeEndsWith(internalFsBinding, path, '/') ? StringPrototypeSlice(path, -1) : path,...
2026-03-16T18:39:56
golang/go
9002bd9fa1a3b500ca570844ea563967268a3878
d9fbe4c90d956f7835224f4de1afcf799e8cc3ed
cmd/compile: ensure map/slice clearing expressions are walked The order pass ensures that initialization operations for clear(expr) are scheduled. However, if 'expr' is a conversion that the walk pass subsequently optimizes away or transforms, the resulting nodes can be left in an un-walked state. These un-walked nod...
[ { "path": "src/cmd/compile/internal/walk/builtin.go", "patch": "@@ -136,17 +136,18 @@ func walkGrowslice(slice *ir.Name, init *ir.Nodes, oldPtr, newLen, oldCap, num i\n }\n \n // walkClear walks an OCLEAR node.\n-func walkClear(n *ir.UnaryExpr) ir.Node {\n+func walkClear(n *ir.UnaryExpr, init *ir.Nodes) ir....
2026-03-30T06:15:38
electron/electron
6df6ec5f094f1546b5510c47aa478b2e19187f88
882a6b2cf97974fa2ccbd39e9c1e2d43d600c3a5
chore: bump chromium to 148.0.7741.0 (main) (#50336) * chore: bump chromium in DEPS to 148.0.7739.0 * chore: bump chromium in DEPS to 148.0.7740.0 * 7654582: Delete obsolete kEnableServiceWorkersForChromeScheme feature flag. https://chromium-review.googlesource.com/c/chromium/src/+/7654582 * chore: fixup patch ind...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '148.0.7738.0',\n+ '148.0.7741.0',\n 'node_version':\n 'v24.14.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2026-03-23T09:23:55
facebook/react
d4a325df4dbc595cceede81555dd177fc791e8e1
7b023d7073aa700b48674ae1985235b8c4755880
[compiler] Add snap subcommand to minimize a test input (#35663) Snap now supports subcommands 'test' (default) and 'minimize`. The minimize subcommand attempts to minimize a single failing input fixture by incrementally simplifying the ast so long as the same error occurs. I spot-checked it and it seemed to work pret...
[ { "path": "compiler/packages/snap/package.json", "patch": "@@ -22,6 +22,7 @@\n },\n \"dependencies\": {\n \"@babel/code-frame\": \"^7.22.5\",\n+ \"@babel/generator\": \"^7.19.1\",\n \"@babel/plugin-syntax-jsx\": \"^7.18.6\",\n \"@babel/preset-flow\": \"^7.7.4\",\n \"@babel/preset-type...
2026-02-03T03:03:47
vercel/next.js
5ef10c67f52ed96d5b4e26e4dc0ea2225c96c738
fe99f0d63fbd7564df3a247f39740b2e11d12ab9
disable bmi2 in qfilter (#92177) Fixes #91708 set the legacy_x86_64_support feature on qfilter to support older intel cpus
[ { "path": "turbopack/crates/turbo-persistence/Cargo.toml", "patch": "@@ -26,7 +26,8 @@ memmap2 = \"0.9.5\"\n nohash-hasher = { workspace = true }\n parking_lot = { workspace = true }\n pot = \"3.0.0\"\n-qfilter = { version = \"0.3.0-alpha.2\", features = [\"serde\"] }\n+# See https://github.com/vercel/next....
2026-03-31T23:52:51
nodejs/node
9c1c08e73a876f741b64544eb8e1780de87230f1
35fed19330d2cc00b21377014307dd31116e5976
benchmark: fix destructuring in dgram/single-buffer PR #59872 renamed the config key from `num` to `n` but did not update the destructuring in main(), leaving `{ num: n }` which resolves to undefined. This caused the benchmark to produce near-zero throughput since the send-batching logic never fires when n is undefine...
[ { "path": "benchmark/crypto/hash-stream-creation.js", "patch": "@@ -5,15 +5,15 @@ const common = require('../common.js');\n const crypto = require('crypto');\n \n const bench = common.createBenchmark(main, {\n- writes: [500],\n+ n: [500],\n algo: [ 'sha256', 'md5' ],\n type: ['asc', 'utf', 'buf'],\n ...
2026-03-16T18:16:39
electron/electron
882a6b2cf97974fa2ccbd39e9c1e2d43d600c3a5
b8fa540fd3c5673d170b950dc0504d290ea66195
build: speed up apply_all_patches by ~60% (#50417) git am rewrites the index 2-3x per patch. In Chromium (~500K files, 70MB index) this dominated wall time: ~67 of 73 seconds were spent rehashing and rewriting the index ~300 times for 150 patches. - Add index.skipHash=true to skip recomputing the trailing SHA over ...
[ { "path": "script/apply_all_patches.py", "patch": "@@ -1,13 +1,16 @@\n #!/usr/bin/env python3\n \n import argparse\n+import concurrent.futures\n import json\n import os\n+import subprocess\n import warnings\n \n from lib import git\n from lib.patches import patch_from_dir\n \n+ELECTRON_DIR = os.path.dirname...
2026-03-23T08:49:48
vercel/next.js
fe99f0d63fbd7564df3a247f39740b2e11d12ab9
e16735f880eb4333313e3d58e5157f1700bba23c
simplify session dependent tasks and add TTL support (#91729) ## Summary Three related improvements to turbo-tasks session-dependent task handling: ### 1. Make `session_dependent` a function attribute Previously, tasks called `mark_session_dependent()` at runtime to flag themselves. This PR makes it a compile-time ...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -363,6 +363,37 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n self.options.dependency_tracking\n }\n \n+ /// Sets the initial aggregation number for a newly created task. Root tasks get `u32::MAX`\n+ ...
2026-03-31T23:51:08
electron/electron
b8fa540fd3c5673d170b950dc0504d290ea66195
dee8f5a0ffa69116117fb00c4faaaacd30218e2f
fix: use fresh LazyNow for OnEndWorkItemImpl to fix TimeKeeper DCHECK (#50418)
[ { "path": "patches/chromium/.patches", "patch": "@@ -148,3 +148,4 @@ fix_set_correct_app_id_on_linux.patch\n fix_pass_trigger_for_global_shortcuts_on_wayland.patch\n feat_plumb_node_integration_in_worker_through_workersettings.patch\n fix_restore_sdk_inputs_cross-toolchain_deps_for_macos.patch\n+fix_use_fre...
2026-03-23T02:54:31
facebook/react
b8a6bfa22c8cfc11863f2373fde44ae36695cd0b
ed4bd540ca67f1c4db65f009ad726a5ae1a0af01
[compiler] Support optional/logical/etc within try/catch (#35606) Adds support for value terminals (optional/logical/ternary/sequence) within try/catch clauses. Try/catch expressions insert maybe-throw terminals after each instruction, but BuildReactiveFunction's value block extraction was not expecting these termina...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/DropManualMemoization.ts", "patch": "@@ -583,6 +583,10 @@ function findOptionalPlaces(fn: HIRFunction): Set<IdentifierId> {\n testBlock = fn.body.blocks.get(terminal.fallthrough)!;\n break;\n }\n+ ...
2026-02-02T17:27:05
golang/go
db6661a2fd321d4af14efc48492144f86bb50c93
af4c316c28d2dad63851e7384a7aa198ee729aee
net/http: support passing Server Shutdown context to HTTP/3 implementations Currently, when Server.Shutdown is called with a given context, an HTTP/3 server implementation does not have access to said context. This forces HTTP/3 server implementations to guess a reasonable fixed timeout when attempting to gracefully s...
[ { "path": "src/net/http/server.go", "patch": "@@ -3121,6 +3121,7 @@ type Server struct {\n \tactiveConn map[*conn]struct{}\n \tonShutdown []func()\n \th2 *http2Server\n+\th3 *http3ServerHandler\n \n \tlistenerGroup sync.WaitGroup\n }\n@@ -3188,6 +3189,9 @@ func (s *Server) Shutdown(ctx conte...
2026-03-31T02:24:12
facebook/react
64b4605cb82367fa78a08b99bbee1c800e6af21a
da64117876002bd60baa9e93cad77421bbf0293f
[compiler] fix source location for return statements (#35660) Fixes missing source locations for ReturnStatement nodes in generated ast. Simple change using existing pattern, only required changes to the codegen step, no other pipeline changes. **Most file changes are new lines in generated code.** [First commit](htt...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -1160,9 +1160,9 @@ function codegenTerminal(\n const value = codegenPlaceToExpression(cx, terminal.value);\n if (value.type === 'Identifier' && value.name === 'undefined') {\n ...
2026-01-30T16:37:19
vercel/next.js
8be5a3c282b1bd9780f79ebaf9bd02b24957d5f3
9b66a376e7e66c51d1a0952a96e3c377b56bd81a
[turbopack] Fix CSS HMR on Safari (#92123) Fixes #91818 **Regression source:** Commit `b7e4c6a011` ("Turbopack: transpile CHUNK_SUFFIX") introduced `getChunkSuffixFromScriptSrc()` which reads query strings from `<script>` tags. On Safari, this picks up the `?ts=` param injected by the server-side cache-busting workar...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -1054,19 +1054,24 @@ jobs:\n \n # these all run without concurrency because they're heavier\n export TEST_CONCURRENCY=1\n- export IS_WEBPACK_TEST=1\n-\n- BROWSER_NAME=firefox node run-tests.js \\\n+ export IS...
2026-03-31T21:49:53
electron/electron
32f8e2ce4579626ea99602fcf3f3d0100eb5cc66
4e6324e00bb73bae1b87736adbf3e8ce6bf1ac75
build(deps-dev): bump eslint-plugin-n from 16.6.2 to 17.24.0 (#50310) * build(deps-dev): bump eslint-plugin-n from 16.6.2 to 17.24.0 Bumps [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) from 16.6.2 to 17.24.0. - [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases) - [C...
[ { "path": "lib/renderer/init.ts", "patch": "@@ -124,7 +124,9 @@ if (nodeIntegration) {\n delete (global as any).setImmediate;\n delete (global as any).clearImmediate;\n delete (global as any).global;\n+ // eslint-disable-next-line n/no-deprecated-api\n delete (global as any).roo...
2026-03-20T21:38:44
golang/go
af4c316c28d2dad63851e7384a7aa198ee729aee
1f8aff4386ca8be6ae9b9553205d113884c4a8ee
image/jpeg: reject RGB and non-standard chroma subsampling This fixes a possible panic introduced a few months ago by "image/jpeg: add support for non-standard chroma subsampling ratios" (CL 738280). Fixes #78368 Change-Id: I1f181582b7dc1e2955e3ec26c3aa24bc0f4159df Reviewed-on: https://go-review.googlesource.com/c/g...
[ { "path": "src/image/jpeg/reader.go", "patch": "@@ -755,7 +755,27 @@ func (d *decoder) isRGB() bool {\n }\n \n func (d *decoder) convertToRGB() (image.Image, error) {\n-\tcScale := d.comp[0].h / d.comp[1].h\n+\t// Historically, we only supported 4:4:4, 4:4:0, 4:2:2, 4:2:0, 4:1:1 or\n+\t// 4:1:0 chroma subsa...
2026-03-31T09:09:53
vercel/next.js
9b66a376e7e66c51d1a0952a96e3c377b56bd81a
4b62ff78c0ad4117477ab78806df809f4c1f8b33
Improve error message for deprecated `experimental.dynamicIO` config (#92081) ### What? Added a specific, actionable error message when users have `experimental.dynamicIO` in their `next.config` file. Instead of the generic "invalid experimental key" message, users now see that `dynamicIO` has been replaced by `cache...
[ { "path": "packages/next/src/server/config.ts", "patch": "@@ -84,6 +84,12 @@ function normalizeNextConfigZodErrors(\n \"\\nUse 'experimental.turbopackFileSystemCacheForDev' instead.\"\n message +=\n '\\nLearn more: https://nextjs.org/docs/app/api-reference/config/next-config-js/t...
2026-03-31T21:08:04
facebook/react
230772f99dac80be6dda9c59441fb4928612f18e
90b2dd442cc05048b2a6ade5020c463ab0499eca
[tests] Fix ReactDOMAttribute-test (#35654) In https://github.com/facebook/react/pull/35646 I thought there was a bug in trusted types, but the bug is in jsdom. For trusted types we still want to check the coersion and throw for a good dev warning, but prod will also throw becuase the browser will implicitly coerce t...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMAttribute-test.js", "patch": "@@ -9,6 +9,13 @@\n \n 'use strict';\n \n+// Fix JSDOM. setAttribute is supposed to throw on things that can't be implicitly toStringed.\n+const setAttribute = Element.prototype.setAttribute;\n+Element.prototype.setAttribute = ...
2026-01-28T21:00:40
nodejs/node
8ccbe8e38430d278455ac2ed3a5e2aa4c7acfcce
aac5b68211c0ec7fbb008094da358b39aa366519
crypto: reject ML-KEM/ML-DSA PKCS#8 import without seed in SubtleCrypto Reject importing ML-KEM and ML-DSA PKCS#8 private keys that do not include a seed, throwing NotSupportedError. Also add tests for importing PKCS#8 keys with a mismatched expanded key. Refs: https://redirect.github.com/WICG/webcrypto-modern-algos...
[ { "path": "doc/api/webcrypto.md", "patch": "@@ -1260,6 +1260,10 @@ The {CryptoKey} (secret key) generating algorithms supported include:\n <!-- YAML\n added: v15.0.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/62218\n+ description: Importing ML-DSA and ML-KEM PKC...
2026-03-13T21:22:20
electron/electron
7f21d3149808ce70f2a4aae7cde2113324e72eb9
639d3b99b7558c1676910900c33f4799553289ea
feat: use Downloads folder as default path for file dialogs (#49868) * fix: use Downloads folder as default path for file dialogs Co-authored-by: Sourav Bera <sbera987654321@gmail.com> * chore: improve breaking change description --------- Co-authored-by: Sourav Bera <sbera987654321@gmail.com>
[ { "path": "docs/api/dialog.md", "patch": "@@ -28,7 +28,10 @@ added:\n * `window` [BaseWindow](base-window.md) (optional)\n * `options` Object\n * `title` string (optional)\n- * `defaultPath` string (optional)\n+ * `defaultPath` string (optional) - Absolute directory path, absolute file\n+ path, or fi...
2026-03-20T21:28:53
vercel/next.js
495d50f1872aa397c94333500f17ff4d9b466314
d6ff2197d91fe6716c48ea80aecaaa89f396edaa
docs: document revalidateTag's required second argument in upgrade guide (#92134) ### What? Add a before/after migration snippet to the version 16 upgrade guide showing the old single-argument `revalidateTag('posts')` and the new required two-argument `revalidateTag('posts', 'max')` signature. Also mention the TypeSc...
[ { "path": "docs/01-app/02-guides/upgrading/version-16.mdx", "patch": "@@ -454,7 +454,17 @@ bun add -D babel-plugin-react-compiler\n \n ### revalidateTag\n \n-[`revalidateTag`](/docs/app/api-reference/functions/revalidateTag) has a new function signature. You can pass a [`cacheLife`](/docs/app/api-reference/...
2026-03-31T18:34:23
golang/go
1f8aff4386ca8be6ae9b9553205d113884c4a8ee
b526b2d49b39a116cf654551f7f65c965144b096
simd/archsimd: mark pa* unsafe helpers as nocheckptr Despite the cast from smaller to bigger slice, the elements after the input slice length are not actually read. Thus they should have nocheckptr annotation to make checkptr happy. Fixes #78413 Change-Id: I3e27eab8a69b37bb11632b130a87e6625e06e8ac Reviewed-on: https...
[ { "path": "src/simd/archsimd/_gen/tmplgen/main.go", "patch": "@@ -794,6 +794,8 @@ var unsafePATemplate = templateOf(\"unsafe PA helper\", `\n // pa{{.VType}} returns a type-unsafe pointer to array that can\n // only be used with partial load/store operations that only\n // access the known-safe portions of ...
2026-03-30T15:21:43
facebook/react
90b2dd442cc05048b2a6ade5020c463ab0499eca
875b06489f4436125613535dfe0833cd12a500f9
Add additional fixtures for FragmentInstance text node support (#35631) Stacked on https://github.com/facebook/react/pull/35630 - Adds test case for compareDocumentPosition, missing before and also extending to text nodes - Adds event handling fixture case for text - Adds getRootNode fixture case for text
[ { "path": "fixtures/dom/src/components/fixtures/fragment-refs/CompareDocumentPositionCase.js", "patch": "@@ -0,0 +1,53 @@\n+import TestCase from '../../TestCase';\n+import Fixture from '../../Fixture';\n+import CompareDocumentPositionFragmentContainer from './CompareDocumentPositionFragmentContainer';\n+\n+...
2026-01-28T19:55:07
nodejs/node
e42dbefea7f60e3db09c88cc3bc90c0652d876ae
ee417909ace0674d96f0f756322fda4a6ce1bc00
doc: remove outdated Chrome 66 and ndb references from debugger Remove the Chrome 66.0.3345.0 version check (Chrome 66 shipped in 2018), the claim that Chrome DevTools doesn't support debugging worker threads (which uses time-tied language), and the recommendation to use ndb (which has been archived since July 2023). ...
[ { "path": "doc/api/debugger.md", "patch": "@@ -260,13 +260,5 @@ For help, see: https://nodejs.org/en/docs/inspector\n at the end of the URL is generated on the fly, it varies in different\n debugging sessions.)\n \n-If the Chrome browser is older than 66.0.3345.0,\n-use `inspector.html` instead of `js_app.h...
2026-03-13T13:17:17
electron/electron
639d3b99b7558c1676910900c33f4799553289ea
0c7bde54d47d17a258e51eec23830a51193776c3
ci: update actions to node24 (#50373) * ci: update actions to node24 * chore: fixup actions/cache to 5.0.4 everywhere
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -274,18 +274,18 @@ runs:\n run: ./src/electron/script/actions/move-artifacts.sh\n - name: Upload Generated Artifacts ${{ inputs.step-suffix }}\n if: always() && !cancelled()\n- uses: actions/upload-artifact@65462800fd76...
2026-03-20T19:33:48
golang/go
b526b2d49b39a116cf654551f7f65c965144b096
261d489139b958e3b7b3bf76d1fb23c9bca76142
net/http/internal/http2: don't reuse ClientRequest streams The ClientRequest type (unlike http.Request) is not reusable across RoundTrip attempts because it includes a single-use clientStream. (It's possible for RoundTrip to return while some goroutines are still accessing the clientStream.) Always clone the ClientRe...
[ { "path": "src/net/http/internal/http2/transport.go", "patch": "@@ -644,16 +644,16 @@ var (\n \n // shouldRetryRequest is called by RoundTrip when a request fails to get\n // response headers. It is always called with a non-nil error.\n-// It returns either a request to retry (either the same request, or a\...
2026-03-30T20:55:37
vercel/next.js
d6ff2197d91fe6716c48ea80aecaaa89f396edaa
373d2c448a1370e653e10ff6e42ee3038201fc20
Add PPR evals and fix env loading for agent-eval 0.9.5 (#92063) Upgrades `@vercel/agent-eval` from 0.8.0 to 0.9.5. The new version loads `.env` / `.env.local` from its own cwd (`evals/`) rather than inheriting from the parent process, so the old `process.loadEnvFile()` call no longer works. Instead, `run-evals.js` now...
[ { "path": ".gitignore", "patch": "@@ -50,6 +50,7 @@ examples/**/out/*\n \n # env\n .env*.local\n+evals/.env\n \n pr-stats.md\n test-timings.json", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "evals/evals/agent-041-optimize-ppr-shell/EVAL.ts", "patch": "@@ -0,0 ...
2026-03-31T18:25:31
facebook/react
8c34556ca8df0dab34bbaf68e0dd15cd4a5e3f7f
10680271fab565e0edf948d3a6dc9d30e83df94c
[Flight] Fix react-markup types for server references (#35634)
[ { "path": "packages/react-client/src/forks/ReactFlightClientConfig.markup.js", "patch": "@@ -18,7 +18,7 @@ export * from 'react-client/src/ReactClientConsoleConfigPlain';\n export type ModuleLoading = null;\n export type ServerConsumerModuleMap = null;\n export opaque type ServerManifest = null;\n-export op...
2026-01-26T20:13:16
electron/electron
0c7bde54d47d17a258e51eec23830a51193776c3
8a0c20431cf8f62a600cad3a478e619d66dbfa06
feat: add `copyVideoFrameAt` and `saveVideoFrameAs` methods on `webContents` (#48149) * feat: add copyVideoFrameAt and saveVideoFrameAs Method on Webcontent chore: change the description of savevideoframe api chore: add the description of the restrictive elements for using the APIs. move to webframemain fixed medi...
[ { "path": "docs/api/web-contents.md", "patch": "@@ -1585,6 +1585,20 @@ Centers the current text selection in web page.\n \n Copy the image at the given position to the clipboard.\n \n+#### `contents.copyVideoFrameAt(x, y)`\n+\n+* `x` Integer\n+* `y` Integer\n+\n+When executed on a video media element, copie...
2026-03-20T19:32:09
nodejs/node
ee417909ace0674d96f0f756322fda4a6ce1bc00
da5843b91d4347845ab3bedc6b82dcf2348ab477
doc: add throwIfNoEntry version history to fs.stat PR #61178 added the throwIfNoEntry option to fs.stat and fsPromises.stat (shipped in v25.7.0) but did not add corresponding YAML version history entries. The sync variants (fs.statSync, fs.lstatSync) already had history entries from PR #33716. Fixes: https://github.c...
[ { "path": "doc/api/fs.md", "patch": "@@ -1709,6 +1709,10 @@ Removes files and directories (modeled on the standard POSIX `rm` utility).\n <!-- YAML\n added: v10.0.0\n changes:\n+ - version: v25.7.0\n+ pr-url: https://github.com/nodejs/node/pull/61178\n+ description: Accepts a `throwIfNoEntry` option ...
2026-03-13T10:37:30
golang/go
ed3ec75df47ab8e7d6e4a30c445a8ef771382584
a4b534f5e42fe58d58c0ff0562d76680cedb0466
go/types, types2: report an error if constant string overflows Set a limit of 10 GiB for strings obtained via constant string addition. Fixes #78346. Change-Id: I35dbdff94f3ed32bf69654f4b3da435dad9f6236 Reviewed-on: https://go-review.googlesource.com/c/go/+/761300 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj...
[ { "path": "src/cmd/compile/internal/types2/const.go", "patch": "@@ -46,6 +46,14 @@ func (check *Checker) overflow(x *operand, opPos syntax.Pos) {\n \t\t}\n \t\tcheck.errorf(atPos(opPos), InvalidConstVal, \"constant %soverflow\", op)\n \t\tx.val = constant.MakeUnknown()\n+\t\treturn\n+\t}\n+\n+\tconst maxLen...
2026-03-30T19:27:31
vercel/next.js
76df801abc3df027e59ba2902e4a07906c7fc37b
e3b81e05b28c0e888534092717be2074a1aa24c9
Instant Validation: Allow unconfigured slots to render optionally (#92126) When validating an instant navigation we always report blocking data regardless of which parallel slot it was found from because it will block the navigation regardless. To prevent accidental disabling of validation Next.js also requires that t...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -4766,8 +4766,8 @@ async function validateInstantConfigs(\n if (previousBoundaryState) {\n // We're doing a followup render to better discriminate error types\n useRuntimeStageForPartialSegments = true\n- for (...
2026-03-31T14:40:52
facebook/react
10680271fab565e0edf948d3a6dc9d30e83df94c
699abc89cea33d5aa0b443050ae27c2fea7cb3cb
[Flight] Add more DoS mitigations to Flight Reply, and harden Flight (#35632) This fixes security vulnerabilities in Server Functions. --------- Co-authored-by: Sebastian Markbåge <sebastian@calyptus.eu> Co-authored-by: Josh Story <josh.c.story@gmail.com> Co-authored-by: Janka Uryga <lolzatu2@gmail.com> Co-authored-...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -94,6 +94,8 @@ import getComponentNameFromType from 'shared/getComponentNameFromType';\n \n import {getOwnerStackByComponentInfoInDev} from 'shared/ReactComponentInfoStack';\n \n+import hasOwnProperty from 'shared/hasOwnProperty';\n+\n...
2026-01-26T19:24:58
electron/electron
8a0c20431cf8f62a600cad3a478e619d66dbfa06
72797d7b4254dee923659ba290797969ef46272c
fix: don't re-parse URL unnecessarily when handling dialogs (#50062) * fix: fallback to opaque URL when needed inside dialog callback * refactor: remove additional URL parsing entirely when showing dialogs * test: add crash test case for URL-less dialogs * refactor: exit on events instead of on timeout for dialog c...
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -782,8 +782,7 @@ WebContents.prototype._init = function () {\n const originCounts = new Map<string, number>();\n const openDialogs = new Set<AbortController>();\n this.on('-run-dialog', async (info, callback) => {\n- const originUrl = new UR...
2026-03-20T13:27:59
vercel/next.js
a21f3f4008a7d4c1778649d533de76b62dffabaa
c43965275556c3e0243de822e5bd21e07cf9d48c
next.config.js: Accept an option for serverFastRefresh (#91968) ### What? Adds `experimental.serverFastRefresh` to `next.config.js` so users (and Next.js plugins) can opt out of server-side Fast Refresh without needing to pass a CLI flag. Also adds a `--server-fast-refresh` positive CLI flag (hidden) alongside the e...
[ { "path": "packages/next/src/bin/next.ts", "patch": "@@ -314,7 +314,14 @@ program\n '--experimental-https-ca, <path>',\n 'Path to a HTTPS certificate authority file.'\n )\n- .option('--no-server-fast-refresh', 'Disable server-side Fast Refresh')\n+ // `--server-fast-refresh` is hidden because it...
2026-03-31T00:20:15
golang/go
a4b534f5e42fe58d58c0ff0562d76680cedb0466
9c88851d456b462ae3aa5fe8b9d66ea953af48f6
all: fix some minor issues in the comments Change-Id: If6c304efac7a46a9718cdc63ded3d98a26a3a831 Reviewed-on: https://go-review.googlesource.com/c/go/+/760700 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Robert Griesemer <gri@google.com> Reviewed-by: Neal Patel ...
[ { "path": "src/cmd/compile/internal/ir/dump.go", "patch": "@@ -213,7 +213,7 @@ func DumpNodeHTML(fn *Func, why string, n Node) {\n \tw.WritePhase(why, why)\n }\n \n-// CloseHTMLWriter closes the HTML writer for fn, if one exists.\n+// CloseHTMLWriters closes the HTML writer for fn, if one exists.\n func Clo...
2026-03-28T08:50:11
nodejs/node
5e3951e0add844c3c4ef73c5b4456b162491ef60
f33e715dd4bb2521353f74ab1d404e4c2af760f5
repl: add customizable error handling Whether or not an exception should be handled when it was thrown in the REPL's context but the REPL is already closed is something that will depend on the details of the specific REPL instance's use case. Adding this option lets the REPL's creator control the details of this beha...
[ { "path": "doc/api/repl.md", "patch": "@@ -709,6 +709,9 @@ npx codemod@latest @nodejs/repl-builtin-modules\n <!-- YAML\n added: v0.1.91\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/62188\n+ description: The `handleError` parameter has been added.\n - version: v2...
2026-03-12T16:35:31
facebook/react
a0566250b210499b4c5677f5ac2eedbd71d51a1b
870cccd656bc0188c04ef8b53e8f7f1b78d486d9
[repo] init claude config (#35617) ## Overview Adds a claude setup that works with the nested /compiler setup. The constraints are: - when working in the root repo, don't use the compiler configs (easy) - when working in the compiler/ don't use the parent contigs (hard) The first one is easy: there's a claude.md an...
[ { "path": ".claude/instructions.md", "patch": "@@ -0,0 +1,46 @@\n+# React\n+\n+**Scope**: All code EXCEPT `/compiler/` (compiler has its own instructions).\n+\n+## Project Structure\n+\n+| Directory | Purpose |\n+|-----------|---------|\n+| `/packages/` | Publishable packages (react, react-dom, scheduler, e...
2026-01-24T01:16:06
electron/electron
9ccc752a43a93c17a30442c4977375e81f6b6bb9
6993eb3c78770087e0d2a10e184ec96f9eda6b97
fix: correct utility process exit code on Windows (#50256) * fix: correct utility process exit code on Windows On Windows, process exit codes are 32-bit unsigned integers (DWORD). When passed from Chromium to Electron as a signed int and then implicitly converted to uint64_t, values with the high bit set (e.g., NTSTA...
[ { "path": "shell/browser/api/electron_api_utility_process.cc", "patch": "@@ -246,7 +246,7 @@ void UtilityProcessWrapper::OnServiceProcessLaunch(\n EmitWithoutEvent(\"spawn\");\n }\n \n-void UtilityProcessWrapper::HandleTermination(uint64_t exit_code) {\n+void UtilityProcessWrapper::HandleTermination(uint3...
2026-03-19T20:58:14
vercel/next.js
c43965275556c3e0243de822e5bd21e07cf9d48c
9a0214a12f1ed1901c4b01e84073ab854848eea0
Turbopack: exclude metadata routes from server HMR (#92034) ### What? Metadata routes (`manifest.ts`, `robots.ts`, `sitemap.ts`, `icon.tsx`, `apple-icon.tsx`, etc.) were not being hot-reloaded in Turbopack dev mode — changes to those files would not be reflected on subsequent requests until a full server restart. ##...
[ { "path": "packages/next/src/server/dev/hot-reloader-turbopack.ts", "patch": "@@ -82,7 +82,10 @@ import { isAppPageRouteDefinition } from '../route-definitions/app-page-route-de\n import { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\n import type { ModernSourceMapPayload } from '../lib...
2026-03-31T00:17:46
golang/go
9c88851d456b462ae3aa5fe8b9d66ea953af48f6
7dbbeea110b8e03afe63f4d6c73e99c29d5030ff
runtime/race: allow TestOutput output in either order We have only seen the wrappersym case reported in the opposite order in practice, but since these are intentionally racy, they could theoretically all occur in the opposite order. It would be nice to have a bit more structure to these tests so the test itself coul...
[ { "path": "src/runtime/race/output_test.go", "patch": "@@ -119,7 +119,9 @@ func racer() {\n \tstore(xptr, 42)\n \tdonechan <- true\n }\n-`, []string{`==================\n+`, []string{\n+\t// Allow the race output in either order.\n+\t`==================\n WARNING: DATA RACE\n Write at 0x[0-9,a-f]+ by gorout...
2026-03-27T20:25:58
rust-lang/rust
cdde49123f4b070545d1146663421abef8e82999
8717b4b9c85cc2e66273fe623bebdbcba03fe938
Document the `-quick` job suffix
[ { "path": "src/doc/rustc-dev-guide/src/tests/ci.md", "patch": "@@ -150,7 +150,10 @@ Such a try build will not execute any tests, and it will allow compilation warni\n It is useful when you want to\n get an optimized toolchain as fast as possible, for a Crater run or performance benchmarks,\n even if it migh...
2026-04-07T15:23:32
nodejs/node
c96c3dad39f24bcca474f055ccadf19552084079
95ee87da538734a07adb5b00e0682884b731aac9
build: fix --node-builtin-modules-path PR-URL: https://github.com/nodejs/node/pull/62115 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "node.gyp", "patch": "@@ -948,7 +948,13 @@\n },\n }],\n [ 'node_builtin_modules_path!=\"\"', {\n- 'defines': [ 'NODE_BUILTIN_MODULES_PATH=\"<(node_builtin_modules_path)\"' ]\n+ 'defines': [ 'NODE_BUILTIN_MODULES_PATH=\"<(node_builtin_modules_path)\"' ],\...
2026-03-05T14:49:43
facebook/react
c3b95b0979757edb9507a7b0c80fc220a96330b3
006ae379727ebceb82d03929222a71104d01135f
[compiler] Improve snap workflow for debugging errors (#35539) Much nicer workflow for working through errors in the compiler: * Run `yarn snap -w`, oops there are are errors * Hit 'p' to select a fixture => the suggestions populate with recent failures, sorted alphabetically. No need to copy/paste the name of the fix...
[ { "path": "compiler/packages/snap/src/runner-watch.ts", "patch": "@@ -9,7 +9,7 @@ import watcher from '@parcel/watcher';\n import path from 'path';\n import ts from 'typescript';\n import {FIXTURES_PATH, PROJECT_ROOT} from './constants';\n-import {TestFilter} from './fixture-utils';\n+import {TestFilter, ge...
2026-01-23T19:26:33
electron/electron
e31a95b15f6fcb8359be8e3b764359e767bd5f7c
1ad832a4c18a2e7e20b40e0c124395fc5d48ba6d
chore: remove macos hittest workaround patch (#50330) build: remove macos hittest workaround patch CL:6574464 changed BridgedContentView::hitTest: to use GetHitTestResult(), which returns kRootView for any non-null, non-NativeViewHost view — causing BridgedContentView to absorb all web content mouse events. In Browse...
[ { "path": "patches/chromium/.patches", "patch": "@@ -128,7 +128,6 @@ fix_win32_synchronous_spellcheck.patch\n chore_grandfather_in_electron_views_and_delegates.patch\n refactor_patch_electron_permissiontypes_into_blink.patch\n revert_views_remove_desktopwindowtreehostwin_window_enlargement.patch\n-build_par...
2026-03-19T15:04:17
vercel/next.js
9a0214a12f1ed1901c4b01e84073ab854848eea0
c6491ae4b31ffaa796fefa15117854fdbf00d1cd
fix: handle file:// URLs from import.meta.resolve in cache handler path (fixes #73796) (#90370) ## Summary Fixes #73796 ### The Bug When "type": "module" is in package.json, users cannot use require.resolve() for the cache handler path. They must use import.meta.resolve() instead, which returns a file:// URL. Next...
[ { "path": "packages/next/src/build/collect-build-traces.ts", "patch": "@@ -10,6 +10,7 @@ import {\n } from './webpack/plugins/next-trace-entrypoints-plugin'\n \n import path from 'path'\n+import { resolveCacheHandlerPathToFilesystem } from '../lib/format-dynamic-import-path'\n import fs from 'fs/promises'\n...
2026-03-30T23:53:41
golang/go
7dbbeea110b8e03afe63f4d6c73e99c29d5030ff
dadc8a5cd274a7d70542d36fa1dfbeb112197988
cmd/go/internal/doc: document that -all and -short cannot be combined And return an error message. Hopefully we can add support by the end of the cycle, but for now return an error to avoid confusing users. For #77191 Change-Id: I8a673a4bdfe640a04ec67b8bee0b5a056a6a6964 Reviewed-on: https://go-review.googlesource.co...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -457,7 +457,8 @@\n //\t \t-http\n //\t\t\tServe HTML docs over HTTP.\n //\t\t-short\n-//\t\t\tOne-line representation for each symbol.\n+//\t\t\tOne-line representation for each symbol. Cannot be\n+//\t\t\tcombined with -all.\n //\t\t-src\n //\t\t\tShow the f...
2026-03-27T19:18:29
rust-lang/rust
854d2abd782e901d597c2db5b972d61b90e45680
49b6ac01d6f4c3da812039ae846407a20961aa4c
fix pattern types rendering in rustdoc
[ { "path": "src/librustdoc/clean/mod.rs", "patch": "@@ -1808,7 +1808,15 @@ pub(crate) fn clean_ty<'tcx>(ty: &hir::Ty<'tcx>, cx: &mut DocContext<'tcx>) -> T\n BorrowedRef { lifetime, mutability: m.mutbl, type_: Box::new(clean_ty(m.ty, cx)) }\n }\n TyKind::Slice(ty) => Slice(Box::ne...
2026-04-07T14:26:21
nodejs/node
95ee87da538734a07adb5b00e0682884b731aac9
ae228c1ff5934b0fa032d6ef9385d46d9328ac01
fs: fix cpSync to handle non-ASCII characters Fixes: https://github.com/nodejs/node/issues/61878 PR-URL: https://github.com/nodejs/node/pull/61950 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -3425,15 +3425,18 @@ static void CpSyncOverrideFile(const FunctionCallbackInfo<Value>& args) {\n THROW_IF_INSUFFICIENT_PERMISSIONS(\n env, permission::PermissionScope::kFileSystemWrite, dest.ToStringView());\n \n+ auto src_path = src.ToPath();\n+ auto des...
2026-03-10T14:11:23
electron/electron
b881f86c8f0b01b39bedac92a5a797ed9a0dd160
5959ecc3eefa33163e2eb72393008a6fd5082047
fix: always call the original impl in swizzled mousedown impls (#50096) fix: always call the original implementation in swizzled mousedown implementations
[ { "path": "shell/browser/ui/cocoa/electron_ns_window.mm", "patch": "@@ -87,8 +87,8 @@ - (void)swiz_nsthemeframe_mouseDown:(NSEvent*)event {\n (electron::NativeWindowMac*)[(id)self.window shell];\n if (shell && !shell->has_frame())\n [self cr_mouseDownOnFrameView:event];\n- g_nsthemefram...
2026-03-18T21:54:43
golang/go
4d1f503396fa30da1e7b841de2f464c8bf8940e0
09031d907c720e38cdde6242c763d25c9f985327
cmd/compile/internal/devirtualize: improve debug logs Change-Id: Ie8d74d0968c3dfa6fe3454f1d3fdf13d6a6a6944 Reviewed-on: https://go-review.googlesource.com/c/go/+/760162 Auto-Submit: Mateusz Poliwczak <mpoliwczak34@gmail.com> Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com...
[ { "path": "src/cmd/compile/internal/devirtualize/devirtualize.go", "patch": "@@ -182,6 +182,17 @@ const concreteTypeDebug = false\n // Returns nil when the concrete type could not be determined, or when there are multiple\n // (different) types assigned to an interface.\n func concreteType(s *State, n ir.No...
2026-03-27T17:09:23