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
b5a29cca486d26651e249c8395bc2df4a2d92d17
bb5eb5171535b9080055fee5996bd55398202124
cmd/distpack: add fix tool to inventory (To be consistent with change to build.go in CL 700795.) For #71859 Change-Id: I8caad28b7e5a2657f21b60a72899daecf0b2c324 Reviewed-on: https://go-review.googlesource.com/c/go/+/712180 Auto-Submit: Alan Donovan <adonovan@google.com> Reviewed-by: Michael Matloob <matloob@google.c...
[ { "path": "src/cmd/distpack/pack.go", "patch": "@@ -172,7 +172,7 @@ func main() {\n \t\t\tdefault:\n \t\t\t\treturn false\n \t\t\t// Keep in sync with toolsIncludedInDistpack in cmd/dist/build.go.\n-\t\t\tcase \"asm\", \"cgo\", \"compile\", \"cover\", \"link\", \"preprofile\", \"vet\":\n+\t\t\tcase \"asm\",...
2025-10-15T18:39:53
vercel/next.js
41c1f8700de71dd40f3a2395845906fe0354ac9b
ba20a5e8f26939b8963e2410dbc66d973ea9309b
[cna] For pnpm ignore postinstall from `sharp` and `unrs-resolver` (#83168) Fixes: https://github.com/vercel/next.js/issues/83158 There's still two other postinstall that are ignored if you use tw and eslint's next config (?): ``` ╭ Warning ────────────────────────────────────────────────────────────────────────────...
[ { "path": "packages/create-next-app/templates/index.ts", "patch": "@@ -319,6 +319,27 @@ export const installTemplate = async ({\n packageJson.devDependencies = sorted(packageJson.devDependencies);\n }\n \n+ if (packageManager === \"pnpm\") {\n+ const pnpmWorkspaceYaml = [\n+ // required for v...
2025-11-11T18:01:52
nodejs/node
a4e833ae17c738a6d891c9217551e7d638dab63e
4d7116916ddbd70a898f33ebbed883215e09835c
doc: update stability status for diagnostics_channel to experimental PR-URL: https://github.com/nodejs/node/pull/58261 Fixes: https://github.com/nodejs/node/issues/58234 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Rev...
[ { "path": "doc/api/diagnostics_channel.md", "patch": "@@ -1103,14 +1103,10 @@ for the sync error and one for the async error.\n \n ### Built-in Channels\n \n-> Stability: 1 - Experimental\n-\n-While the diagnostics\\_channel API is now considered stable, the built-in\n-channels currently available are not. ...
2025-05-13T04:42:15
facebook/react
c21ce4a39667c4094208bc35dc86fc9f49fceec6
632f88df11329c9ad66781ddd75b27df6f8effb9
feat: display message if user ended up opening hook script (#31000) In https://github.com/facebook/react/pull/30596 we've moved console patching to the global hook. Generally speaking, the patching happens even before React is loaded on the page. If browser DevTools were opened after when `console.error` or `con...
[ { "path": "packages/react-devtools-extensions/webpack.config.js", "patch": "@@ -154,6 +154,62 @@ module.exports = {\n );\n },\n }),\n+ {\n+ apply(compiler) {\n+ if (__DEV__) {\n+ return;\n+ }\n+\n+ const {RawSource} = compiler.webpack.sources;\n+ ...
2024-09-19T14:44:34
electron/electron
27fe6cc97f4d40c3a74c58ed1de41c9766437192
b1957f52e3539d13bebff745ace7ee42f06696b2
fix: `WebContentsView` removal should compare directly (#44656) * fix: WebContentsView removal should compare directly * fixup view comparision * chore: use erase_if * Apply review suggestions --------- Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "shell/browser/api/electron_api_view.cc", "patch": "@@ -124,15 +124,6 @@ struct Converter<views::FlexAllocationOrder> {\n }\n };\n \n-template <>\n-struct Converter<electron::api::View> {\n- static bool FromV8(v8::Isolate* isolate,\n- v8::Local<v8::Value> val,\n- ...
2024-11-15T03:11:20
golang/go
bb5eb5171535b9080055fee5996bd55398202124
5c9a26c7f882dba5bfe10036815bcb239dd9b7e8
runtime/pprof: fix errors in pprof_test I think the original depth-1 argument to allocDeep was correct. Reverted that, and also the change to maxSkip in mprof.go, which was also incorrect. I think before we were usually passing accidentally in the loop over matched stacks when we really should usually have been passin...
[ { "path": "src/runtime/mprof.go", "patch": "@@ -49,7 +49,7 @@ const (\n \t// desired maximum number of frames after expansion.\n \t// This should be at least as large as the largest skip value\n \t// used for profiling; otherwise stacks may be truncated inconsistently\n-\tmaxSkip = 8\n+\tmaxSkip = 6\n \n \t...
2025-10-15T16:52:47
vercel/next.js
ba20a5e8f26939b8963e2410dbc66d973ea9309b
5bd7c6fec0390244d412719bca889101ff37501a
Fix false-positive build error for `cacheLife` & `cacheTag` (#85875) When functions exported from a module with a top-level `'use cache'` directive are imported into client modules, the compiler should allow `cacheLife` and `cacheTag` usage within those functions. This PR updates the `react_server_components` transfo...
[ { "path": "crates/next-custom-transforms/src/transforms/react_server_components.rs", "patch": "@@ -66,7 +66,6 @@ struct ReactServerComponents<C: Comments> {\n filepath: String,\n app_dir: Option<PathBuf>,\n comments: C,\n- directive_import_collection: Option<(bool, bool, RcVec<ModuleImports>,...
2025-11-11T16:30:41
facebook/react
632f88df11329c9ad66781ddd75b27df6f8effb9
d5e955d3c0c1fa2494de0ab33be9cd90c65aff1e
[compiler] Allow ReactElement symbol to be configured when inlining jsx (#30996) Based on https://github.com/facebook/react/pull/30995 ([rendered diff](https://github.com/jackpope/react/compare/inline-jsx-2...jackpope:react:inline-jsx-3?expand=1)) ____ Some apps still use `react.element` symbols. Not only do we...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -352,8 +352,8 @@ function* runWithEnvironment(\n });\n }\n \n- if (env.config.enableInlineJsxTransform) {\n- inlineJsxTransform(hir);\n+ if (env.config.inlineJsxTransform) {\n+ inlineJsxTransform...
2024-09-19T14:34:24
nodejs/node
4d7116916ddbd70a898f33ebbed883215e09835c
28cbc4c9567ff2e5ea434703cd2d2ee8afd631d4
build: fix uvwasi pkgname PR-URL: https://github.com/nodejs/node/pull/58270 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "configure.py", "patch": "@@ -2276,7 +2276,7 @@ def make_bin_override():\n configure_library('nghttp3', output, pkgname='libnghttp3')\n configure_library('ngtcp2', output, pkgname='libngtcp2')\n configure_sqlite(output);\n-configure_library('uvwasi', output, pkgname='libuvwasi')\n+configure_librar...
2025-05-12T23:29:17
rust-lang/rust
c15947596f521dcf3f3d90515fee2dd2e8435587
d1f54383bddf50cc8b90d3c60ccd2a0265a47e9c
Fix typo in feature gate check
[ { "path": "src/doc/rustc-dev-guide/src/feature-gate-check.md", "patch": "@@ -8,7 +8,7 @@ nightly-only `#![feature(...)]` opt-in.\n This chapter documents the implementation\n of feature gating: where gates are defined, how they are enabled, and how usage is verified.\n \n-<!-- data-check: Feb 2026 -->\n+<!-...
2026-03-09T01:11:42
electron/electron
8a67e77f03155c884f763f596c76a0681af0f70a
41b5d7e3128ee8fcaf772e1ab5ad7fce677c8232
build: fix python warnings "SyntaxWarning: invalid escape sequence '\w'" (#44650) * fix: SyntaxWarning: invalid escape sequence '\w' * chore: remove some unused imports * fix: E711 warning 'Comparison to should be '
[ { "path": "build/generate_node_defines.py", "patch": "@@ -2,7 +2,7 @@\n import re\n import sys\n \n-DEFINE_EXTRACT_REGEX = re.compile('^ *# *define (\\w*)', re.MULTILINE)\n+DEFINE_EXTRACT_REGEX = re.compile(r'^ *# *define (\\w*)', re.MULTILINE)\n \n def main(out_dir, headers):\n defines = []", "additi...
2024-11-14T11:27:20
golang/go
61d1ff61adb3febdbae21da7721b7cd5389efe4a
5b29875c8eb1002c4509eb9ebd9a4d32cfd7d494
cmd/compile: use block starting position for phi line number Fixes #75615 Change-Id: I2c7f0ea1203e8a97749c9f780c29a66050f0159d Reviewed-on: https://go-review.googlesource.com/c/go/+/710355 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-sco...
[ { "path": "src/cmd/compile/internal/ssa/stmtlines_test.go", "patch": "@@ -137,17 +137,17 @@ func TestStmtLines(t *testing.T) {\n \t\t}\n \t}\n \n-\tvar m int\n+\tvar m float64\n \tif runtime.GOARCH == \"amd64\" {\n-\t\tm = 1 // > 99% obtained on amd64, no backsliding\n+\t\tm = 0.011 // > 98.9% obtained on a...
2025-10-08T22:33:19
rust-lang/rust
a5fa3995d6421c43e8b9a2ada45cc7301f9d495c
36781932489feefa2413b815b3a8ec78e02a8694
Fix semicolon-inside-block inside try_blocks Signed-off-by: Taym Haddadi <haddadi.taym@gmail.com>
[ { "path": "clippy_lints/src/semicolon_block.rs", "patch": "@@ -170,7 +170,7 @@ impl LateLintPass<'_> for SemicolonBlock {\n StmtKind::Semi(Expr {\n kind: ExprKind::Block(block, _),\n ..\n- }) if !block.span.from_expansion() => {\n+ }) if !blo...
2026-03-09T01:08:04
vercel/next.js
5bd7c6fec0390244d412719bca889101ff37501a
1b113c01be5d5268c7f780d53130ec98618dc3b4
[test] Add missing test fixtures for `cacheLife` & `cacheTag` in client (#85872) Importing `cacheLife` and `cacheTag` in Client Components yields build errors. This adds test fixtures to cover these scenarios. In addition, we're duplicating the test fixtures that have different error messages between `app/` and `pa...
[ { "path": "crates/next-custom-transforms/tests/errors.rs", "patch": "@@ -90,24 +90,32 @@ fn next_ssg_errors(input: PathBuf) {\n }\n \n #[fixture(\"tests/errors/react-server-components/**/input.js\")]\n+#[fixture(\"tests/errors/react-server-components/**/page.js\")]\n+#[fixture(\"tests/errors/react-server-co...
2025-11-11T13:37:43
nodejs/node
28cbc4c9567ff2e5ea434703cd2d2ee8afd631d4
6dcd4621bd41fd3367b52a9d3d9cdd2d36f209fb
src: add a variant of ToV8Value() for primitive arrays Adds a variant of ToV8Value for array of primitives that do not need to throw during conversion - there is essentially no exceptions that can be thrown then an array of integers is created. PR-URL: https://github.com/nodejs/node/pull/57576 Reviewed-By: Yagiz Nizi...
[ { "path": "src/node_v8.cc", "patch": "@@ -392,23 +392,13 @@ static MaybeLocal<Object> ConvertHeapStatsToJSObject(\n FIXED_ONE_BYTE_STRING(isolate, \"bucket_size\"),\n FIXED_ONE_BYTE_STRING(isolate, \"free_count\"),\n FIXED_ONE_BYTE_STRING(isolate, \"free_size\")};\n- Local<Value> ...
2025-03-18T22:18:33
facebook/react
3cac0875dcd60b8db099d8fa671c5ad1f8f0ef23
b521ef8a2aaff61154e59f6d0d3791ee4dbe6395
refactor[react-devtools]: move console patching to global hook (#30596) Stacked on https://github.com/facebook/react/pull/30566 and whats under it. See [this commit](https://github.com/facebook/react/pull/30596/commits/374fd737e4b0b7028afb765838db7c0e22def865). It is mostly copying code from one place to another ...
[ { "path": "packages/react-devtools-core/src/backend.js", "patch": "@@ -11,7 +11,6 @@ import Agent from 'react-devtools-shared/src/backend/agent';\n import Bridge from 'react-devtools-shared/src/bridge';\n import {installHook} from 'react-devtools-shared/src/hook';\n import {initBackend} from 'react-devtools...
2024-09-18T17:12:18
electron/electron
41b5d7e3128ee8fcaf772e1ab5ad7fce677c8232
946ab5f1d76a30c7e2db0504a66eb4bf0ed5c323
refactor: unfilter unresponsive events (#44629) * feat: internal -unresponsive event * Reland "refactor: JSify BrowserWindow unresponsive handling" This reverts commit ef7ae78ed4ba019bffdcc8fd7319d39602b59ec4. * fix: emit unresponsive if close not prevented --------- Co-authored-by: Keeley Hammond <vert...
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -37,6 +37,33 @@ BrowserWindow.prototype._init = function (this: BWT) {\n app.emit('browser-window-focus', event, this);\n });\n \n+ let unresponsiveEvent: NodeJS.Timeout | null = null;\n+ const emitUnresponsiveEvent = () => {\n+ unrespon...
2024-11-14T01:59:13
golang/go
51134968050270a08d6a2456d0ea72c8a99b6e96
36086e85f842e8ed2c03be2542a6cc211603abbc
runtime/pprof: skip flaky test TestProfilerStackDepth/heap for now The test has been causing a lot of flakes on the builders. Skip it while I'm debugging it. For #74029 Change-Id: I6a6a696450c23f65bc310a2d0ab61b22dba88f00 Reviewed-on: https://go-review.googlesource.com/c/go/+/712060 TryBot-Bypass: Michael Matloob <m...
[ { "path": "src/runtime/pprof/pprof_test.go", "patch": "@@ -2549,6 +2549,9 @@ func TestProfilerStackDepth(t *testing.T) {\n \n \tfor _, test := range tests {\n \t\tt.Run(test.profiler, func(t *testing.T) {\n+\t\t\tif test.profiler == \"heap\" {\n+\t\t\t\ttestenv.SkipFlaky(t, 74029)\n+\t\t\t}\n \t\t\tvar buf ...
2025-10-15T15:23:59
vercel/next.js
d5262c7286d82e521f312dd3883096cd84c8c0b6
28a14da5010ad3147a06abbabc99a119d009f733
Update authentication.mdx: Fix `Auth0` Link (#85953) The `Auth0` link is broken so I fixed it <!-- 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(...
[ { "path": "docs/01-app/02-guides/authentication.mdx", "patch": "@@ -1624,7 +1624,7 @@ Now that you've learned about authentication in Next.js, here are Next.js-compat\n \n ### Auth Libraries\n \n-- [Auth0](https://auth0.com/docs/quickstart/webapp/nextjs/01-login)\n+- [Auth0](https://auth0.com/docs/quickstar...
2025-11-11T09:09:20
facebook/react
5e83d9ab3b3f88853591dff43cd70ee4e5c90c5d
5dcb009760160c085496e943f76090d98528f971
feat[react-devtools]: add settings to global hook object (#30564) Right now we are patching console 2 times: when hook is installed (before page is loaded) and when backend is connected. Because of this, even if user had `appendComponentStack` setting enabled, all emitted error and warning logs are not going to hav...
[ { "path": "packages/react-devtools-shared/src/backend/agent.js", "patch": "@@ -37,11 +37,9 @@ import type {\n RendererID,\n RendererInterface,\n ConsolePatchSettings,\n+ DevToolsHookSettings,\n } from './types';\n-import type {\n- ComponentFilter,\n- BrowserTheme,\n-} from 'react-devtools-shared/sr...
2024-09-18T16:37:00
electron/electron
0fd16dc9e2a919da2a65cf890865cf4779a57404
a120d87570e4045cec6407c82222bfaa1d476f1b
fix: WCO buttons hidden on Linux in fullscreen (#44621) Closes https://github.com/electron/electron/issues/44569. Fixes an issue where the WCO buttons were hidden on Linux in fullscreen mode but not on Windows or macOS. The Windows behavior is the expected one, so this commit makes the Linux behavior consistent.
[ { "path": "shell/browser/ui/views/opaque_frame_view.cc", "patch": "@@ -255,14 +255,17 @@ void OpaqueFrameView::LayoutWindowControls() {\n buttons_not_shown.push_back(views::FrameButton::kMinimize);\n buttons_not_shown.push_back(views::FrameButton::kClose);\n \n- for (const auto& button : leading_button...
2024-11-13T14:11:58
golang/go
ee5af46172e64eceddb56018de8ea850fe0a6cae
11d3d2f77d8293fe14638e74cbf52d1241b60e78
encoding/json: avoid misleading errors under goexperiment.jsonv2 The jsontext package represents the location of JSON errors using a JSON Pointer (RFC 6901). This uses the JSON type system. Unfortunately the v1 json.UnmarshalTypeError assumes a Go struct-based mechanism for reporting the location of errors (and has h...
[ { "path": "src/encoding/json/v2_decode.go", "patch": "@@ -14,6 +14,7 @@ import (\n \t\"fmt\"\n \t\"reflect\"\n \t\"strconv\"\n+\t\"strings\"\n \n \t\"encoding/json/internal/jsonwire\"\n \t\"encoding/json/jsontext\"\n@@ -119,7 +120,20 @@ type UnmarshalTypeError struct {\n func (e *UnmarshalTypeError) Error()...
2025-10-11T18:57:46
vercel/next.js
28a14da5010ad3147a06abbabc99a119d009f733
015ce9820a5a0c53e455766c45b6af667d36431c
Deployment adapter: fix metadata for "/" route (#85820) Updates cases where `/` isn't normalized fully when interpolating into data paths and adds regression tests. --------- Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com> Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -727,8 +727,7 @@ export async function handleBuildComplete({\n \n // need to add matching .rsc output\n if (isAppPage) {\n- const rscPathname =\n- (output.pathname === '/' ? '/index' : output.path...
2025-11-10T23:42:33
facebook/react
8dfbd16fce9077ab4e5fe85a7b86fa7c97a5ae04
e1c20902c39d1dfe2649185622f2f21b526e2be2
[Fiber] Color Performance Track Entries by Self Time (#30984) Stacked on #30983. This colors each component entry by its self time from light to dark depending on how long it took. If it took longer than a cut off we color it red (the error color). <img width="435" alt="Screenshot 2024-09-16 at 11 48 15 PM" s...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -109,6 +109,7 @@ import {\n popComponentEffectStart,\n componentEffectStartTime,\n componentEffectEndTime,\n+ componentEffectDuration,\n } from './ReactProfilerTimer';\n import {\n logComponentRender,\n@@ -608,6 +609,7 ...
2024-09-17T20:36:10
electron/electron
a120d87570e4045cec6407c82222bfaa1d476f1b
d380cda14a76f5010700b113b9de0bd58bf89b24
fix: add theme data source for devtools. (#44114) * fix: add theme data source for devtools. * chore: add ut. * chore: remove recording histograms * fix: add theme data source for devtools. * chore: separate files * chore: separate files * chore: remove pragma once * chore: fix lint issue.
[ { "path": "chromium_src/BUILD.gn", "patch": "@@ -182,6 +182,7 @@ static_library(\"chrome\") {\n public_deps = [\n \"//chrome/browser:dev_ui_browser_resources\",\n \"//chrome/browser/resources/accessibility:resources\",\n+ \"//chrome/browser/ui/color:color_headers\",\n \"//chrome/browser/ui/...
2024-11-13T12:23:37
golang/go
5a9ef44bc05b937cff2394b5880ecca616cb878e
3765758b96746e202bb52312d4b026085a0f25a1
cmd/compile/internal/devirtualize: fix OCONVNOP assertion Fixes #75863 Change-Id: I1e5a0f3880dcd5f820a5b6f4540c49b16a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/711141 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Lasse Folger <lassefolger@google.com> Auto-Submit: Keith Randall <khr@golan...
[ { "path": "src/cmd/compile/internal/devirtualize/devirtualize.go", "patch": "@@ -223,7 +223,7 @@ func concreteType1(s *State, n ir.Node, seen map[*ir.Name]struct{}) (outT *types\n \t\tswitch n1 := n.(type) {\n \t\tcase *ir.ConvExpr:\n \t\t\tif n1.Op() == ir.OCONVNOP {\n-\t\t\t\tif !n1.Type().IsInterface() |...
2025-10-12T09:15:11
vercel/next.js
1f144f085db9dc3136eeb20a4dfbe74a113ac74d
0baa1f7a9a4d7f2b94944d782885c9e67ed8ea69
Fix Turbopack local font `font-family` declaration (#85913) This fixes #85912, as the logic of injecting the `font-family` property should be mirrored from the Webpack implementation.
[ { "path": "crates/next-core/src/next_font/local/stylesheet.rs", "patch": "@@ -62,11 +62,17 @@ pub(super) async fn build_font_face_definitions(\n };\n let query_str = qstring::QString::from(serde_json::to_string(&query)?.as_str());\n \n+ // Check if `font-family` is explicitly defined ...
2025-11-10T16:29:42
electron/electron
777e54792244b92565eb6bf32fed166217f46de7
c6c430bff1e825ea39e8b9eed75693f3253a059e
fix: segfault when moving WebContentsView between BrowserWindows (#44599) * fix: segfault when moving WebContentsView between BrowserWindows * chore: actually enable fix * fixup segfault when moving WebContentsView between BrowserWindows
[ { "path": "shell/browser/api/electron_api_view.cc", "patch": "@@ -124,6 +124,15 @@ struct Converter<views::FlexAllocationOrder> {\n }\n };\n \n+template <>\n+struct Converter<electron::api::View> {\n+ static bool FromV8(v8::Isolate* isolate,\n+ v8::Local<v8::Value> val,\n+ ...
2024-11-11T23:44:13
golang/go
f6b9d56affb75103507f2b6ed4ffa98ca899b39d
60f6d2f6230c5085ad25a9e3ebdaaae2aefdfe36
crypto/internal/fips140/entropy: fix benign race Fixes #75690 Fixes #75842 Change-Id: I6a6a696420f51f28f48535c34cf347e2cbd4add5 Reviewed-on: https://go-review.googlesource.com/c/go/+/710058 Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Roland Shoemaker <...
[ { "path": "src/crypto/internal/fips140/entropy/entropy.go", "patch": "@@ -123,7 +123,9 @@ func (s *source) Sample() uint8 {\n \t// Perform a few memory accesses in an unpredictable pattern to expose the\n \t// next measurement to as much system noise as possible.\n \tmemory, lcgState := s.memory, s.lcgState...
2025-10-08T11:30:34
nodejs/node
2281a04e5e38f4dda8d95adc40fe69f02605e333
cfd2021c35eafda1e9c46970b2d73662f186694c
inspector: support for worker inspection in chrome devtools Fixes: https://github.com/nodejs/node/issues/56343 PR-URL: https://github.com/nodejs/node/pull/56759 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -1205,6 +1205,17 @@ added: v22.4.0\n \n Enable experimental [`Web Storage`][] support.\n \n+### `--experimental-worker-inspection`\n+\n+<!-- YAML\n+added:\n+ - REPLACEME\n+-->\n+\n+> Stability: 1.1 - Active Development\n+\n+Enable experimental support for the worker...
2025-05-12T13:25:00
vercel/next.js
b6a7714057220561153c7a40152de4a22ae9e8f6
b13493aba9b00442de2beb1b04ccf632db8ed14a
Hoist inner `'use cache'` functions to reduce function allocations (#85904) This PR fixes a slight performance regression introduced in #85519 where inline async function expressions were created for each unique set of arguments passed to a `'use cache'` function. For a function like this: ```js export async functio...
[ { "path": "crates/next-custom-transforms/src/transforms/server_actions.rs", "patch": "@@ -733,8 +733,7 @@ impl<C: Comments> ServerActions<C> {\n }\n \n let cache_name: Atom = self.gen_cache_ident();\n- let cache_ident = private_ident!(Span::dummy_with_cmt(), cache_name.clone());\n- ...
2025-11-10T12:09:59
golang/go
6fd8e88d07b08531a5585aa4fbcc6043d556742f
1abc6b0204ed231311c9bbc53cfab36dc546aa8e
encoding/json/v2: restrict presence of default options Originally, DefaultOptionsV1 and DefaultOptionsV2 represented the full set of all options with specific ones set to true or false. However, there are certain options such as WithIndent or WithMarshalers that are neither v1 or v2 specific. At some point we removed...
[ { "path": "src/encoding/json/internal/jsonopts/options.go", "patch": "@@ -48,16 +48,16 @@ type ArshalValues struct {\n // DefaultOptionsV2 is the set of all options that define default v2 behavior.\n var DefaultOptionsV2 = Struct{\n \tFlags: jsonflags.Flags{\n-\t\tPresence: uint64(jsonflags.AllFlags & ^json...
2025-10-11T18:37:58
nodejs/node
917600c5027a902d482674303ecfe47220663e4d
5f841fb2c8f192766ce4233d47264125cbaa499c
doc: fix typo of file `http.md`, `outgoingMessage.setTimeout` section PR-URL: https://github.com/nodejs/node/pull/58188 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> ...
[ { "path": "doc/api/http.md", "patch": "@@ -3322,13 +3322,13 @@ const server = http.createServer((req, res) => {\n });\n ```\n \n-### `outgoingMessage.setTimeout(msesc[, callback])`\n+### `outgoingMessage.setTimeout(msecs[, callback])`\n \n <!-- YAML\n added: v0.9.12\n -->\n \n-* `msesc` {number}\n+* `msecs`...
2025-05-11T14:53:14
electron/electron
6e3a5daf62314d4de541d64a1098b0bb3a37168c
f9a04012b91539813b937b66c8998b4b068815f7
chore: bump chromium to 132.0.6826.0 (main) (#44584) * chore: bump chromium in DEPS to 132.0.6821.0 * chore: bump chromium in DEPS to 132.0.6822.0 * chore: update patches * chore: bump chromium in DEPS to 132.0.6824.0 * chore: update patches * 5998172: Migrate remaining NOTREACHED()s in chrome/ | https:...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '132.0.6820.0',\n+ '132.0.6824.0',\n 'node_version':\n 'v20.18.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2024-11-09T00:12:42
vercel/next.js
ad93e452a458a27110e7cf5e8272e40d4741b756
4b3ccc13906876eeffbba9ecbaa938bf4327a41c
Fix telemetry event loss on build failures and server shutdown (#85867) ## Problem Telemetry events were not being captured in three scenarios: ### 1. MCP Telemetry Lost on Dev Server Shutdown Two telemetry instances were created during dev server startup. MCP events were recorded to one instance but shutdown flush...
[ { "path": "packages/next/errors.json", "patch": "@@ -905,5 +905,7 @@\n \"904\": \"The file \\\"%s\\\" must export a function, either as a default export or as a named \\\"%s\\\" export.\",\n \"905\": \"Page \\\"%s\\\" cannot use \\\\`export const unstable_prefetch = ...\\\\` without enabling \\\\`cacheC...
2025-11-10T02:58:39
facebook/react
4549be0f846e7df5a4eaabf06369d93bd120271e
7b56a542987890f618eeda4e4906fbf1f1df2213
[Fiber] Optimize enableProfilerCommitHooks by Collecting Elapsed Effect Duration in Module Scope (#30981) Stacked on #30979. The problem with the previous approach is that it recursively walked the tree up to propagate the resulting time from recording a layout effect. Instead, we keep a running count of the ef...
[ { "path": "packages/react-reconciler/src/ReactFiberBeginWork.js", "patch": "@@ -1033,8 +1033,8 @@ function updateProfiler(\n // Reset effect durations for the next eventual effect phase.\n // These are reset during render to allow the DevTools commit hook a chance to read them,\n const sta...
2024-09-17T19:12:16
electron/electron
9bf067dd5a97a8f5bf4dc0bc517afcbbad2b4695
f0d3e4233826dd60bcf3b0224b1e90841932ed55
fix: ftbfs when including simdjson in Node.js (#44567)
[ { "path": "patches/node/.patches", "patch": "@@ -42,3 +42,4 @@ build_restore_clang_as_default_compiler_on_macos.patch\n fix_-wextra-semi_errors_in_nghttp2_helper_h.patch\n fix_remove_harmony-import-assertions_from_node_cc.patch\n win_almost_fix_race_detecting_esrch_in_uv_kill.patch\n+chore_disable_deprecati...
2024-11-05T01:28:44
nodejs/node
5c0687a5b63525b85667d8214979f0918095cecf
a186e075ef355768b623475bf120944415c32c61
deps: V8: backport 1d3362c55396 Original commit message: [float16array] Turn flag on by default Float16Array has shipped in blink since M135. It is unlikely it'll unship by now, so turn the flag on by default. Bug: 42203953 Change-Id: Ibd9de407b8810dd7bcdb46194fe04fc290ff8fb8 Reviewed-on: ht...
[ { "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.15',\n+ 'v8_embedder_string': '-node.16',\n \n ##### V8 defaults for Node.js #####\n...
2025-05-06T21:40:37
golang/go
1abc6b0204ed231311c9bbc53cfab36dc546aa8e
9fdd6904da3d6ef2ed457fada1fb26130213f359
go/types, types2: permit type cycles through type parameter lists Issue #49439 was about a deadlock during type inference inside a type parameter list of a recursive constraint. As a remedy we disallowed recursive type parameter lists. In the meantime we have removed support for type inference for type arguments to g...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -302,6 +302,12 @@ loop:\n \t\t}\n \t}\n \n+\t// Cycles through type parameter lists are ok (go.dev/issue/68162).\n+\t// TODO(gri) if we are happy with this this, remove this flag and simplify code.\n+\tif tparCycle {\n+\t\treturn true\n+\t}\n...
2025-10-13T19:47:42
vercel/next.js
24cfba6b72542364288c4314faa796b3f6de5b8a
2342c9008b2f497829f82976819d18f1af159863
Add Appwrite Sites to supported adapters (#85830) <!-- 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/01-getting-started/17-deploying.mdx", "patch": "@@ -72,6 +72,7 @@ Next.js can be adapted to run on different platforms to support their infrastruc\n \n Refer to each provider's documentation for information on supported Next.js features:\n \n+- [Appwrite Sites](https://appwrite.io/doc...
2025-11-08T17:49:38
facebook/react
1e68a0a3aed9975d2e302ccf1dff0861bf2be706
c8a7cab13f9d496d4b178ba5e95b030ca854aa20
[compiler] Improve handling of refs Summary: This change expands our handling of refs to build an understanding of nested refs within objects and functions that may return refs. It builds a special-purpose type system within the ref analysis that gives a very lightweight structural type to objects and array expression...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts", "patch": "@@ -8,9 +8,11 @@\n import {CompilerError, ErrorSeverity} from '../CompilerError';\n import {\n HIRFunction,\n+ Identifier,\n IdentifierId,\n Place,\n SourceLocation,\n+ getHookKindForT...
2024-09-16T17:53:32
electron/electron
f0d3e4233826dd60bcf3b0224b1e90841932ed55
24dc9ddf5cde0cf5c75655a57889ce20babfaf6a
test: fixup flaky session tests (#44545) test: fixup broken tests in 32-x-y (#44389) * test: fixup broken tests in 32-x-y * test: fixup additional failing test (cherry picked from commit c61bb1654e7abc4b48e09b44b40468ee89c5b2b1)
[ { "path": "spec/api-session-spec.ts", "patch": "@@ -12,7 +12,7 @@ import * as https from 'node:https';\n import * as path from 'node:path';\n import { setTimeout } from 'node:timers/promises';\n \n-import { defer, listen } from './lib/spec-helpers';\n+import { defer, ifit, listen } from './lib/spec-helpers'...
2024-11-04T22:26:19
nodejs/node
a186e075ef355768b623475bf120944415c32c61
c8f82953bb66223efa632531ec39f67073e86766
deps: V8: cherry-pick 4f38995c8295 Original commit message: [explicit-resource-management] Turn flag on by default This feature has shipped since M134 on the blink side, and is highly unlikely to be unshipped now, so flip the flag on. Bug: 42203506 Change-Id: I9554cea721983464b150c0de70b58a4b50f...
[ { "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.14',\n+ 'v8_embedder_string': '-node.15',\n \n ##### V8 defaults for Node.js #####\n...
2025-05-05T17:35:01
golang/go
0e64ee1286c092eca95b3ffcc5917d34f43d4c0f
6bcd97d9f4386528aa85eb3cc27da0ed902de870
encoding/json/v2: report EOF for top-level values in UnmarshalDecode The fully streaming UnmarshalJSONFrom method and UnmarshalFromFunc introduce an edge case where they can encounter EOF in the stream, where it should be reported upstream as EOF rather than ErrUnexpectedEOF or be wrapped within a SemanticError. This...
[ { "path": "src/encoding/json/jsontext/decode.go", "patch": "@@ -792,6 +792,12 @@ func (d *decoderState) CheckNextValue(last bool) error {\n \treturn nil\n }\n \n+// AtEOF reports whether the decoder is at EOF.\n+func (d *decoderState) AtEOF() bool {\n+\t_, err := d.consumeWhitespace(d.prevEnd)\n+\treturn er...
2025-10-11T00:56:04
facebook/react
c8a7cab13f9d496d4b178ba5e95b030ca854aa20
26855e4680dedb21f2c73a069ed691822a242db1
[compiler] Fix issue where second argument of all functions was considered to be a ref ghstack-source-id: 1817f3b816ab5ec013a3b1a6c8a8373a30e0b3a0 Pull Request resolved: https://github.com/facebook/react/pull/30912
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/TypeInference/InferTypes.ts", "patch": "@@ -107,7 +107,7 @@ function equation(left: Type, right: Type): TypeEquation {\n function* generate(\n func: HIRFunction,\n ): Generator<TypeEquation, void, undefined> {\n- if (func.env.fnType === 'Compon...
2024-09-16T17:53:29
vercel/next.js
2342c9008b2f497829f82976819d18f1af159863
f50cd943c67c43be68522fb4fe8e7858a27c12f0
Turbopack: Fix IO concurrency for MacOS (#85861) ### What? The previous default of 256 parallel write operations caused a serious performance problem. For a bigger application this change improves write performance by 5.8x (12.8s -> 2.2s) on MacOS.
[ { "path": "turbopack/crates/turbo-tasks-fs/src/lib.rs", "patch": "@@ -193,21 +193,36 @@ where\n }\n }\n \n-fn create_semaphore() -> tokio::sync::Semaphore {\n+fn number_env_var(name: &'static str) -> Option<usize> {\n+ env::var(name)\n+ .ok()\n+ .filter(|val| !val.is_empty())\n+ ...
2025-11-08T17:30:52
electron/electron
24dc9ddf5cde0cf5c75655a57889ce20babfaf6a
1835c0ab6c7773e48715874457a08fb897dfebf5
fix: remove use of banned std::to_string() (#44514) Use base::NumberToString() instead Xref: https://chromium.googlesource.com/chromium/src/+/main/styleguide/c++/c++-features.md#std_sto_i_l_ul_ll_ull_f_d_ld_to_string_banned
[ { "path": "shell/browser/notifications/win/windows_toast_notification.cc", "patch": "@@ -664,8 +664,8 @@ IFACEMETHODIMP ToastEventHandler::Invoke(\n winui::Notifications::IToastFailedEventArgs* e) {\n HRESULT error;\n e->get_ErrorCode(&error);\n- std::string errorMessage =\n- \"Notification fa...
2024-11-04T21:42:42
nodejs/node
c8f82953bb66223efa632531ec39f67073e86766
12e0b51c538066c76f8e9c55defcbf7881392fc2
deps: V8: cherry-pick 044b9b6f589d Original commit message: [explicit-resource-management] disallow using in switch cases This CL disallows `using` and `await using` in switch cases. This was a normative change that got consensus in TC39 meetings: https://github.com/rbuckton/ecma262/pull/14 Bug:...
[ { "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.13',\n+ 'v8_embedder_string': '-node.14',\n \n ##### V8 defaults for Node.js #####\n...
2025-05-01T23:57:26
facebook/react
26855e4680dedb21f2c73a069ed691822a242db1
9f4e4611ead28d34f7f598c9bd12424cf68f5781
[react-native] Fix misleading crash when view config is not found (#30970) ## Summary When a view config can not be found, it currently errors with `TypeError: Cannot read property 'bubblingEventTypes' of null`. Instead invariant at the correct location and prevent further processing of the null viewConfig to im...
[ { "path": "scripts/rollup/shims/react-native/ReactNativeViewConfigRegistry.js", "patch": "@@ -93,8 +93,8 @@ export function register(name: string, callback: () => ViewConfig): string {\n * This configuration will be lazy-loaded from UIManager.\n */\n export function get(name: string): ViewConfig {\n- let...
2024-09-16T16:51:00
golang/go
6bcd97d9f4386528aa85eb3cc27da0ed902de870
1cd71689f2ed8f07031a0cc58fc3586ca501839f
all: replace calls to errors.As with errors.AsType This change replaces most occurrences (in code as well as in comments) of errors.As with errors.AsType. It leaves the errors package and vendored code untouched. Change-Id: I3bde73f318a0b408bdb8f5a251494af15a13118a GitHub-Last-Rev: 8aaaa36a5a12d2a6a90c6d51680464e1a31...
[ { "path": "src/cmd/compile/internal/types2/api_test.go", "patch": "@@ -2468,8 +2468,8 @@ func TestInstantiateErrors(t *testing.T) {\n \t\t\tt.Fatalf(\"Instantiate(%v, %v) returned nil error, want non-nil\", T, test.targs)\n \t\t}\n \n-\t\tvar argErr *ArgumentError\n-\t\tif !errors.As(err, &argErr) {\n+\t\ta...
2025-10-01T20:08:18
vercel/next.js
d358c547c94429c05dcc7a6964684236d8b36dc4
9b9d6e1edd26f5f47c8f781908d68f76a493cbaf
Update deploy manifest (#85924) The filter condition on the existing tests was incorrect so updated those and added flakey prefetch ones from https://github.com/vercel/next.js/actions/runs/19184159066/job/54847336252 https://github.com/vercel/next.js/actions/runs/19184159066/job/54847336291
[ { "path": "test/deploy-tests-manifest.json", "patch": "@@ -1,13 +1,23 @@\n {\n \"version\": 2,\n \"suites\": {\n+ \"test/e2e/app-dir/app-client-cache/client-cache.defaults.test.ts\": {\n+ \"failed\": [\n+ \"app dir client cache semantics (default semantics) prefetch={true} should re-use t...
2025-11-08T02:37:12
facebook/react
9f4e4611ead28d34f7f598c9bd12424cf68f5781
f2df5694f2be141954f22618fd3ad035203241a3
fix: add Error prefix to Error objects names (#30969) This fixes printing Error objects in Chrome DevTools. I've observed that Chrome DevTools is not source mapping and linkifying URLs, when was running this on larger apps. Chrome DevTools talks to V8 via Chrome DevTools protocol, every object has a corresponding...
[ { "path": "packages/react-devtools-shared/src/backend/console.js", "patch": "@@ -229,9 +229,19 @@ export function patch({\n // In Chromium, only the stack property is printed but in Firefox the <name>:<message>\n // gets printed so to make the colon make sense, we nam...
2024-09-16T16:43:40
golang/go
1cd71689f2ed8f07031a0cc58fc3586ca501839f
8aa1efa223d7bd39faaabdfbf85882ed3942a6f4
crypto/x509: rework fix for CVE-2025-58187 In CL 709854 we enabled strict validation for a number of properties of domain names (and their constraints). This caused significant breakage, since we didn't previously disallow the creation of certificates which contained these malformed domains. Rollback a number of the ...
[ { "path": "src/crypto/x509/name_constraints_test.go", "patch": "@@ -1456,7 +1456,63 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\texpectedError: \"incompatible key usage\",\n \t},\n \n-\t// #77: if several EKUs are requested, satisfying any of them is sufficient.\n+\t// An invalid DNS SAN shoul...
2025-10-09T20:35:24
vercel/next.js
f7d262902ac9f7581a9d6440535573b308783fbe
f5f2660cba878057be45c2ac5aadba5a4166b968
fix isDynamicRSC condition when deployed (#85919) Next.js relies on on the Resume Data Cache to prevent tearing between the statically prefetchable parts of the UI by seeding the resume with the same cache as the revalidation/build. The RDC data is stashed in the postponed state which is attached to all of the differe...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -267,9 +267,16 @@ export async function handler(\n // If PPR is enabled, and this is a RSC request (but not a prefetch), then\n // we can use this fact to only generate the flight data for the request\n // because we can't cache t...
2025-11-08T01:34:46
rust-lang/rust
43e3fd19443dbce57b8594693bed39a4b639aca4
c7b206bba4434ed928e9615f31082a9ef3f67c27
rustdoc-json: fix incorrect documentation for VariantKind::Struct
[ { "path": "src/rustdoc-json-types/lib.rs", "patch": "@@ -856,10 +856,10 @@ pub enum VariantKind {\n /// }\n /// ```\n Struct {\n- /// The list of variants in the enum.\n- /// All of the corresponding [`Item`]s are of kind [`ItemEnum::Variant`].\n+ /// The list of named field...
2026-03-08T15:41:37
electron/electron
c63d0d61e71f12d29efb1df885a0883ae76bb164
e3f2ca1425b3e873287f4dcabd46af1f553716bf
chore: bump Node.js to v22.9.0 (#44281) * chore: bump Node.js to v22.9.0 * build: drop base64 dep in GN build https://github.com/nodejs/node/pull/52856 * build,tools: make addons tests work with GN https://github.com/nodejs/node/pull/50737 * fs: add fast api for InternalModuleStat https://github.com/...
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -176,7 +176,7 @@ jobs:\n if [ \"${{ inputs.is-asan }}\" == \"true\" ]; then\n cd ..\n ASAN_SYMBOLIZE=\"$PWD/tools/valgrind/asan/asan_symbolize.py --executable-path=$PWD/out/Default/electron\"\n- ...
2024-11-04T18:41:56
nodejs/node
e4e80c5463baea8d8881f927da3002f03ef67cfd
508cd0f275ea99ebbaeb7019fea118f80ed445c8
src: fix module buffer allocation PR-URL: https://github.com/nodejs/node/pull/57738 Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/debug_utils.cc", "patch": "@@ -471,7 +471,7 @@ std::vector<std::string> NativeSymbolDebuggingContext::GetLoadedLibraries() {\n DWORD size_2 = 0;\n // First call to get the size of module array needed\n if (EnumProcessModules(process_handle, nullptr, 0, &size_1)) {\n- MallocedBuffer<H...
2025-05-09T19:41:23
golang/go
8aa1efa223d7bd39faaabdfbf85882ed3942a6f4
b497a29d25b0f6f29bedaa92ac1d40a1ee5c0956
cmd/link: in TestFallocate, only check number of blocks on Darwin The number-of-blocks check was introduced when fixing a Darwin- specific bug. On Darwin, the file allocation syscall is a bit tricky. On Linux and BSDs, it is more straightforward and unlikely to go wrong. The test itself, on the other hand, is less re...
[ { "path": "src/cmd/link/internal/ld/fallocate_test.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"runtime\"\n \t\"syscall\"\n \t\"testing\"\n )\n@@ -53,12 +54,24 @@ func TestFallocate(t *testing.T) {\n \t\tif got := stat.Size(); got != sz {\n \t\t\tt.Errorf(\...
2025-10-11T14:36:49
vercel/next.js
f5f2660cba878057be45c2ac5aadba5a4166b968
6bed4dc088f0c4a6acaf4d748907247e36ae198e
fix: support root span attributes with a custom server (#85521) <!-- 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 ...
[ { "path": "packages/next/src/server/lib/trace/tracer.ts", "patch": "@@ -287,14 +287,18 @@ class NextTracerImpl implements NextTracer {\n let spanContext = this.getSpanContext(\n options?.parentSpan ?? this.getActiveScopeSpan()\n )\n- let isRootSpan = false\n \n if (!spanContext) {\n ...
2025-11-07T23:43:26
facebook/react
8cf64620c7dd4ec7e72aa16ee2d5f15eb3420b92
fc5ef50da8e975a569622d477f1fed54cb8b193d
fix[rdt/fiber/renderer.js]: getCurrentFiber can be injected as null (#30968) In production artifacts for `18.x.x` `getCurrentFiber` can actually be injected as `null`. Updated `getComponentStack` and `onErrorOrWarning` implementations to support this. ![Screenshot 2024-09-16 at 10 52 00](https://github.com/user-...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -1078,7 +1078,7 @@ export function attach(\n function getComponentStack(\n topFrame: Error,\n ): null | {enableOwnerStacks: boolean, componentStack: string} {\n- if (getCurrentFiber === undefined) {\n+ if (g...
2024-09-16T13:47:57
rust-lang/rust
bf4004a24a352182d784db642a8e43b8c1e05396
22a111ad9af00e08c7d59ce8afd7faf930dd32ca
Update conventions for TODO and FIXME comments
[ { "path": "src/doc/rustc-dev-guide/src/conventions.md", "patch": "@@ -139,6 +139,8 @@ if foo {\n }\n ```\n \n+If you want to leave a note in the codebase, use `// FIXME` instead.\n+\n <a id=\"cio\"></a>\n \n ## Using crates from crates.io", "additions": 2, "deletions": 0, "language": "Markdown" ...
2026-03-08T01:37:47
electron/electron
f5bdbdb1e84e029028fb4d55714e40166ceab5ee
48801be8e9e3b898635e55abb0b596c83bb9c17a
refactor: more inline constexpr string view (#44498) * chore: remove unused electron::kHidProductIdKey * refactor: make electron::kHidDeviceNameKey inline constexpr std::string_view refactor: make electron::kHidGuidKey inline constexpr std::string_view * refactor: make serial_chooser_context keys inline const...
[ { "path": "filenames.gni", "patch": "@@ -675,7 +675,6 @@ filenames = {\n \"shell/common/node_includes.h\",\n \"shell/common/node_util.cc\",\n \"shell/common/node_util.h\",\n- \"shell/common/options_switches.cc\",\n \"shell/common/options_switches.h\",\n \"shell/common/platform_util.cc...
2024-11-04T18:27:49
nodejs/node
508cd0f275ea99ebbaeb7019fea118f80ed445c8
264cad75ce08dabb6ddc8cc56cc70c9ba3447447
test: deflake test-http2-client-socket-destroy The socket can be destroyed by the other peer while data is still being written. Add a listener for the `'error'` event. PR-URL: https://github.com/nodejs/node/pull/58212 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com...
[ { "path": "test/parallel/test-http2-client-socket-destroy.js", "patch": "@@ -15,6 +15,7 @@ const server = h2.createServer();\n \n // We use the lower-level API here\n server.on('stream', common.mustCall((stream) => {\n+ stream.on('error', () => {});\n stream.on('aborted', common.mustCall());\n stream.o...
2025-05-09T19:14:23
golang/go
b497a29d25b0f6f29bedaa92ac1d40a1ee5c0956
48bb7a61147c397d0f45c10bc21ba12fa9cec0ad
encoding/json: fix regression in quoted numbers under goexperiment.jsonv2 The legacy parsing of quoted numbers in v1 was according to the Go grammar for a number, rather than the JSON grammar for a number. The former is a superset of the latter. This is a historical mistake, but usages exist that depend on it. We alr...
[ { "path": "src/encoding/json/decode_test.go", "patch": "@@ -1237,6 +1237,62 @@ var unmarshalTests = []struct {\n \t\tout: (chan int)(nil),\n \t\terr: &UnmarshalTypeError{Value: \"number\", Type: reflect.TypeFor[chan int](), Offset: 1},\n \t},\n+\n+\t// #75619\n+\t{\n+\t\tCaseName: Name(\"QuotedInt...
2025-10-06T19:56:29
vercel/next.js
1752d79c59c7f36a3668323bdf6b7eb2ac2ff5b0
f09304af7c64c9bebd517151b2de97ec7252bcfd
fix: skip collecting metadata for app-error in webpack (#85892)
[ { "path": "packages/next/src/build/webpack/loaders/next-app-loader/index.ts", "patch": "@@ -38,6 +38,7 @@ import { PARALLEL_ROUTE_DEFAULT_PATH } from '../../../../client/components/built\n import type { Compilation } from 'webpack'\n import { createAppRouteCode } from './create-app-route-code'\n import { Mi...
2025-11-07T21:52:06
facebook/react
b75cc078c5fda0d57135523a7a2f4e8d1536472f
3d95c43b8967d4dda1ec9a22f0d9ea4999fee8b8
Fix nodeName to UPPERCASE in insertStylesheetIntoRoot (#28255) ## Summary <!-- Explain the **motivation** for making this change. What existing problem does the pull request solve? --> <img width="518" alt="image" src="https://github.com/facebook/react/assets/18693190/6d12df76-7dae-403b-b486-4940992abe8d"> ...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -3520,7 +3520,7 @@ function insertStylesheetIntoRoot(\n for (let i = 0; i < nodes.length; i++) {\n const node = nodes[i];\n if (\n- node.nodeName === 'link' ||\n+ node.nodeName === 'LINK' ||...
2024-09-14T15:18:27
rust-lang/rust
201759058d3e5584a366dabf998faaba96b0ce11
9450d567b990877d6520db93c74ca4a37d9d76d7
Fix ICE when using the `min_generic_const_args` incomplete feature
[ { "path": "clippy_utils/src/consts.rs", "patch": "@@ -845,8 +845,13 @@ impl<'tcx> ConstEvalCtxt<'tcx> {\n {\n did\n },\n- _ if let Res::Def(DefKind::Const { .. } | DefKind::AssocConst { .. }, did) =\n- self.typeck.qpath_res(qpath, id) =>\n+ ...
2026-03-08T10:16:26
nodejs/node
e532c861219f8e9d6e598ced700a3fc79fc711ad
e0766f9a73c5b9137bb8a92fb922c20830e76755
src: remove overzealous tcsetattr error check Node calls tcsetattr on exit to reset the tty to its state on program start. Good idea in general but tcsetattr can fail for a number of reasons and since there really isn't anything we can do about it at that point, simply ignore the error instead of aborting with an insc...
[ { "path": "src/node.cc", "patch": "@@ -712,9 +712,11 @@ void ResetStdio() {\n while (err == -1 && errno == EINTR); // NOLINT\n CHECK_EQ(0, pthread_sigmask(SIG_UNBLOCK, &sa, nullptr));\n \n- // Normally we expect err == 0. But if macOS App Sandbox is enabled,\n- // tcsetattr will fail ...
2025-05-08T22:38:35
facebook/react
6774caa37973e3e26d60f100971e5e785fd12235
5deb78223a269a6cb1706da8ec6aad8c007cab03
[Flight] properly track pendingChunks when changing environment names (#30958) When the environment name changes for a chunk we issue a new debug chunk which updates the environment name. This chunk was not beign included in the pendingChunks count so the count was off when flushing
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -3813,6 +3813,7 @@ function retryTask(request: Request, task: Task): void {\n if (__DEV__) {\n const currentEnv = (0, request.environmentName)();\n if (currentEnv !== task.environmentName) {\n+ request.pe...
2024-09-13T22:55:42
rust-lang/rust
d7490855d537af3685984f33d278639c12fac71c
052b9c23daccef254010e43d6c4d0a5459caec5b
Inline and simplify some code for saving incremental data to disk Main changes: - Inline `encode_query_cache` and `TyCtxt::serialize_query_result_cache` - Pull value promotion out of `OnDiskCache::drop_serialized_data` - Panic if `on_disk_cache` is None in an incremental-only path
[ { "path": "compiler/rustc_incremental/src/persist/save.rs", "patch": "@@ -8,7 +8,7 @@ use rustc_middle::dep_graph::{\n };\n use rustc_middle::ty::TyCtxt;\n use rustc_serialize::Encodable as RustcEncodable;\n-use rustc_serialize::opaque::{FileEncodeResult, FileEncoder};\n+use rustc_serialize::opaque::FileEnc...
2026-03-08T04:37:15
vercel/next.js
db5528317e24e0316e0497716976a715a325ca09
326c6722bdeeec42ba81bf5c8392863ea69d862b
Turbopack: remove the streaming hack for improved stability (#85858) ### What? Remove the hack we use for streaming in turbo-tasks. We don't use the stream capability and the streaming hack causes some problems. fixes `Item already exists` error Closes https://github.com/vercel/next.js/issues/85833
[ { "path": "crates/next-core/src/next_font/google/mod.rs", "patch": "@@ -8,7 +8,6 @@ use rustc_hash::FxHashMap;\n use serde::{Deserialize, Serialize};\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{Completion, FxIndexMap, ResolvedVc, Vc};\n-use turbo_tasks_bytes::stream::SingleValue;\n use turbo_task...
2025-11-07T09:07:07
golang/go
48bb7a61147c397d0f45c10bc21ba12fa9cec0ad
e8a53538b473f1a7a92602675eda2d34f3887611
cmd/compile: repair bisection behavior for float-to-unsigned conversion My stab at a bisect-reproducer failed, but I verified that it fixed the problem described in the issue. Updates #75834 Change-Id: I9e0dfacd2bbd22cbc557e144920ee3417a48088c Reviewed-on: https://go-review.googlesource.com/c/go/+/710997 LUCI-TryBot...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -2865,7 +2865,19 @@ func (s *state) conv(n ir.Node, v *ssa.Value, ft, tt *types.Type) *ssa.Value {\n \t}\n \n \tif ft.IsFloat() || tt.IsFloat() {\n-\t\tconv, ok := fpConvOpToSSA[twoTypes{s.concreteEtype(ft), s.concreteEtype(tt)}]\n+\t\tcft, ct...
2025-10-10T21:08:20
electron/electron
48801be8e9e3b898635e55abb0b596c83bb9c17a
d9a9d5b8fe30ee0a9539d9e546f6d51c62c957b8
chore: bump chromium to 132.0.6807.0 (main) (#44360) * chore: bump chromium in DEPS to 132.0.6791.0 * 5804481: [UI] Migrate remaining clients of `MenuSourceType` https://chromium-review.googlesource.com/c/chromium/src/+/5804481 * chore: try revert PA CL * chore: bump chromium in DEPS to 132.0.6793.0 * c...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '132.0.6789.0',\n+ '132.0.6807.0',\n 'node_version':\n 'v20.18.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2024-11-04T14:10:00
rust-lang/rust
e4e8ae7660240d32b79f323066c4e10c9b68aecd
901cb4cf4006888dc69d95666886960c31e2c75a
fix: qualify NormalizesTo and CoercePredicate in ir_print debug output
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/next_solver/ir_print.rs", "patch": "@@ -188,7 +188,7 @@ impl<'db> IrPrint<ty::NormalizesTo<Self>> for DbInterner<'db> {\n t: &ty::NormalizesTo<Self>,\n fmt: &mut std::fmt::Formatter<'_>,\n ) -> std::fmt::Result {\n- write!(fmt, ...
2026-03-08T05:03:05
facebook/react
d9c4920e8b3fff3d3da24d14adf7ac884aee55b2
d3d4d3a46b014ab0f6edc443c19fcdba09105f20
fix: restore selection should consider the window of the container (#30951) ## Summary Fixes #30864 Before this PR the active elemen was always taken from the global `window`. This is incorrect if the renderer is in one window rendering into a container element in another window. The changes in this PR adds...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -325,7 +325,7 @@ export function getPublicInstance(instance: Instance): Instance {\n \n export function prepareForCommit(containerInfo: Container): Object | null {\n eventsEnabled = ReactBrowserEventEmitterIsEnabled();...
2024-09-13T20:29:40
nodejs/node
e0766f9a73c5b9137bb8a92fb922c20830e76755
b849ed30ebd4a23d857bd493cd0ac60046381808
module: handle instantiated async module jobs in require(esm) When require(esm) encounters a cached module job that is instantiated but not yet evaluated, run the evaluation. This catches an edge case previously missed in https://github.com/nodejs/node/pull/57187. PR-URL: https://github.com/nodejs/node/pull/58067 Fix...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -386,7 +386,7 @@ class ModuleLoader {\n throw new ERR_REQUIRE_ASYNC_MODULE(filename, parentFilename);\n }\n const status = job.module.getStatus();\n- debug('Module status', filename, status);\n+ debug('Module status',...
2025-05-08T20:10:32
vercel/next.js
6434035f8de1d04b861cda660730d510d6e83d86
bfe26808bed729c494c8fa180ff0022b4dcf35f9
sort dependencies for smaller diffs (#82291) Fixes #82290 Co-authored-by: Steven <steven@ceriously.com>
[ { "path": "packages/create-next-app/templates/index.ts", "patch": "@@ -15,6 +15,15 @@ import { Bundler, GetTemplateFileArgs, InstallTemplateArgs } from \"./types\";\n // Do not rename or format. sync-react script relies on this line.\n // prettier-ignore\n const nextjsReactPeerVersion = \"19.2.0\";\n+functi...
2025-11-06T14:44:34
golang/go
e8a53538b473f1a7a92602675eda2d34f3887611
e3be2d1b2b68d960398a343805f77052d5decb22
runtime: fail TestGoroutineLeakProfile on data race Some of the programs in testdata/testgoroutineleakprofile have data races because they were taken from a corpus that showcases general Go concurrency bugs, not just leaked goroutines. This causes some flakiness as tests might fail due to, for example, a concurrent m...
[ { "path": "src/runtime/goroutineleakprofile_test.go", "patch": "@@ -487,7 +487,7 @@ func TestGoroutineLeakProfile(t *testing.T) {\n \ttestCases = append(testCases, patternTestCases...)\n \n \t// Test cases must not panic or cause fatal exceptions.\n-\tfailStates := regexp.MustCompile(`fatal|panic`)\n+\tfail...
2025-10-09T20:58:34
electron/electron
7fea537fbf959c3527b0404d291ea16c21ac0b09
bc6c7bd757a23ccd13a292c92b40c5760398f69e
docs: fix apostrophe typo "Electrons" -> "Electron's" (#44516) s/Electrons/Electron's/
[ { "path": "docs/api/web-frame.md", "patch": "@@ -182,7 +182,7 @@ dispatch errors of isolated worlds to foreign worlds.\n \n ### `webFrame.setIsolatedWorldInfo(worldId, info)`\n \n-* `worldId` Integer - The ID of the world to run the javascript in, `0` is the default world, `999` is the world used by Electro...
2024-11-02T20:52:22
facebook/react
d3d4d3a46b014ab0f6edc443c19fcdba09105f20
633a0fe536febefa02698db124b7265a3fde55e1
Call cleanup of insertion effects when hidden (#30954) Insertion effects do not unmount when a subtree is removed while offscreen. Current behavior for an insertion effect is if the component goes - *visible -> removed:* calls insertion effect cleanup - *visible -> offscreen -> removed:* insertion effect clean...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -40,6 +40,7 @@ import type {\n import {\n alwaysThrottleRetries,\n enableCreateEventHandleAPI,\n+ enableHiddenSubtreeInsertionEffectCleanup,\n enablePersistedModeClonedFlag,\n enableProfilerTimer,\n enableProfilerComm...
2024-09-13T20:18:14
golang/go
e3be2d1b2b68d960398a343805f77052d5decb22
aced4c79a2b2c60e464410cec1e5378d1011fa18
net/url: disallow raw IPv6 addresses in host RFC 3986 requires square brackets around IPv6 addresses. Parse's acceptance of raw IPv6 addresses is non compliant, and complicates splitting out a port. Fixes #31024 Fixes #75223 Change-Id: I477dc420a7441cb33156627dbd5e46d88c677f1e Reviewed-on: https://go-review.googleso...
[ { "path": "src/net/url/url.go", "patch": "@@ -698,7 +698,9 @@ func parseHost(host string) (string, error) {\n \t\t\treturn \"\", errors.New(\"invalid IP-literal\")\n \t\t}\n \t\treturn \"[\" + unescapedHostname + \"]\" + unescapedColonPort, nil\n-\t} else if i := strings.LastIndex(host, \":\"); i != -1 {\n+...
2025-10-09T00:56:09
vercel/next.js
ed41ac1a74305c97d281229696ac069556f020f9
d787abba606eec89df1b90f440c57923d7950717
chore: upgrade rspack 1.6.0 (#84210) 1. Fixed the incremental update bug in buildChunkGraph. 2. Fixed a bug in Rspack's built-in CssChunkingPlugin. For detailed release information, please see https://github.com/web-infra-dev/rspack/releases. Note: All the faulty Rspack test cases on GitHub, from what I can see, eit...
[ { "path": "package.json", "patch": "@@ -142,7 +142,7 @@\n \"@next/third-parties\": \"workspace:*\",\n \"@opentelemetry/api\": \"1.4.1\",\n \"@picocss/pico\": \"1.5.10\",\n- \"@rspack/core\": \"1.5.0\",\n+ \"@rspack/core\": \"1.6.0\",\n \"@slack/web-api\": \"7.9.1\",\n \"@swc/cli\":...
2025-11-06T01:29:04
nodejs/node
8ccfcb5adc08befcf69969c2a9ccca83ec79ede1
e38ce27f3ca0a65f68a31cedd984cddb927d4002
lib: fix sourcemaps with ts module mocking PR-URL: https://github.com/nodejs/node/pull/58193 Fixes: https://github.com/nodejs/node/issues/58119 Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Chemi Atlow <ch...
[ { "path": "lib/internal/test_runner/coverage.js", "patch": "@@ -408,6 +408,10 @@ class TestCoverage {\n }\n const mappedStartOffset = this.entryToOffset(startEntry, mappedLines);\n const mappedEndOffset = this.entryToOffset(endEntry, mappedLines) + 1;\n+ if (mappedStar...
2025-05-08T15:14:22
electron/electron
2081f771e4181a5a7db8a59c85e6e966820b9017
15151c68533f5d8d1c9b57dbd7953e805f7719c9
docs: add custom titlebar example (#43693) * docs: add custom titlebar example * docs: add links and other small edits * docs: add panel window docs * docs: remove panel example * docs: specify expected emphasis style * docs: responding to feedback * docs: fix section names in links * docs: rework...
[ { "path": ".markdownlint-cli2.jsonc", "patch": "@@ -5,6 +5,9 @@\n \"autolink\": false,\n \"shortcut\": false\n },\n+ \"MD049\": {\n+ \"style\": \"underscore\"\n+ },\n \"no-angle-brackets\": true,\n \"no-curly-braces\": true,\n \"no-inline-html\": {", "additions": 3...
2024-11-01T15:04:37
facebook/react
633a0fe536febefa02698db124b7265a3fde55e1
94e4acaa1477e65cac02ba86058cde0afe4c8f1f
[compiler] Factor out function effects from reference effects Summary: This PR performs a major refactor of InferReferenceEffects to separate out the work on marking places with Effects from inferring FunctionEffects. The behavior should be identical after this change (see [internal sync](https://www.internalfb.com/in...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferFunctionEffects.ts", "patch": "@@ -0,0 +1,335 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this...
2024-09-13T19:38:17
golang/go
aced4c79a2b2c60e464410cec1e5378d1011fa18
584a89fe7455470b09643b30bdc3cc55bb75a552
net/http: strip request body headers on POST to GET redirects According to WHATWG Fetch, when the body is dropped in a redirect, headers that describe the body should also be dropped. https://fetch.spec.whatwg.org/#http-redirect-fetch Fixes #57273 Change-Id: I84598f69608e95c1b556ea0ce5953ed43bf2d824 Reviewed-on: htt...
[ { "path": "src/net/http/client.go", "patch": "@@ -690,8 +690,7 @@ func (c *Client) do(req *Request) (retres *Response, reterr error) {\n \t\t\t\t\tstripSensitiveHeaders = true\n \t\t\t\t}\n \t\t\t}\n-\t\t\tcopyHeaders(req, stripSensitiveHeaders)\n-\n+\t\t\tcopyHeaders(req, stripSensitiveHeaders, !includeBod...
2025-10-09T01:26:02
vercel/next.js
4bf134433344c57df0ad23a0e7bc81b0a930e990
5080ce5383fc5eab3cd7e8b0e1c21cef763d6391
Turbopack: chore: Remove dead experimental.ppr struct field (#85792) - `experimental.ppr` was replaced with `cacheComponents`. - It's still in the zod and TS type schemas, I think for our error messages on the Next.js side, but Turbopack only needs to know about the fields that Turbopack cares about. Serde silently ig...
[ { "path": "crates/next-core/src/next_config.rs", "patch": "@@ -863,9 +863,6 @@ pub struct ExperimentalConfig {\n /// Automatically apply the \"modularize_imports\" optimization to imports of\n /// the specified packages.\n optimize_package_imports: Option<Vec<RcStr>>,\n- /// Using this featur...
2025-11-05T17:27:15
nodejs/node
5f252a45bc4db17b1ba41a747a2dc1a63ed7dbae
0050addb1fe6c0bec13c7b2ff7c5dfe8dbea3244
test: skip test-buffer-tostring-rangeerror when low on memory This has shown up as RangeError: Array buffer allocation failed and it should be totally fine to skip this test in case the memory is low. PR-URL: https://github.com/nodejs/node/pull/58142 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaë...
[ { "path": "test/parallel/test-buffer-tostring-rangeerror.js", "patch": "@@ -1,10 +1,15 @@\n 'use strict';\n-require('../common');\n+\n+const common = require('../common');\n \n // This test ensures that Node.js throws an Error when trying to convert a\n // large buffer into a string.\n // Regression test fo...
2025-05-07T16:28:20
facebook/react
94e4acaa1477e65cac02ba86058cde0afe4c8f1f
206df66e70652e85711c3177ce1a0459609a7771
[Fiber] Set profiler values to doubles (#30942) At some point this trick was added to initialize the value first to NaN and then replace them with zeros and negative ones. This is to address the issue noted in https://github.com/facebook/react/issues/14365 where these hidden classes can be initialized to SMIs at...
[ { "path": "packages/react-reconciler/src/ReactFiber.js", "patch": "@@ -187,18 +187,11 @@ function FiberNode(\n // Learn more about this here:\n // https://github.com/facebook/react/issues/14365\n // https://bugs.chromium.org/p/v8/issues/detail?id=8538\n- this.actualDuration = Number.NaN;\n- ...
2024-09-13T16:27:00
electron/electron
15151c68533f5d8d1c9b57dbd7953e805f7719c9
8be4ae4babc88f94577463ba89902f3f680882ad
fix: EventSource undefined in Renderer/Worker (#44475)
[ { "path": "lib/node/init.ts", "patch": "@@ -6,7 +6,7 @@ wrapFsWithAsar(require('fs'));\n \n // See ElectronRendererClient::DidCreateScriptContext.\n if ((globalThis as any).blinkfetch) {\n- const keys = ['fetch', 'Response', 'FormData', 'Request', 'Headers'];\n+ const keys = ['fetch', 'Response', 'FormDat...
2024-10-31T19:24:44
golang/go
69e82796322bbff60b522534a8a6eacb2bf1ebba
6f4c63ba63fdec6e4a42e2e19ac71937973dedef
net/http: set cookie host to Request.Host when available When both Request.URL and Request.Host are set, the host in URL is used for connecting at the transport level, while Host is used for the request host line. Cookies should be set for the request, not the underlying connection destination. Fixes #38988 Change-I...
[ { "path": "src/net/http/client.go", "patch": "@@ -172,8 +172,13 @@ func refererForURL(lastReq, newReq *url.URL, explicitRef string) string {\n \n // didTimeout is non-nil only if err != nil.\n func (c *Client) send(req *Request, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {\n+\tc...
2025-10-08T21:33:24
vercel/next.js
937a3246f214f5c7f648d90ff4df6e86dc982790
1226b5352af4fb2b855effb21440c7a2e3d6d76c
Resolve request ID confusion (#85809) Setting the cache status for a page in dev mode is a sequential operation that only requires the HTML request ID to identify WebSocket clients across different browser tabs/windows. This is different from connecting the React debug channel (after which the cache status handling wa...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -792,7 +792,7 @@ async function generateDynamicFlightRenderResultWithStagesInDev(\n // Before we kick off the render, we set the cache status back to it's initial state\n // in case a previous render bypassed the cache.\n ...
2025-11-05T14:57:09
nodejs/node
4bfcad1ac5da14d4d47d04ae6121455d6c8a27a1
d93cff5af33c54ef552e7dc5407bbd58aeb49172
Revert "watch: fix watch args not being properly filtered" This reverts commit 4acb85403950320773352ab127bee9fc85818153. PR-URL: https://github.com/nodejs/node/pull/58190 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Edy Silva <edigleyssonsi...
[ { "path": "lib/internal/main/watch_mode.js", "patch": "@@ -43,26 +43,11 @@ const argsWithoutWatchOptions = [];\n \n for (let i = 0; i < process.execArgv.length; i++) {\n const arg = process.execArgv[i];\n- if (StringPrototypeStartsWith(arg, '--watch=')) {\n- continue;\n- }\n- if (arg === '--watch') ...
2025-05-06T11:39:24
facebook/react
206df66e70652e85711c3177ce1a0459609a7771
5ac4034e14a72c0edf602585c10fd2725fb376c5
[compiler][rewrite] PropagateScopeDeps hir rewrite Resubmission of #30079 -- core logic unchanged, but needed to rebase past #30573 ### Quick background #### Temporaries The compiler currently treats temporaries and named variables (e.g. `x`) differently in this pass. - named variables may be reassigned (in fact, si...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -101,6 +101,7 @@ import {propagatePhiTypes} from '../TypeInference/PropagatePhiTypes';\n import {lowerContextAccess} from '../Optimization/LowerContextAccess';\n import {validateNoSetStateInPassiveEffects} fro...
2024-09-12T20:59:40
electron/electron
31f8e7553b0f01bc3e18fd0826533e619ecb0ade
7cdf1a01b800f6270c1fce1b7b45522e0e0ed79b
fix: flaky utility and BrowserView tests (#44451) * fix: flake wait for crash with specific serviceName * fix: flake when unrelated WebContents exists during BrowserView tests * fix: wait for crash before forking * use name
[ { "path": "spec/api-browser-view-spec.ts", "patch": "@@ -1,4 +1,4 @@\n-import { BrowserView, BrowserWindow, screen, webContents } from 'electron/main';\n+import { BrowserView, BrowserWindow, screen, session, webContents } from 'electron/main';\n \n import { expect } from 'chai';\n \n@@ -11,24 +11,29 @@ impo...
2024-10-31T01:29:01
rust-lang/rust
d4503b017e701a61fa985d7b8dff45fb285b5295
bea3803300c5d3d4b55d26385fd8612a51afc9bb
Overhaul `ensure_ok`. `ensure_ok` provides a special, more efficient way of calling a query when its return value isn't needed. But there is a complication: if the query is marked with the `return_result_from_ensure_ok` modifier, then it will return `Result<(), ErrorGuaranteed`. This is clunky and feels tacked on. It'...
[ { "path": "compiler/rustc_borrowck/src/diagnostics/move_errors.rs", "patch": "@@ -294,7 +294,7 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n \n // Avoid bogus move errors because of an incoherent `Copy` impl.\n self.infcx.type_implements_trait(copy_def_id, [ty], self.infcx.para...
2026-03-03T20:22:50
golang/go
6f4c63ba63fdec6e4a42e2e19ac71937973dedef
955a5a0dc5dd68ed89200a08f17590c0a94c1e09
cmd/go: unify "go fix" and "go vet" This change unifies the fix and vet subcommands; they use the same run function, action graph, and external tool (-vettool for go vet and -fixtool for go fix). go fix runs the tool with the -fix flag, whereas although go vet also supports -fix, it is not the default. The two tools h...
[ { "path": "doc/next/3-tools.md", "patch": "@@ -7,5 +7,15 @@\n a replacement for `go tool doc`: it takes the same flags and arguments and\n has the same behavior.\n \n+<!-- go.dev/issue/75432 -->\n+The `go fix` command, following the pattern of `go vet` in Go 1.10,\n+now uses the Go analysis framework (`gola...
2025-09-26T17:33:09
vercel/next.js
1226b5352af4fb2b855effb21440c7a2e3d6d76c
831534c163dc5602d68812022b17936b8d2dd00b
[test] Deflake legacy-link-behavior (#85805) Suspense around body will trigger "missing tags" warning if something throws in the boundary. This error can come in slightly later and cause flaky test results. Fixes ``` ● Validations for <Link legacyBehavior> › When rendering from a Client Component › warns and thro...
[ { "path": "test/e2e/legacy-link-behavior/app/layout.tsx", "patch": "@@ -8,11 +8,11 @@ export default async function Root({\n }) {\n return (\n <html>\n- <Suspense>\n- <Connection>\n- <body>{children}</body>\n- </Connection>\n- </Suspense>\n+ <body>\n+ <Susp...
2025-11-05T13:05:40
nodejs/node
d93cff5af33c54ef552e7dc5407bbd58aeb49172
a0d458e448fb3e356fd7f657e9929b1d879860e3
Revert "test: fix watch tests not including completion messages" This reverts commit 6102159fa10eb153ed5de6a2f945f120be32cebd. PR-URL: https://github.com/nodejs/node/pull/58190 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Edy Silva <edigley...
[ { "path": "test/sequential/test-watch-mode.mjs", "patch": "@@ -810,14 +810,14 @@ process.on('message', (message) => {\n assert.strictEqual(stderr, '');\n assert.deepStrictEqual(stdout, [\n 'no --watch args present',\n- `Completed running ${inspect(file)}. Waiting for file changes before r...
2025-05-06T11:39:17
facebook/react
5ac4034e14a72c0edf602585c10fd2725fb376c5
f6dcce5199a3b9480a47d9feda8e00d8d9a0905d
[compiler] Fork fixtures for enablePropagateDepsInHIR - flip `enablePropagateDepsInHIR` to off by default - fork fixtures which produce compilation differences in #30894 to separate directory `propagate-scope-deps-hir-fork`, to be cleaned up when we remove this flag ghstack-source-id: 7d5b8dc29788a65c272c846af9877b09...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -223,7 +223,7 @@ const EnvironmentConfigSchema = z.object({\n */\n enableUseTypeAnnotations: z.boolean().default(false),\n \n- enablePropagateDepsInHIR: z.boolean().default(true),\n+ enablePropagateDepsInHI...
2024-09-12T20:59:40