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
c0464aedb16b1c970d717651bba8d1c66c578729
6a1dfe37776e5a41f4c1e07c33cf1f26c4a82979
[Fizz] Block on Suspensey Fonts during reveal (#33342) This is the same technique we do for the client except we don't check whether this is newly created font loading to keep code small. Unfortunately, we can't use this technique for Suspensey images. They'll need to block before we call `startViewTransition` in a s...
[ { "path": "packages/react-dom-bindings/src/server/fizz-instruction-set/ReactDOMFizzInstructionSetInlineCodeStrings.js", "patch": "@@ -8,7 +8,7 @@ export const clientRenderBoundary =\n export const completeBoundary =\n '$RB=[];$RV=function(c){$RT=performance.now();for(var a=0;a<c.length;a+=2){var b=c[a],h=...
2025-05-23T17:26:02
nodejs/node
e6aaa98eb059a9bd0d7432bbebb1c3753ed89379
e3a3733e1f177005684f3ae52d1d576d22af9633
doc: fix not working code example in vm docs PR-URL: https://github.com/nodejs/node/pull/60224 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
[ { "path": "doc/api/vm.md", "patch": "@@ -485,8 +485,8 @@ function resolveAndLinkDependencies(module) {\n // The \"secret\" variable refers to the global variable we added to\n // \"contextifiedObject\" when creating the context.\n export default secret;\n- `, { context: referenc...
2025-10-14T06:46:29
vercel/next.js
2932b93253458c08762f082e057387274edf989d
2521b8adc73957cf7dfc358bea3c461b04bcfa16
docs: fix ISR guide link to res.revalidate (#89342) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: For Contributors ...
[ { "path": "docs/01-app/02-guides/incremental-static-regeneration.mdx", "patch": "@@ -285,7 +285,7 @@ For a more precise method of revalidation, invalidate cached pages on-demand wit\n \n For example, this Server Action would get called after adding a new post. Regardless of how you retrieve your data in you...
2026-02-05T18:58:26
golang/go
65b71c11d469029f755328c5e51742139f6b8686
ea1aa765540e17043f817919febad262cf061ad8
crypto/internal/fips140only: test fips140=only mode Fixes #70514 Updates #70878 Change-Id: I6a6a46561d872c8f7e9ea333ff208064b0bd44c1 Reviewed-on: https://go-review.googlesource.com/c/go/+/728506 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Filippo Valsorda <fi...
[ { "path": "src/crypto/internal/fips140only/fips140only_test.go", "patch": "@@ -0,0 +1,408 @@\n+// Copyright 2025 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 fips140only_test\n+\n+import (\n+\t\"...
2024-12-28T21:32:59
facebook/react
6a1dfe37776e5a41f4c1e07c33cf1f26c4a82979
99efc627a5a8cb56f50cfffee544c86c49572b6f
Disable moveBefore experiment (#33348) There seems to be some bugs still to work out in Chrome. See #33187. Additionally, since you can't really rely on this function existing across browsers, it's hard to depend on its behavior anyway. In fact, you now have a source of inconsistent behaviors across browsers to deal ...
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -194,7 +194,7 @@ export const disableLegacyContext = true;\n export const disableLegacyContextForFunctionComponents = true;\n \n // Enable the moveBefore() alternative to insertBefore(). This preserves states of moves.\n-export const enableMoveB...
2025-05-23T17:25:13
nodejs/node
59b70e5fe397db2457e10469985cb47fd7af0687
8bc7dfd16fb95d5585eaaf0cea678ba1f9f4a755
http: fix http client leaky with double response PR-URL: https://github.com/nodejs/node/pull/60062 Fixes: https://github.com/nodejs/node/issues/60025 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "lib/_http_client.js", "patch": "@@ -47,6 +47,7 @@ const {\n HTTPParser,\n isLenient,\n prepareError,\n+ kSkipPendingData,\n } = require('_http_common');\n const {\n kUniqueHeaders,\n@@ -692,7 +693,14 @@ function parserOnIncomingClient(res, shouldKeepAlive) {\n // We already have a re...
2025-10-13T15:58:26
rust-lang/rust
bd16cd4fb54a1f54317d2cb9a7b623c32d081ce3
212b0d480f337082bbe1132d2b62be20e7e61f8a
CopyProp: fix outdated comment
[ { "path": "compiler/rustc_mir_transform/src/copy_prop.rs", "patch": "@@ -58,7 +58,8 @@ impl<'tcx> crate::MirPass<'tcx> for CopyProp {\n }\n }\n \n-/// Utility to help performing substitution of `*pattern` by `target`.\n+/// Utility to help performing substitution: for all key-value pairs in `copy_classe...
2026-03-24T07:12:17
golang/go
ea1aa765540e17043f817919febad262cf061ad8
5046bdf8a612b35a2c1a9e168054c1d5c65e7dd7
go/doc: exclude examples with results Fixes #36185 Change-Id: I7634744e62e00023367ed48a4700b61a6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/729902 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by...
[ { "path": "src/go/doc/example.go", "patch": "@@ -74,6 +74,9 @@ func Examples(testFiles ...*ast.File) []*Example {\n \t\t\tif params := f.Type.Params; len(params.List) != 0 {\n \t\t\t\tcontinue // function has params; not a valid example\n \t\t\t}\n+\t\t\tif results := f.Type.Results; results != nil && len(r...
2025-12-14T20:02:33
facebook/react
99efc627a5a8cb56f50cfffee544c86c49572b6f
bfaeb4a46175fa0f4edf2eba58349d5029e5e86e
[eslint] Add an option to require dependencies on effect hooks (#33344) Summary: To prepare for automatic effect dependencies, some codebases may want to codemod existing useEffect calls with no deps to include an explicit undefined second argument in order to preserve the "run on every render" behavior. In sufficien...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -8344,6 +8344,23 @@ const testsTypescript = {\n },\n ],\n },\n+ {\n+ code: normalizeIndent`\n+ function MyComponent(props) {\n+ useEffect(() => {\n+ co...
2025-05-23T14:09:41
vercel/next.js
2521b8adc73957cf7dfc358bea3c461b04bcfa16
469e513c5f2179ecd8292be7f0855f28acd6e7d8
[Instant] Instant validation in Dev (#89077) This PR implements the initial version of dev-time validation for `export const instant = ...` ```tsx export const instant = { prefetch: 'static' } ``` ```tsx export const instant = { prefetch: 'runtime', ... } ``` ```tsx export const instant = false ``` (the config is cur...
[ { "path": "errors/invalid-instant-configuration.mdx", "patch": "@@ -29,3 +29,11 @@ export const unstable_instant = {\n ],\n }\n ```\n+\n+#### Indicating that there is no instant UI\n+\n+This does not disable prefetching.\n+\n+```tsx filename=\"app/[slug]/page.tsx\"\n+export const unstable_instant = false\...
2026-02-05T18:14:19
electron/electron
31b18c983060c17ede270f43986b0677004c2eaf
895bf9103e05bdd80f91fa08a5ccf93c2ed72caf
fix: abnormal behavior of windows background material (#47386) * fix: abnormal behavior of windows background material Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * chore: update patches * fix: setting background material after init --------- Co-authored-by: zoy <zoy-l@outlook.com> Co-authored-by: patch...
[ { "path": "patches/chromium/.patches", "patch": "@@ -102,7 +102,6 @@ fix_use_delegated_generic_capturer_when_available.patch\n expose_webblob_path_to_allow_embedders_to_get_file_paths.patch\n fix_move_autopipsettingshelper_behind_branding_buildflag.patch\n revert_remove_the_allowaggressivethrottlingwithwebs...
2025-07-17T12:50:12
nodejs/node
4bfa387f6dc8976833f45dd8e41b130b508ad88a
5cf3c3e24c7257a0c6192ed8ef71efec8ddac22b
lib: fix constructor in _errnoException stack tree Fixes the constructor name in the stack tree for _errnoException. PR-URL: https://github.com/nodejs/node/pull/60156 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "lib/util.js", "patch": "@@ -339,7 +339,7 @@ function _errnoException(...args) {\n Error.stackTraceLimit = 0;\n const e = new ErrnoException(...args);\n Error.stackTraceLimit = limit;\n- ErrorCaptureStackTrace(e, _exceptionWithHostPort);\n+ ErrorCaptureStackTrace(e, _errnoExcepti...
2025-10-13T14:25:09
golang/go
5046bdf8a612b35a2c1a9e168054c1d5c65e7dd7
3f6eabdf09cd660c7881b75c5dfaef09609ba7e6
crypto/tls: reject trailing messages after client/server hello For TLS 1.3, after procesesing the server/client hello, if there isn't a CCS message, reject the trailing messages which were appended to the hello messages. This prevents an on-path attacker from injecting plaintext messages into the handshake. Additiona...
[ { "path": "src/crypto/tls/conn.go", "patch": "@@ -224,6 +224,9 @@ func (hc *halfConn) changeCipherSpec() error {\n \treturn nil\n }\n \n+// setTrafficSecret sets the traffic secret for the given encryption level. setTrafficSecret\n+// should not be called directly, but rather through the Conn setWriteTraffi...
2025-11-24T22:03:10
facebook/react
bfaeb4a46175fa0f4edf2eba58349d5029e5e86e
3e9db65fc3341148a5248b3ffc6bc68c0640fd3f
Fix incorrect use of NoLanes in executionContext check (#33170) ## Summary This PR fixes a likely incorrect condition in the `scheduleUpdateOnFiber` function inside `ReactFiberWorkLoop.js`. Previously, the code checked: ```js (executionContext & RenderContext) !== NoLanes ```` However, `NoLanes` is part of the lan...
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.js", "patch": "@@ -908,7 +908,7 @@ export function scheduleUpdateOnFiber(\n markRootUpdated(root, lane);\n \n if (\n- (executionContext & RenderContext) !== NoLanes &&\n+ (executionContext & RenderContext) !== NoContext &&\n root === ...
2025-05-23T02:02:39
electron/electron
895bf9103e05bdd80f91fa08a5ccf93c2ed72caf
bf51d345c86aded4b76dab5bf440f1cd06ab1564
fix: handle missing `NativeWindowMac` in `ElectronNSWindow` (#47751) fix: handle missing NativeWindowMac in ElectronNSWindow
[ { "path": "shell/browser/ui/cocoa/electron_ns_window.mm", "patch": "@@ -173,18 +173,16 @@ - (void)cleanup {\n }\n \n - (id)accessibilityFocusedUIElement {\n- views::Widget* widget = shell_->widget();\n- id superFocus = [super accessibilityFocusedUIElement];\n- if (!widget || shell_->IsFocused())\n- re...
2025-07-17T12:49:37
facebook/react
3e9db65fc3341148a5248b3ffc6bc68c0640fd3f
0d072884f9201f645ae298936f2933970b73bec4
Fix typo in error message. (#33313) ## Summary I am writing code that isn't so good, so I saw this error message many times. It appears to have a typo. This PR fixes the typo. ## How did you test this change? Ran the tests
[ { "path": "packages/react-dom/src/__tests__/ReactCompositeComponentState-test.js", "patch": "@@ -573,7 +573,7 @@ describe('ReactCompositeComponent-state', () => {\n assertConsoleErrorDev([\n \"Can't perform a React state update on a component that hasn't mounted yet. \" +\n 'This indicates...
2025-05-22T20:18:23
vercel/next.js
469e513c5f2179ecd8292be7f0855f28acd6e7d8
2842212c29afc5fd296ab2317f61131d7c57ddf6
Require explicit `cacheLife` on outer `"use cache"` when nesting short-lived caches (#89481) This PR adds error handling for nested `"use cache"` where the inner cache has a very short lifetime (zero `revalidate` or `expire` under 5 minutes) but the outer cache doesn't have an explicit `cacheLife()` call. Short-lived...
[ { "path": "docs/01-app/01-getting-started/06-cache-components.mdx", "patch": "@@ -310,6 +310,8 @@ export default async function Page() {\n }\n ```\n \n+> **Good to know:** A cache is considered \"short-lived\" when it uses the `seconds` profile, `revalidate: 0`, or `expire` under 5 minutes. Short-lived cach...
2026-02-05T15:39:08
nodejs/node
822a8c3244ecabbb2065869214b6ec2c12a70a69
985e2fb3834d39db167592bbcefac994abee87af
perf_hooks: fix stack overflow error PR-URL: https://github.com/nodejs/node/pull/60084 Fixes: https://github.com/nodejs/node/issues/54768 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "lib/internal/per_context/primordials.js", "patch": "@@ -270,6 +270,8 @@ const {\n Array: ArrayConstructor,\n ArrayPrototypeForEach,\n ArrayPrototypeMap,\n+ ArrayPrototypePushApply,\n+ ArrayPrototypeSlice,\n FinalizationRegistry,\n FunctionPrototypeCall,\n Map,\n@@ -720,5 +722,26 @@ ...
2025-10-13T08:05:45
golang/go
3f6eabdf09cd660c7881b75c5dfaef09609ba7e6
a4b5b92055d24da007ae13c4586aa0a229fa337b
cmd/compile: use unsigned constant when folding loads for SIMD ops with constants When folding loads into a SIMD op with a constant, in the SSA rules we use makeValAndOff to create an AuxInt for the constant and the offset. For the SIMD ops of concern (for now), the constants are always unsigned. So pass the constant ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -2511,30 +2511,30 @@\n (VPANDNQMasked128 x l:(VMOVDQUload128 {sym} [off] ptr mem) mask) && canMergeLoad(v, l) && clobber(l) => (VPANDNQMasked128load {sym} [off] x ptr mask mem)\n (VPANDNQMasked256 x l:(VMOVDQUload256 {sym} [off] ptr...
2025-12-16T16:16:47
facebook/react
3710c4d4f9ffb6aa07e291b822e4ec7d69ed5a32
2388481283640d034fd6b4edfca4f11e67953673
Prevent errors from comment node roots with enableViewTransition (#33205) We have many cases internally where the `containerInstance` resolves to a comment node. `restoreRootViewTransitionName` is called when `enableViewTransition` is on, even without introducing a `<ViewTransition />`. So that means it can crash page...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1549,6 +1549,19 @@ export function cancelRootViewTransitionName(rootContainer: Container): void {\n rootContainer.nodeType === DOCUMENT_NODE\n ? (rootContainer: any).documentElement\n : rootContainer.own...
2025-05-21T17:57:35
electron/electron
31725b4a861feb2ddbd31016a46d18e5a305f7f0
ec748eb91526282c7f6ea7eba90bfb0b7222c6bd
fix: window `accentColor` should adhere to native window behavior (#47740) * fix: window accentColor should adhere to native window behavior * fix: address review feedback * chore: remove duplicate UpdateWindowAccentColor call in ctor
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -420,8 +420,6 @@ NativeWindowViews::NativeWindowViews(const gin_helper::Dictionary& options,\n last_window_state_ = ui::mojom::WindowShowState::kFullscreen;\n else\n last_window_state_ = ui::mojom::WindowShowState::kNormal;\n-\n- Upda...
2025-07-17T08:59:42
nodejs/node
2216a3b1d58953e564817b88eb2fbff506c5a192
3ac88a7a66e64a1696fbeb5d7af97a7a61ab1868
deps: V8: cherry-pick 1e190bbb0396 Original commit message: [segmented-table] Disable segments pool if pages can be too large The segments pool can only be used if we have 16Kb allocation granularity. On OSs where the page size can be configured larger we have to disable it, since it is currently not...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ...
2025-10-12T18:39:19
vercel/next.js
5c1b54115b746c769e72a7a2bd689ca7ffe1cc14
f91113d7b3dc586b815ae3d163c79c619031bc18
Clarify type checking error message (#89525) Previously: ``` pnpm next build ▲ Next.js 16.2.0-canary.28 (Turbopack) Creating an optimized production build ... ✓ Compiled successfully in 5.7s Running TypeScript ... Failed to compile. ./app/page.tsx:3:5 Type error: Type 'string' is not assignable to type 'number'...
[ { "path": "packages/next/src/lib/verify-typescript-setup.ts", "patch": "@@ -241,7 +241,7 @@ export async function verifyTypeScriptSetup({\n } catch (err) {\n // These are special errors that should not show a stack trace:\n if (err instanceof CompileError) {\n- console.error(red('Failed to co...
2026-02-05T13:21:06
golang/go
9ba0948172cbb05308fb2a9db823a720f8ffb9ad
b7944a5f80b5aa7ad43730064cf4ebc8c473df47
cmd/link: don't create __x86.get_pc_thunk symbol if it already exists On 386, in some build modes we need to create the __x86.get_pc_thunk symbols, to support PC-relative addressing. In some situation the thunk symbols may already exist, e.g. loaded from a C object in internal linking mode. In this case, we should use...
[ { "path": "src/cmd/link/internal/x86/asm.go", "patch": "@@ -72,6 +72,9 @@ func gentext(ctxt *ld.Link, ldr *loader.Loader) {\n \t\t{\"di\", 7},\n \t} {\n \t\tthunkfunc := ldr.CreateSymForUpdate(\"__x86.get_pc_thunk.\"+r.name, 0)\n+\t\tif t := thunkfunc.Type(); t != 0 && t != sym.SXREF && t != sym.SDYNIMPORT ...
2025-12-15T18:45:28
rust-lang/rust
fef8a7130e21dc45fdbf5e86f3d0b402dae2e69a
ac86fd103df1434db04ad223e5daa891a8a434ab
fix: `collapsible_if` FP when the inner if contains cfg
[ { "path": "clippy_lints/src/collapsible_if.rs", "patch": "@@ -2,7 +2,7 @@ use clippy_config::Conf;\n use clippy_utils::diagnostics::span_lint_hir_and_then;\n use clippy_utils::msrvs::Msrv;\n use clippy_utils::source::{HasSession, IntoSpan as _, SpanRangeExt, snippet, snippet_block_with_applicability};\n-use...
2026-03-24T04:48:31
facebook/react
9c7b10e22ea4c184c0465df15705f17ba36b115a
50389e179273558d0919d45bc5db99a21b258b03
[Fizz] Clean up row that was blocked by an aborted boundary (#33318) Fixes a bug that we caused us to hang after an abort because we didn't manage the ref count correctly.
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzSuspenseList-test.js", "patch": "@@ -27,9 +27,10 @@ let writable;\n let container;\n let buffer = '';\n let hasErrored = false;\n+let hasCompleted = false;\n let fatalError = undefined;\n \n-describe('ReactDOMFizSuspenseList', () => {\n+describe('React...
2025-05-21T00:31:16
electron/electron
ec748eb91526282c7f6ea7eba90bfb0b7222c6bd
5feb91e2f419507aa2f24583f0a89982328bb0b4
test: cleanup RenderFrame lifespan tests (#47746) * test: cleanup RenderFrame lifespan tests * test: disable navigator.serial tests on arm64 mac debug the hang test: disable navigator.bluetooth on arm64 mac Revert "test: disable navigator.bluetooth on arm64 mac" This reverts commit 4b53a8485a5ff391832c7da93d859f1...
[ { "path": "spec/api-web-frame-main-spec.ts", "patch": "@@ -314,6 +314,7 @@ describe('webFrameMain module', () => {\n beforeEach(async () => {\n w = new BrowserWindow({ show: false });\n });\n+ afterEach(closeAllWindows);\n \n // TODO(jkleinsc) fix this flaky test on linux\n ifit(pro...
2025-07-16T20:19:55
nodejs/node
1986ee4b659d08c6c05aaea612da23257954bbd5
d54e6aec9ee4a45aab148bbb6ba825f67c38ec6f
vm: hint module identifier in instantiate errors PR-URL: https://github.com/nodejs/node/pull/60199 Fixes: https://github.com/nodejs/node/issues/60157 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Ann...
[ { "path": "src/module_wrap.cc", "patch": "@@ -144,12 +144,12 @@ ModuleWrap::ModuleWrap(Realm* realm,\n Local<Object> context_object,\n Local<Value> synthetic_evaluation_step)\n : BaseObject(realm, object),\n+ url_(Utf8Value(realm->isolate(), url).ToStri...
2025-10-12T14:28:56
golang/go
b7944a5f80b5aa7ad43730064cf4ebc8c473df47
6713f46426c70f601ac33471d16be7b0e1aae349
text/template: fix slice builtin for pointers to arrays The slice function now properly handles pointers to arrays by calling indirect() to dereference pointers, matching the behavior of the index function. Fixes #39596 Change-Id: Id4920edbfd8fd3df3a181b59a61733f88b0f104d Reviewed-on: https://go-review.googlesource....
[ { "path": "src/text/template/exec_test.go", "patch": "@@ -43,7 +43,8 @@ type T struct {\n \tSIEmpty []int\n \tSB []bool\n \t// Arrays\n-\tAI [3]int\n+\tAI [3]int\n+\tPAI *[3]int // pointer to array\n \t// Maps\n \tMSI map[string]int\n \tMSIone map[string]int // one element, for deterministic ou...
2025-12-05T20:50:24
facebook/react
4c6967be290fc31182c61cfdac19915fdb16aa60
c6c2a52ad8fb1894b03a3bb618eb57e5deca5aa0
[Fiber] Support AsyncIterable children in SuspenseList (#33299) We support AsyncIterable (more so when it's a cached form like in coming from Flight) as children. This fixes some warnings and bugs when passed to SuspenseList. Ideally SuspenseList with `tail="hidden"` should support unblocking before the full result ...
[ { "path": "packages/react-reconciler/src/ReactChildFiber.js", "patch": "@@ -13,6 +13,7 @@ import type {\n Thenable,\n ReactContext,\n ReactDebugInfo,\n+ SuspenseListRevealOrder,\n } from 'shared/ReactTypes';\n import type {Fiber} from './ReactInternalTypes';\n import type {Lanes} from './ReactFiberLa...
2025-05-20T13:39:25
electron/electron
5feb91e2f419507aa2f24583f0a89982328bb0b4
5128ebeddb76fbbf0a9e49af720fa2d37815e893
test: fix extensions console flake (#47750)
[ { "path": "spec/extensions-spec.ts", "patch": "@@ -18,7 +18,7 @@ const uuid = require('uuid');\n const fixtures = path.join(__dirname, 'fixtures');\n \n describe('chrome extensions', () => {\n- const emptyPage = '<script>console.log(\"loaded\")</script>';\n+ const emptyPage = '<html><body><h1>EMPTY PAGE</...
2025-07-16T16:27:20
nodejs/node
a1b73fe430d1110ecdf31eaf3fecc1bf9e58ddb8
a2f088d516efc7811e83e526f528c519fc634118
deps: V8: cherry-pick 2abc61361dd4 Original commit message: Fix scratch registers passed to mtvsrdd `ra` cannot be r0 as it will be interpreted as Operand(0) Change-Id: Idce58191f9d3578dc91dc4aa3872a0bf2939d8b3 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6936113 Commit-Queue:...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "...
2025-10-11T14:16:36
golang/go
6713f46426c70f601ac33471d16be7b0e1aae349
388eb10f50f2b693fb68897dd0ddf627b512a885
archive/tar, compress/bzip2: base64 some troublesome testdata files This avoids complaints from scanners that look for and open tar and bz2 files, and complain if they look weird. In this case, they do look weird, because they are intentionally strange. This kind of thing shouldn't be necessary, but we already have th...
[ { "path": "src/archive/tar/reader_test.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"hash/crc32\"\n+\t\"internal/obscuretestdata\"\n \t\"io\"\n \t\"maps\"\n \t\"math\"\n@@ -25,10 +26,11 @@ import (\n \n func TestReader(t *testing.T) {\n \tvectors := []struct {\n-\t\tfile stri...
2025-12-12T22:18:13
facebook/react
c6c2a52ad8fb1894b03a3bb618eb57e5deca5aa0
5dc1b212c330b6f456789f8d58e0f87abefbb86c
[compiler] Fix error message for custom hooks (#33310) We were printing "Custom" instead of "hook".
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateHooksUsage.ts", "patch": "@@ -452,7 +452,7 @@ function visitFunctionExpression(errors: CompilerError, fn: HIRFunction): void {\n reason:\n 'Hooks must be called at the top level in the body of a...
2025-05-19T22:29:58
electron/electron
389927dce842f5f26b841f254f21043a4cb8f291
67afc10b75763fae5449b28c3513d5579476c193
fix: corner smoothing feature gate crash (#47759) * fix: corner smoothing feature gate crash * Fix ElectronCornerSmoothing::CSSValueFromComputedStyleInternal
[ { "path": "docs/api/corner-smoothing-css.md", "patch": "@@ -51,19 +51,17 @@ Use the `system-ui` keyword to match the smoothness to the OS design language.\n \n ### Controlling availibility\n \n-This CSS rule can be disabled by setting [the `cornerSmoothingCSS` web preference](./structures/web-preferences.md...
2025-07-16T15:39:17
nodejs/node
367bcce6a6159fd90f97a508e3ec80ca938539f6
2e675c4fa36a5d5b9fcf4c46b1fc9238623e0440
src: fix usage of deprecated V8 API Namely `GetContinuationPreservedEmbedderData` and `SetContinuationPreservedEmbedderData` for their "V2" variants. Refs: https://github.com/v8/v8/commit/da41db36ec78d7c1f37fc7d0c7a7c580fda970fe PR-URL: https://github.com/nodejs/node/pull/60174 Reviewed-By: Anna Henningsen <anna@adda...
[ { "path": "src/async_context_frame.cc", "patch": "@@ -34,7 +34,7 @@ Scope::~Scope() {\n }\n \n Local<Value> current(Isolate* isolate) {\n- return isolate->GetContinuationPreservedEmbedderData();\n+ return isolate->GetContinuationPreservedEmbedderDataV2().As<Value>();\n }\n \n void set(Isolate* isolate, Lo...
2025-10-11T07:57:15
vercel/next.js
812996cc60f2753905c3b1e9a1e15c0c8d71b5bc
12f8545000b5234d6561ef3b65fb9caa888c7362
[CC] Rename "unstable_prefetch" to "unstable_instant" (#89448) Mostly mechanical rename. Also changes the error page to `errors/invalid-instant-configuration`. I'm not really worried about dangling links here because this is a new API and we don't expect anyone to be using it yet.
[ { "path": "errors/invalid-instant-configuration.mdx", "patch": "@@ -1,26 +1,26 @@\n ---\n-title: Invalid Prefetch Configuration\n+title: Invalid Instant Configuration\n ---\n \n ## Why This Message Occurred\n \n-You provided an invalid configuration for `export const unstable_prefetch` in a Layout or Page f...
2026-02-04T21:03:38
golang/go
388eb10f50f2b693fb68897dd0ddf627b512a885
1b291b70dff51732415da5b68debe323704d8e8d
cmd/go: show comparable in go doc interface output The go doc command now displays the comparable constraint when embedded in an interface, matching the existing behavior for the error type. Previously, when an interface embedded comparable, it was not shown in the documentation and incorrectly triggered the "Has une...
[ { "path": "src/cmd/go/internal/doc/doc_test.go", "patch": "@@ -629,6 +629,35 @@ var tests = []test{\n \t\t\t`Has unexported methods`,\n \t\t},\n \t},\n+\t// Interface with comparable constraint.\n+\t{\n+\t\t\"interface type with comparable\",\n+\t\t[]string{p, `ExportedComparableInterface`},\n+\t\t[]string{...
2025-12-05T08:25:33
facebook/react
4448b18760d867f9e009e810571e7a3b8930bb19
4a45ba92c4097a97333c04b5516ba2d5c81af716
[eslint-plugin-react-hooks] fix exhaustive deps lint rule with component syntax (#33182)
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -7746,6 +7746,34 @@ const testsFlow = {\n },\n ],\n invalid: [\n+ {\n+ code: normalizeIndent`\n+ hook useExample(a) {\n+ useEffect(() => {\n+ console.log(a);\n+ ...
2025-05-15T16:51:18
electron/electron
67afc10b75763fae5449b28c3513d5579476c193
f570e6967fe6bb0282d3d329e1037c535ae4a83a
fix: add macos memory query fallback patch to avoid crash (#47765)
[ { "path": "patches/chromium/.patches", "patch": "@@ -137,3 +137,4 @@ build_partial_revert_mac_fullscreen_top_chrome_mouse_events.patch\n revert_update_siso-chromium_image.patch\n build_set_mac_sdk_minimum_to_10.patch\n partitionalloc_use_fewer_vmas_by_default_on_linux_systems.patch\n+fix_add_macos_memory_qu...
2025-07-16T15:18:54
nodejs/node
4daeec11b93f3ccae57973970a84e82282844493
bfc81ca2284e7d596a140d6b93735a1914816561
lib: fix typo in QuicSessionStats Corrects the misspelling of "privateSynbol" to "privateSymbol". PR-URL: https://github.com/nodejs/node/pull/60155 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/quic/stats.js", "patch": "@@ -307,13 +307,13 @@ class QuicSessionStats {\n #disconnected = false;\n \n /**\n- * @param {symbol} privateSynbol\n+ * @param {symbol} privateSymbol\n * @param {BigUint64Array} buffer\n */\n- constructor(privateSynbol, buffer) {\n+ construc...
2025-10-10T04:16:56
vercel/next.js
99c8038e3309863f385ed983fd72081c813c1941
49e0a8a8c0ca200a71e224fc9fabd4313e110afa
Include owner stack for forwarded errors if available (#89493) For forwarded logs, we can also attach the owner stack if it's available, then we can see the proper errors trace shown in the terminal. In this way agent can directly detect where the error is happening from reading terminal log, and fix it | After | Be...
[ { "path": "packages/next/src/next-devtools/userspace/app/errors/stitched-error.ts", "patch": "@@ -17,7 +17,13 @@ export function coerceError(value: unknown): Error {\n export function setOwnerStackIfAvailable(error: Error): void {\n // React 18 and prod does not have `captureOwnerStack`\n if ('captureOw...
2026-02-04T18:05:28
facebook/react
4a45ba92c4097a97333c04b5516ba2d5c81af716
08cb2d7ee732f35ef1935c75c081754bd81d60b9
[sync] Fix noop for xplat (#33214) Noop detection for xplat syncs broke because `eslint-plugin-react-hooks` uses versions like: - `0.0.0-experimental-d85f86cf-20250514` But xplat expects them to be of the form: - `19.2.0-native-fb-63d664b2-20250514` This PR fixes the noop by ignoring `eslint-plugin-react-hooks/pac...
[ { "path": ".github/workflows/runtime_commit_artifacts.yml", "patch": "@@ -332,10 +332,10 @@ jobs:\n git --no-pager diff -U0 --cached | grep '^[+-]' | head -n 100\n echo \"====================\"\n # Ignore REVISION or lines removing @generated headers.\n- if git diff --...
2025-05-15T16:12:51
golang/go
63fced531c0d702554fcfda41f9016701a6859c6
6455afbc6f93e7ddc5ffde38b563c4e1a6821d22
runtime/secret: restore goroutine behavior to proposal During review of CL 704615, a suggestion was made that spawning a goroutine inside a call to secret.Do result in a panic. I agreed with this at the time, but had missed that this had been extensively discussed on the proposal. Revert the behavior back to what was ...
[ { "path": "src/runtime/proc.go", "patch": "@@ -5286,10 +5286,6 @@ func malg(stacksize int32) *g {\n // The compiler turns a go statement into a call to this.\n func newproc(fn *funcval) {\n \tgp := getg()\n-\tif goexperiment.RuntimeSecret && gp.secret > 0 {\n-\t\tpanic(\"goroutine spawned while running in s...
2025-12-10T10:07:56
electron/electron
f570e6967fe6bb0282d3d329e1037c535ae4a83a
09ab71de4325b1f2521b16fc43eddacc09af6096
docs: fix broken sentence in crashReporter.start() documentation (#47688)
[ { "path": "docs/api/crash-reporter.md", "patch": "@@ -63,7 +63,7 @@ The `crashReporter` module has the following methods:\n * `extra` Record\\<string, string\\> (optional) - Extra string key/value\n annotations that will be sent along with crash reports that are generated\n in the main process. On...
2025-07-16T13:05:45
nodejs/node
db0121bedd7c541214c28cacc9b8e67dbadc5e0a
f8a43f6f3457107d86c4e289dbe824464e6c1a5a
module: fix directory option in the enableCompileCache() API The option name should be `directory` to be consistent with the returned result. It should also allow environment variable overrides. This also adds documentation for the new options and improves it. PR-URL: https://github.com/nodejs/node/pull/59931 Review...
[ { "path": "doc/api/module.md", "patch": "@@ -385,20 +385,33 @@ changes:\n \n The module compile cache can be enabled either using the [`module.enableCompileCache()`][]\n method or the [`NODE_COMPILE_CACHE=dir`][] environment variable. After it is enabled,\n-whenever Node.js compiles a CommonJS or a ECMAScri...
2025-10-09T07:55:31
facebook/react
08cb2d7ee732f35ef1935c75c081754bd81d60b9
203df2c9409f580fd63eeacd4f80d70c2741bd4f
[ci] Log author_association (#33213) For debugging purposes, log author_association
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -15,6 +15,7 @@ jobs:\n outputs:\n is_member_or_collaborator: ${{ steps.check_is_member_or_collaborator.outputs.is_member_or_collaborator }}\n steps:\n+ - run: echo ${{ github.event.pull_request.author_association }}\n...
2025-05-15T15:49:56
vercel/next.js
9e63d487945c77e1d9054827670ee44cd3de629b
1ac8cb06e37b3ece6d6efbbb2ca8f29105fe1f34
docs: Fix syntax in proxy example code (#89395) Fixes syntax for the code sample found on https://nextjs.org/docs/pages/guides/multi-zones#routing-requests-using-proxy --------- Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "docs/01-app/02-guides/multi-zones.mdx", "patch": "@@ -104,9 +104,9 @@ Routing requests through [`rewrites`](/docs/app/api-reference/config/next-config\n \n ```js filename=\"proxy.js\"\n export async function proxy(request) {\n- const { pathname, search } = req.nextUrl;\n+ const { pathname, sear...
2026-02-04T15:56:53
golang/go
6455afbc6f93e7ddc5ffde38b563c4e1a6821d22
8f45611e78095c05075b4cc49e44aabde064e134
runtime: dropg after emitting trace event in preemptPark Because we dropg before emitting a trace event in preemptPark, we end up failing to emit a status for the goroutine if this happens to be the first event for it in the generation. We only really see this with multiple subscribers in TestSubscribers. This is for...
[ { "path": "src/runtime/proc.go", "patch": "@@ -4385,7 +4385,6 @@ func preemptPark(gp *g) {\n \t// up. Hence, we set the scan bit to lock down further\n \t// transitions until we can dropg.\n \tcasGToPreemptScan(gp, _Grunning, _Gscan|_Gpreempted)\n-\tdropg()\n \n \t// Be careful about ownership as we trace t...
2025-12-11T19:23:19
rust-lang/rust
af6324a90f502d18cebcf5d10fe90ae613007a42
6f22f61305478df09f9a4523743f85d9f558c3d7
Fix typo in doc comment for `char::to_titlecase`
[ { "path": "library/core/src/char/methods.rs", "patch": "@@ -1212,7 +1212,7 @@ impl char {\n /// returned by [`Self::to_uppercase`]. Prefer this method when seeking to capitalize\n /// Only The First Letter of a word, but use [`Self::to_uppercase`] for ALL CAPS.\n ///\n- /// If this `char` doe...
2026-03-24T02:25:09
electron/electron
09ab71de4325b1f2521b16fc43eddacc09af6096
21b325b0348098ec5bc4b267c37a9f4e14ee7bec
fix: deprecation warning crash when no Node.js environment available (#47700)
[ { "path": "shell/common/node_util.cc", "patch": "@@ -66,8 +66,13 @@ void EmitWarning(const std::string_view warning_msg,\n void EmitWarning(v8::Isolate* isolate,\n const std::string_view warning_msg,\n const std::string_view warning_type) {\n- node::ProcessEmitWarningGener...
2025-07-16T10:45:59
nodejs/node
f8a43f6f3457107d86c4e289dbe824464e6c1a5a
6dbf7086bb7deb1a2b99a7277226bb8f1f8136f2
test: deflake test-fs-promises-watch-iterator Add a delay before writing the files to ensure that the watcher receives the notifications. Fixes: https://github.com/nodejs/node/issues/60051 Refs: https://github.com/nodejs/node/issues/52601 PR-URL: https://github.com/nodejs/node/pull/60060 Reviewed-By: Anna Henningsen ...
[ { "path": "test/parallel/test-fs-promises-watch-iterator.js", "patch": "@@ -34,10 +34,12 @@ class WatchTestCase {\n }\n }\n async writeFiles() {\n+ // Do the write with a delay to ensure that the OS is ready to notify us.\n+ await setTimeout(common.platformTimeout(100));\n+\n for (const fi...
2025-10-09T05:33:33
facebook/react
65b5aae010002ef88221cc4998711eaef6068006
3f67d0857efc3ab21b9d30851f5a8451471166ab
[Fizz] Add vt- prefix attributes to annotate <ViewTransition> in HTML (#33206) Stacked on #33194 and #33200. When Suspense boundaries reveal during streaming, the Fizz runtime will be responsible for animating the reveal if necessary (not in this PR). However, for the future runtime to know what to do it needs to kno...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -72,6 +72,7 @@ import {\n enableScrollEndPolyfill,\n enableSrcObject,\n enableTrustedTypesIntegration,\n+ enableViewTransition,\n } from 'shared/ReactFeatureFlags';\n import {\n mediaEventTypes,\n@@ -3217,6 +3218,...
2025-05-15T05:04:10
vercel/next.js
44ab1be4d078fb61fbeb3743810a828bb8731f07
5fbb9aa954c45ed0811201e9e727f14a8affa627
Support MPA navigations in `instant()` (#89469) Based on: - https://github.com/vercel/next.js/pull/89465 --- The `instant()` testing API allows e2e tests to assert on prefetched UI before dynamic data streams in. This extends it to handle full page navigations: page reloads, plain anchor clicks, and browser back/fo...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -37,6 +37,7 @@ import {\n RSC_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_INSTANT_PREFETCH_HEADER,\n+ NEXT_INSTANT_TEST_COOKIE,\n NEXT_IS_PRERENDER_HEADER,\n NEXT_DID_POSTPONE_HEADER,\n RSC_CONTENT_TYPE_HEADER,\n@@ -350,1...
2026-02-04T13:17:31
golang/go
8f45611e78095c05075b4cc49e44aabde064e134
34af879dde2cfc2688b486399e9fc7e60d1e96fc
runtime/pprof: deflake TestGoroutineLeakProfileConcurrency Issue #76540 reports failures in this test from the leaked goroutine count being too small. The test makes an effort to wait for the goroutines to leak, but there's no guarantee. This change instead changes TestGoroutineLeakProfileConcurrency to wait for the ...
[ { "path": "src/runtime/pprof/pprof_test.go", "patch": "@@ -1590,14 +1590,30 @@ func TestGoroutineLeakProfileConcurrency(t *testing.T) {\n \tgoroutineProf := Lookup(\"goroutine\")\n \tgoroutineLeakProf := goroutineLeakProfile\n \n-\t// Check that a profile with debug information contains\n-\tincludesLeak := ...
2025-12-11T17:19:19
rust-lang/rust
3df450f5aeb6d5244ed658a6aa8f679019045b8c
f66622c7eca7fc48ccc4dac848ff911b09a4d566
Cherry-pick 1.94.1 release notes This also fixes the Cargo rendering bug noted in the pre-release thread.
[ { "path": "RELEASES.md", "patch": "@@ -1,3 +1,17 @@\n+Version 1.94.1 (2026-03-26)\n+===========================\n+\n+<a id=\"1.94.1\"></a>\n+\n+* [Fix `std::thread::spawn` on wasm32-wasip1-threads](https://github.com/rust-lang/rust/pull/153634)\n+* [Remove new methods added to `std::os::windows::fs::OpenOpt...
2026-03-24T02:05:53
facebook/react
0cac32d60dd4482b27fe8a54dffbabceb22c6272
676f0879f315130309262ff3532707029f0288bb
[Fiber] Stash the entangled async action lane on currentEventTransitionLane (#33188) When we're entangled with an async action lane we use that lane instead of the currentEventTransitionLane. Conversely, if we start a new async action lane we reuse the currentEventTransitionLane. So they're basically supposed to be i...
[ { "path": "packages/react-reconciler/src/ReactFiberRootScheduler.js", "patch": "@@ -78,6 +78,7 @@ import {\n resetNestedUpdateFlag,\n syncNestedUpdateFlag,\n } from './ReactProfilerTimer';\n+import {peekEntangledActionLane} from './ReactFiberAsyncAction';\n \n // A linked list of all the roots with pend...
2025-05-13T19:20:59
electron/electron
cc9ca4bee2ad3035b2400e10d4ba4f64b8c4662b
17dba93587360ea398cd1a3b2bc6407c20e31a95
docs: add `Menu` module tutorials (#47268) * docs: add `Menu` module tutorials * link API docs to new tutorials * removed unreferenced fiddles * add wording for new types * fix import sort errors * delete accelerator.md * fixes
[ { "path": ".markdownlint-cli2.jsonc", "patch": "@@ -21,7 +21,9 @@\n \"ul\",\n \"unknown\",\n \"Tabs\",\n- \"TabItem\"\n+ \"TabItem\",\n+ \"DocCardList\",\n+ \"kbd\"\n ]\n },\n \"no-newline-in-links\": true", "additions": 3, "deletions...
2025-07-15T22:09:32
nodejs/node
6dbf7086bb7deb1a2b99a7277226bb8f1f8136f2
535efea962f3187a8e730a7aa9d96e9a6874e4f2
test_runner: fix suite timeout PR-URL: https://github.com/nodejs/node/pull/59853 Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -1455,7 +1455,9 @@ class Suite extends Test {\n reportedType = 'suite';\n constructor(options) {\n super(options);\n- this.timeout = null;\n+ if (options.timeout == null) {\n+ this.timeout = null;\n+ }\n \n if (this.config....
2025-10-09T04:40:05
golang/go
e8a83788a475544ab9a153bad4be4b796bc77ccc
927c89bbc5cc7366e86ecbb0f77267435b1d6d2c
go/doc: reuse import name logic for examples Examples resolved imports based on just the path name, but this doesn't work for go-name or modules on v2+. Updates #12794 Fixes #45110 Fixes #56740 Fixes #62059 Change-Id: I8c71b1e5311df04bccbdf319d759d3176a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/72...
[ { "path": "src/go/doc/example.go", "patch": "@@ -11,7 +11,6 @@ import (\n \t\"go/ast\"\n \t\"go/token\"\n \t\"internal/lazyregexp\"\n-\t\"path\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n@@ -221,7 +220,7 @@ func playExample(file *ast.File, f *ast.FuncDecl) *ast.File {\n \t\t\t// because the package sy...
2025-12-08T20:48:09
vercel/next.js
178a4c719f193e1f3a4c4131e2862909fadb9716
43136958b40d05c7d45efe8d65bbe516a58df607
fix: use signal-based exit codes to prevent inspector blocking exit (#89351) ## What? Use signal-based exit codes when shutting down the Next.js server to prevent the process from waiting for the debugger to disconnect. ## Why? When Node.js devtools are attached (via `--inspect` flag or the Next.js DevTools "Attach...
[ { "path": "packages/next/src/server/lib/start-server.ts", "patch": "@@ -382,7 +382,7 @@ export async function startServer(\n try {\n let cleanupStarted = false\n let closeUpgraded: (() => void) | null = null\n- const cleanup = () => {\n+ const cleanup = (signal: 'SIGINT' ...
2026-02-04T11:07:41
facebook/react
997c7bc930304142b3af37bcb21599181124aeb4
b94603b95504130aec72f61e02d7b66d48f33653
[DevTools] Get source location from structured callsites in prepareStackTrace (#33143) When we get the source location for "View source for this element" we should be using the enclosing function of the callsite of the child. So that we don't just point to some random line within the component. This is similar to the...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -50,6 +50,7 @@ import {\n gt,\n gte,\n parseSourceFromComponentStack,\n+ parseSourceFromOwnerStack,\n serializeToString,\n } from 'react-devtools-shared/src/backend/utils';\n import {\n@@ -5805,15 +5806,13 @@ exp...
2025-05-13T16:39:10
electron/electron
17dba93587360ea398cd1a3b2bc6407c20e31a95
603cafad7e82aa33485fb31e179ae0f116e26c7b
fix: missing SQLite builtin support in Node.js (#47706) https://github.com/nodejs/node/pull/58122
[ { "path": "patches/node/build_add_gn_build_files.patch", "patch": "@@ -24,7 +24,7 @@ index 4560bac7b8e3c707ecea5a425f642efb9de9ed36..e9c2a4391f4058a21a259cacaac4fde5\n o['variables']['v8_enable_external_code_space'] = 1 if options.enable_pointer_compression else 0\n o['variables']['v8_enable_31bit_smi...
2025-07-15T13:39:16
nodejs/node
535efea962f3187a8e730a7aa9d96e9a6874e4f2
642a7c0d46b9a4beea4e33a0b0c2bce7593c5811
http2: do not crash on mismatched ping buffer length PR-URL: https://github.com/nodejs/node/pull/60135 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -1444,9 +1444,9 @@ class Http2Session extends EventEmitter {\n }\n if (payload) {\n validateBuffer(payload, 'payload');\n- }\n- if (payload && payload.length !== 8) {\n- throw new ERR_HTTP2_PING_LENGTH();\n+ if (payload.byteL...
2025-10-08T23:23:34
rust-lang/rust
90ea993083f841698a5dcccc5069c5e8375df50b
eb9d3caf0511a5fa9fa70251e2ac9fa33a9a4652
Rename various query cycle things. The existing names have bugged me for a while. Changes: - `CycleError` -> `Cycle`. Because we normally use "error" for a `Diag` with `Level::Error`, and this type is just a precursor to that. Also, many existing locals of this type are already named `cycle`. - `CycleError::cycl...
[ { "path": "compiler/rustc_middle/src/queries.rs", "patch": "@@ -131,10 +131,10 @@ use crate::{mir, thir};\n // `Providers` that the driver creates (using several `rustc_*` crates).\n //\n // The result type of each query must implement `Clone`. Additionally\n-// `ty::query::from_cycle_error::FromCycleError`...
2026-03-17T00:43:53
golang/go
89614ad264803558cfa36d460d431f7cbd4bae47
bb2337f24c8d774ef122e2251f02c5e512c77a55
runtime/trace: fix broken TestSubscribers Currently we don't break out of the loop on a failure. This is leading to timeouts trying to parse a broken trace over and over, forever. But there's another issue where when we try to dump the trace, we pass only the unread portion of the bytes.Buffer. Change-Id: I1a338eea0...
[ { "path": "src/runtime/trace/subscribe_test.go", "patch": "@@ -16,15 +16,15 @@ import (\n )\n \n func TestSubscribers(t *testing.T) {\n-\tvalidate := func(t *testing.T, source string, tr *bytes.Buffer) {\n+\tvalidate := func(t *testing.T, source string, tr []byte) {\n \t\tdefer func() {\n \t\t\tif t.Failed(...
2025-12-11T18:02:36
facebook/react
2bcf06b69254cad6f7e702bf7d65c4f30478668c
5d04d73274a884ed53106677d56dd837ae668c45
[ReactFlightWebpackPlugin] Add support for .mjs file extension (#33028) ## Summary Our builds generate files with a `.mjs` file extension. These are currently filtered out by `ReactFlightWebpackPlugin` so I am updating it to support this file extension. This fixes https://github.com/facebook/react/issues/33155 ## Ho...
[ { "path": "packages/react-server-dom-webpack/src/ReactFlightWebpackPlugin.js", "patch": "@@ -277,8 +277,14 @@ export default class ReactFlightWebpackPlugin {\n chunkGroup.chunks.forEach(function (c) {\n // eslint-disable-next-line no-for-of-loops/no-for-of-loops\n for...
2025-05-13T01:16:15
vercel/next.js
446e1112a6af484042f2f0d196965e680430e89d
c2214e7aae0b6ef98b122fea7efc3675a5473182
Fix indentation of types of tests in docs (#89409) Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "docs/01-app/02-guides/testing/index.mdx", "patch": "@@ -8,8 +8,8 @@ In React and Next.js, there are a few different types of tests you can write, ea\n ## Types of tests\n \n - **Unit Testing** involves testing individual units (or blocks of code) in isolation. In React, a unit can be a single fun...
2026-02-03T20:48:44
nodejs/node
f0aa073907fc88f64ca95e4821eb7fdf49b133e2
1f95d399976de0c0d7928edcbfa362630019cd8a
test_runner: add junit file attribute support Add file attribute to JUnit testcase elements when file information is available in test event data. PR-URL: https://github.com/nodejs/node/pull/59432 Fixes: https://github.com/nodejs/node/issues/59422 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow ...
[ { "path": "lib/internal/test_runner/reporter/junit.js", "patch": "@@ -116,6 +116,9 @@ module.exports = async function* junitReporter(source) {\n } else {\n currentTest.tag = 'testcase';\n currentTest.attrs.classname = event.data.classname ?? 'test';\n+ if (event.data.fil...
2025-08-18T08:49:40
rust-lang/rust
953210cfb257a6fc5d2e2b1563935a4a2de3daeb
eb9d3caf0511a5fa9fa70251e2ac9fa33a9a4652
Fix `doc_cfg` not working as expected on trait impls
[ { "path": "src/librustdoc/clean/mod.rs", "patch": "@@ -2776,7 +2776,9 @@ fn clean_maybe_renamed_item<'tcx>(\n // These kinds of item either don't need a `name` or accept a `None` one so we handle them\n // before.\n match item.kind {\n- ItemKind::Impl(ref impl_) => return ...
2026-03-16T16:14:23
golang/go
bb2337f24c8d774ef122e2251f02c5e512c77a55
2622d2955bf1753f548c6ff46d471478933012d5
cmd/go: set GOOS in vet_asm test Not every OS (e.g. aix) supports ARCH=amd64. Fixes #76792 Change-Id: Id92cd247f1e36574192a6079990c686f9ab55910 Reviewed-on: https://go-review.googlesource.com/c/go/+/729220 Commit-Queue: Alan Donovan <adonovan@google.com> TryBot-Bypass: Alan Donovan <adonovan@google.com> Reviewed-by:...
[ { "path": "src/cmd/go/testdata/script/vet_asm.txt", "patch": "@@ -2,6 +2,7 @@\n \n env GO111MODULE=off\n env GOARCH=amd64\n+env GOOS=linux\n \n ! go vet -asmdecl a\n stderr 'f: invalid MOVW of x'", "additions": 1, "deletions": 0, "language": "Plain Text" } ]
2025-12-11T14:45:33
electron/electron
603cafad7e82aa33485fb31e179ae0f116e26c7b
09f269426e71950cf982f7fe00a26da9fb9dfe43
chore: bump chromium to 140.0.7281.0 (main) (#47616) * chore: bump chromium in DEPS to 140.0.7269.2 * chore: bump chromium in DEPS to 140.0.7270.0 * chore: bump chromium in DEPS to 140.0.7271.0 * chore: bump chromium in DEPS to 140.0.7273.0 * 6516731: [ExclusiveAccessForAndroid] remove unneeded includes & deps | h...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '140.0.7261.0',\n+ '140.0.7281.0',\n 'node_version':\n 'v22.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "build/...
2025-07-14T20:42:37
facebook/react
5d04d73274a884ed53106677d56dd837ae668c45
3820740a7fbfc3b27a5127b43bdad44382ff3ce0
Add eager alternate.stateNode cleanup (#33161) This is a fix for a problem where React retains shadow nodes longer than it needs to. The behaviour is shown in React Native test: https://github.com/facebook/react-native/blob/main/packages/react-native/src/private/__tests__/utilities/__tests__/ShadowNodeReferenceCounter...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -59,6 +59,7 @@ import {\n enableComponentPerformanceTrack,\n enableViewTransition,\n enableFragmentRefs,\n+ enableEagerAlternateStateNodeCleanup,\n } from 'shared/ReactFeatureFlags';\n import {\n FunctionComponent,\n@@ ...
2025-05-12T16:39:20
vercel/next.js
b08049ccf54ecd95033d89f82b1261e4142a2dbc
fe174a322fd65f61b51efc7525c605334b93c30f
[Codemod] Fix agents-md on Windows (#89319) Fixes #89240 The `agents-md` codemod failed on Windows because it assumed forward slashes in file paths. This caused the doc tree builder to skip files, resulting in an empty index being injected into `AGENTS.md`. The path handling code used string operations like `.split(...
[ { "path": "packages/next-codemod/lib/__tests__/agents-md-e2e.test.js", "patch": "@@ -0,0 +1,294 @@\n+/* global jest */\n+jest.autoMockOff()\n+\n+const fs = require('fs')\n+const path = require('path')\n+const os = require('os')\n+const { runAgentsMd } = require('../../bin/agents-md')\n+\n+/**\n+ * TRUE E2E ...
2026-02-03T18:21:05
nodejs/node
1f95d399976de0c0d7928edcbfa362630019cd8a
15278252bb8391ef78f6973d15e4834da7030de9
test: prepare junit file attribute normalization Add file attribute normalization in JUnit test output transform to support upcoming file attribute feature in JUnit XML reporter. PR-URL: https://github.com/nodejs/node/pull/59432 Fixes: https://github.com/nodejs/node/issues/59422 Reviewed-By: Moshe Atlow <moshe@atlow....
[ { "path": "test/fixtures/test-runner/output/junit_reporter.snapshot", "patch": "@@ -1,12 +1,12 @@\n <?xml version=\"1.0\" encoding=\"utf-8\"?>\n <testsuites>\n-\t<testcase name=\"sync pass todo\" time=\"*\" classname=\"test\">\n+\t<testcase name=\"sync pass todo\" time=\"*\" classname=\"test\" file=\"*\">\n...
2025-08-18T08:49:30
golang/go
5818c9d714f1a8abeb76ec5d75ad0e0560e8d780
9de6468701f4def1bbdc737e8ad1327f2cfaecc8
encoding/json/jsontext: add symbolic Kind constants Add constants for each possible Kind value (KindNull, KindTrue, etc.). Leave the values unchanged ('n', 't', etc.). Update documentation to reference the symbols. Fixes #71756 Change-Id: Ib33b2ad9ee55f6f547d9e6a1c5a7f00c8400d3d3 Reviewed-on: https://go-review.googl...
[ { "path": "src/encoding/json/jsontext/decode.go", "patch": "@@ -306,7 +306,7 @@ func (d *decodeBuffer) PreviousTokenOrValue() []byte {\n \n // PeekKind retrieves the next token kind, but does not advance the read offset.\n //\n-// It returns 0 if an error occurs. Any such error is cached until\n+// It retur...
2025-12-08T22:22:12
electron/electron
4a89068fb70c475cb7bc9fa09d1559a0ef1b52c9
137d4ec32969b03eca63a41fb3cecd858bb4cf25
ci: add `kTCCServiceAppleEvents` perm override to fix AppleScript errors (#47726) ci: add kTCCServiceAppleEvents perm override to fix AppleScript errors
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -103,6 +103,7 @@ jobs:\n \"'kTCCServiceMicrophone','/usr/local/opt/runner/provisioner/provisioner',1,2,4,1,NULL,NULL,0,'UNUSED',NULL,0,1687786159\"\n \"'kTCCServiceCamera','/usr/local/opt/runner/provisione...
2025-07-13T19:05:52
facebook/react
3820740a7fbfc3b27a5127b43bdad44382ff3ce0
5069e18060e00d7c07b2b04ebc8a3fa21e2d810a
[compiler][entrypoint] Fix edgecases for noEmit and opt-outs (#33148) Title --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33148). * #33149 * __->__ #33148
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Imports.ts", "patch": "@@ -59,6 +59,7 @@ type ProgramContextOptions = {\n opts: PluginOptions;\n filename: string | null;\n code: string | null;\n+ hasModuleScopeOptOut: boolean;\n };\n export class ProgramContext {\n /**\n@@ -...
2025-05-09T17:37:49
vercel/next.js
e6b92947a86e3e2173fccdaab0deadc5d3bcca39
2f2a71d6f53d4d18cc81eac6fa25c7e160555bc9
Rename CACHE_ONE_YEAR for clarity and fix usage (#89450) This renames the variable for clarity as we've had issues with unit mismatch with this constant specifically. Also fixes usage which was working accidentally because we converted it to a negative unit which is always in the past. x-ref: [slack thread](https://v...
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -33,7 +33,7 @@ import type {\n } from '..'\n \n import {\n- CACHE_ONE_YEAR,\n+ CACHE_ONE_YEAR_SECONDS,\n HTML_CONTENT_TYPE_HEADER,\n JSON_CONTENT_TYPE_HEADER,\n NEXT_RESUME_HEADER,\n@@ -2012,7 +2012,7 @@ export async functio...
2026-02-03T17:58:09
nodejs/node
b13f24c2dad1428d7a248835b09fd4a2a27276ff
d52cd045912b90672db8b542374ff3d9cc287701
build, src: fix include paths for vtune files PR-URL: https://github.com/nodejs/node/pull/59999 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/api/environment.cc", "patch": "@@ -18,7 +18,7 @@\n #include \"node_wasm_web_api.h\"\n #include \"uv.h\"\n #ifdef NODE_ENABLE_VTUNE_PROFILING\n-#include \"../deps/v8/src/third_party/vtune/v8-vtune.h\"\n+#include \"../deps/v8/third_party/vtune/v8-vtune.h\"\n #endif\n #if HAVE_INSPECTOR\n #inclu...
2025-10-07T19:04:32
golang/go
00642ee23b614d5314604b6b4d25c671f82c26b2
7b60d0673910a6527eb3d401b8a4e90c59cf70bd
encoding/json: report true from v2 Decoder.More when an error is pending Historically, Decoder.More reports true when the next read will return an error. Adjust the v2 Decoder to follow this behavior. Fixes #76467 Change-Id: I03bfa391e4e89ada8ca869db43c1d0bb63cc0413 Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "src/encoding/json/stream_test.go", "patch": "@@ -459,6 +459,9 @@ func TestDecodeInStream(t *testing.T) {\n \t\t{CaseName: Name(\"\"), json: ` \\a`, expTokens: []any{\n \t\t\t&SyntaxError{\"invalid character '\\\\\\\\' looking for beginning of value\", 1},\n \t\t}},\n+\t\t{CaseName: Name(\"\"), js...
2025-12-08T21:09:05
electron/electron
137d4ec32969b03eca63a41fb3cecd858bb4cf25
624d0856324c20699ae0f3a60a2a34d1cc2bc8a1
build: cleanup symlinks in cache (#47727) * build: cleanup symlinks in cache * build: ignore broken links * try --ignore-failed-read * build: dont deref symlinks * build: add flag to 7zip to resolve symlink error Needed to ignore Dangerous symbolic link path was ignored errors * Revert "build: cleanup symlinks i...
[ { "path": ".github/actions/restore-cache-azcopy/action.yml", "patch": "@@ -96,7 +96,7 @@ runs:\n \n $TEMP_DIR=New-Item -ItemType Directory -Path temp-cache\n $TEMP_DIR_PATH = $TEMP_DIR.FullName\n- C:\\ProgramData\\Chocolatey\\bin\\7z.exe -y x $src_cache -o\"$TEMP_DIR_PATH\"\n+ C:\\Prog...
2025-07-11T20:13:12
facebook/react
38ef6550a88f7744f5dcd4a3de7af6f13a540be5
b629a865fb18b899d251bf5c3c5ca2580d222720
[compiler][playground][tests] Standardize more pragmas (#33146) (Almost) all pragmas are now one of the following: - `@...TestOnly`: custom pragma for test fixtures - `@<configName>` | `@<configName>:true`: enables with either true or a default enabled value - `@<configName>:<json value>`
[ { "path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/compilationMode-all-output.txt", "patch": "@@ -1,5 +1,5 @@\n import { c as _c } from \"react/compiler-runtime\"; // \n-        @compilationMode(all)\n+        @compilationMode:\"all\"\n function nonReactFn() {\n   const $ = _c(1);\...
2025-05-08T15:26:53
vercel/next.js
7437fed8bf2551298c8273cb247dd3ba71267581
b91cf900ed2fac0bbaae17d1bbee8d8eb650a2f1
Snippet multi package syntax (#89381) <!-- 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 ### Improvin...
[ { "path": "docs/01-app/02-guides/package-bundling.mdx", "patch": "@@ -29,10 +29,22 @@ The Next.js Bundle Analyzer is integrated with Turbopack's module graph. You can\n \n To get started, run the following command and open up the interactive view in your browser.\n \n-```bash filename=\"Terminal\"\n+```bash...
2026-02-03T00:56:05
nodejs/node
23fa18444f718fb4236a3a987974cdb40aed8411
3db2f58693faa076d4064212a7f0769bf7db470d
src: fix small compile warning in quic/streams.cc Fixes: https://github.com/nodejs/node/issues/60110 PR-URL: https://github.com/nodejs/node/pull/60118 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Tobias N...
[ { "path": "src/quic/defs.h", "patch": "@@ -318,7 +318,7 @@ constexpr uint64_t kMaxSizeT = std::numeric_limits<size_t>::max();\n constexpr uint64_t kMaxSafeJsInteger = 9007199254740991;\n constexpr auto kSocketAddressInfoTimeout = 60 * NGTCP2_SECONDS;\n constexpr size_t kMaxVectorCount = 16;\n-constexpr size...
2025-10-06T13:37:17
golang/go
1de9585be24aaa11ecc79a5fe976713b8e7fd446
e38c38f0e539f599216247b5293d5c78aa82468b
runtime: prevent calls to GOMAXPROCS while clearing P trace state Currently, between the forEachP that ensures every P has a status in the trace and readying dead Ps for the next generation, there's a big window where GOMAXPROCS could run and change the number of Ps. In such circumstances, P state will not get properl...
[ { "path": "src/runtime/trace.go", "patch": "@@ -440,11 +440,6 @@ func StartTrace() error {\n \n \t// Record the heap goal so we have it at the very beginning of the trace.\n \ttl.HeapGoal()\n-\n-\t// Make sure a ProcStatus is emitted for every P, while we're here.\n-\tfor _, pp := range allp {\n-\t\ttl.writ...
2025-12-11T02:51:27
electron/electron
f2429c31c127f95c6bc2691c96f65c4283e9045d
fbb83be785bcb36047c4052099f0886e19bdcf82
build: ask bug reporters to check if it is a Chromium issue (#47702) * build: ask bug reporters to check if it is a Chromium issue Inspiration: https://github.com/electron/electron/issues/47672#issuecomment-3051298922 * build: fix options
[ { "path": ".github/ISSUE_TEMPLATE/bug_report.yml", "patch": "@@ -58,6 +58,15 @@ body:\n label: Last Known Working Electron version\n description: What is the last version of Electron this worked in, if applicable?\n placeholder: 16.0.0\n+- type: dropdown\n+ attributes:\n+ label: Does the iss...
2025-07-10T15:47:04
facebook/react
fbe7bc21b9aa00afa230132b3f7eee6d2b5c94a7
9518f1185621aecb99fd72385cdb137c6e8bd8fe
[compiler][be] repro edge cases for noEmit and module opt-outs (#33144) see test fixtures --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33144). * #33146 * #33145 * __->__ #33144
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/repro-bailout-nopanic-shouldnt-outline.expect.md", "patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+// @panicThreshold(none)\n+'use no memo';\n+\n+function Foo() {\n+ return <button onClick={() => alert('h...
2025-05-08T15:18:16
vercel/next.js
286e2431764add1ba9d51f74f215b54b5da76945
151b415c9df66847936e66421bae463a83e173b8
Restore default-enabled Server Function logging (#89407) Restores Server Function logging to be enabled by default during development, as originally implemented in #88277. The change to opt-in in #89321 was overly conservative. The implicit default in #88277 was an intentional design decision. Users can still opt out...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/logging.mdx", "patch": "@@ -35,17 +35,17 @@ module.exports = {\n \n ### Server Functions\n \n-You can enable logging of [Server Function](https://react.dev/reference/rsc/server-functions) invocations during development by setting `logging.s...
2026-02-02T18:13:51
nodejs/node
3db2f58693faa076d4064212a7f0769bf7db470d
4a7fbb64e6e513e0ff7afe5001581c833795743c
deps: V8: cherry-pick f93055fbd5aa Original commit message: [runtime] Fastcase for empty getOwnPropertySymbols() Since symbols are not enumerable we can rule them out in case all properties are in the enum cache. Bug: 447154198 Change-Id: Ib2d58b67e5058d98323fcebaef3daba88c6304b5 Reviewed-on...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "...
2025-10-01T16:59:23
golang/go
e38c38f0e539f599216247b5293d5c78aa82468b
c0ba519764536b8ce7ba2a7fe3748f07672f7b6e
internal/trace: correctly handle GoUndetermined for GoroutineSummary Currently the trace summarization incorrectly handles GoUndetermined by treating it too much like GoNotExist. In particular, it should be accumulating all the time since the start of the trace in a particular bucket, but it doesn't, so that instead g...
[ { "path": "src/internal/trace/summary.go", "patch": "@@ -321,16 +321,47 @@ func (s *Summarizer) Event(ev *Event) {\n \t\t\t// Handle transition out.\n \t\t\tg := s.gs[id]\n \t\t\tswitch old {\n-\t\t\tcase GoUndetermined, GoNotExist:\n+\t\t\tcase GoUndetermined:\n \t\t\t\tg = &GoroutineSummary{ID: id, gorout...
2025-12-10T02:50:56
electron/electron
31bc5ca903b35016649727326bf443ef11cc6e62
03a02fc31ec6f0ce535f4696e190272c08f8e2b3
fix: default to system accent color on invalid user color (#47660) fix: default to system accent color on invalid user color"
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -656,7 +656,7 @@ bool BaseWindow::IsTabletMode() const {\n }\n \n void BaseWindow::SetBackgroundColor(const std::string& color_name) {\n- SkColor color = ParseCSSColor(color_name);\n+ SkColor color = ParseCSSColor(color_name).value_or...
2025-07-08T09:15:13
vercel/next.js
151b415c9df66847936e66421bae463a83e173b8
0fca1fa062316d34144e6c50b0bcf65182213c43
docs: Fix custom server code snippets (#89400) I noticed the snippets were slightly broken when copying them to an app. <!-- 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...
[ { "path": "docs/01-app/02-guides/custom-server.mdx", "patch": "@@ -17,7 +17,6 @@ Take a look at the [following example](https://github.com/vercel/next.js/tree/ca\n \n ```ts filename=\"server.ts\" switcher\n import { createServer } from 'http'\n-import { parse } from 'url'\n import next from 'next'\n \n cons...
2026-02-02T18:12:59
nodejs/node
db56020f50e0a44defe3230712d2078118b9f5c3
5b3c4b37f6479ab8976f178d596f5c07d555790d
doc: fix typo on child_process.md This note on `options.stdio` mentions that it's not recommended to pass `stdin` as a writable stream and `stdout/stderr` as readable, but then proceeds to say to always check that `stdin` is writable and `stdout/stderr` are readable. Going by the examples and the fact that `process.s...
[ { "path": "doc/api/child_process.md", "patch": "@@ -1078,8 +1078,8 @@ pipes between the parent and child. The value is one of the following:\n them incorrectly (e.g., passing a readable stream where a writable stream is\n expected) can lead to unexpected results or errors. This practice is discouraged...
2025-10-06T09:11:55
electron/electron
03a02fc31ec6f0ce535f4696e190272c08f8e2b3
5ef6897bc73fa0301df583717be8bc53485dc239
fix: fullscreen for windows without rounded corners (#47664)
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -175,6 +175,8 @@ class NativeWindowMac : public NativeWindow,\n // cleanup in destructor.\n void Cleanup();\n \n+ void SetBorderless(bool borderless);\n+\n void UpdateVibrancyRadii(bool fullscreen);\n \n void UpdateWindowOriginalFrame();",...
2025-07-08T09:14:14
vercel/next.js
b0facee66d1802a9d11bf7f1fc190e4f5cd096d8
d77e3d4cf3ba60457c5f764c4f73bebcb57c800f
Turbopack: Move PrettyPrintError to turbo_tasks and add tests (#89280) ### What? Move the error printing logic to turbo_tasks and add test cases for it
[ { "path": "Cargo.lock", "patch": "@@ -9431,6 +9431,7 @@ dependencies = [\n \"futures\",\n \"hashbrown 0.14.5\",\n \"indexmap 2.9.0\",\n+ \"indoc\",\n \"lmdb-rkv\",\n \"lzzzz\",\n \"once_cell\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "crates/next-napi-b...
2026-02-02T07:56:53
facebook/react
4a702865dd0c5849c1b454091560c3ef26121611
0ff1d13b8055c801d8b9b6779958c09fd0dc63e0
[Flight] Encode enclosing line/column numbers and use it to align the fake function (#33136) Stacked on #33135. This encodes the line/column of the enclosing function as part of the stack traces. When that information is available. I adjusted the fake function code generation so that the beginning of the arrow funct...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2226,6 +2226,8 @@ function createFakeFunction<T>(\n sourceMap: null | string,\n line: number,\n col: number,\n+ enclosingLine: number,\n+ enclosingCol: number,\n environmentName: string,\n ): FakeFunction<T> {\n // This cr...
2025-05-07T16:34:55
electron/electron
5ef6897bc73fa0301df583717be8bc53485dc239
bc585b6a3f8b0b8ce680636f3e27aced04d435b4
fix: accent color should reflect system settings without restart (#47629) fix: accentColor should reflect system settings without restart
[ { "path": "shell/browser/native_window_views.h", "patch": "@@ -319,7 +319,7 @@ class NativeWindowViews : public NativeWindow,\n // Whether the window is currently being moved.\n bool is_moving_ = false;\n \n- std::variant<bool, SkColor> accent_color_ = true;\n+ std::variant<std::monostate, bool, SkCol...
2025-07-03T16:13:39
nodejs/node
0c1fb986a01c492c681bdb145ca5cba3df2dff3d
7c85aa5255eb4f4fbb1efd04e544f444220aa0c8
tools: add message on auto-fixing js lint issues in gh workflow PR-URL: https://github.com/nodejs/node/pull/59128 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmai...
[ { "path": ".github/workflows/linters.yml", "patch": "@@ -103,7 +103,31 @@ jobs:\n - name: Environment Information\n run: npx envinfo\n - name: Lint JavaScript files\n- run: NODE=$(command -v node) make lint-js\n+ run: |\n+ set +e\n+ NODE=$(command -v node)...
2025-10-05T17:57:01
facebook/react
53c9f81049b4440a02b5ed3edb128516821c0279
e5a8de81e57181692d33ce916dfd6aa23638ec92
[DevTools] Use Popover API for TraceUpdates highlighting (#32614) ## Summary When using React DevTools to highlight component updates, the highlights would sometimes appear behind elements that use the browser's [top-layer](https://developer.mozilla.org/en-US/docs/Glossary/Top_layer) (such as `<dialog>` elements or c...
[ { "path": "packages/react-devtools-extensions/chrome/manifest.json", "patch": "@@ -4,7 +4,7 @@\n \"description\": \"Adds React debugging tools to the Chrome Developer Tools.\",\n \"version\": \"6.1.1\",\n \"version_name\": \"6.1.1\",\n- \"minimum_chrome_version\": \"102\",\n+ \"minimum_chrome_versio...
2025-05-07T14:48:17