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
vercel/next.js
2b0e3f1dd7df183ec9a88e23a1839a48428fa3ef
b9ec2e4f8d6e87ab28b5a7ec9d1bb5cb87913d9c
test: allow dpl query suffix in scss url-global expectation (#89856) Fixes deployment test failure from https://github.com/vercel/next.js/pull/89771 x-ref: https://github.com/vercel/next.js/actions/runs/21921362927/job/63302154502 ## Summary - update the SCSS `url-global` background-image assertion to allow optional...
[ { "path": "test/e2e/app-dir/scss/url-global/url-global.test.ts", "patch": "@@ -33,7 +33,7 @@ describe.each([\n .elementByCss('.red-text')\n .getComputedCss('background-image')\n expect(background).toMatch(\n- /url\\(\".*\\/_next\\/static\\/media\\/dark\\..*\\.svg\"\\), u...
2026-02-11T21:38:58
nodejs/node
fe02cab92c0986a72c3dc5e817f647e04140f858
a5f3cd8cb5ba9e7911d93c5fd3ebc6d781220dd8
msi: fix WiX warnings Refs: https://github.com/nodejs/build/issues/4130 PR-URL: https://github.com/nodejs/node/pull/60251 Fixes: https://github.com/nodejs/build/issues/4130 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Rev...
[ { "path": "tools/msvs/msi/nodemsi/nodemsi.wixproj", "patch": "@@ -1,5 +1,5 @@\n-<Project Sdk=\"WixToolset.Sdk/4.0.0-rc.1\">\n- <Import Project=\"Sdk.props\" Sdk=\"WixToolset.Sdk\" Version=\"4.0.0-rc.1\" />\n+<Project>\n+ <Import Project=\"Sdk.props\" Sdk=\"WixToolset.Sdk\" Version=\"4.0.6\" />\n <Proper...
2025-10-22T06:38:18
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
facebook/react
99be14c883c5c83c9a087d37e19d93d6afb839ed
5a04619f60221d9132f64f25b5a87b04c78fc7dc
[Flight] Promote enableAsyncDebugInfo to stable without enableComponentPerformanceTrack (#33996) There's a lot of overlap between `enableComponentPerformanceTrack` and `enableAsyncDebugInfo` because they both rely on timing information. The former is mainly emit timestamps for how long server components and awaits too...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -3647,7 +3647,7 @@ function initializeIOInfo(response: Response, ioInfo: ReactIOInfo): void {\n // $FlowFixMe[cannot-write]\n ioInfo.end += response._timeOrigin;\n \n- if (response._replayConsole) {\n+ if (enableComponentPerforma...
2025-07-25T08:59:46
electron/electron
8ab5ac9069322fc6c5a454cd69dc4815426e7276
27a8cc531bbf1c707f87f3265ce4a88f6c93b35a
ci: fixup mac runner hang (#47982)
[ { "path": ".github/actions/free-space-macos/action.yml", "patch": "@@ -6,6 +6,8 @@ runs:\n - name: Free Space on MacOS\n shell: bash\n run: |\n+ echo \"Disk usage before cleanup:\"\n+ df -h\n sudo mkdir -p $TMPDIR/del-target\n \n tmpify() {\n@@ -73,4 +75,5 @@ ru...
2025-08-07T08:52:26
golang/go
cd668d744f77da06ca9565f41c63c3a5251469ee
06eff0f7c3027a78088d45efdaec8ac3ed636481
cmd/compile: disable inlining for functions using runtime.deferrangefunc The rangefunc rewrite pass implements defer using deferrangefunc and deferproccat. The loop body is rewritten into a closure, it cannot be inlined due to defer call. But the outer function may still be inlined in certain scenarios (e.g., with PGO...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -516,6 +516,9 @@ opSwitch:\n \t\t\t\t\t\tbreak opSwitch\n \t\t\t\t\tcase \"panicrangestate\":\n \t\t\t\t\t\tcheap = true\n+\t\t\t\t\tcase \"deferrangefunc\":\n+\t\t\t\t\t\tv.reason = \"defer call in range func\"\n+\t\t\t\t\t\treturn true\n \t\...
2025-12-23T08:12:04
vercel/next.js
b4724c15b4d08bf6f962f395abed21518fb80b1c
ba01f6578cb1368c1bdc695cadb079c9a951929f
Fix cascading LRU eviction during prefetch batches (#89766) When links remount (e.g. toggling between tabs), the prefetch scheduler processes tasks across multiple async batches due to network bandwidth limits. Between batches, LRU cleanup could fire and evict cache entries for tasks that hadn't been processed yet. Th...
[ { "path": "packages/next/src/client/components/segment-cache/lru.ts", "patch": "@@ -1,11 +1,11 @@\n import { deleteMapEntry } from './cache-map'\n import type { UnknownMapEntry } from './cache-map'\n+import { pingPrefetchScheduler } from './scheduler'\n \n // We use an LRU for memory management. We must upd...
2026-02-11T15:46:05
nodejs/node
2fb82c8c281a5610a1d9afc8abaa49255147e1ea
cec1bd5498ff6dc70f1beaae42b5f43c89cf7860
util: use more defensive code when inspecting error objects PR-URL: https://github.com/nodejs/node/pull/60139 Fixes: https://github.com/nodejs/node/issues/60107 Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "lib/internal/util.js", "patch": "@@ -8,6 +8,7 @@ const {\n Error,\n ErrorCaptureStackTrace,\n FunctionPrototypeCall,\n+ FunctionPrototypeSymbolHasInstance,\n NumberParseInt,\n ObjectDefineProperties,\n ObjectDefineProperty,\n@@ -96,7 +97,7 @@ function isError(e) {\n // An error cou...
2025-10-20T18:14:39
facebook/react
5a04619f60221d9132f64f25b5a87b04c78fc7dc
129aa85e1621f31d382d3b8bf7a5aa456daf3d59
[Flight] Properly close stream when no chunks need to be written after prerender (#33982) There is an edge case when prerendering where if you have nothing to write you can end up in a state where the prerender is in status closed before you can provide a destination. In this case the destination is never closed becua...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMNode-test.js", "patch": "@@ -863,4 +863,46 @@ describe('ReactFlightDOMNode', () => {\n expect(ownerStack).toBeNull();\n }\n });\n+\n+ // @gate experimental\n+ // @gate enableHalt\n+ it('can handle an empty prelude when p...
2025-07-25T02:38:31
electron/electron
26ffc8505c011eda0658052d7c5ed5c9dbcc6905
3b0f35a7e846c64549400764e471941f81c05978
fix: allow importing from electron/utility at runtime (#47968)
[ { "path": "lib/common/init.ts", "patch": "@@ -93,20 +93,23 @@ makeElectronModule('electron');\n makeElectronModule('electron/common');\n if (process.type === 'browser') {\n makeElectronModule('electron/main');\n-}\n-if (process.type === 'renderer') {\n+} else if (process.type === 'renderer') {\n makeEle...
2025-08-07T07:53:42
nodejs/node
6a0c9c8e3359700d836b90d8586ca42d733f5f7d
21da2050aba8d7c641132aeb3615d2161a99d65c
meta: fix typo in test-shared workflow name Changed 'librairies' to 'libraries' in the workflow name. PR-URL: https://github.com/nodejs/node/pull/60321 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": ".github/workflows/test-shared.yml", "patch": "@@ -1,4 +1,4 @@\n-name: Test Shared librairies\n+name: Test Shared libraries\n \n on:\n pull_request:", "additions": 1, "deletions": 1, "language": "YAML" } ]
2025-10-19T22:57:02
golang/go
76dddce29302681bdddafd4cbc27db66802414dd
6ecdd2fc6e58c0cd2b788032a85f7845af10c922
simd/archsimd: remove redundant suffix of ExtendLo operations For methods like ExtendLo2ToInt64x2, the last "x2" is redundant, as it is already mentioned in "Lo2". Remove it, so it is just ExtendLo2ToInt64. Change-Id: I490afd818c40bb7a4ef15c249723895735bd6488 Reviewed-on: https://go-review.googlesource.com/c/go/+/733...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -376,26 +376,26 @@\n (ExpandUint64x2 x mask) => (VPEXPANDQMasked128 x (VPMOVVec64x2ToM <types.TypeMask> mask))\n (ExpandUint64x4 x mask) => (VPEXPANDQMasked256 x (VPMOVVec64x4ToM <types.TypeMask> mask))\n (ExpandUint64x8 x mask) => ...
2025-12-29T16:30:33
facebook/react
129aa85e1621f31d382d3b8bf7a5aa456daf3d59
bcea86945cd5324f1a7f324a48fd2c7cb36e569b
[compiler] Use diagnostic for "found suppression" error (#33981)
[ { "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);\n   l...
2025-07-24T22:54:24
vercel/next.js
24c6e3e4de2e729c7e71d38173466cf9cf3d5399
2d185084c4ec71edade8b0571ab0d961927ce327
Add CSS URL deployment ID suffix support (#89771) ## Summary Adds deployment ID suffix (`?dpl=<deployment_id>`) to asset URLs referenced in CSS `url()` declarations (images, fonts) for both Turbopack and Webpack builds. This enables proper cache busting for CSS-referenced assets when using `deploymentId` in `next.con...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1440,6 +1440,12 @@ impl Project {\n pub(super) async fn client_chunking_context(\n self: Vc<Self>,\n ) -> Result<Vc<Box<dyn ChunkingContext>>> {\n+ let css_url_suffix = self\n+ .next_config()\n+ .asset_suf...
2026-02-11T14:35:12
nodejs/node
21da2050aba8d7c641132aeb3615d2161a99d65c
9fbf0cbc60b4f7aab9d0f212d1571996b34d5800
tools: show diff alongside the error in Nix linter PR-URL: https://github.com/nodejs/node/pull/60301 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
[ { "path": ".github/workflows/linters.yml", "patch": "@@ -151,10 +151,10 @@ jobs:\n sparse-checkout-cone-mode: false\n - uses: cachix/install-nix-action@7be5dee1421f63d07e71ce6e0a9f8a4b07c2a487 # v31.6.1\n - name: Lint Nix files\n- run: nix-shell -I nixpkgs=./tools/nix/pkgs.nix ...
2025-10-19T22:49:11
golang/go
08369369e5a4b27d8f6d21ea571ea5027b9a2b46
ca8effbde150257847f90de220686786aa091f90
reflect: document Call/CallSlice panic when v is unexported field Fixes #74377 Change-Id: I250d67ef2a4bf4dac939be669eeaf1091523ac06 Reviewed-on: https://go-review.googlesource.com/c/go/+/690617 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Roland Shoemaker <rol...
[ { "path": "src/reflect/value.go", "patch": "@@ -362,6 +362,7 @@ func (v Value) CanSet() bool {\n // type of the function's corresponding input parameter.\n // If v is a variadic function, Call creates the variadic slice parameter\n // itself, copying in the corresponding values.\n+// It panics if the Value ...
2025-07-26T05:44:12
facebook/react
bcea86945cd5324f1a7f324a48fd2c7cb36e569b
2ae8b3dacf2cd93900d86bc11f22768d507ddce7
[compiler][rfc] Enable more validations in playground. (#33777) This is mostly to kick off conversation, i think we should go with a modified version of the implemented approach that i'll describe here. The playground currently serves two roles. The primary one we think about is for verifying compiler output. We use ...
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -142,7 +142,10 @@ const COMMON_HOOKS: Array<[string, Hook]> = [\n ],\n ];\n \n-function compile(source: string): [CompilerOutput, 'flow' | 'typescript'] {\n+function compile(\n+ source: string,\n+ mode: 'compiler' | 'lin...
2025-07-24T22:52:45
electron/electron
3b0f35a7e846c64549400764e471941f81c05978
8769d5ba9e4cf14b5ab7c559eef97396601bb3c0
chore: bump chromium to 140.0.7339.2 (main) (#47929) * chore: bump chromium in DEPS to 140.0.7330.0 * chore: bump chromium in DEPS to 140.0.7331.0 * chore: update patches * fix: gn check failing on crashpad.h Not yet sure what caused this * fix: predictors::PreconnectManager -> content::PreconnectManager CL: https...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '140.0.7327.0',\n+ '140.0.7339.2',\n 'node_version':\n 'v22.18.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2025-08-07T00:14:23
vercel/next.js
2d185084c4ec71edade8b0571ab0d961927ce327
61672d960b04513bf669ef094ce45c217ca0c9ed
[devtools] Wrap overlay in Activity (#89818) This allows rendering the overlay in the background at a lower priority while it's hidden. Part of a larger refactor how we sourcemap errors. The end-goal is to lazily do the sourcemapping with some prefetching which should make the overlay more responsive for many error...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/errors/error-overlay/error-overlay.tsx", "patch": "@@ -4,7 +4,7 @@ import {\n type OverlayState,\n } from '../../../shared'\n \n-import { Suspense } from 'react'\n+import { Activity } from 'react'\n import { BuildError } from '../../../cont...
2026-02-11T14:11:51
electron/electron
7a13c6f175c71afc1329a923896c3e7cc28d7905
678fb400fdb465fbfccd77681f32728a5f86e9bd
refactor: avoid deprecated `v8::Context::GetIsolate()` pt 4 (#47961) * refactor: remove GetIsolate() calls from SetPrivate() * refactor: remove excess GetIsolate() calls in PassValueToOtherContextInner() * refactor: remove GetIsolate() calls from GetPrivate() * refactor: add a v8::Isolate* local to ProxyFunctionWra...
[ { "path": "shell/renderer/api/electron_api_context_bridge.cc", "patch": "@@ -112,26 +112,24 @@ bool IsPlainArray(const v8::Local<v8::Value>& arr) {\n return !arr->IsTypedArray();\n }\n \n-void SetPrivate(v8::Local<v8::Context> context,\n+void SetPrivate(v8::Isolate* const isolate,\n+ v8::Lo...
2025-08-06T01:08:04
nodejs/node
9fbf0cbc60b4f7aab9d0f212d1571996b34d5800
f25cce2805028db0529bf2894a96aa4f952ca5af
doc: use `any` for `worker_threads.Worker` 'error' event argument `err` A worker thread can throw anything via the `throw` keyword, which gets passed directly to 'error' event listeners. The event listener should not assume it is an `Error` object. PR-URL: https://github.com/nodejs/node/pull/60300 Reviewed-By: Anna H...
[ { "path": "doc/api/worker_threads.md", "patch": "@@ -1717,7 +1717,7 @@ changes:\n added: v10.5.0\n -->\n \n-* `err` {Error}\n+* `err` {any}\n \n The `'error'` event is emitted if the worker thread throws an uncaught\n exception. In that case, the worker is terminated.", "additions": 1, "deletions": ...
2025-10-19T20:37:00
vercel/next.js
ae64f6cff035f22868af9f442bc855dc7dd791de
be56ce3ae8d2bf3b7cdbbbadaaacb1a998e25569
Turbopack: make routes hashes mainfest more incremental (#87107) <!-- 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": "crates/next-api/src/routes_hashes_manifest.rs", "patch": "@@ -6,7 +6,7 @@ use turbo_tasks_fs::{FileContent, FileSystemPath};\n use turbo_tasks_hash::{DeterministicHash, Xxh3Hash64Hasher};\n use turbopack_core::{\n asset::{Asset, AssetContent},\n- module::Module,\n+ module::{Module, Modu...
2026-02-11T10:58:11
facebook/react
a39da6c61feb5d10c988ddb55b7451a5af165783
48bc166428404c948315d98d02fe69533956e319
[compiler] Use new diagnostics for core inference errors (#33760) Uses the new diagnostic type for errors created during mutation/aliasing inference, such as errors for mutating immutable values like props or state, reassigning globals, etc. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapl...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts", "patch": "@@ -995,13 +995,13 @@ export function printAliasingEffect(effect: AliasingEffect): string {\n return `${effect.kind} ${printPlaceForAliasEffect(effect.value)}`;\n }\n case 'MutateFrozen': {\n- return ...
2025-07-24T22:43:08
electron/electron
678fb400fdb465fbfccd77681f32728a5f86e9bd
88064999048f8e7b049e1ade642f795e66977228
fix: video scrubbing on playback (#47703) * fix: fix video scrubbing on playback * chore: address review feedback --------- Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
[ { "path": "patches/chromium/feat_add_streaming-protocol_registry_to_multibuffer_data_source.patch", "patch": "@@ -12,8 +12,12 @@ This patch adds a list of \"streaming protocols\" to the MultibufferDataSource in\n other protocols to register their streaming behavior. MultibufferDataSource::AssumeFullyBuffere...
2025-08-05T16:48:52
nodejs/node
f25cce2805028db0529bf2894a96aa4f952ca5af
3437e1c4bd529e51d96ea581b6435bbeb77ef524
test: fix status when compiled without inspector PR-URL: https://github.com/nodejs/node/pull/60289 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo ...
[ { "path": "test/common/index.js", "patch": "@@ -54,6 +54,7 @@ const noop = () => {};\n const hasCrypto = Boolean(process.versions.openssl) &&\n !process.env.NODE_SKIP_CRYPTO;\n \n+const hasInspector = Boolean(process.features.inspector);\n const hasSQLite = Boolean(process.versions.sqlite)...
2025-10-19T17:39:54
vercel/next.js
be56ce3ae8d2bf3b7cdbbbadaaacb1a998e25569
0b32ddc6ab10f593b12342e657a755468a351130
docs: correct use term (#89438) ### What? `use` is not a hook. It's highlighted in the doc > Unlike React Hooks, use can be called within loops and conditional statements like if. Like React Hooks, the function that calls use must be a Component or Hook. ### Why? It confuses consumers of Next.js and adds field pr...
[ { "path": "docs/01-app/01-getting-started/05-server-and-client-components.mdx", "patch": "@@ -284,7 +284,7 @@ export default function LikeButton({ likes }) {\n }\n ```\n \n-Alternatively, you can stream data from a Server Component to a Client Component with the [`use` Hook](https://react.dev/reference/reac...
2026-02-11T10:51:57
facebook/react
48bc166428404c948315d98d02fe69533956e319
72848027a5525d7beebeccb0a485f4f211a1a101
[compiler] Update diagnostics for ValidatePreservedManualMemoization (#33759) Uses the new diagnostic infrastructure for this validation, which lets us provide a more targeted message on the text that we highlight (eg "This dependency may be mutated later") separately from the overall error message. --- [//]: # (BEGI...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidatePreservedManualMemoization.ts", "patch": "@@ -5,7 +5,11 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import {CompilerError, ErrorSeverity} from '../CompilerError';\n+import {\n+ CompilerDiagnostic,...
2025-07-24T22:39:53
golang/go
ca8effbde150257847f90de220686786aa091f90
0b06b68e21a3fbc75b3dd87c644da94828483a36
internal/coverage/decodemeta: correct wording in unknown version error Correct the wording in the error message returned by readFileHeader when encountering a meta-data file with an unsupported version. Change-Id: I49be1bb1509ccc64e8384103bd7f19382b536c26 GitHub-Last-Rev: 2ab8e05a21443c45635e42d788946bec2478ca99 GitH...
[ { "path": "src/internal/coverage/decodemeta/decodefile.go", "patch": "@@ -75,7 +75,7 @@ func (r *CoverageMetaFileReader) readFileHeader() error {\n \t// Vet the version. If this is a meta-data file from the future,\n \t// we won't be able to read it.\n \tif r.hdr.Version > coverage.MetaFileVersion {\n-\t\tr...
2025-12-24T17:39:35
electron/electron
88064999048f8e7b049e1ade642f795e66977228
637a504e28ce205050b3ae089e7492d3bf25b6dc
fix: offscreen mode under `window.open` creation (#47868) fix: offscreen mode under new window creation
[ { "path": "patches/chromium/can_create_window.patch", "patch": "@@ -21,10 +21,21 @@ index 378e3eb2f8b9d4daaf39ef213dec88d86cf90a5c..0ace2e0c7073ee97ebb274db4b184a07\n &no_javascript_access);\n \n diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_co...
2025-08-05T12:56:33
nodejs/node
481b9b11b3a96dfe9923baf6e4ef77895be951e4
70e7c1511ffd6dfbba2033028447eaf82b9ff23a
tools: fix inspector_protocol updater `.github/workflows/tools.yml` creates a temp file `temp-output` in the workspace, which fails `git status` clean repo check. Also, the GHA checks out a new branch after the update script. Removes these checks in the `roll.py` to fix its run on the GHA. PR-URL: https://github.co...
[ { "path": "tools/inspector_protocol/roll.py", "patch": "@@ -47,13 +47,6 @@ def CheckRepoIsClean(path):\n raise Exception('%s is not a clean git repo (run git status)' % path)\n \n \n-def CheckRepoIsNotAtMainBranch(path):\n- os.chdir(path)\n- stdout = RunCmd(['git', 'rev-parse', '--abbrev-ref', 'HEAD']...
2025-10-18T22:44:44
vercel/next.js
d95b7bffba51f93bd2166b11a7e7b30d5057ec74
c28948e0b3c199bff9123f91970906e80e4b1f08
docs: improve Graphite workflow documentation (#89488) ### What? Improves the Graphite workflow documentation in `.cursor/commands/gt-workflow.md`. ### Why? The previous documentation was unclear about when to use `gt` vs `git` commands, leading to potential workflow issues. ### How? - Clarifies that `gt` should ...
[ { "path": ".cursor/commands/gt-workflow.md", "patch": "@@ -4,24 +4,54 @@\n \n Use Graphite (`gt`) instead of git for ALL branch and commit operations in this repository.\n \n-## Forbidden Git Commands\n+## Use `gt` Instead of `git`\n \n-NEVER use these git commands directly:\n+All git commands work with `gt...
2026-02-11T09:56:39
golang/go
9cb3edbfe9eb68113453cdaa436db31d28577ab8
b3ed0627ce2476d438711e8fceafb39f3bd14b4e
regexp: standardize error message format in find_test.go This change updates the test error messages in find_test.go to follow the Go standard 'got, want' format. It also replaces 'expected/should be' terminology with the project's preferred style and improves the clarity of failure logs by using %q to quote string v...
[ { "path": "src/regexp/find_test.go", "patch": "@@ -159,23 +159,23 @@ func TestFind(t *testing.T) {\n \tfor _, test := range findTests {\n \t\tre := MustCompile(test.pat)\n \t\tif re.String() != test.pat {\n-\t\t\tt.Errorf(\"String() = `%s`; should be `%s`\", re.String(), test.pat)\n+\t\t\tt.Errorf(\"re.Stri...
2025-12-26T17:13:09
facebook/react
72848027a5525d7beebeccb0a485f4f211a1a101
707e321f8f1ba3f69d27df861caf630fe48aade6
[compiler] Improve more error messages (#33758) This PR uses the new diagnostic type for most of the error messages produced in our explicit validation passes (`Validation/` directory). One of the validations produced multiple errors as a hack to showing multiple related locations, which we can now consolidate into a ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -59,7 +59,7 @@ export type CompilerDiagnosticDetail =\n */\n {\n kind: 'error';\n- loc: SourceLocation;\n+ loc: SourceLocation | null;\n message: string;\n };\n \n@@ -100,6 +100,12 @@ export cla...
2025-07-24T22:39:42
nodejs/node
649d73a043f9da35c6d110d4d338b6883e42a080
38bf955937b5a30f5bd59360c2b153647d4737e2
test: fix incorrect calculation in test-perf-hooks.js After https://redirect.github.com/nodejs/node/pull/46588, Date.now() - performance.timeOrigin and process.uptime() are no longer similar - the former measures uptime from process initilaization, while the latter measures uptime from the main context initialization....
[ { "path": "test/sequential/test-perf-hooks.js", "patch": "@@ -28,15 +28,10 @@ const epsilon = 50;\n {\n const uptime1 = Date.now() - performance.timeOrigin;\n const uptime2 = performance.now();\n- const uptime3 = process.uptime() * 1000;\n assert(Math.abs(uptime1 - uptime2) < epsilon,\n `Dat...
2025-10-18T12:21:44
electron/electron
40cdfdb1d1c4994fce665b03c2a53fe7f67e47d6
4ca10a1056afdfffa794ef3ead1452c643f54fd4
chore: bump node to v22.18.0 (main) (#47937) * chore: bump node in DEPS to v22.18.0 * crypto: fix inclusion of OPENSSL_IS_BORINGSSL define https://github.com/nodejs/node/pull/58845 * crypto: fix SHAKE128/256 breaking change introduced with OpenSSL 3.4 https://github.com/nodejs/node/pull/58960 * permission: propag...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '140.0.7327.0',\n 'node_version':\n- 'v22.17.1',\n+ 'v22.18.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2025-08-04T18:40:36
golang/go
b3ed0627ce2476d438711e8fceafb39f3bd14b4e
3dcb48d2982e064ac8b5be01fe6847133fe56b88
tests: improve consistency and clarity of test diagnostics Minor updates to test diagnostics for consistency and readability: - Corrected an incorrect identifier - Standardized float formatting No behavior changes. Change-Id: I3d3633a7cc487209341ea92101f8c67848212080 GitHub-Last-Rev: b2822e846a91ce2563445f90f8d57686...
[ { "path": "test/cmplxdivide.go", "patch": "@@ -35,7 +35,7 @@ func main() {\n \t\t\t\tfmt.Printf(\"BUG\\n\")\n \t\t\t\tbad = true\n \t\t\t}\n-\t\t\tfmt.Printf(\"%v/%v: expected %v error; got %v\\n\", t.f, t.g, t.out, x)\n+\t\t\tfmt.Printf(\"%v/%v: got %v, want %v\\n\", t.f, t.g, x, t.out)\n \t\t}\n \t}\n \ti...
2025-12-29T19:39:04
nodejs/node
38bf955937b5a30f5bd59360c2b153647d4737e2
8b52c89b00642d624a5472a0df139593ef82a239
vm: make vm.Module.evaluate() conditionally synchronous - Make sure that the vm.Module.evaluate() method is conditionally synchronous based on the specification. Previously, the returned promise is unconditionally pending (even for synthetic modules and source text modules without top-level await) instead of imm...
[ { "path": "doc/api/vm.md", "patch": "@@ -618,19 +618,47 @@ in the ECMAScript specification.\n work after that. **Default:** `false`.\n * Returns: {Promise} Fulfills with `undefined` upon success.\n \n-Evaluate the module.\n+Evaluate the module and its depenendencies. Corresponds to the [Evaluate() concr...
2025-10-10T18:20:09
facebook/react
707e321f8f1ba3f69d27df861caf630fe48aade6
0d39496eab710b5a3efc07d34c0db3f2475c04f8
[compiler][wip] Improve diagnostic infra (#33751) Work in progress, i'm experimenting with revamping our diagnostic infra. Starting with a better format for representing errors, with an ability to point ot multiple locations, along with better printing of errors. Of course, Babel still controls the printing in the maj...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Babel/BabelPlugin.ts", "patch": "@@ -12,6 +12,7 @@ import {\n pipelineUsesReanimatedPlugin,\n } from '../Entrypoint/Reanimated';\n import validateNoUntransformedReferences from '../Entrypoint/ValidateNoUntransformedReferences';\n+import {Compile...
2025-07-24T22:37:06
golang/go
f7b7e94b0a2798bab26e9906df823a0fe5bcddfd
e790d5967424b4230978f63d16ecc5033269dd02
test: clarify log message for surrogate UTF-8 check The current log message "does not error" is slightly ambiguous. This change clarifies the output. Change-Id: I5c2327b9fa3d3e28ce43ce1189f8b1b7663fe0d3 GitHub-Last-Rev: bb2b03fc909f0bae29ab540776ae1d28165a603a GitHub-Pull-Request: golang/go#76998 Reviewed-on: https:/...
[ { "path": "test/stringrange.go", "patch": "@@ -59,7 +59,7 @@ func main() {\n \n \tfor _, c := range \"a\\xed\\xa0\\x80a\" {\n \t\tif c != 'a' && c != utf8.RuneError {\n-\t\t\tfmt.Printf(\"surrogate UTF-8 does not error: %U\\n\", c)\n+\t\t\tfmt.Printf(\"surrogate UTF-8 does not produce an error: %U\\n\", c)\...
2025-12-26T14:39:48
electron/electron
4ca10a1056afdfffa794ef3ead1452c643f54fd4
9d05454dc7fced8eac0c282eb3906c4f5f884836
chore: move gin::Handle to gin_helper (#47959) * chore: move gin::Handle to gin_helper * chore: fix lint
[ { "path": "filenames.gni", "patch": "@@ -653,6 +653,7 @@ filenames = {\n \"shell/common/gin_helper/function_template.cc\",\n \"shell/common/gin_helper/function_template.h\",\n \"shell/common/gin_helper/function_template_extensions.h\",\n+ \"shell/common/gin_helper/handle.h\",\n \"shell/co...
2025-08-04T17:03:06
vercel/next.js
b067991e591f4965b873d4eef9a18ea1f321ca9b
adcac5dff1967a1cf9798bac54828e46a25bcb7e
Add support for with `type: "text"` under a new experimental flag, following what webpack did (#89560) ## Summary Adds support for the TC39 `import ... with { type: "text" }` proposal to Turbopack, allowing files to be imported as strings. This is gated behind a new experimental flag `turbopackImportTypeText`. ```j...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -341,6 +341,7 @@ pub async fn get_client_module_options_context(\n esm_url_rewrite_behavior: Some(UrlRewriteBehavior::Relative),\n enable_typeof_window_inlining: Some(TypeofWindow::Object),\n enable_imp...
2026-02-11T07:33:54
nodejs/node
c2d44174b2f38f15214c5e395b7a59b66824252c
86560880905cf11ea49a5dfb72505fe1ef856eaf
test: ignore EPIPE errors in https proxy invalid URL test There can be a race from eagerly shutting down the servers and severing two pipes at the same time but for the purpose of this test, we only care about whether the requests are initiated from the client as expected, not how the upstream/proxy servers behave. Ig...
[ { "path": "test/client-proxy/test-https-proxy-request-invalid-char-in-url.mjs", "patch": "@@ -82,7 +82,19 @@ for (const testCase of testCases) {\n proxy.close();\n server.close();\n assert.deepStrictEqual(requests, expectedUrls);\n- assert.deepStrictEqual(new Set(logs)...
2025-10-18T05:43:08
rust-lang/rust
2258432bf638deb84075fafd40f18fb389d5b98c
ec6d039ceca95ef4f93de3473334a98309a48825
fix: Accept parenthesized paths in asm `sym` operand parser
[ { "path": "src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/typed_hole.rs", "patch": "@@ -442,4 +442,30 @@ fn rdtscp() -> u64 {\n }\"#,\n );\n }\n+\n+ #[test]\n+ fn asm_sym_with_macro_expr_fragment() {\n+ // Regression test for issue #21582\n+ // When `$e:expr` cap...
2026-03-23T14:19:47
facebook/react
448f781a52d62042341d2411d1352d705ce2cbfe
5020d48d2809c33db980f20726d1d0a7b2c8e31a
[compiler] Fix for false positive mutation of destructured spread object (#33786) When destructuring, spread creates a new mutable object that _captures_ part of the original rvalue. This new value is safe to modify. When making this change I realized that we weren't inferring array pattern spread as creating an arra...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/visitors.ts", "patch": "@@ -345,6 +345,51 @@ export function* eachPatternOperand(pattern: Pattern): Iterable<Place> {\n }\n }\n \n+export function* eachPatternItem(\n+ pattern: Pattern,\n+): Iterable<Place | SpreadPattern> {\n+ switch (pat...
2025-07-24T22:16:28
golang/go
f4cec7917cc53c8c7ef2ea456b4bf0474c41189a
ca13fe02c48db993a34d441d87180cf665d5b288
cmd: fix unused errors reported by ineffassign Updates golang/go#35136 Change-Id: I36d26089d29933e363d9fa50f3174530b698450e Reviewed-on: https://go-review.googlesource.com/c/go/+/731040 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Florian Lehner <lehner.floria...
[ { "path": "src/cmd/internal/bootstrap_test/overlaydir_test.go", "patch": "@@ -43,6 +43,9 @@ func overlayDir(dstRoot, srcRoot string) error {\n \t\tdstPath := filepath.Join(dstRoot, suffix)\n \n \t\tinfo, err := entry.Info()\n+\t\tif err != nil {\n+\t\t\treturn err\n+\t\t}\n \t\tperm := info.Mode() & os.Mode...
2025-12-18T05:05:26
electron/electron
9d05454dc7fced8eac0c282eb3906c4f5f884836
0e862bba61e71706e48904b0c3acba41eee26a0f
chore: move gin::DeprecatedWrappable to gin_helper (#47958) * chore: move gin::DeprecatedWrappable to gin_helper This is in preparation for migrating to gin::Wrappable based on cppgc #47922 The upstream class will be deleted soon via roller PR but the cppgc migration should happen outside the roll, this change retain...
[ { "path": "patches/chromium/feat_add_signals_when_embedder_cleanup_callbacks_run_for.patch", "patch": "@@ -10,19 +10,10 @@ shutdown leading to UAF in the second pass.\n \n Details at https://github.com/microsoft/vscode/issues/192119#issuecomment-2375851531\n \n-The signals exposed in this patch does the fo...
2025-08-04T14:28:01
nodejs/node
70c04c7fd8630397a4062de1ca2e834fa2a5fad0
8429d9a40b665e2a192d00b73a6a21d687f9b870
test: parallelize test-without-async-context-frame correctly It previously re-einvented the pattern matching that's already supported by test.py, and was running the tests one by one, which can lead to time out on slower machines. This move it to sequential and use wildcard support in test.py to correctly parallelize ...
[ { "path": "test/parallel/test-without-async-context-frame.mjs", "patch": "@@ -1,64 +0,0 @@\n-import { isWindows } from '../common/index.mjs';\n-import { spawn } from 'node:child_process';\n-import { once } from 'node:events';\n-import { opendir } from 'node:fs/promises';\n-import { fileURLToPath } from 'nod...
2025-10-17T22:40:34
rust-lang/rust
0e4a7595012bc71ccbb28a117e2fcf35e833cedb
34ef9a6146a26d3c3cfef42202b0f1d6dd2fe053
Fix `link_ordinal` test
[ { "path": "tests/ui/linkage-attr/raw-dylib/windows/link-ordinal-multiple.rs", "patch": "@@ -1,11 +1,11 @@\n //@ only-windows\n #[link(name = \"foo\", kind = \"raw-dylib\")]\n extern \"C\" {\n- #[link_ordinal(1)] //~ ERROR multiple `link_ordinal` attributes\n- #[link_ordinal(2)]\n+ #[link_ordinal(1)...
2026-03-23T13:00:22
golang/go
7971fcdf537054608b2443a32f0fbb6dd4eba12a
0f620776d739f3de2c459c42d7ae2338ece35e67
test/codegen: tidy tests for bits Use Go idiomatic function names, use a common prefix, attempt to maintain some consistency, avoid naming functions based upon machine specific instructions and combine a duplicate test that likely exists due to this confusion. Change-Id: I996e9efd7497821edef94c1997d4a310d9d79a71 Revi...
[ { "path": "test/codegen/bits.go", "patch": "@@ -8,11 +8,11 @@ package codegen\n \n import \"math/bits\"\n \n-/************************************\n- * 64-bit instructions\n- ************************************/\n+//\n+// 64 bit instructions\n+//\n \n-func bitcheck64_constleft(a uint64) (n int) {\n+func bi...
2025-12-23T12:43:15
facebook/react
4f34cc4a2e1198493375867d1876509ae9771aee
3d14fcf03f4e296d21b52b362f5adefd9e366375
[Fiber] Don't throw away the Error object retaining the owner stack (#33976) We currently throw away the Error once we've used to the owner stack of a Fiber once. This maybe helps a bit with memory and redoing it but we really don't expect most Fibers to hit this at all. It's not very hot. If we throw away the Error,...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/DevToolsFiberComponentStack.js", "patch": "@@ -199,7 +199,7 @@ export function getOwnerStackByFiberInDev(\n if (typeof owner.tag === 'number') {\n const fiber: Fiber = (owner: any);\n owner = fiber._debugOwner;\n- let d...
2025-07-24T17:33:03
vercel/next.js
adcac5dff1967a1cf9798bac54828e46a25bcb7e
384cb2dadfa12bca55a883c7f1c7e37f22bb5a5a
Add turbopackIgnoreIssue config to suppress Turbopack warnings (#89682) ## What? Adds the `experimental.turbopackIgnoreIssue` configuration option, which allows developers to suppress specific Turbopack warnings and errors based on file path, issue title, and/or description patterns. Filtered issues are hidden from b...
[ { "path": "Cargo.lock", "patch": "@@ -9823,6 +9823,7 @@ dependencies = [\n \"tokio\",\n \"tracing\",\n \"turbo-bincode\",\n+ \"turbo-esregex\",\n \"turbo-frozenmap\",\n \"turbo-prehash\",\n \"turbo-rcstr\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "crate...
2026-02-11T07:26:58
electron/electron
4232ed2814e92275b4b80658f5070eb477167989
e7683bdd25c904b2ae408949029f881ccb65d6b9
fix: crash on `window.close()` with `webContents` on blur (#47933) fix: crash on window.close with WebContentsView on blur
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2747,35 +2747,42 @@ void WebContents::CloseDevTools() {\n if (type_ == Type::kRemote)\n return;\n \n- DCHECK(inspectable_web_contents_);\n- inspectable_web_contents_->CloseDevTools();\n+ if (inspectable_web_contents_)\n+ i...
2025-08-04T08:35:29
golang/go
0f620776d739f3de2c459c42d7ae2338ece35e67
a5fe8c07ae7ae96049f692c43008ad2f770924c7
simd/archsimd: fix "go generate" command Correct the generate command for test helpers. There is no longer a genfiles.go. Also correct the generated file headers to match the current generator layout. Change-Id: Ifb9a8c394477359020ff44290dbaabe7a2d59aca Reviewed-on: https://go-review.googlesource.com/c/go/+/732280 LU...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1,4 +1,4 @@\n-// Code generated by x/arch/internal/simdgen using 'go run . -xedPath $XED_PATH -o godefs -goroot $GOROOT go.yaml types.yaml categories.yaml'; DO NOT EDIT.\n+// Code generated by 'simdgen -o godefs -goroot $GOROOT -xedPath $X...
2025-12-23T16:31:36
facebook/react
edac0dded99d56e7d66a88da83e874761e3e937a
3586a7f9e8ffb80ff98f41daca0e8a4070878718
[DevTools] Add a Code Editor Sidebar Pane in the Chrome Sources Tab (#33968) This adds a "Code Editor" pane for the Chrome extension in the bottom right corner of the "Sources" panel. If you end up getting linked to the "Sources" panel from stack traces in console, performance tab, stacks in React Component tab like t...
[ { "path": "packages/react-devtools-extensions/src/main/index.js", "patch": "@@ -1,5 +1,7 @@\n /* global chrome */\n \n+import type {SourceSelection} from 'react-devtools-shared/src/devtools/views/Editor/EditorPane';\n+\n import {createElement} from 'react';\n import {flushSync} from 'react-dom';\n import {c...
2025-07-23T14:28:11
vercel/next.js
5101d0499e11325cf28b60cb2933ad802ad943f5
b6311869b3cd11c0bf18f1e6a1df74eb8c860a77
Fix devlow job timeouts (#89804) Attempting to fix the devlow job timeouts that have been happening on canary for a bit x-ref: https://github.com/vercel/next.js/actions/runs/21889767463/job/63192963474
[ { "path": "scripts/devlow-bench.mjs", "patch": "@@ -10,6 +10,7 @@ import { waitForFile } from '@vercel/devlow-bench/file'\n const REPO_ROOT = fileURLToPath(new URL('..', import.meta.url))\n const START_SERVER_REGEXP = /Ready in \\d+/\n const URL_REGEXP = /Local:\\s+(?<url>.+)\\n/\n+const STARTUP_WAIT_TIMEOU...
2026-02-11T06:15:44
electron/electron
e7683bdd25c904b2ae408949029f881ccb65d6b9
bdaf3b9a2bfb0a680b2929b9fc9a663f099ab772
feat: Use DIR_ASSETS path to locate resource bundles (#47439) * feat: Use DIR_ASSETS path to locate resource bundles * Use DIR_ASSETS for calculating ASAR relative paths * Add test to verify 'assets' matches parent dir of 'exe' * Add Mac-specific test for assets path (but it is failing) * test: Update app.getPath(...
[ { "path": "docs/api/app.md", "patch": "@@ -602,6 +602,7 @@ Returns `string` - The current application directory.\n * `%APPDATA%` on Windows\n * `$XDG_CONFIG_HOME` or `~/.config` on Linux\n * `~/Library/Application Support` on macOS\n+ * `assets` The directory where app assets such as `resources...
2025-08-04T03:34:08
golang/go
a23d1a4ebe5ca1f4964ad51a92d99edf5a95d530
866e461b9689d03dbbf2df19b86cace21270865b
bytes: improve consistency in split test messages This change improves consistency in the error messages used by TestSplit and TestSplitAfter in bytes_test.go Change-Id: Idc4e77a516037ce17cbb1bdffe3ac00bcde5de42 GitHub-Last-Rev: 8c4a35186851004251e8eee71c88ca1c822851c1 GitHub-Pull-Request: golang/go#76970 Reviewed-on...
[ { "path": "src/bytes/bytes_test.go", "patch": "@@ -961,7 +961,7 @@ func TestSplit(t *testing.T) {\n \t\tif tt.n < 0 {\n \t\t\tb := sliceOfString(Split([]byte(tt.s), []byte(tt.sep)))\n \t\t\tif !slices.Equal(result, b) {\n-\t\t\t\tt.Errorf(\"Split disagrees withSplitN(%q, %q, %d) = %v; want %v\", tt.s, tt.se...
2025-12-23T18:11:53
rust-lang/rust
e66f61fe070e741cadba7dc7bb9cbb8548c8e9cd
d5671962a0d06cc2860020389a072a2013177277
Fix indent for trait_impl_redundant_assoc_item Example --- ```rust trait Foo { } impl Foo for () { $0fn foo<T: Copy>(&self); } ``` **Before this PR**: ```rust trait Foo { fn foo<T>(&self) where T: Copy,; } impl Foo for () { fn foo<T: Copy>(&self); } ``` **After this PR**: ```rust trait Foo { fn...
[ { "path": "src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/trait_impl_redundant_assoc_item.rs", "patch": "@@ -6,6 +6,7 @@ use ide_db::{\n source_change::SourceChangeBuilder,\n };\n use syntax::ToSmolStr;\n+use syntax::ast::edit::AstNodeEdit;\n \n use crate::{Diagnostic, DiagnosticCode, Diagn...
2025-09-15T07:27:19
facebook/react
7513996f20e34070141aa605fe282ca6986915a0
bb4418d6470b95c7d487f3b73a9dc980edff6f06
[DevTools] Unify by using ReactFunctionLocation type instead of Source (#33955) In RSC and other stacks now we use a lot of `ReactFunctionLocation` type to represent the location of a function. I.e. the location of the beginning of the function (the enclosing line/col) that is represented by the "Source" of the functi...
[ { "path": "packages/react-devtools-core/src/standalone.js", "patch": "@@ -26,7 +26,7 @@ import {\n import {localStorageSetItem} from 'react-devtools-shared/src/storage';\n \n import type {FrontendBridge} from 'react-devtools-shared/src/bridge';\n-import type {Source} from 'react-devtools-shared/src/shared/t...
2025-07-22T14:53:08
vercel/next.js
50d61f93d855a9cd1504d3d5b5081ab160df8d8f
a040e38f368f09a368f78347fcf474cb3c41164a
Turbopack: Fix slow filesystem benchmark warning for `next dev` (#89798) Apparently we broke this about 6 months ago and didn't notice: - We briefly had both a `println` (legacy) and a compilation event, leading to duplicate logging. - First: https://github.com/vercel/next.js/pull/80631 - I added a filter to `backgro...
[ { "path": "crates/next-napi-bindings/src/next_api/project.rs", "patch": "@@ -82,7 +82,7 @@ use crate::{\n \n /// Used by [`benchmark_file_io`]. This is a noisy benchmark, so set the\n /// threshold high.\n-const SLOW_FILESYSTEM_THRESHOLD: Duration = Duration::from_millis(100);\n+const SLOW_FILESYSTEM_THRESH...
2026-02-11T05:02:44
electron/electron
bdaf3b9a2bfb0a680b2929b9fc9a663f099ab772
5c98e3609f4b62490fd44541f28f1086b604e4e9
refactor: replace webFrame.routingId with sync IPC (#47717) * refactor: replace webFrame.routingId with sync IPC * fix: GetConstructor missing isolate * fix: missing isolate
[ { "path": "docs/api/web-frame.md", "patch": "@@ -253,15 +253,15 @@ and intend to stay there).\n \n * `selector` string - CSS selector for a frame element.\n \n-Returns `WebFrame` - The frame element in `webFrame's` document selected by\n+Returns `WebFrame | null` - The frame element in `webFrame's` document...
2025-08-02T15:00:42
golang/go
08dc8393d7d04f250b317cad5183415962ea56d5
43ebed88cc661e37bf01d5336b5de13fba6e51c7
time: skip test that will fail with GO111MODULE=off The test is designed to ensure that behavior introduced in Go 1.23 to garbage collect async timed channels is working correctly. If GO111MODULE=off is set (or GODEBUG=asynctimerchan=1) Go reverts to the Go 1.20 behavior of not garbage collecting these channels, which...
[ { "path": "src/time/export_test.go", "patch": "@@ -40,6 +40,7 @@ var (\n \tTzset = tzset\n \tTzsetName = tzsetName\n \tTzsetOffset = tzsetOffset\n+\tAsynctimerChan = asynctimerchan\n )\n \n func LoadFromEmbeddedTZData(zone string) (string, error) {", "add...
2025-12-23T06:07:32
nodejs/node
d3f79aa65d828e7cd81e95381d1893117824fbd6
8096aeab81a801d9a1bcda10fe354235ee556932
assert: allow printf-style messages as assertion error Also add functions as allowed message input. This allows to have leavy message computation to become cheaper. PR-URL: https://github.com/nodejs/node/pull/58849 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.c...
[ { "path": "doc/api/assert.md", "patch": "@@ -39,6 +39,27 @@ strict methods. For example, [`assert.deepEqual()`][] will behave like\n In strict assertion mode, error messages for objects display a diff. In legacy\n assertion mode, error messages for objects display the objects, often truncated.\n \n+### Mess...
2025-10-17T20:15:17
electron/electron
5c98e3609f4b62490fd44541f28f1086b604e4e9
2cfccac0747d5142230ab187ce8d004bce7ca702
feat: add `{get|set}AccentColor` on Windows (#47741) * feat: add setAccentColor on Windows * refactor: unify GetSystemAccentColor * refactor: remove redundant parsing * chore: fixup documentation * Update docs/api/browser-window.md Co-authored-by: Will Anderson <andersonw@dropbox.com> * Update docs/api/base-wind...
[ { "path": "docs/api/base-window.md", "patch": "@@ -1260,6 +1260,43 @@ Sets the properties for the window's taskbar button.\n > `relaunchCommand` and `relaunchDisplayName` must always be set\n > together. If one of those properties is not set, then neither will be used.\n \n+#### `win.setAccentColor(accentCo...
2025-08-01T20:29:02
facebook/react
b9af1404eac698c943b52c466b9c2e4aff85cf70
e9638c33d7e79162516b89da31549af4090997a5
[Flight] Use the JSX as the await stack if an await is not available (#33947) If you pass a promise to a client component to be rendered `<Client promise={promise} />` then there's an internal await inside Flight. There might also be user space awaits but those awaits may already have happened before we render this co...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -1717,6 +1717,16 @@ function renderFunctionComponent<Props>(\n // Apply special cases.\n result = processServerComponentReturnValue(request, task, Component, result);\n \n+ if (__DEV__) {\n+ // From this point on, the parent is...
2025-07-21T17:21:17
golang/go
81283ad33985958c63e43ada6c168da49e62de0f
3e0e1667f694e989371e021dd8f269dae5a78e9f
runtime: fix nGsyscallNoP accounting CL 726964 has two bugs. One is fairly obvious. Where there was previous a decrement of nGsyscallNoP in exitsyscallTryGetP, it added a call to addGSyscallNoP. Oops. The other is more subtle. In needm we set isExtraInC to false very early. This will cause exitsyscall (via cgocallba...
[ { "path": "src/runtime/metrics_cgo_test.go", "patch": "@@ -12,7 +12,7 @@ import (\n \t\"testing\"\n )\n \n-func TestNotInGoMetricCallback(t *testing.T) {\n+func TestNotInGoMetric(t *testing.T) {\n \tswitch runtime.GOOS {\n \tcase \"windows\", \"plan9\":\n \t\tt.Skip(\"unsupported on Windows and Plan9\")\n@@...
2025-12-23T17:16:17
nodejs/node
9e8c7535f2331f767dd4ddc15abd99bf72a61cc5
64bbb979decdbfffc3d88b26c1e2045a8e2ed6d8
test: skip sea tests on x64 macOS It's unlikely that anyone would invest in fixing them on x64 macOS in the near future, now that x64 macOS is being phased out. Simply skip them for now. PR-URL: https://github.com/nodejs/node/pull/60250 Refs: https://github.com/nodejs/node/issues/59553 Reviewed-By: Richard Lau <richa...
[ { "path": "test/sea/sea.status", "patch": "@@ -8,25 +8,7 @@ prefix sea\n \n [$system==macos && $arch==x64]\n # https://github.com/nodejs/node/issues/59553\n-test-single-executable-application: PASS, FLAKY\n-test-single-executable-application-assets: PASS, FLAKY\n-test-single-executable-application-assets-ra...
2025-10-13T20:57:48
facebook/react
28d4bc496b9c0dd2178caf894054ffce600311d3
dffacc7b8094576c19790fe8341996f743ba4a89
[Flight] Make debug info and console log resolve in predictable order (#33665) This resolves an outstanding issue where it was possible for debug info and console logs to become out of order if they up blocked. E.g. by a future reference or a client reference that hasn't loaded yet. Such as if you console.log a client...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -10,11 +10,10 @@\n import type {\n Thenable,\n ReactDebugInfo,\n+ ReactDebugInfoEntry,\n ReactComponentInfo,\n- ReactEnvironmentInfo,\n ReactAsyncInfo,\n ReactIOInfo,\n- ReactTimeInfo,\n ReactStackTrace,\n ReactFunctio...
2025-07-20T00:13:26
nodejs/node
71f5b1cbf0540d1309d58ac181326e5b65f680c7
e8fd0ee74ded1e2badd25401785b9d0ec0a660c9
doc: fix `blob.bytes()` heading level PR-URL: https://github.com/nodejs/node/pull/60252 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/buffer.md", "patch": "@@ -513,7 +513,7 @@ added:\n Returns a promise that fulfills with an {ArrayBuffer} containing a copy of\n the `Blob` data.\n \n-#### `blob.bytes()`\n+### `blob.bytes()`\n \n <!-- YAML\n added:", "additions": 1, "deletions": 1, "language": "Markdown" } ]
2025-10-16T08:17:53
electron/electron
03aad284126a1ae5714c7802a0d307baa8dc8414
25e2459f315510f84932726fba38499f0967e7de
chore: bump chromium to 140.0.7327.0 (main) (#47902) * chore: bump chromium in DEPS to 140.0.7324.0 * chore: bump chromium in DEPS to 140.0.7325.0 * chore: remove @dsanders11's unused include patch CL: https://chromium-review.googlesource.com/c/chromium/src/+/6782507 * fix: apply keychain patch to new apple subdir ...
[ { "path": "BUILD.gn", "patch": "@@ -452,7 +452,7 @@ source_set(\"electron_lib\") {\n \"//components/certificate_transparency\",\n \"//components/compose:buildflags\",\n \"//components/embedder_support:user_agent\",\n- \"//components/input:input\",\n+ \"//components/input\",\n \"//compo...
2025-07-31T22:11:00
golang/go
3faf988f217f59630509c057f48549f59a02c25e
2485a0bc2cf87837d5e610eed584d8d7ab5831d0
errors: add a test verifying join does not flatten errors For #76961 Change-Id: Ib81f3202074bf83a5b204b32706445f051f837a8 Reviewed-on: https://go-review.googlesource.com/c/go/+/732360 Auto-Submit: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> ...
[ { "path": "src/errors/join_test.go", "patch": "@@ -25,6 +25,7 @@ func TestJoinReturnsNil(t *testing.T) {\n func TestJoin(t *testing.T) {\n \terr1 := errors.New(\"err1\")\n \terr2 := errors.New(\"err2\")\n+\tmerr := multiErr{errors.New(\"err3\")}\n \tfor _, test := range []struct {\n \t\terrs []error\n \t\tw...
2025-12-23T17:42:37
facebook/react
9fec565a9b9f78558323adff1013291cf46f7de7
996d0eb05596ac40209a0a82810741a01442e97e
fix: log renders from passive effects for only newly finished work (#33797) This fixes displaying incorrect component render entries on a timeline, when we are reconnecting passive effects. ### Before <img width="2318" height="1127" alt="1" src="https://github.com/user-attachments/assets/9b6b2824-d2de-43a3-8615-2c45d...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -4155,6 +4155,7 @@ export function reconnectPassiveEffects(\n if (\n enableProfilerTimer &&\n enableComponentPerformanceTrack &&\n+ includeWorkInProgressEffects &&\n (finishedWork.mode & ProfileMode) !== NoMode ...
2025-07-16T17:09:35
electron/electron
9f43503b3e0a405d071f2a3d297fd5327bda77b1
ecb1eb0b5d7044cc9f0636c9586faa327a45cd09
chore: revert "ci: fixup mac runners" (#47917) This reverts commit 06d7a51a586fda203db91e21963c8fe15fb368d3.
[ { "path": ".github/actions/free-space-macos/action.yml", "patch": "@@ -6,8 +6,6 @@ runs:\n - name: Free Space on MacOS\n shell: bash\n run: |\n- echo \"Disk usage before cleanup:\"\n- df -h\n sudo mkdir -p $TMPDIR/del-target\n \n tmpify() {\n@@ -75,5 +73,4 @@ ru...
2025-07-31T15:08:43
vercel/next.js
f7dd09fd5fe57c5d853f2f09157b43cdafbe00af
4385ed36f66dfe0d9ae6a955135be7c1461fd35f
[Instant] Validation on client navs (#89777) This PR makes instant validation work for client navigations, albeit in a pretty inefficent way. If we're navigating and have an `instant` config somewhere in the tree, we won't skip shared layouts like a client navigation usually would. Instead, we render all the shared se...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -92,7 +92,10 @@ import { createServerInsertedHTML } from './server-inserted-html'\n import { getRequiredScripts } from './required-scripts'\n import { addPathPrefix } from '../../shared/lib/router/utils/add-path-prefix'\n import { ...
2026-02-10T21:03:16
golang/go
8254d66eab23bf334d619d888dc98630c1c5c5fd
1b3db48db7afc3fe17440af28cdeac67a0d048f1
cmd/asm/internal/asm: abort end to end test if assembly failed If errors are encountered during assembly, do not attempt to perform verification. In this case the output is unlikely to be correct and all verification fails, which means the real issue gets lost in the noise. Change-Id: I62c1bf09fa025b0df4c06f0bfa424fb...
[ { "path": "src/cmd/asm/internal/asm/endtoend_test.go", "patch": "@@ -199,6 +199,11 @@ Diff:\n \t}\n \tobj.Flushplist(ctxt, pList, nil)\n \n+\tif !ok {\n+\t\t// If we've encountered errors, the output is unlikely to be sane.\n+\t\tt.FailNow()\n+\t}\n+\n \tfor p := top; p != nil; p = p.Link {\n \t\tif p.As ==...
2025-12-21T03:39:20
nodejs/node
a520a39adfc5b8e9cdc1725d96516d16412a34a3
1d2b89a2a063a2d5124816ea4adf8a2e298b20d1
2025-10-15, Version 25.0.0 (Current) assert: * (SEMVER-MAJOR) move assert.fail with multiple arguments to eol (James M Snell) https://github.com/nodejs/node/pull/58532 * (SEMVER-MAJOR) move CallTracker to EOL (James M Snell) https://github.com/nodejs/node/pull/58006 assert,util: * (SEMVER-MAJOR) fail promise com...
[ { "path": "CHANGELOG.md", "patch": "@@ -2,6 +2,7 @@\n \n Select a Node.js version below to view the changelog history:\n \n+* [Node.js 25](doc/changelogs/CHANGELOG_V25.md) **Current**\n * [Node.js 24](doc/changelogs/CHANGELOG_V24.md) **Current**\n * [Node.js 23](doc/changelogs/CHANGELOG_V23.md) End-of-Life\...
2025-09-15T20:59:44
electron/electron
4c9ab8765b14b76b0d7dab7ec9d936c06f538f88
051f78dd1dbe5f54bc933e3e0119fbb6bdafa8b5
fix: dark mode on Linux default themeing (#47869)
[ { "path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -26,6 +26,7 @@\n #include \"ui/linux/linux_ui.h\"\n #include \"ui/ozone/public/ozone_platform.h\"\n #include \"ui/platform_window/platform_window.h\"\n+#include \"ui/platform_window/platform_window_init_properties.h\"\n #i...
2025-07-31T08:54:55
facebook/react
fe813143e23675963f92d25fa1fb35b39db40272
2f0e7e570d3a99adc2a18e7575d1d2bb69660e1f
[compiler] Check TSAsExpression and TSNonNullExpression reorderability (#33788) ## Summary The `TSAsExpression` and `TSNonNullExpression` nodes are supported by `lowerExpression()` but `isReorderableExpression()` does not check if they can be reordered. This PR updates `isReorderableExpression()` to handle these two ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -3001,6 +3001,8 @@ function isReorderableExpression(\n }\n }\n }\n+ case 'TSAsExpression':\n+ case 'TSNonNullExpression':\n case 'TypeCastExpression': {\n return isReorderableExpress...
2025-07-15T18:50:20
vercel/next.js
e83729677999c2f7073cd5a743a5c530ad8e1544
53481e3f74d271608689ae2f0306fa33c05e4ffe
Improve not-found-with-pages test (#89538) The fixture contains both App and Pages router But the assertions only ever tested the App endpoints Fixed by https://github.com/vercel/vercel/pull/14878 There is still a bug in the builder: ``` FAIL webpack test/e2e/app-dir/not-found-with-pages-i18n/not-found-with-pages.te...
[ { "path": "test/e2e/app-dir/not-found-with-pages-i18n/not-found-with-pages.test.ts", "patch": "@@ -1,7 +1,9 @@\n import { nextTestSetup } from 'e2e-utils'\n \n-describe('not-found-with-pages', () => {\n- const { next, isNextStart } = nextTestSetup({\n+const isAdapterTest = Boolean(process.env.NEXT_ENABLE_A...
2026-02-10T17:24:21
golang/go
1b3db48db7afc3fe17440af28cdeac67a0d048f1
b6b8b2fe6ef8ceb727c7a157750cdd4e61393489
Revert "errors: optimize errors.Join for single unwrappable errors" This reverts CL 635115. Reason for revert: The new behavior does not match the function documentation. Fixes #76961 Change-Id: If2450aa4efba28c7a12887a5b306c231a836e740 Reviewed-on: https://go-review.googlesource.com/c/go/+/731981 Reviewed-by: Dmit...
[ { "path": "src/errors/join.go", "patch": "@@ -27,16 +27,6 @@ func Join(errs ...error) error {\n \tif n == 0 {\n \t\treturn nil\n \t}\n-\tif n == 1 {\n-\t\tfor _, err := range errs {\n-\t\t\tif _, ok := err.(interface {\n-\t\t\t\tUnwrap() []error\n-\t\t\t}); ok {\n-\t\t\t\treturn err\n-\t\t\t}\n-\t\t}\n-\t}\...
2025-12-23T00:35:42
nodejs/node
7c7f30ed17654f29293f586ad009f0f8340213d4
daf0a44669992ea2dff7f4a5b14e6f9088ce4399
deps: V8: cherry-pick 3d0f462a17ff Original commit message: [api] Add index-based module resolution in InstantiateModule() Add new InstantiateModule() overload that allows embedders to identify modules requests by index in the module requests array rather than using specifier and import attributes. W...
[ { "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.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n...
2025-09-16T16:28:29
electron/electron
06d7a51a586fda203db91e21963c8fe15fb368d3
2255bb620ae037f3eb641d79a7436d4e6facf435
ci: fixup mac runners (#47877) ci: make sure camera and bluetooth are available on macos ci: turn off spotlight indexing
[ { "path": ".github/actions/free-space-macos/action.yml", "patch": "@@ -6,6 +6,8 @@ runs:\n - name: Free Space on MacOS\n shell: bash\n run: |\n+ echo \"Disk usage before cleanup:\"\n+ df -h\n sudo mkdir -p $TMPDIR/del-target\n \n tmpify() {\n@@ -73,4 +75,5 @@ ru...
2025-07-28T17:37:05
vercel/next.js
53481e3f74d271608689ae2f0306fa33c05e4ffe
a24095495f02c7b8cc0b4e2fcae7c5ca6c7343e3
Add 2nd cloned body to FinalizationRegistry. Only used RuntimeStyles component for webpack (#88577) ### What? Reduces memory retention in two areas: response stream cleanup in `cloneResponse` and unnecessary runtime style initialization in Turbopack mode. Also adds a test fixture for standalone mode fetch memory leak...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -523,7 +523,7 @@ function Router({\n return (\n <>\n <HistoryUpdater appRouterState={state} />\n- <RuntimeStyles />\n+ {process.env.TURBOPACK ? null : <RuntimeStylesForWebpack />}\n <NavigationPromisesCo...
2026-02-10T15:48:01
facebook/react
2f0e7e570d3a99adc2a18e7575d1d2bb69660e1f
56d0ddae18993eb696ab41d0fc5041948b88024a
[Flight] Don't block on debug channel if it's not wired up (#33757) React Elements reference debug data (their stack and owner) in the debug channel. If the debug channel isn't wired up this can block the client from resolving. We can infer that if there's no debug channel wired up and the reference wasn't emitted be...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -1353,6 +1353,26 @@ function waitForReference<T>(\n map: (response: Response, model: any, parentObject: Object, key: string) => T,\n path: Array<string>,\n ): T {\n+ if (\n+ __DEV__ &&\n+ // TODO: This should check for the e...
2025-07-15T15:45:34
golang/go
b6b8b2fe6ef8ceb727c7a157750cdd4e61393489
2cd0371a0a61e0dec6034239b1a92a20968c8522
cmd/compile: handle propagating an out-of-range jump table index For an out-of-range jump table index, the constant facts should not be propagated to the destinations. Fixes #76950 Change-Id: Iff29814cb466c7aaa432cec212e5387665c45afc Reviewed-on: https://go-review.googlesource.com/c/go/+/731860 Auto-Submit: Cuong Ma...
[ { "path": "src/cmd/compile/internal/ssa/sccp.go", "patch": "@@ -507,6 +507,10 @@ func (t *worklist) propagate(block *Block) {\n \t\t\t\tbranchIdx = 1 - condLattice.val.AuxInt\n \t\t\t} else {\n \t\t\t\tbranchIdx = condLattice.val.AuxInt\n+\t\t\t\tif branchIdx < 0 || branchIdx >= int64(len(block.Succs)) {\n+...
2025-12-22T11:49:17
electron/electron
084c6ef549742e15375c711a9aabc20a59d970e2
01faaa30eaef04d1da951a29e9f86fdfbed036b1
refactor: prefer `GetCreationContextChecked(v8::Isolate*)` over `GetCreationContextChecked()` (#47878) * refactor: pass an isolate when calling GetCreationContextChecked() in V8FunctionInvoker * refactor: pass an isolate when calling GetCreationContextChecked() in RendererClientBase * refactor: pass an isolate when ...
[ { "path": "shell/common/gin_helper/callback.h", "patch": "@@ -49,7 +49,7 @@ struct V8FunctionInvoker<v8::Local<v8::Value>(ArgTypes...)> {\n if (!function.IsAlive())\n return v8::Null(isolate);\n v8::Local<v8::Function> holder = function.NewHandle(isolate);\n- v8::Local<v8::Context> context ...
2025-07-25T14:06:57
nodejs/node
170848bc1831ea9be665b527e2131c81263dfd2c
0c35aaf55f489abb55c9990d0bbeacdf4b2b0e62
module: handle null source from async loader hooks in sync hooks This relaxes the validation in sync hooks so that it accepts the quirky nullish source returned by the default step of the async loader when the module being loaded is CommonJS. When there are no customization hooks registered, a saner synchronous defaul...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -177,6 +177,7 @@ const {\n registerHooks,\n resolveHooks,\n resolveWithHooks,\n+ validateLoadStrict,\n } = require('internal/modules/customization_hooks');\n const { stripTypeScriptModuleTypes } = require('internal/modules/typescript');\n c...
2025-10-14T16:28:22
vercel/next.js
a7a017455b76593b3025c30f9851d65e9050d25b
c76b0fe2a0bcf971ccc7008ee201244df872f52d
clarify unstable_cache replacement with use cache (#89435) There’s an inconsistency in the docs: [unstable_cache](https://nextjs.org/docs/app/api-reference/functions/unstable_cache) has already been replaced by use cache, so I think the documentation should be updated accordingly. I’d appreciate it if you could look i...
[ { "path": "docs/01-app/03-api-reference/04-functions/unstable_cache.mdx", "patch": "@@ -3,7 +3,9 @@ title: unstable_cache\n description: API Reference for the unstable_cache function.\n ---\n \n-> **Warning:** This API will be replaced by [`use cache`](/docs/app/api-reference/directives/use-cache) when it r...
2026-02-10T13:27:12
facebook/react
eb7f8b42c92ed804bbf7f700d2bdda276d591007
eed25607629f5e67f13f53e91edec12b3388559f
[Flight] Add Separate Outgoing Debug Channel (#33754) This lets us pass a writable on the server side and readable on the client side to send debug info through a separate channel so that it doesn't interfere with the main payload as much. The main payload refers to chunks defined in the debug info which means it's st...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -342,11 +342,6 @@ type Response = {\n _chunks: Map<number, SomeChunk<any>>,\n _fromJSON: (key: string, value: JSONValue) => any,\n _stringDecoder: StringDecoder,\n- _rowState: RowParserState,\n- _rowID: number, // parts of a ro...
2025-07-10T20:22:44
golang/go
2cd0371a0a61e0dec6034239b1a92a20968c8522
91435be1531727f3220a8fdebb7e4894f39edb41
debug/pe: avoid panic in File.ImportedSymbols This change skips symbols where dt.OriginalFirstThunk is less than ds.VirtualAddress. The variable types are uint32, and (dt.OriginalFirstThunk-ds.VirtualAddress) becomes very large number when dt.OriginalFirstThunk < ds.VirtualAddress. Fixes #73548. Fixes #76721. Fixes ...
[ { "path": "src/debug/pe/file.go", "patch": "@@ -379,7 +379,11 @@ func (f *File) ImportedSymbols() ([]string, error) {\n \t}\n \n \t// seek to the virtual address specified in the import data directory\n-\td = d[idd.VirtualAddress-ds.VirtualAddress:]\n+\tseek := idd.VirtualAddress - ds.VirtualAddress\n+\tif ...
2025-06-24T05:18:28
electron/electron
01faaa30eaef04d1da951a29e9f86fdfbed036b1
c569d5e4baf049a5c7f1b61b420109b9294ae6c3
fix: window content protection on older Windows versions (#47856)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -1282,12 +1282,7 @@ void NativeWindowViews::SetOpacity(const double opacity) {\n #if BUILDFLAG(IS_WIN)\n const double boundedOpacity = std::clamp(opacity, 0.0, 1.0);\n HWND hwnd = GetAcceleratedWidget();\n- if (!layered_) {\n- LONG ex_st...
2025-07-24T19:05:28
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
facebook/react
eed25607629f5e67f13f53e91edec12b3388559f
463b808176ad7c9429a4981bb45a1da225fd4b85
[Flight] Treat empty message as a close signal (#33756) We typically treat an empty message as closing the debug channel stream but for the Noop renderer we don't use an intermediate stream but just pass the message through. https://github.com/facebook/react/blob/bbc13fa17be8eebef3e6ee47f48c76c0c44e2f36/packages/rea...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -5808,6 +5808,10 @@ export function resolveDebugMessage(request: Request, message: string): void {\n \"resolveDebugMessage/closeDebugChannel should not be called for a Request that wasn't kept alive. This is a bug in React.\",\n ...
2025-07-10T20:16:57
vercel/next.js
839fe54b77d15a802269dea2133501c16aac08be
cc68574b8dcc22680ff2e218df90e811a552e937
Avoid using unclosing prefetch streams in the browser (#89610) Previously, `createPrefetchResponseStream` intentionally never called `controller.close()` on the wrapper stream, to prevent React Flight from erroring on unresolved references (dynamic holes). However, Chrome and Firefox keep unclosed ReadableStreams with...
[ { "path": "packages/next/src/client/components/router-reducer/fetch-server-response.ts", "patch": "@@ -232,13 +232,11 @@ export async function fetchServerResponse(\n // TODO: This should only be reachable if legacy PPR is enabled (i.e. PPR\n // without Cache Components). Remove this branch once ...
2026-02-09T22:30:18
electron/electron
670da27305e5fc6433d8898f7c4dfa27b8ca5c23
5f901174c54fb3b3a3cd0e71bb9d66e6a067227e
ci: add ability to debug SSH sessions in CI (#47819)
[ { "path": ".github/actions/ssh-debug/action.yml", "patch": "@@ -0,0 +1,20 @@\n+name: Debug via SSH\n+description: Setup a SSH server with a tunnel to access it to debug via SSH.\n+inputs:\n+ tunnel:\n+ description: 'Enable SSH tunneling via cloudflared'\n+ required: true\n+ default: 'false'\n+ ti...
2025-07-23T14:57:06
golang/go
91435be1531727f3220a8fdebb7e4894f39edb41
c1efada1d20a0f4af6ffc2be17706713af11b3b0
runtime: revert entry point on freebsd/arm64 CL 706175 unified some arm64 entry points. However, the entry point for freebsd/arm64 is incorrect and builds now fail. This change reverts the freebsd/arm64 entry point and adds additional context for the future. Fixes #76958 Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8...
[ { "path": "src/runtime/rt0_freebsd_arm64.s", "patch": "@@ -4,9 +4,12 @@\n \n #include \"textflag.h\"\n \n-// On FreeBSD argc/argv are passed in R0, not RSP\n+// FreeBSD passes a pointer to the argument block in R0, not RSP,\n+// so _rt0_arm64 cannot be used.\n TEXT _rt0_arm64_freebsd(SB),NOSPLIT,$0\n-\tJMP\...
2025-12-22T21:25:08
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
vercel/next.js
208c4f44b1db7d97dcad84a12bf9ee4ba4810757
35a46b157834b5620a509712a5431d5be32cb46f
fix(image): findClosestQuality returns 0 for low quality values (#89621) Fixes #89620 Fix `findClosestQuality` returning `0` when the `quality` prop on `<Image>` is set to a low value (e.g. `quality={1}`), which causes the image optimization server to reject the request with a 400 error. ### Cause The `reduce` call...
[ { "path": "packages/next/src/shared/lib/find-closest-quality.ts", "patch": "@@ -16,6 +16,6 @@ export function findClosestQuality(\n }\n return config.qualities.reduce(\n (prev, cur) => (Math.abs(cur - q) < Math.abs(prev - q) ? cur : prev),\n- 0\n+ config.qualities[0]\n )\n }", "additions...
2026-02-09T15:11:38
facebook/react
96c61b7f1f145b9fe5103051b636959cdeb20cc8
0bfa404bacbad78af5b39c080ba67535f2e53044
[compiler] Add CompilerError.UnsupportedJS variant (#33750) We use this variant for syntax we intentionally don't support: with statements, eval, and inline class declarations. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstac...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -15,6 +15,11 @@ export enum ErrorSeverity {\n * misunderstanding on the user’s part.\n */\n InvalidJS = 'InvalidJS',\n+ /**\n+ * JS syntax that is not supported and which we do not plan to support. Develo...
2025-07-10T05:24:20
golang/go
c1efada1d20a0f4af6ffc2be17706713af11b3b0
3d77a0b15ea2a6d2f7b3e2ba483f148d7c6ee174
simd/archsimd: correct documentation for pairwise operations For Add/SubPairs(Saturated?), the documented result element order is wrong. Corrected. Also, for 256-bit vectors, this is a grouped operation. So name it with the Grouped suffix to be clear. Change-Id: Idfd0975cb4a332b2e28c898613861205d26f75b0 Reviewed-on:...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -250,12 +250,12 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPADDQ256,\n \t\tssa.OpAMD64VPADDQ512,\n \t\tssa.OpAMD64VHADDPS128,\n-\t\tssa.OpAMD64VHADDPS256,\n \t\tssa.OpAMD64VHADDPD128,\n-\t\tssa.OpAMD64VH...
2025-12-22T19:52:57