repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
ad170e18540be19bd6db012ff221c01e8c9745e9
9fd5a5fa7d9d629ded8d4685dcc5984268258edb
cmd/link: make TestTypePlacement work on AIX The existing code was just wrong. On AIX the go.type section is folded into the .text section (when internally linking), or the .data section (when externally linking). It follows that the data section adjustment is useless when internally linking, which is currently what h...
[ { "path": "src/cmd/link/link_test.go", "patch": "@@ -2416,20 +2416,37 @@ func TestTypePlacement(t *testing.T) {\n \tcase xf != nil:\n \t\tdefer xf.Close()\n \n-\t\tfor _, sec := range xf.Sections {\n-\t\t\tif sec.Name == \".go.type\" {\n-\t\t\t\ttypeStart = sec.VirtualAddress\n-\t\t\t\ttypeEnd = sec.Virtual...
2026-01-31T03:15:31
rust-lang/rust
8e4b26db65996879652a2ff8981d53c325f09939
bf5fe9fdd37268f78c6ded7c00ac51d1e8d41f03
fix: wrap ty-anchor in non-path type constuctor Example --- ```rust struct TestStruct { r: &'static [i32] } fn test_fn() { let s = TestStruct{ $0 }; } ``` **Before this PR** ```rust struct TestStruct { r: &'static [i32] } fn test_fn() { let s = TestStruct{ r: &'static }; } ``` **After this PR** ```rust st...
[ { "path": "src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/missing_fields.rs", "patch": "@@ -588,14 +588,14 @@ fn test_fn() {\n fn test_fill_struct_fields_default() {\n check_fix(\n r#\"\n-//- minicore: default, option\n+//- minicore: default, option, slice\n struct TestW...
2026-03-25T23:25:25
nodejs/node
fc85c7afd3340ed8bf2240e9106f4cb62657c2c0
09c4f6f41cc50f8e22fb84f547e3d4cf4e420c50
tools: disable some new cpplint rules before update PR-URL: https://github.com/nodejs/node/pull/60901 Fixes: https://github.com/nodejs/node/issues/60771 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
[ { "path": ".cpplint", "patch": "@@ -1,3 +1,3 @@\n set noparent\n-filter=-build/include_alpha,-build/include_subdir,-build/include_what_you_use,-legal/copyright,-readability/nolint,-readability/braces\n+filter=-build/c++17,-build/include_alpha,-build/include_subdir,-build/include_what_you_use,-legal/copyrigh...
2025-11-30T07:42:11
electron/electron
9d01e6b3e30c6c5fe4bafcbce1329acd5b39ae10
3c100c22291ec203198ac0ccd8d52d93a0db73f3
fix: oom crash in v8 when optimizing wasm (#48791)
[ { "path": "patches/v8/.patches", "patch": "@@ -1 +1,2 @@\n chore_allow_customizing_microtask_policy_per_context.patch\n+turboshaft_avoid_introducing_too_many_variables.patch", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "patches/v8/turboshaft_avoid_introducing_too_...
2025-11-06T12:58:13
vercel/next.js
5f26a684e61faed401e31ee8bda7019dea15fe36
409b7a6a284fecbb99fcf85b20922e4b80623a1a
docs: rework version staleness (#90192) Closes: https://linear.app/vercel/issue/DOC-6144/error-page-version-staleness
[ { "path": "errors/version-staleness.mdx", "patch": "@@ -1,63 +1,73 @@\n ---\n-title: Version Staleness\n+title: A newer version is available\n ---\n \n-## Why This Error Occurred\n+## What this notice means\n \n-In the error overlay, a message was shown that the detected Next.js version was out-of-date.\n+T...
2026-02-24T14:38:49
facebook/react
1fef581e1abcdcbc4aa50a048f9473f85dcb4692
60d9b9740d77bd2715f5f725245093a23f95e347
[compiler] Deprecate CompilerErrorDetail (#34402) Now that we have a new CompilerDiagnostic type (which the CompilerError aggregate can hold), the old CompilerErrorDetail type can be marked as deprecated. Eventually we should migrate everything to the new CompilerDiagnostic type. --- [//]: # (BEGIN SAPLING FOOTER) St...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -78,6 +78,9 @@ export type CompilerSuggestion =\n description: string;\n };\n \n+/**\n+ * @deprecated use {@link CompilerDiagnosticOptions} instead\n+ */\n export type CompilerErrorDetailOptions = {\n ca...
2025-09-06T16:41:54
nodejs/node
09c4f6f41cc50f8e22fb84f547e3d4cf4e420c50
85852a3221b17f4d10d35e9abf94d676a81c3120
deps,src: prepare for cpplint update Disable linting where there are false positives or clashes whith the C++ formatter. PR-URL: https://github.com/nodejs/node/pull/60901 Fixes: https://github.com/nodejs/node/issues/60771 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Vladimir Morozov <vmorozov@microsof...
[ { "path": "deps/ncrypto/ncrypto.h", "patch": "@@ -66,7 +66,10 @@ namespace ncrypto {\n #define NCRYPTO_STR(x) #x\n #define NCRYPTO_REQUIRE(EXPR) \\\n { \\\n- if (!(EXPR) { abort()...
2025-11-26T17:05:35
golang/go
9fd5a5fa7d9d629ded8d4685dcc5984268258edb
4fe1203111eeda8a38af4f2a4208e4d4de720c0d
cmd/link: use correct alignment for type descriptors on AIX CL 724261 changed the linker to put all type descriptors that are used for typelinks in a single list. This caused trouble on AIX when linking externally, because the AIX linker aligns symbols individually, rather than honoring the layout of the object file g...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1469,6 +1469,8 @@ func checkSectSize(sect *sym.Section) {\n \n // fixZeroSizedSymbols gives a few special symbols with zero size some space.\n func fixZeroSizedSymbols(ctxt *Link) {\n+\tldr := ctxt.loader\n+\n \t// The values in moduledata are fill...
2026-01-31T03:06:19
electron/electron
f6ffb55c724dbe8acd904a786cf777c78a90f8c3
27bea2576e8a39a9ff1c104c43ab4e982c2e5671
refactor: remove `electron::WebRequestAPI` interface (#48792) * refactor: remove electron::WebRequestAPI interface Remove the |electron::WebRequestAPI| interface class. Use handles to the concrete class |electron::api::WebRequest| instead. Prerequisite for https://github.com/electron/electron/pull/48762. Two classe...
[ { "path": "filenames.gni", "patch": "@@ -456,7 +456,6 @@ filenames = {\n \"shell/browser/net/system_network_context_manager.h\",\n \"shell/browser/net/url_loader_network_observer.cc\",\n \"shell/browser/net/url_loader_network_observer.h\",\n- \"shell/browser/net/web_request_api_interface.h\",...
2025-11-06T08:05:50
facebook/react
60d9b9740d77bd2715f5f725245093a23f95e347
c4e2508dad24f2cd61b5f1f862b081f54ee71896
[compiler] Derive ErrorSeverity from ErrorCategory (#34401) With #34176 we now have granular lint rules created for each compiler ErrorCategory. However, we had remnants of our old error severities still in use which makes reporting errors quite clunky. Previously you would need to specify both a category and severity...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -14,50 +14,28 @@ import invariant from 'invariant';\n \n export enum ErrorSeverity {\n /**\n- * Invalid JS syntax, or valid syntax that is semantically invalid which may indicate some\n- * misunderstanding on ...
2025-09-06T16:41:29
vercel/next.js
409b7a6a284fecbb99fcf85b20922e4b80623a1a
f74bdef4e67ea93c4a692372d5db946befe0c257
Add support for Next.js error telemetry for `AggregateError` (#90391)
[ { "path": "crates/next-error-code-swc-plugin/src/lib.rs", "patch": "@@ -75,7 +75,7 @@ fn is_error_class_name(name: &str) -> bool {\n || name == \"Warning\"\n }\n \n-// Get the string representation of the first argument of `new Error(...)`\n+// Get the string representation of the message argument o...
2026-02-24T14:35:55
nodejs/node
28142a6106298ac8c0041b3f385e0d941305286c
90ff75f4320f365751dde91f0c35377e2a41b6a4
build: run embedtest with node_g when BUILDTYPE=Debug PR-URL: https://github.com/nodejs/node/pull/60850 Refs: https://github.com/nodejs/node/pull/60806 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
[ { "path": "Makefile", "patch": "@@ -78,11 +78,17 @@ EXEEXT := $(shell $(PYTHON) -c \\\n \t\t\"import sys; print('.exe' if sys.platform == 'win32' else '')\")\n \n NODE_EXE = node$(EXEEXT)\n-# Use $(PWD) so we can cd to anywhere before calling this\n-NODE ?= \"$(PWD)/$(NODE_EXE)\"\n NODE_G_EXE = node_g$(EXEE...
2025-12-01T15:23:30
golang/go
4fe1203111eeda8a38af4f2a4208e4d4de720c0d
cbb37e310e2edd7148c8501567e190746e6d98d2
cmd/link: align covctrs symbol If we start the covctrs blob at an odd alignment, then covctrs will not be correctly aligned. Each individual entry is aligned properly, but the start marker may be before any padding inserted to enforce that alignment. Fixes #58936 Change-Id: I802fbe40eacfa5a3c8c4864e078b0e078da956d5 ...
[ { "path": "src/cmd/cover/cover_test.go", "patch": "@@ -638,3 +638,12 @@ func main() {\n \t\tt.Errorf(\"unexpected success; want failure due to newline in file path\")\n \t}\n }\n+\n+func TestAlignment(t *testing.T) {\n+\t// Test that cover data structures are aligned appropriately. See issue 58936.\n+\ttest...
2026-01-02T21:42:00
electron/electron
27bea2576e8a39a9ff1c104c43ab4e982c2e5671
c4609924072547a94d60d297057c5b3767d4e82d
fix: revert allow disabling all NSMenuItems, fix menu crash (#48794) Revert "fix: allow disabling all `NSMenuItems` (#48598)" This reverts commit 0cb4fdd0f2ae28d7bf3cd753cd2b641947e637aa.
[ { "path": "lib/browser/api/menu.ts", "patch": "@@ -25,30 +25,11 @@ Menu.prototype._isCommandIdChecked = function (id) {\n };\n \n Menu.prototype._isCommandIdEnabled = function (id) {\n- const item = this.commandsMap[id];\n- if (!item) return false;\n-\n- const focusedWindow = BaseWindow.getFocusedWindow(...
2025-11-05T23:49:43
facebook/react
c4e2508dad24f2cd61b5f1f862b081f54ee71896
de5a1b203e342e7f5d64216d68d8d49e709660e3
[react-devtools-shared] Fix URL construction when base URL is invalid (#34407) ### Problem - Users encounter “Failed to construct 'URL': Invalid base URL” when clicking the “View source” action in DevTools if the underlying base URL is invalid. - This exception originates from `new URL(relative, base)` and bubbles up,...
[ { "path": "packages/react-devtools-shared/src/__tests__/utils-test.js", "patch": "@@ -421,6 +421,26 @@ function f() { }\n await expect(run('http://test/c.mjs')).resolves.toStrictEqual(result);\n await expect(run('http://test/d.mjs')).resolves.toStrictEqual(result);\n });\n+\n+ it('should ...
2025-09-06T13:00:45
vercel/next.js
e9c4f4289d15d43681e9e79b2fa605b09a0af0d4
426d0d2e0135853461db4c86ad966ccdfef5bcb5
Fix route cache keying for unprefetched navigations (#90400) When navigating to a route that wasn't previously prefetched (e.g. via a Link with prefetch={false}, or router.push()), the client stores the route data from the server response in the cache so it can be reused by future navigations and prefetches to the sam...
[ { "path": "packages/next/src/client/components/router-reducer/create-initial-router-state.ts", "patch": "@@ -76,6 +76,7 @@ export function createInitialRouterState({\n discoverKnownRoute(\n Date.now(),\n location.pathname,\n+ null, // nextUrl — initial render is never an interception\n ...
2026-02-24T06:39:39
nodejs/node
f9f343fb8dda773b749db4dee00704f8bbe79c19
b1e941e7b2590d3d7fed76a9de5e467fd04d6da3
src: handle DER decoding errors from system certificates When decoding certificates from the system store, it's not actually guaranteed to succeed. In case the system returns a certificate that cannot be decoded (might be related to SSL implementation issues), skip them. PR-URL: https://github.com/nodejs/node/pull/60...
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -507,7 +507,11 @@ void ReadMacOSKeychainCertificates(\n CFRelease(search);\n \n if (ortn) {\n- fprintf(stderr, \"ERROR: SecItemCopyMatching failed %d\\n\", ortn);\n+ per_process::Debug(DebugCategory::CRYPTO,\n+ \"Cannot r...
2025-12-01T07:26:03
golang/go
cbb37e310e2edd7148c8501567e190746e6d98d2
d1ec0ecec956eb10c3daf40160193daf407c7614
net/http: fix WaitGroup race in TestTransportNoReuseAfterEarlyResponse The remaining race reported in go.dev/issue/66519 is that it's possible for copying.Wait to start running before all copying.Add calls complete. It happens infrequently as is, but padding both Wait and Add calls with a 100 ms sleep makes it highly ...
[ { "path": "src/net/http/client_test.go", "patch": "@@ -438,7 +438,6 @@ func testRedirectsByMethod(t *testing.T, mode testMode, method string, table []r\n \t\treq, _ := NewRequest(method, ts.URL+tt.suffix, strings.NewReader(content))\n \t\treq.GetBody = func() (io.ReadCloser, error) { return io.NopCloser(str...
2026-01-24T18:03:14
electron/electron
513a6ee80a5c65106d87170c66505782f29e9df6
040b0e795b7ec1f5ef6b64666918d1f520ef2914
fix: draw smoothing round rect corner (#48769)
[ { "path": "shell/renderer/electron_smooth_round_rect.cc", "patch": "@@ -302,8 +302,8 @@ SkPath DrawSmoothRoundRect(float x,\n bottom_right_smoothness, SkPoint::Make(x + width, y + height), 2);\n \n // Bottom left corner\n- DrawCorner(path, bottom_left_radius, left_bottom_smoothness,\n- ...
2025-11-05T09:33:05
vercel/next.js
c23f3434a3e34ebf7b0b15afc115d94fa0238076
212ced6fb0a51205bf2f6a2b00393c3fbe09e0d5
docs: fixes typo in manifest.mdx regarding Route Handler note (#90394) This PR fixes a typo in the docs about the manifest.js file Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/01-metadata/manifest.mdx", "patch": "@@ -21,7 +21,7 @@ Add or generate a `manifest.(json|webmanifest)` file that matches the [Web Manif\n \n Add a `manifest.js` or `manifest.ts` file that returns a [`Manifest` object](#manifest-object).\n \n-> Good...
2026-02-23T22:52:45
facebook/react
de5a1b203e342e7f5d64216d68d8d49e709660e3
b9a045368bc1186fcaff6e8b027cfca28c857f04
[compiler][playground] (3/N) Config override panel (#34371) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, ...
[ { "path": "compiler/apps/playground/components/Editor/ConfigEditor.tsx", "patch": "@@ -8,94 +8,176 @@\n import MonacoEditor, {loader, type Monaco} from '@monaco-editor/react';\n import type {editor} from 'monaco-editor';\n import * as monaco from 'monaco-editor';\n-import {useState} from 'react';\n+import R...
2025-09-05T14:12:01
nodejs/node
94cd600542d7af9792db63d4643ac4b0adec7e4c
209a4fe8123848ffcf876ec5914c6114a3e0ded1
crypto: fix DOMException name for non-extractable key error PR-URL: https://github.com/nodejs/node/pull/60830 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nieße...
[ { "path": "lib/internal/crypto/webcrypto.js", "patch": "@@ -676,7 +676,7 @@ async function exportKey(format, key) {\n }\n \n if (!key[kExtractable])\n- throw lazyDOMException('key is not extractable', 'InvalidAccessException');\n+ throw lazyDOMException('key is not extractable', 'InvalidAccessErro...
2025-11-30T21:45:27
golang/go
228c0468d5a0eefddbfd890565ee8253bd70346e
f58a6a8e34d7db14871f2cf9bfd657e44a5c8b7b
internal/poll: optimize socket completion modes FILE_SKIP_SET_EVENT_ON_HANDLE is always safe to use. FILE_SKIP_COMPLETION_PORT_ON_SUCCESS is safe as long as the socket is provided by an IFS provider. While here, stop using the kindFileNet type, it doesn't provide any value. Fixes #77448 Change-Id: Ib3dc0d68c7ff57b6...
[ { "path": "src/internal/poll/export_windows_test.go", "patch": "@@ -0,0 +1,11 @@\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+// Export guts for testing on windows.\n+\n+package poll\...
2026-02-05T12:37:08
electron/electron
5bd45a6a28fffbe70c6752ba5142a13e9f817f77
d7727c9ec2b247785248fc8f60633f75c97cfa27
feat: add SF Symbol support to NativeImage::CreateFromNamedImage (#48203) * feat: add SF Symbol support to NativeImage::CreateFromNamedImage * use obj-c name in NSImage constructor * add test for named symbol image * apply suggested simplification * fix: support NX cocoa prefix
[ { "path": "docs/api/native-image.md", "patch": "@@ -202,8 +202,7 @@ Creates a new `NativeImage` instance from `dataUrl`, a base 64 encoded [Data URL\n Returns `NativeImage`\n \n Creates a new `NativeImage` instance from the `NSImage` that maps to the\n-given image name. See Apple's [`NSImageName`](https://d...
2025-11-04T10:15:34
vercel/next.js
6aa3dbd2e805c6b5d1da67bd6e0c554433aa93f3
610fdb8e3f7f67f29e4be33107e262cc8e7d2c4a
Fix: Image component ignores images.qualities in Jest environment (#89536) - Fixes #89492 - Fixes #18415 ## Problem When testing Next.js <Image /> components with Jest, custom images.qualities configured in next.config.js are ignored, causing: - Image URLs to use default quality (q=75) instead of configured values ...
[ { "path": "packages/next/src/build/jest/jest.ts", "patch": "@@ -103,9 +103,34 @@ export default function nextJest(options: { dir?: string } = {}) {\n await lockfilePatchPromise.cur\n }\n \n+ const imageConfig = nextConfig?.images\n+ ? {\n+ deviceSizes: nextConfig.images....
2026-02-23T21:19:06
facebook/react
5d64f742114203e4fbdd605ce398696d18901f35
3302d1f791f3f1cf4e8cf69bee70ce5dab1b8436
[compiler] Fix for scopes with unreachable fallthroughs (#34335) Fixes #34108. If a scope ends with with a conditional where some/all branches exit via labeled break, we currently compile in a way that works but bypasses memoization. We end up with a shape like ```js let t0; label: { if (changed) { ... if (co...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/AlignReactiveScopesToBlockScopesHIR.ts", "patch": "@@ -175,6 +175,41 @@ export function alignReactiveScopesToBlockScopesHIR(fn: HIRFunction): void {\n if (node != null) {\n valueBlockNodes.set(fallthrough, node);\n ...
2025-09-04T00:44:42
golang/go
f58a6a8e34d7db14871f2cf9bfd657e44a5c8b7b
9263a71b92e84aa34d0e35887d5c23f5a0a21537
internal/poll: make waitIO more idempontent This is a step towards deferring adding the handle to IOCP until the first IO operation. waitIO should use the overlapped event if it is provided, regardless of whether FD is pollable or not. This simplifies reasoning about the code and makes it more robust to race conditio...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -201,10 +201,7 @@ var operationPool = sync.Pool{\n // waitIO waits for the IO operation to complete,\n // handling cancellation if necessary.\n func (fd *FD) waitIO(o *operation) error {\n-\tif fd.isBlocking {\n-\t\tpanic(\"can't wait on blocking ope...
2026-02-05T12:16:12
nodejs/node
10837e33b0ec2730139f579f0af5ad1286f61cae
d0c102495a5958d2cce1b42ed9cd45eddbafac7f
lib,test: fix jsdoc comments To prepare for eslint-plugin-jsdoc update. Refs: https://github.com/nodejs/node/pull/60535 PR-URL: https://github.com/nodejs/node/pull/60870 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gma...
[ { "path": "lib/fs.js", "patch": "@@ -1115,7 +1115,7 @@ function lazyLoadRimraf() {\n /**\n * Asynchronously removes a directory.\n * @param {string | Buffer | URL} path\n- * @param {{}} [options]\n+ * @param {object} [options]\n * @param {(err?: Error) => any} callback\n * @returns {void}\n */\n@@ -114...
2025-11-27T09:50:12
electron/electron
a88de8bf1cb3433be67b8a97ba133f3c74ab53c2
4d6db515bdd3eae06fa7e3a4d929c8e7f319ad1b
fix: use app name as a part of tray id on Linux (#48675) * fix: use browser name as tray id * fix: remove unnecessary .c_str() * fix: use string_view instead of string& * fix: move app_name_ to the bottom of private: section https://google.github.io/styleguide/cppguide.html#Declaration_Order * fix: use base's str...
[ { "path": "patches/chromium/.patches", "patch": "@@ -144,3 +144,4 @@ chore_disable_protocol_handler_dcheck.patch\n fix_check_for_file_existence_before_setting_mtime.patch\n revert_cleanup_remove_feature_windelayspellcheckserviceinit.patch\n fix_release_mouse_buttons_on_focus_loss_on_wayland.patch\n+fix_linu...
2025-11-03T22:53:53
vercel/next.js
fe0bb2fc51f1776e88a4357a45f3cfb3bdf4d0f3
45a8a82db5f701546300fc7478ccbe8776350dc0
Next.js sticky scroll standards (#90197) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Impro...
[ { "path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx", "patch": "@@ -158,6 +158,8 @@ Next.js avoids this with client-side transitions using the `<Link>` component. I\n \n Client-side transitions are what makes a server-rendered apps _feel_ like client-rendered apps. And when paired with [...
2026-02-23T18:38:22
rust-lang/rust
daad0fb3566048becf39b466a87bdbe2fd300960
e492d022858076a414ad42139e05cb43e0d238b6
fix(explicit_counter_loop): suggest `.take(n)` for `for _ in 0..n` counter loops fix(explicit_counter_loop): suggest `.take(n)` for `for _ in 0..n` counter loops
[ { "path": "clippy_lints/src/loops/explicit_counter_loop.rs", "patch": "@@ -2,6 +2,7 @@ use std::borrow::Cow;\n \n use super::{EXPLICIT_COUNTER_LOOP, IncrementVisitor, InitializeVisitor, make_iterator_snippet};\n use clippy_utils::diagnostics::span_lint_and_then;\n+use clippy_utils::higher::Range;\n use clip...
2026-03-03T12:38:44
nodejs/node
768f3ba32a3719070d1376341243e4cdf2383436
d1ab5ef4ba18e27388fc193126238dc771289428
test: fix embedtest in debug windows PR-URL: https://github.com/nodejs/node/pull/60806 Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "test/embedding/embedtest.cc", "patch": "@@ -210,23 +210,23 @@ int RunNodeInstance(MultiIsolatePlatform* platform,\n return 1;\n \n exit_code = node::SpinEventLoop(env).FromMaybe(1);\n- }\n-\n- if (!snapshot_blob_path.empty() && is_building_snapshot) {\n- snapshot = setup->CreateSna...
2025-11-29T10:40:39
golang/go
9263a71b92e84aa34d0e35887d5c23f5a0a21537
0430fa977573866f93e66aa61a66b37ff0738aba
database/sql: ensure Null* types have Valid=false when Scan returns error The Scan methods for NullString, NullInt64, NullInt32, NullFloat64, NullBool, and NullTime set Valid=true before calling convertAssign. If convertAssign returns an error, Valid remains true, which creates an inconsistent state where Valid=true b...
[ { "path": "src/database/sql/sql.go", "patch": "@@ -202,8 +202,9 @@ func (ns *NullString) Scan(value any) error {\n \t\tns.String, ns.Valid = \"\", false\n \t\treturn nil\n \t}\n-\tns.Valid = true\n-\treturn convertAssign(&ns.String, value)\n+\terr := convertAssign(&ns.String, value)\n+\tns.Valid = err == ni...
2026-01-26T02:29:30
facebook/react
3302d1f791f3f1cf4e8cf69bee70ce5dab1b8436
7697a9f62e9959651337d70b46012fce69ef860a
Fix: uDV skipped initial value if earlier transition suspended (#34376) Fixes a bug in useDeferredValue's optional `initialValue` argument. In the regression case, if a new useDeferredValue hook is mounted while an earlier transition is suspended, the `initialValue` argument of the new hook was ignored. After the fix,...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -73,6 +73,7 @@ import {\n includesSomeLane,\n isGestureRender,\n GestureLane,\n+ UpdateLanes,\n } from './ReactFiberLane';\n import {\n ContinuousEventPriority,\n@@ -2983,6 +2984,20 @@ function rerenderDeferredValue<T>(value...
2025-09-03T23:24:38
vercel/next.js
45a8a82db5f701546300fc7478ccbe8776350dc0
797eb7fe7f6fa5e9d12a7d7e3c0eff4d5f862b6a
Turbopack: Aggregation update improvements (#90139) ## Summary - Remove negative count handling in aggregation updates since unsigned ints can't be negative - Add `aggregation_update_no_batch` feature flag for debugging (falls back to non-batched single-item processing) - Fix concurrency bug in inner/follower classif...
[ { "path": "turbopack/crates/turbo-tasks-backend/Cargo.toml", "patch": "@@ -16,6 +16,7 @@ workspace = true\n default = []\n print_cache_item_size = [\"dep:lzzzz\"]\n no_fast_stale = []\n+aggregation_update_no_batch = []\n verify_serialization = []\n verify_aggregation_graph = []\n verify_immutable = []", ...
2026-02-23T16:36:27
electron/electron
4d6db515bdd3eae06fa7e3a4d929c8e7f319ad1b
20fc76cb4379e76efbb8d649c4b98d57baaf2bb1
fix: release mouse buttons on focus loss on Wayland (#48752)
[ { "path": "patches/chromium/.patches", "patch": "@@ -143,3 +143,4 @@ expose_referrerscriptinfo_hostdefinedoptionsindex.patch\n chore_disable_protocol_handler_dcheck.patch\n fix_check_for_file_existence_before_setting_mtime.patch\n revert_cleanup_remove_feature_windelayspellcheckserviceinit.patch\n+fix_relea...
2025-11-03T13:37:42
nodejs/node
7643c2a076a7f9e6262ef1813ec01f46c994f46b
3c92ee1008a30edaefd1e4b87e62b14edafd114f
doc: update debuglog examples to use 'foo-bar' instead of 'foo' PR-URL: https://github.com/nodejs/node/pull/60867 Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "doc/api/util.md", "patch": "@@ -135,14 +135,14 @@ The `section` supports wildcard also:\n \n ```mjs\n import { debuglog } from 'node:util';\n-const log = debuglog('foo');\n+const log = debuglog('foo-bar');\n \n log('hi there, it\\'s foo-bar [%d]', 2333);\n ```\n \n ```cjs\n const { debuglog } = r...
2025-11-29T02:18:49
golang/go
0430fa977573866f93e66aa61a66b37ff0738aba
045ceb72406ee725fd0ea9b8267e8bcd4d2afd5b
simd/archsimd: correct algorithm name in SHA256 ops documentation The three SHA256 ops (SHA256Message1, SHA256Message2 and SHA256TwoRounds) all incorrectly referred to the SHA1 algorithm in their documentation rather than SHA256. Change-Id: Id6c1bfe4fee4517c0e498fb063cc9112464bc1e7 Reviewed-on: https://go-review.goog...
[ { "path": "src/simd/archsimd/_gen/simdgen/ops/Others/categories.yaml", "patch": "@@ -83,7 +83,7 @@\n - go: SHA256TwoRounds\n commutative: false\n documentation: !string |-\n- // NAME does 2 rounds of B loop to calculate updated state variables in SHA1 algorithm defined in FIPS 180-4.\n+ // NAME do...
2026-01-11T07:00:06
facebook/react
2805f0ed9e702454527839c0076a9979553c2fd7
ac3e705a18696168acfcaed39dce0cfaa6be8836
Performance Tracks: log properties diff for renders in DEV if no console task available (#34370) React Native doesn't support `console.createTask` yet, but it does support `performance.measure` and extensibility APIs for Performance panel, including `detail.devtools` field. Previously, this logic was gated with `if (...
[ { "path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js", "patch": "@@ -228,9 +228,20 @@ export function logComponentRender(\n ? 'tertiary-dark'\n : 'primary-dark'\n : 'error';\n- const debugTask = fiber._debugTask;\n- if (__DEV__ && debugTask) {\...
2025-09-03T16:08:05
rust-lang/rust
298c251f9178dc39768356a9a90f4853134a7dde
8a703520e80d87d4423c01f9d4fbc9e5f6533a02
large_enums mir pass: fix is_enabled logic
[ { "path": "compiler/rustc_mir_transform/src/large_enums.rs", "patch": "@@ -32,8 +32,8 @@ impl<'tcx> crate::MirPass<'tcx> for EnumSizeOpt {\n fn is_enabled(&self, sess: &Session) -> bool {\n // There are some differences in behavior on wasm and ARM that are not properly\n // understood, s...
2026-03-25T15:33:59
vercel/next.js
9b6e563f7fb64d1ec6225306b17acabe741a5098
f93a867d7741214ed6544a0ff673f498ca69234b
refactor(app-render): extract stream-ops and debug-channel modules (5/8) (#89858) ## Summary Pure refactor: extract stream operations and debug-channel code from `app-render.tsx` into separate compile-time switchable modules. Web-only at this stage. - **`stream-ops.web.ts`**: extracted web stream operations (continu...
[ { "path": "packages/next/errors.json", "patch": "@@ -1068,5 +1068,6 @@\n \"1067\": \"The Next.js unhandled rejection filter is being installed more than once. This is a bug in Next.js.\",\n \"1068\": \"Expected workStore to be initialized\",\n \"1069\": \"Invariant: cache entry \\\"%s\\\" not found in...
2026-02-23T10:45:46
electron/electron
20fc76cb4379e76efbb8d649c4b98d57baaf2bb1
2a94d414f76c8d2025197996aca026f4c87e9f27
docs: explain how to handle incoming drag and drop (#48718) Fixes https://github.com/electron/electron/issues/48667
[ { "path": "docs/tutorial/native-file-drag-drop.md", "patch": "@@ -110,4 +110,10 @@ the item is a Markdown file located in the root of the project:\n \n ![Drag and drop](../images/drag-and-drop.gif)\n \n+## Dragging files into your app\n+\n+You can use the standard\n+[Drag and Drop web API](https://developer...
2025-11-03T13:37:01
golang/go
045ceb72406ee725fd0ea9b8267e8bcd4d2afd5b
db5882ea9bf63849d554910f486c4c5cfea08852
cmd/compile: allow equal functions to perform unaligned load on loong64 The Go compiler always generates Loong64 binaries, which can execute any processor of LA364, LA464, LA664 or higher core. And these processors support unaligned memory access [1]. goos: linux goarch: loong64 pkg: strings cpu: Loongson-3A6000 @ 25...
[ { "path": "src/cmd/internal/sys/arch.go", "patch": "@@ -143,7 +143,7 @@ var ArchLoong64 = &Arch{\n \tPtrSize: 8,\n \tRegSize: 8,\n \tMinLC: 4,\n-\tAlignment: 8, // Unaligned accesses are not guaranteed to be fast\n+\tAlignment: 1,\n \tCanMergeLoads: true,\n \tCanJumpTable: ...
2026-02-04T07:25:07
nodejs/node
d09c3ffb7ca85606d491e51ff15b11416a4f85a6
1b3a64deb454c24b0a20bb73f13759d97a25f9bf
test: skip failing tests when compiled without amaro When compiled without amaro, this conflicts with --experimental-strip-types defaulting to true. To avoid that, we need to skip relevant failing tests. Fixes: https://github.com/nodejs/node/issues/60640 PR-URL: https://github.com/nodejs/node/pull/60815 Reviewed-By: ...
[ { "path": "src/node_options.cc", "patch": "@@ -1092,7 +1092,7 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {\n \"Type-stripping for TypeScript files.\",\n &EnvironmentOptions::strip_types,\n kAllowedInEnvvar,\n- true);\n+ HAVE_AMARO);\n ...
2025-11-28T15:37:42
facebook/react
ac3e705a18696168acfcaed39dce0cfaa6be8836
8e60cb7ed55a3dce35bd809b4cf1ad803c59abfd
[compiler][playground] (2/N) Config override panel (#34344) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, ...
[ { "path": "compiler/apps/playground/components/Editor/ConfigEditor.tsx", "patch": "@@ -6,52 +6,51 @@\n */\n \n import MonacoEditor, {loader, type Monaco} from '@monaco-editor/react';\n-import {parseConfigPragmaAsString} from 'babel-plugin-react-compiler';\n import type {editor} from 'monaco-editor';\n impo...
2025-09-02T21:38:57
facebook/react
b1b0955f2b34286a7408e58463f4cc429627f9a8
1549bda33f0df963ae27a590b7191f3de99dad31
[DevTools] Fix inspected element scroll in Suspense tab (#34355)
[ { "path": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseTab.css", "patch": "@@ -16,14 +16,15 @@\n \n .TreeWrapper {\n border-top: 1px solid var(--color-border);\n- flex: 1 1 var(--horizontal-resize-tree-percentage);\n+ flex: 1 1 65%;\n display: flex;\n flex-direction: row;\n...
2025-09-01T14:40:30
golang/go
db5882ea9bf63849d554910f486c4c5cfea08852
f8f87129646ca3821b3926e649c856a960d6bc9e
os: support deleting inaccessible files in RemoveAll windows: retry file open with DELETE access after access denied Additional access rights when opening files, including SYNCHRONIZE, break deletion when the caller has FILE_DELETE_CHILD on the parent directory but not the file. Retry with DELETE only restores correc...
[ { "path": "src/internal/syscall/windows/at_windows.go", "patch": "@@ -246,14 +246,31 @@ func Deleteat(dirfd syscall.Handle, name string, options uint32) error {\n \tvar h syscall.Handle\n \terr := NtOpenFile(\n \t\t&h,\n-\t\tSYNCHRONIZE|FILE_READ_ATTRIBUTES|DELETE,\n+\t\tFILE_READ_ATTRIBUTES|DELETE,\n \t\to...
2026-02-04T09:36:59
electron/electron
2a94d414f76c8d2025197996aca026f4c87e9f27
4abb1f2aa3636f085d8209d8b0468b29c1cc1279
docs: clarify BrowserWindow and App API support status on Wayland (#48740) * docs: clarify BrowserWindow API support in Wayland * typo fix * updated docs * wrapping
[ { "path": "docs/api/app.md", "patch": "@@ -565,8 +565,9 @@ and subscribing to the `ready` event if the app is not ready yet.\n * `steal` boolean _macOS_ - Make the receiver the active app even if another app is\n currently active.\n \n-On Linux, focuses on the first visible window. On macOS, makes the a...
2025-10-31T21:35:08
nodejs/node
01d5a38a6097a2d7423fc436ad8c96d8e4e0c3fe
1de8d7f21aaf64e5f210c00db5ff7bc5f04cacd1
doc: fix typos in changelogs I know we can't fix the parts that are commit messages, but I believe the rest of the text is editable. Am I misremembering? PR-URL: https://github.com/nodejs/node/pull/60855 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Review...
[ { "path": "doc/changelogs/CHANGELOG_V12.md", "patch": "@@ -1883,7 +1883,7 @@ consumption.\n #### Increase of the default server headers timeout\n \n The default value of `server.headersTimeout` for `http` and `https` servers was\n-increased from `40000` to `60000` (60 seconds). This to accomodate for system...
2025-11-28T04:24:42
facebook/react
bb6f0c8d2f29754347db0ff28186dc89c128b6ca
aad7c664ffbde52e5d8004b542d83d6d4b7a32a0
[Flight] Fix wrong missing key warning when static child is blocked (#34350)
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -1074,7 +1074,14 @@ function getTaskName(type: mixed): string {\n }\n }\n \n-function initializeElement(response: Response, element: any): void {\n+function initializeElement(\n+ response: Response,\n+ element: any,\n+ lazyType: n...
2025-09-01T09:03:57
golang/go
f8f87129646ca3821b3926e649c856a960d6bc9e
491da55fdba438284656c370f6d2f3e0b0971a83
crypto/tls: fix broken link in KeyLogWriter documentation The Mozilla developer documentation link for the NSS key log format has been broken since early 2022. Update the documentation to point to the IETF TLS working group draft which is currently in the RFC publication queue. Fixes #63331 Co-Authored-By: Claude Op...
[ { "path": "src/crypto/tls/common.go", "patch": "@@ -825,7 +825,7 @@ type Config struct {\n \t// KeyLogWriter optionally specifies a destination for TLS master secrets\n \t// in NSS key log format that can be used to allow external programs\n \t// such as Wireshark to decrypt TLS connections.\n-\t// See http...
2026-02-03T15:10:47
nodejs/node
08d966cb657d114db5b939a13f064f4517f35b42
bff6ea49b860a14817097e66fb6edd08e99434cb
src: handle indexed properties in `process.env` Closes: https://github.com/nodejs/node/issues/60795 PR-URL: https://github.com/nodejs/node/pull/60826 Fixes: https://github.com/nodejs/node/issues/60795 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Stefan Stoj...
[ { "path": "src/node_env_var.cc", "patch": "@@ -4,6 +4,7 @@\n #include \"node_external_reference.h\"\n #include \"node_i18n.h\"\n #include \"node_process-inl.h\"\n+#include \"util.h\"\n \n #include <time.h> // tzset(), _tzset()\n #include <optional>\n@@ -16,6 +17,7 @@ using v8::DontDelete;\n using v8::DontE...
2025-11-27T13:10:35
electron/electron
310490221e5edc9eeedb0baf1a137e042a04cd7d
3345edd2bf175766d332e764326148bf35d81483
chore: bump chromium to 144.0.7500.0 (main) (#48725) * chore: bump chromium in DEPS to 144.0.7500.0 * chore: fixup patch indices * 7088768: Reland "download reclient only for chromeos by default" https://chromium-review.googlesource.com/c/chromium/src/+/7088768 * Revert "7088768: Reland "download reclient only for...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '143.0.7499.0',\n+ '144.0.7500.0',\n 'node_version':\n 'v24.10.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "build/...
2025-10-31T15:01:09
rust-lang/rust
91e4524bfe66a33d1a572750504cd5ac006d9b5e
1174f784096deb8e4ba93f7e4b5ccb7bb4ba2c55
Link from `assert_matches` to `debug_assert_matches` This resolves a FIXME which was added in https://github.com/rust-lang/rust/pull/151423.
[ { "path": "library/core/src/macros/mod.rs", "patch": "@@ -124,8 +124,6 @@ macro_rules! assert_ne {\n };\n }\n \n-// FIXME add back debug_assert_matches doc link after bootstrap.\n-\n /// Asserts that an expression matches the provided pattern.\n ///\n /// This macro is generally preferable to `assert!(m...
2026-03-26T04:33:33
golang/go
491da55fdba438284656c370f6d2f3e0b0971a83
bd7b8a52c847afcfc15b21741ec8972275a79c34
cmd/compile/internal/ssagen: fix typo GrtCallerSP -> GetCallerSP Fix a typo in findIntrinsic function where "GrtCallerSP" should be "GetCallerSP". This typo was in the condition checking for runtime intrinsic functions that don't have definitions. Fixes #77432 Change-Id: I8667a42456b4b2c4533dfcbca198b46793f71c89 Git...
[ { "path": "src/cmd/compile/internal/ssagen/intrinsics.go", "patch": "@@ -2170,7 +2170,7 @@ func findIntrinsic(sym *types.Sym) intrinsicBuilder {\n \n \tfn := sym.Name\n \tif ssa.IntrinsicsDisable {\n-\t\tif pkg == \"internal/runtime/sys\" && (fn == \"GetCallerPC\" || fn == \"GrtCallerSP\" || fn == \"GetClos...
2026-02-06T08:48:19
facebook/react
aad7c664ffbde52e5d8004b542d83d6d4b7a32a0
3fe51c9e147fb5215011cf3fd9544c5a776abf41
[Flight] Don't try to close debug channel twice (#34340) When the debug channel was already closed, we must not try to close it again when the Response gets garbage collected. **Test plan:** 1. reduce the Flight fixture `App` component to a minimum [^1] - remove everything from `<body>` - delete the `console...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -1010,10 +1010,15 @@ export function reportGlobalError(\n if (__DEV__) {\n const debugChannel = response._debugChannel;\n if (debugChannel !== undefined) {\n- // If we don't have any more ways of reading data, we don't h...
2025-08-29T15:22:39
vercel/next.js
54d12035a043c8ce9df63ee460b84d794fca2fd2
1fedf5b0d348237446505c2950e0b53fd1639ca3
Fix route.replace crash with --debug-build-paths (#90312) ## Summary - Fixes `route.replace is not a function` error when running `next build --debug-build-paths` on projects with parallel routes **Root cause:** Turbopack filters routes at the route level (e.g., `/parallel-test` includes all page entries), while JS ...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -2185,7 +2185,10 @@ export default async function build(\n for (const [originalPath, normalizedPath] of Object.entries(\n appPathRoutes\n )) {\n- if (normalizedPath === page)...
2026-02-22T01:13:22
nodejs/node
bff6ea49b860a14817097e66fb6edd08e99434cb
ca5956cb7ab051be2a3ae6c0f99e5e446db40b9a
node-api: fix data race and use-after-free in napi_threadsafe_function Other threads can still hold a valid handle to the tsfn after finalization if finalization was triggered by - release with napi_tsfn_abort, or - environment shutdown Handle this by: - protecting finalization itself with the mutex - if necessary, d...
[ { "path": "src/node_api.cc", "patch": "@@ -200,7 +200,7 @@ class BufferFinalizer : private Finalizer {\n ~BufferFinalizer() { env()->Unref(); }\n };\n \n-class ThreadSafeFunction : public node::AsyncResource {\n+class ThreadSafeFunction {\n public:\n ThreadSafeFunction(v8::Local<v8::Function> func,\n ...
2024-11-15T17:58:09
rust-lang/rust
a7331929804d44db4ec13206477f3a2df558b891
80d0e4be6f15899649ba31669077c59a986f96cc
Make `rustc_hir_analysis` not depend on `rustc_lint`. `rustc_hir_analysis` depends on `rustc_lint` in just a single function: `emit_delayed_lint`, which is used by the "emit_ast_lowering_delayed_lints" checking section within `rustc_hir_analysis::check_crate`. This commit moves that function and section to out of `ru...
[ { "path": "Cargo.lock", "patch": "@@ -4021,7 +4021,6 @@ dependencies = [\n \"rustc_hir\",\n \"rustc_index\",\n \"rustc_infer\",\n- \"rustc_lint\",\n \"rustc_lint_defs\",\n \"rustc_macros\",\n \"rustc_middle\",", "additions": 0, "deletions": 1, "language": "Unknown" }, { "path": "co...
2026-03-24T19:58:13
golang/go
5f51b092846ae43d03092d866449d9933a8bf42b
b152d9a11808c278d2ccb193d7c82938078007ce
cmd/link: ignore GCC generated .wm4/.wm8 symbols with no type Fixes #77436 Change-Id: I37d852a89678c929156c4765e774c819eb515e6f Reviewed-on: https://go-review.googlesource.com/c/go/+/742220 Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservice...
[ { "path": "src/cmd/go/testdata/script/cgo_g3.txt", "patch": "@@ -0,0 +1,18 @@\n+[!cgo] skip\n+\n+# Test that -g3 works with cgo.\n+env CGO_CFLAGS=-g3\n+go build\n+\n+-- go.mod --\n+module cgog3\n+\n+go 1.25\n+-- m.go --\n+package main\n+\n+import \"os/user\"\n+\n+func main() {\n+\tuser.Current()\n+}", "...
2026-02-05T04:58:51
facebook/react
3fe51c9e147fb5215011cf3fd9544c5a776abf41
4082b0e7d3c042d49ef8987547b923051936956f
[Flight] Use more robust web socket implementation in fixture (#34338) The `WebSocketStream` implementation seems to be a bit unreliable. We've seen `Cannot close a ERRORED writable stream` errors when expanding the logged deep object, for example. And when reducing the fixture to a minimal app, we even get `Connectio...
[ { "path": "fixtures/flight/server/region.js", "patch": "@@ -74,13 +74,7 @@ function getDebugChannel(req) {\n return activeDebugChannels.get(requestId);\n }\n \n-async function renderApp(\n- res,\n- returnValue,\n- formState,\n- noCache,\n- promiseForDebugChannel\n-) {\n+async function renderApp(res, ...
2025-08-29T10:04:27
vercel/next.js
fd38d5bf1520b58f879eb4afeba1cb8efb428f05
ccee817b559c770c291350fcd13ad4cb6239339c
segment cache: add test for passing unawaited promise to context provider (#89339) Adds a failing test proving that if the RSC response from a prefetch contains an unresolved promise, navigating to the page will cause the Suspense boundary wrapping the use of that promise to remain in fallback state indefinitely. Thi...
[ { "path": "test/e2e/app-dir/segment-cache/prefetch-partial-rsc/app/layout.tsx", "patch": "@@ -0,0 +1,9 @@\n+import { ReactNode } from 'react'\n+\n+export default function Root({ children }: { children: ReactNode }) {\n+ return (\n+ <html>\n+ <body>{children}</body>\n+ </html>\n+ )\n+}", "ad...
2026-02-21T18:29:09
nodejs/node
ca5956cb7ab051be2a3ae6c0f99e5e446db40b9a
ce29481a527ea8f2f88f6dc9a609829b34bd647c
util: safely inspect getter errors whose message throws PR-URL: https://github.com/nodejs/node/pull/60684 Fixes: https://github.com/nodejs/node/issues/60683 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -2544,9 +2544,9 @@ function formatProperty(ctx, value, recurseTimes, key, type, desc,\n if (ctx.getters && (ctx.getters === true ||\n (ctx.getters === 'get' && desc.set === undefined) ||\n (ctx.getters === 'set' && desc.set !== u...
2025-11-27T11:06:24
golang/go
b152d9a11808c278d2ccb193d7c82938078007ce
fc9f22134a870528a7a6d110fa6172431f73cccf
cmd/link: correct error message in loadelf.Load The message said we were ignoring the symbols, but we aren't. We are treating them as an error. For #77436 Change-Id: I5492d81717c539b09f6956b591178f1f3a42893d Reviewed-on: https://go-review.googlesource.com/c/go/+/742060 Reviewed-by: Michael Knyszek <mknyszek@google.c...
[ { "path": "src/cmd/link/internal/loadelf/ldelf.go", "patch": "@@ -627,7 +627,7 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\treturn errorf(\"%v: sym#%d (%q): ignoring symbol in section %d (%q) (type %d)\", elfsym.sym, i, elfsym.nam...
2026-02-04T20:42:44
electron/electron
3345edd2bf175766d332e764326148bf35d81483
c5fe50be3b03ca5ebe917f563f85fcbdf21180a4
chore: upgrade Node.js to v24.10.0 (#48613) * chore: upgrade Node.js to v24.10.0 * chore: fixup crypto patch * chore: fixup crypto test patch * src: prepare for v8 sandboxing https://github.com/nodejs/node/pull/58376 * esm: fix module.exports export on CJS modules https://github.com/nodejs/node/pull/57366 * cho...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '143.0.7499.0',\n 'node_version':\n- 'v22.20.0',\n+ 'v24.10.0',\n 'nan_version':\n '675cefebca42410733da8a454c8d9391fcebfbc2',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2025-10-30T18:16:48
vercel/next.js
ccee817b559c770c291350fcd13ad4cb6239339c
3b94d8021af89754ee84252786bd9501a047bdf3
Turbopack: support Subresource Integrity (#90152) A spinoff from https://github.com/vercel/next.js/pull/90045 - [x] The SRI test is failing for unrelated reasons (hardcoded chunk name matching) - [x] Somehow, the hashes are wrong
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -88,6 +88,7 @@ use crate::{\n AppPageRoute, Endpoint, EndpointOutput, EndpointOutputPaths, ModuleGraphs, Route, Routes,\n },\n server_actions::{build_server_actions_loader, create_server_actions_manifest},\n+ sri_manifest::get_sri_manif...
2026-02-21T09:40:12
facebook/react
4082b0e7d3c042d49ef8987547b923051936956f
6b49c449b6d32dcfb846559fd422ff67055b8923
[compiler] Detect known incompatible libraries (#34027) A few libraries are known to be incompatible with memoization, whether manually via `useMemo()` or via React Compiler. This puts us in a tricky situation. On the one hand, we understand that these libraries were developed prior to our documenting the [Rules of Re...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -36,6 +36,14 @@ export enum ErrorSeverity {\n * memoization.\n */\n CannotPreserveMemoization = 'CannotPreserveMemoization',\n+ /**\n+ * An API that is known to be incompatible with the compiler. Generall...
2025-08-28T23:21:15
nodejs/node
e825de8e02c29d8ec7a081da338c07f5ab329101
634dc26605ada74c9e44492e97a247e867da1abf
test: fix debug test crashes caused by sea tests PR-URL: https://github.com/nodejs/node/pull/60807 Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "test/sea/testcfg.py", "patch": "@@ -5,7 +5,15 @@\n def GetConfiguration(context, root):\n # We don't use arch-specific out folder in Node.js; use none/none to auto\n # detect release mode from GetVm and get the path to the executable.\n- vm = context.GetVm('none', 'none')\n+ try:\n+ vm =...
2025-11-27T10:22:58
golang/go
fc9f22134a870528a7a6d110fa6172431f73cccf
a72a4295edf694395ba9d3b5e7c5393ebf6a415d
net/http: remove hasPort and simplify logic Fixes #76651 Change-Id: I306e127375095bc0caedb01ac458107cfec5f085 Reviewed-on: https://go-review.googlesource.com/c/go/+/725740 Auto-Submit: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Mich...
[ { "path": "src/net/http/http.go", "patch": "@@ -106,15 +106,15 @@ type contextKey struct {\n \n func (k *contextKey) String() string { return \"net/http context value \" + k.name }\n \n-// Given a string of the form \"host\", \"host:port\", or \"[ipv6::address]:port\",\n-// return true if the string include...
2025-12-02T04:06:09
electron/electron
0cb4fdd0f2ae28d7bf3cd753cd2b641947e637aa
21dfa8c73210ebf75acaae1f3b96f9aba3cd076b
fix: allow disabling all `NSMenuItems` (#48598) fix: allow disabling all NSMenuItems
[ { "path": "lib/browser/api/menu.ts", "patch": "@@ -25,11 +25,30 @@ Menu.prototype._isCommandIdChecked = function (id) {\n };\n \n Menu.prototype._isCommandIdEnabled = function (id) {\n- return this.commandsMap[id] ? this.commandsMap[id].enabled : false;\n+ const item = this.commandsMap[id];\n+ if (!item)...
2025-10-28T15:20:55
vercel/next.js
72c4c9c65b02652d1c97218f5cf775ddb55fd283
22e46a40adf5f757422e2389066e963654ed7c0d
Fix runtime prefetch `isPartial` byte stripping when deployed (#90272) Make `stripIsPartialByte` resilient to responses that don't have the leading `isPartial` marker byte. Instead of unconditionally consuming the first byte, it now checks whether it's a recognized marker ('~' or '#') and leaves the stream intact when...
[ { "path": "packages/next/src/client/components/segment-cache/cache.ts", "patch": "@@ -14,7 +14,6 @@ import {\n import {\n NEXT_DID_POSTPONE_HEADER,\n NEXT_INSTANT_PREFETCH_HEADER,\n- NEXT_IS_PRERENDER_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_ROUTER_STAL...
2026-02-21T02:09:24
facebook/react
6b49c449b6d32dcfb846559fd422ff67055b8923
872b4fef6ded18aa9bda5f7729340384a914ba7b
Update Code Sandbox CI to Node 20 to Match .nvmrc (#34329) ## Summary Update the CodeSandbox CI configuration to use Node 20 instead of Node 18, so that it matches the Node version specified in .nvmrc. This ensures consistency between local development environments and CI builds, reducing the risk of version-related b...
[ { "path": ".codesandbox/ci.json", "patch": "@@ -1,7 +1,7 @@\n {\n \"packages\": [\"packages/react\", \"packages/react-dom\", \"packages/react-server-dom-webpack\", \"packages/scheduler\"],\n \"buildCommand\": \"download-build-in-codesandbox-ci\",\n- \"node\": \"18\",\n+ \"node\": \"20\",\n \"publish...
2025-08-28T22:33:12
rust-lang/rust
99e378390fd7b3f5f20af8d1dbdc55a1914a0aa1
eb7bfb8a533840794ee113e9db0cdd26e73b7102
fix: Correct internal error message for ptr_guaranteed_cmp shim The missing-args branch reused the wrapping_add error string. Assisted by an AI coding tool (see CONTRIBUTING.md).
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/mir/eval/shim.rs", "patch": "@@ -843,7 +843,7 @@ impl<'db> Evaluator<'db> {\n // cases.\n let [lhs, rhs] = args else {\n return Err(MirEvalError::InternalError(\n- \"wrapping_add a...
2026-03-26T01:58:04
nodejs/node
90980932a4c75d32f39d0afd31a41a8c2e01d796
23c58f01e561f86c8913da9f4f446231e4f84a19
doc: add fullName property to SuiteContext Add documentation for the missing fullName property in SuiteContext. This property returns the name of the suite and each of its ancestors, separated by '>'. The property has been available since v22.3.0 but was missing from the documentation. Fixes: https://github.com/node...
[ { "path": "doc/api/test.md", "patch": "@@ -3667,7 +3667,9 @@ the path of the root test file.\n ### `context.fullName`\n \n <!-- YAML\n-added: v22.3.0\n+added:\n+ - v22.3.0\n+ - v20.16.0\n -->\n \n The name of the test and each of its ancestors, separated by `>`.\n@@ -3970,6 +3972,16 @@ The absolute path o...
2025-11-25T19:34:19
golang/go
a72a4295edf694395ba9d3b5e7c5393ebf6a415d
38ed6147485232f9562e87970c56f4491c082998
simd/archsimd: remove BUG note about type parameter After CL 742320, using vector type as type parameter now works. Updates #77444 Change-Id: I4f8cd2c9c18e04efbc884cb57dfcf9f2b48306d8 Reviewed-on: https://go-review.googlesource.com/c/go/+/742400 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Cherry ...
[ { "path": "src/simd/archsimd/doc.go", "patch": "@@ -58,6 +58,4 @@\n // allocate it in the heap, or put it in an aggregate type.\n package archsimd\n \n-// BUG(cherry): Using a vector type as a type parameter may not work.\n-\n // BUG(cherry): Using reflect Call to call a vector function/method may not w...
2026-02-05T16:45:22
electron/electron
21dfa8c73210ebf75acaae1f3b96f9aba3cd076b
29e0948f7b6270a86b09cdafcaee265a1455029c
fix: use correct signal variable in nan-spec-runner install check (#48639) The install process spawn was not capturing its own signal variable, causing the error check to incorrectly reference the build signal instead. This could lead to: - Install termination by signal going undetected - False positive errors when bu...
[ { "path": "script/nan-spec-runner.js", "patch": "@@ -118,16 +118,16 @@ async function main () {\n return process.exit(buildStatus !== 0 ? buildStatus : signal);\n }\n \n- const { status: installStatus } = cp.spawnSync(NPX_CMD, [`yarn@${YARN_VERSION}`, 'install'], {\n+ const { status: installStatus, ...
2025-10-28T15:18:47
vercel/next.js
aa6d7c2271092417de894c2d492ea01253b8117f
19dcd1339f946e6979acd415ec380c2fcfb3ccf2
[devtools] Omit empty looking error messages (#90256) If the trimmed error message has no length, we skip the line entirely to remove useless vertical space from the Redbox. Errors with no messages are assumed to only be relevant due to their stack.
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/errors/error-message/error-message.tsx", "patch": "@@ -19,6 +19,10 @@ export function ErrorMessage({ errorMessage, errorType }: ErrorMessageProps) {\n }\n }, [errorMessage])\n \n+ if (!errorMessage) {\n+ return null\n+ }\n+\n // ...
2026-02-20T23:21:21
rust-lang/rust
ecdb237fd5423452c80f926d32311fc6afda829d
eb7bfb8a533840794ee113e9db0cdd26e73b7102
fix: Correct type_or_const param index bound in debug_assert local_id is used as an index into type/const params; valid indices are 0..len_type_or_consts(). The previous <= check incorrectly allowed idx == len. Assisted by an AI coding tool (see CONTRIBUTING.md).
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/generics.rs", "patch": "@@ -185,7 +185,7 @@ impl Generics {\n if param.parent == self.def {\n let idx = param.local_id.into_raw().into_u32() as usize;\n debug_assert!(\n- idx <= self.params.len_type_or_consts...
2026-03-26T01:56:37
facebook/react
8d7b5e490320732f40d9c3aa4590b5b0ae5116f5
3434ff4f4b89ad9388c6109312ef95c14652ae21
[compiler] Show a ref name hint when assigning to non-ref in a callback (#34298) In #34125 I added a hint where if you assign to the .current property of a frozen object, we suggest naming the variable as `ref` or `-Ref`. However, the tracking for mutations that assign to .current specifically wasn't propagated past f...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts", "patch": "@@ -984,7 +984,7 @@ export function printAliasingEffect(effect: AliasingEffect): string {\n case 'MutateConditionally':\n case 'MutateTransitive':\n case 'MutateTransitiveConditionally': {\n- return `${...
2025-08-28T00:05:44
golang/go
38ed6147485232f9562e87970c56f4491c082998
ae842f71461ad178eff7283bc36e150fe284b9aa
cmd/compile: fix SIMD type parameter instantiation When a SIMD type is used to instantiate a type parameter, the SIMD's underlying type is its shape. This shape type must be marked as a SIMD type, otherwise, the backend will confuse and does not know how to put this SIMD type to proper registers. Fixing this by marki...
[ { "path": "src/cmd/compile/internal/types/type.go", "patch": "@@ -1683,6 +1683,9 @@ func (t *Type) SetUnderlying(underlying *Type) {\n \tif underlying.HasShape() {\n \t\tt.SetHasShape(true)\n \t}\n+\tif underlying.isSIMD {\n+\t\tsimdify(t, underlying.isSIMDTag)\n+\t}\n \n \t// spec: \"The declared type does...
2026-02-05T14:16:55
nodejs/node
d255fc7baee0d7fd014627e00d095adb81dcd23b
7fe808572702711ca2abad3bc8adad3c0d89eb6b
test_runner: fix line feed escaping in JUnit Replaces line feed characters with the correct character reference in XML attribute values. PR-URL: https://github.com/nodejs/node/pull/60274 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "lib/internal/test_runner/reporter/junit.js", "patch": "@@ -19,11 +19,11 @@ const inspectOptions = { __proto__: null, colors: false, breakLength: Infinity }\n const HOSTNAME = hostname();\n \n function escapeAttribute(s = '') {\n- return escapeContent(RegExpPrototypeSymbolReplace(/\"/g, RegExpPro...
2025-11-23T18:39:24
vercel/next.js
074ba4a953f124126b351277711560daa11d558e
e5d04e9866c3714ee046a2fd4be4e3090c858a10
[test] Improve fetch timeout error stack for `act` (#90261) Before: ``` apiRequestContext.fetch: Request timed out after 30000ms Call log: - → GET http://localhost:55200/refetch-on-new-base-tree/a?_rsc=1u5ob - <snip> 225 | // server; we pass the request to the server the immed...
[ { "path": "test/lib/router-act.ts", "patch": "@@ -224,9 +224,18 @@ export function createRouterAct(\n // but it should not affect the timing of when requests reach the\n // server; we pass the request to the server the immediately.\n result: (async () => {\n- ...
2026-02-20T21:02:16
electron/electron
29e0948f7b6270a86b09cdafcaee265a1455029c
08492b5977ab8db2d625d3d1c5169094c8f08b4c
chore: bump chromium to 143.0.7497.0 (main) (#48657) * chore: bump chromium in DEPS to 143.0.7492.0 * chore: bump chromium in DEPS to 143.0.7493.0 * chore: update mas_avoid_private_macos_api_usage.patch.patch Move os_crypt/sync and os_crypt/async shared code to os_crypt/common | https://chromium-review.googlesource...
[ { "path": "BUILD.gn", "patch": "@@ -592,6 +592,7 @@ source_set(\"electron_lib\") {\n use_libcxx_modules = false\n \n deps += [\n+ \"//components/os_crypt/common:keychain_password_mac\",\n \"//components/remote_cocoa/app_shim\",\n \"//components/remote_cocoa/browser\",\n \"//co...
2025-10-28T15:17:29
facebook/react
3434ff4f4b89ad9388c6109312ef95c14652ae21
bd5b1b7639b818a3fbd33ce83bf022a6f9f27b55
Add scrollIntoView to fragment instances (#32814) This adds `experimental_scrollIntoView(alignToTop)`. It doesn't yet support `scrollIntoView(options)`. Cases: - No host children: Without host children, we represent the virtual space of the Fragment by attempting to scroll to the nearest edge by using its siblings. I...
[ { "path": "fixtures/dom/src/components/fixtures/fragment-refs/FocusCase.js", "patch": "@@ -3,7 +3,7 @@ import Fixture from '../../Fixture';\n \n const React = window.React;\n \n-const {Fragment, useEffect, useRef, useState} = React;\n+const {Fragment, useRef} = React;\n \n export default function FocusCase(...
2025-08-27T22:05:57
golang/go
ae842f71461ad178eff7283bc36e150fe284b9aa
824befbca0e862571dc1a449b1c8df1218e6c4b6
log/slog: correct method names in MultiHandler docs Fixes #77428 Change-Id: I02d76ac9220fb2e0df404e4a446953bc0b56475f Reviewed-on: https://go-review.googlesource.com/c/go/+/741560 Auto-Submit: Rhys Hiltner <rhys.hiltner@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.co...
[ { "path": "src/log/slog/multi_handler.go", "patch": "@@ -17,8 +17,8 @@ func NewMultiHandler(handlers ...Handler) *MultiHandler {\n }\n \n // MultiHandler is a [Handler] that invokes all the given Handlers.\n-// Its Enable method reports whether any of the handlers' Enabled methods return true.\n-// Its Hand...
2026-02-03T17:23:33
vercel/next.js
8f231d6380699d60a62fdd4f110f69b0bbbffee2
77cd1afab7fa88d27c17eb89d5f512ba6521fbc7
[instant] Include declaration location of instant config in validation errors (#90169)
[ { "path": "crates/next-core/src/next_server/transforms.rs", "patch": "@@ -12,10 +12,11 @@ use crate::{\n next_config::NextConfig,\n next_server::context::ServerContextType,\n next_shared::transforms::{\n- get_next_dynamic_transform_rule, get_next_font_transform_rule, get_next_image_rule,\...
2026-02-20T19:31:53
electron/electron
9ce27e5318b702eec5553e51658cfff13f50ba03
09c22ea9794366a4d922444e23cfbf83d3ca8afc
docs: security.md use runnable examples for permissions and csp (#43248) * docs: security.md use runnable examples for permissions and csp Signed-off-by: LeUser111 <florian.wiedenmann@grob.de> * Removed semi-colon for uniform js code style in examples Signed-off-by: LeUser111 <florian.wiedenmann@grob.de> * docs: s...
[ { "path": "docs/api/session.md", "patch": "@@ -66,7 +66,7 @@ The `session` module has the following properties:\n \n ### `session.defaultSession`\n \n-A `Session` object, the default session object of the app.\n+A `Session` object, the default session object of the app, available after `app.whenReady` is ca...
2025-10-27T20:56:53
facebook/react
bd5b1b7639b818a3fbd33ce83bf022a6f9f27b55
0a1f1fcd5080320139bb51021b4325be65d6e2bd
[compiler] Emit better error for unsupported syntax `this` (#34322)
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIRBuilder.ts", "patch": "@@ -323,6 +323,22 @@ export default class HIRBuilder {\n ],\n });\n }\n+ if (node.name === 'this') {\n+ CompilerError.throwDiagnostic({\n+ severity: ErrorSeverity.UnsupportedJS,\n+ ...
2025-08-27T21:58:44
golang/go
824befbca0e862571dc1a449b1c8df1218e6c4b6
b8be5de81ee78f51fbd600498093b542e75a710e
bufio: fix doc link to Reset method On https://pkg.go.dev/bufio#Reader, the reference to the Reset method is rendered as [Reset]. Fix it by referring to the method via its type. Change-Id: I4256ca80ebef7b850e6a97b96503dd7178cb361b Reviewed-on: https://go-review.googlesource.com/c/go/+/736320 LUCI-TryBot-Result: Go LU...
[ { "path": "src/bufio/bufio.go", "patch": "@@ -30,7 +30,7 @@ var (\n \n // Reader implements buffering for an io.Reader object.\n // A new Reader is created by calling [NewReader] or [NewReaderSize];\n-// alternatively the zero value of a Reader may be used after calling [Reset]\n+// alternatively the zero v...
2026-01-14T11:54:22
facebook/react
b870042915c8a7cc1524feb7e0b5cbe7453a7648
33a1095d724c5ad0a6238e03e04461b6df5e73e2
[compiler] Validate against component/hook factories (#34305) Previously, the compiler would incorrectly attempt to compile nested components/hooks defined inside non-React functions. This would lead to scope reference errors at runtime because the compiler would optimize the nested React function without understandin...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -541,6 +541,9 @@ export enum ErrorCategory {\n // Checking for valid usage of manual memoization\n UseMemo = 'UseMemo',\n \n+ // Checking for higher order functions acting as factories for components/hooks\n+ ...
2025-08-27T17:59:26
electron/electron
e44b96bbd3b5072eb021a2839e211070adbf2779
b389377c6341870bb270a37178e811a1ce7baf37
refactor: avoid deprecated views a11y api (#47674) * refactor: use GetViewAccessibility().SetName() instead of SetAccessibleName() Xref: https://chromium-review.googlesource.com/c/chromium/src/+/5537333 * refactor: use GetViewAccessibility().SetRole() instead of SetAccessibleRole() Xref: https://chromium-review.goo...
[ { "path": "shell/browser/ui/views/autofill_popup_view.cc", "patch": "@@ -23,6 +23,7 @@\n #include \"ui/gfx/geometry/point.h\"\n #include \"ui/gfx/geometry/rect.h\"\n #include \"ui/gfx/text_utils.h\"\n+#include \"ui/views/accessibility/view_accessibility.h\"\n #include \"ui/views/border.h\"\n #include \"ui/v...
2025-10-27T19:05:25
golang/go
b8be5de81ee78f51fbd600498093b542e75a710e
d4febb45179fa99ee1d5783bcb693ed7ba14115c
runtime: clarify g object vs stack memory lifetime in HACKING.md The documentation states that g objects are "never freed" but does not clarify that goroutine stack memory is managed separately. This can be confusing as it might imply that all goroutine memory (including stacks) is retained indefinitely. Add a paragr...
[ { "path": "src/runtime/HACKING.md", "patch": "@@ -60,6 +60,14 @@ Every non-dead G has a *user stack* associated with it, which is what\n user Go code executes on. User stacks start small (e.g., 2K) and grow\n or shrink dynamically.\n \n+When a goroutine exits, its stack memory may be freed immediately or\n+...
2026-02-03T15:07:55
nodejs/node
49e56bfc55c9e77a77d232ec8a6ee84a432fa2d3
72dd0fa5cd1fa8b42e14cd69c15955145617fc30
doc: fix webstorage config file property PR-URL: https://github.com/nodejs/node/pull/60798 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "doc/node-config-schema.json", "patch": "@@ -186,6 +186,9 @@\n \"experimental-websocket\": {\n \"type\": \"boolean\"\n },\n+ \"experimental-webstorage\": {\n+ \"type\": \"boolean\"\n+ },\n \"extra-info-on-fatal-exception\": {\n \"t...
2025-11-21T08:09:25
facebook/react
33a1095d724c5ad0a6238e03e04461b6df5e73e2
213594860f456850bd615fcf08c0f0da25a998c5
[compiler] Infer render helpers for additional validation (#33647) We currently assume that any functions passes as props may be event handlers or effect functions, and thus don't check for side effects such as mutating globals. However, if a prop is a function that returns JSX that is a sure sign that it's actually a...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts", "patch": "@@ -880,7 +880,8 @@ export function printType(type: Type): string {\n if (type.kind === 'Object' && type.shapeId != null) {\n return `:T${type.kind}<${type.shapeId}>`;\n } else if (type.kind === 'Function' && ty...
2025-08-27T15:44:09
vercel/next.js
468de5d1bbe6d9493799541806a5d7726838a5a8
a6d950a4450f81bc09dcbf755f305c2d54a5b6d3
Remove workStore from params/searchParams/pathname function signatures (#90215) `workStore` is a request-scoped value available via `workAsyncStorage.getStore()` anywhere during rendering. Threading it as an explicit parameter was originally done to enforce that these functions are only callable within a valid work sc...
[ { "path": "packages/next/errors.json", "patch": "@@ -1065,5 +1065,6 @@\n \"1064\": \"createServerParamsForRoute should not be called in client contexts.\",\n \"1065\": \"createServerPathnameForMetadata should not be called in client contexts.\",\n \"1066\": \"createServerSearchParamsForServerPage shou...
2026-02-20T17:39:59
electron/electron
a611881ff3f03d18517af746f723bbd2b401f6b7
7925a4fe78cf48053daa653965971c1652de2293
fix: logical bug in install.js env var handling (#48634) If either `npm_config_electron_use_remote_checksums` or `electron_use_remote_checksums` are set as environment variables, then force Electron to verify with remote checksums instead of embedded ones. Fixes #48594.
[ { "path": "npm/install.js", "patch": "@@ -44,7 +44,7 @@ downloadArtifact({\n artifactName: 'electron',\n force: process.env.force_no_cache === 'true',\n cacheRoot: process.env.electron_config_cache,\n- checksums: process.env.electron_use_remote_checksums ?? process.env.npm_config_electron_use_remote_...
2025-10-27T10:23:45
golang/go
d4febb45179fa99ee1d5783bcb693ed7ba14115c
e2a34c7e9b04564ddad50bd7ec7b52fabde74192
crypto/tls: avoid data race when canceling a QUICConn's Context Methods on QUICConn are synchronous: The connection state is expected to change only in reaction to a user calling a QUICConn method, and the state change should finish completely before the method returns. The connection context provided to QUICConn.Sta...
[ { "path": "src/crypto/tls/conn.go", "patch": "@@ -1531,7 +1531,7 @@ func (c *Conn) handshakeContext(ctx context.Context) (ret error) {\n \tdefer cancel()\n \n \tif c.quic != nil {\n-\t\tc.quic.cancelc = handshakeCtx.Done()\n+\t\tc.quic.ctx = handshakeCtx\n \t\tc.quic.cancel = cancel\n \t} else if ctx.Done()...
2026-02-05T23:56:13
nodejs/node
07711379728708fd25de2d13c2d0cb78ddecbc4c
774e5647be8843f706c120459a582a4b7d542732
build: fix OpenSSL version parsing for OpenSSL < 3 OpenSSL versions before 3.0.0 do not define - `OPENSSL_VERSION_MAJOR` - `OPENSSL_VERSION_MINOR` - `OPENSSL_VERSION_PATCH` in `openssl/opensslv.h`. For these versions, `OPENSSL_VERSION_NUMBER` is a literal which we can parse directly. PR-URL: https://github.com/nodej...
[ { "path": "configure.py", "patch": "@@ -1246,7 +1246,8 @@ def get_openssl_version(o):\n \"\"\"Parse OpenSSL version from opensslv.h header file.\n \n Returns the version as a number matching OPENSSL_VERSION_NUMBER format:\n- 0xMNN00PPSL where M=major, NN=minor, PP=patch, S=status(0xf=release,0x0=pre), ...
2025-11-20T13:23:33
facebook/react
9c2e2b8475fb9d55fe47f55b007fba2d474e06f4
4123f6b771bb71a2831b1c450c385c38530125a0
[Flight] Don't drop debug info if there's only a readable debug channel (#34304) When the Flight Client is waiting for pending debug chunks, it drops the debug info if there is no writable side of the debug channel defined. However, it should instead check if there's no readable side defined. Fixing this is not only ...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -341,6 +341,11 @@ export type FindSourceMapURLCallback = (\n \n export type DebugChannelCallback = (message: string) => void;\n \n+export type DebugChannel = {\n+ hasReadable: boolean,\n+ callback: DebugChannelCallback | null,\n+};\n...
2025-08-27T11:50:19
electron/electron
eda0a7e7493df36b75773899b5eb14be0b786d8d
777b6c70a2ff264a94c45651c83ddbdf2df44c0f
fix: crash on empty dialog extensions array on Windows (#48640)
[ { "path": "shell/browser/ui/file_dialog_win.cc", "patch": "@@ -44,8 +44,7 @@ void ConvertFilters(const Filters& filters,\n std::vector<std::wstring>* buffer,\n std::vector<COMDLG_FILTERSPEC>* filterspec) {\n if (filters.empty()) {\n- COMDLG_FILTERSPEC spec = {L\"...
2025-10-25T16:14:55