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
ffdf8fdeb0ab0eefe96b3a39f373b225d9e74fe1
ce738b9f8c8e8b990bcd052f46463e04ccfdaa98
next-stats-action: avoid pnpm EXDEV during stats installs (#90100) ## Summary - fix flaky `pnpm install` failures in the stats action caused by cross-device hardlinking (`ERR_PNPM_EXDEV`) - force `pnpm` to use `--package-import-method=copy` for installs run in temp repos - apply the same setting in both install paths ...
[ { "path": ".github/actions/next-stats-action/src/index.js", "patch": "@@ -117,7 +117,9 @@ if (!allowedActions.has(actionInfo.actionName) && !actionInfo.isRelease) {\n usePnpm\n ? // --no-frozen-lockfile is used here to tolerate lockfile\n // changes from mergi...
2026-02-17T19:05:43
electron/electron
b40a4befd42255d731ec3f68a96e96c1b9b96cef
61a730353175079c7ed2003fcc1968045dfaafc1
docs: fix formatting in asar integrity (#48431)
[ { "path": "docs/tutorial/asar-integrity.md", "patch": "@@ -64,13 +64,10 @@ flipFuses(\n )\n ```\n \n-:::tip Fuses in Electron Forge\n-\n-With Electron Forge, you can configure your app's fuses with\n-[@electron-forge/plugin-fuses](https://www.electronforge.io/config/plugins/fuses)\n-in your Forge configurat...
2025-10-02T05:27:28
facebook/react
d35fef9e21100463b0bfecb975e9d9eca45c963f
a7a116577daf3b135c226ed9db8a8c2f9166c023
[compiler] Fix for consecutive DCE'd branches with phis (#33725) This is an optimized version of @asmjmp0's fix in https://github.com/facebook/react/pull/31940. When we merge consecutive blocks we need to take care to rewrite later phis whose operands will now be different blocks due to merging. Rather than iterate al...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/MergeConsecutiveBlocks.ts", "patch": "@@ -107,6 +107,17 @@ export function mergeConsecutiveBlocks(fn: HIRFunction): void {\n merged.merge(block.id, predecessorId);\n fn.body.blocks.delete(block.id);\n }\n+ for (const [, block] of fn...
2025-07-08T23:36:47
golang/go
b291c3c35c41ddd2db75c3b3ce8ae476fe11ea7b
d774ced6a97d3e354d92e874861fb24d7527e3cb
cmd/compile: fix typos in types2 api_test.go Change-Id: Ifee1b0f590ebb6671efd61a289c8884a225f5d6b GitHub-Last-Rev: 175ae95847b0108949459b881c2cd2144e74353e GitHub-Pull-Request: golang/go#76782 Reviewed-on: https://go-review.googlesource.com/c/go/+/728980 Reviewed-by: Jorropo <jorropo.pgm@gmail.com> Auto-Submit: Jorrop...
[ { "path": "src/cmd/compile/internal/types2/api_test.go", "patch": "@@ -1015,13 +1015,13 @@ func (r *N[C]) n() { }\n \t\tt.Errorf(`N.Method(...) returns %v for \"m\", but Info.Defs has %v`, gm, dm)\n \t}\n \tif gn != dn {\n-\t\tt.Errorf(`N.Method(...) returns %v for \"m\", but Info.Defs has %v`, gm, dm)\n+\...
2025-12-10T17:52:23
nodejs/node
22a3eb00e85e91b25359ae27a22fb886d0984bfa
96f7a2be44182ce622d2b6aa28a105a16d3c7470
test: fix test-strace-openat-openssl for RISC-V Recent architectures like RISC-V does not support open syscall, which will cause strace to fail and thus test failure. AssertionError [ERR_ASSERTION]: strace: invalid system call 'open' This patch disables tracing open syscall for RISC-V in the test to fix the test...
[ { "path": "test/parallel/test-strace-openat-openssl.js", "patch": "@@ -19,9 +19,13 @@ if (spawnSync('strace').error !== undefined) {\n const allowedOpenCalls = new Set([\n '/etc/ssl/openssl.cnf',\n ]);\n+ const syscalls = ['openat'];\n+ if (process.arch !== 'riscv64' && process.arch !== 'riscv32')...
2025-11-11T12:54:04
vercel/next.js
ce738b9f8c8e8b990bcd052f46463e04ccfdaa98
7f60746e127f84982dfb9a4dd1be42fc606f2e85
Disable jest cache for CI instead of wiping (#90097) This is aiming to fix sporadic failures from jest transforms which is most likely caused by the change to output to custom jest-cache folder and wipe that between runs. Instead this disables the cache via `--no-cache` flag and also fixes WASM bindings issue that sta...
[ { "path": ".github/workflows/build_reusable.yml", "patch": "@@ -322,7 +322,7 @@ jobs:\n # Jest has a global cache, so PRs that poison the cache can bring down CI\n - name: Clean up stray files\n if: ${{ always() }}\n- run: rm -f /tmp/package-lock.json .jest-cache\n+ run: rm...
2026-02-17T18:34:54
electron/electron
6f9cd718c4aaf51464519d6a4da12f86a8da9c1c
a95180e0806f4adba8009f46124b6bb4853ac0a6
fix: runtime JS error that crashes `GetPackageJSON` (#48293) We overriden the `GetPackageJSON` in Node.js to let us read files straight from the ASAR file instead of disk. The override works by providing a JS method with the limitation that it should not throw a runtime error. However, this invariant was accidentally ...
[ { "path": "shell/common/api/electron_api_asar.cc", "patch": "@@ -191,13 +191,15 @@ class Archive : public node::ObjectWrap {\n static void SplitPath(const v8::FunctionCallbackInfo<v8::Value>& args) {\n auto* isolate = args.GetIsolate();\n \n+ auto dict = gin_helper::Dictionary::CreateEmpty(isolate);\n+ ...
2025-09-30T16:32:13
facebook/react
777264b4ef52797f63d0ed3e9e21b66b7ae6780e
befc1246b07a04b401bc6e914b7f336a442dca1a
[Flight] Fix stack getting object limited (#33733) Because the object limit is unfortunately depth first due to limitations of JSON stringify, we need to ensure that things we really don't want outlined are first in the enumeration order. We add the stack length to the object limit to ensure that the stack frames are...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -4072,10 +4072,6 @@ function emitIOInfoChunk(\n start: relativeStartTimestamp,\n end: relativeEndTimestamp,\n };\n- if (value !== undefined) {\n- // $FlowFixMe[cannot-write]\n- debugIOInfo.value = value;\n- }\n if (...
2025-07-08T16:54:29
golang/go
d774ced6a97d3e354d92e874861fb24d7527e3cb
6d89ab44cc783abb68d511e88723c2b8ebf4ca3b
cmd/go/internal/vcs: support git worktrees Fixes golang/go#58218 Change-Id: Ia155b26514557cf822caf37e727e5a410b0a36a6 Reviewed-on: https://go-review.googlesource.com/c/go/+/736260 Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <golang-scop...
[ { "path": "src/cmd/go/internal/vcs/vcs.go", "patch": "@@ -35,10 +35,10 @@ import (\n // A Cmd describes how to use a version control system\n // like Mercurial, Git, or Subversion.\n type Cmd struct {\n-\tName string\n-\tCmd string // name of binary to invoke command\n-\tEnv []string ...
2026-01-14T00:45:30
nodejs/node
96f7a2be44182ce622d2b6aa28a105a16d3c7470
ea1a240633b5834c0ba375d1c46e9d88c6997594
deps: V8: backport 2e4c5cf9b112 Original commit message: remove ppc and s390 from the host_arch list We only support ppc64 and s390x. Same changes is applied to depot_tools: http://crrev.com/c/7100932 Change-Id: I1e4b660a1e46d1c609189301e8fd977fb7434748 Reviewed-on: https://chromium-review.g...
[ { "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-11-11T12:18:04
vercel/next.js
7f60746e127f84982dfb9a4dd1be42fc606f2e85
3badef4042944b3958783141547b1d64a1f18fed
Revert "[turbopack] Fix some modification tracking bugs in TaskStorage" (#90096) Reverts vercel/next.js#89708 This is breaking the filesystem-caching-test https://github.com/vercel/next.js/actions/runs/22089976734/job/63836669063#step:35:3409
[ { "path": "turbopack/crates/turbo-tasks-macros/src/derive/task_storage_macro.rs", "patch": "@@ -1476,8 +1476,8 @@ fn generate_trait_accessor_methods(field: &FieldInfo) -> TokenStream {\n #check_access\n let current = self.typed().flags.#field_name();\n ...
2026-02-17T18:29:40
electron/electron
d4a5fdc8fc5c969fe793e3b478834658018608f2
3a7c6dd4a551eebb6bd4581ad746ba38808049ac
fix: add missed enum `SaveRequestType` to PdfViewerPrivate function (#48372) fix: add missed SaveRequestType enum to PdfViewerPrivate function
[ { "path": "shell/common/extensions/api/pdf_viewer_private.idl", "patch": "@@ -6,6 +6,15 @@\n // functionality that the PDF Viewer needs from outside the PDF plugin. This API\n // is exclusively for the PDF Viewer.\n namespace pdfViewerPrivate {\n+ // Must match `SaveRequestType` in `pdf/mojom/pdf.mojom` an...
2025-09-26T20:34:06
golang/go
021d5ca042775537d707c6f5ae2f53f57dac243f
c04335e33a6915ae4edc9c9f94a909a46557f99a
cmd/compile: avoid extending when already sufficiently shifted on loong64 This reduces 744 instructions from the go toolchain binary on loong64. file before after Δ % asm 599282 599222 -60 -0.0100% cgo 513606 513534 -72 -0.0140% compile 2939250 ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules", "patch": "@@ -843,6 +843,11 @@\n \n (MOVBUreg (ANDconst [c] x)) => (ANDconst [c&0xff] x)\n \n+// Avoid extending when already sufficiently shifted.\n+(MOVBUreg x:(SRLconst [c] y)) && c >= 24 => x\n+(MOVHUreg x:(SRLconst [c] y)) && c >= 16 => x\n+(...
2025-12-01T06:46:23
nodejs/node
57b4a315cee0d7d04efc74b8f6342715f08dedd7
12fad1bd7bf2d2256701eaa6d44a4b96da838fe7
tools: replace invalid expression in dependabot config PR-URL: https://github.com/nodejs/node/pull/60649 Fixes: https://github.com/nodejs/node/issues/60637 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": ".github/dependabot.yml", "patch": "@@ -10,10 +10,9 @@ updates:\n semver-major-days: 5\n semver-minor-days: 5\n semver-patch-days: 5\n-\n commit-message:\n prefix: meta\n- open-pull-requests-limit: ${{secrets.OPEN_PR_LIMIT}}\n+ open-pull-requests-limit: 10\n \n ...
2025-11-11T07:17:37
facebook/react
befc1246b07a04b401bc6e914b7f336a442dca1a
bbea677b77ebf5d696623e2f634c69744eaf9d86
[Fizz] Render preamble eagerly (#33730) We unnecessarily render the preamble in a task. This updates the implementation to perform this render inline. Testing this is tricky because one of the only ways you could assert this was even happening is based on how things error if you abort while rendering the root. While...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -9544,6 +9544,102 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ it('will attempt to render the preamble inline to allow rendering before a later abort in the same task', async () => {\n+ const promis...
2025-07-08T15:20:12
vercel/next.js
3b7dd788c086389540582eab06fce2c80769d5da
77bb08d129a46eae14cd73c8f6286741153755f3
Cache expected missing manifest read (#89908) ## What Found a bug. When a manifest is expectedly missing (`handleMissing` option) it would not hit the caching for manifest loading. Causing a readFileSync that fails every time it's called and doesn't get cached. ## How This PR resolves the issue by moving the handle...
[ { "path": "packages/next/src/server/load-manifest.external.ts", "patch": "@@ -30,22 +30,36 @@ export function loadManifest<T extends object>(\n ): DeepReadonly<T>\n export function loadManifest<T extends object>(\n path: string,\n- shouldCache?: true,\n+ shouldCache?: boolean,\n cache?: Map<string, un...
2026-02-17T15:00:40
electron/electron
3a7c6dd4a551eebb6bd4581ad746ba38808049ac
26e886c517bc57747081b6cc26380b03bc61654a
fix: MacOS 26 Tahoe - stop overriding private cornerMask API to fix WindowServer GPU load (#48376) fix: macOS stop overriding private cornerMask API to fix WindowServer GPU load spike Electron fetched a custom `_cornerMask` for `ElectronNSWindow` to smooth vibrancy corners. On macOS 15 (Tahoe) that private hook force...
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1333,7 +1333,6 @@ static bool FromV8(v8::Isolate* isolate,\n maskImage.capInsets = NSEdgeInsetsMake(radius, radius, radius, radius);\n maskImage.resizingMode = NSImageResizingModeStretch;\n [vibrantView setMaskImage:maskImage];\...
2025-09-26T19:41:16
golang/go
a1150b5017b789c6dc22d2c3939f7df10baf3dff
6b7206feb2df3116bd5c471813353ffec1ff25fe
cmd/compile/internal/pgo: error parsing profile (for pgo) after scaling If a valid profile is scaled such that the samples/counts become 0, an empty graph in which the compiler complain that we never saw a start line since the graph has no nodes which is a misleading error message. src/cmd/internal/pgo/pprof.go was m...
[ { "path": "src/cmd/compile/internal/test/pgo_inl_test.go", "patch": "@@ -365,3 +365,53 @@ func TestPGOHash(t *testing.T) {\n \t\tt.Errorf(\"output contains unexpected source line, out:\\n%s\", out)\n \t}\n }\n+\n+// TestPGOZeroValues tests that a profile with all sample values scaled to zero\n+// is treated...
2025-11-28T08:27:09
vercel/next.js
77bb08d129a46eae14cd73c8f6286741153755f3
7bece27057791c5d5fb0029a4d462f2d8dbf5838
Refactor factory not available error message generation (#89897) ## What? Extracted the `factoryNotAvailableMessage` function to a shared location in the runtime utilities, moving it from being duplicated in browser-specific runtime code to the shared runtime module. Updated error handling in both browser and Node.js...
[ { "path": "turbopack/crates/turbopack-ecmascript-runtime/js/src/browser/runtime/base/runtime-base.ts", "patch": "@@ -95,31 +95,6 @@ const availableModules: Map<ModuleId, Promise<any> | true> = new Map()\n \n const availableModuleChunks: Map<ChunkPath, Promise<any> | true> = new Map()\n \n-function factoryNo...
2026-02-17T12:09:26
nodejs/node
33f982e7ede58bda28abb3e703e04ea8eb8ef0e8
5e1ab9fffb8399fcc51ab1b592d0fffef4e418aa
test: deflake test-perf-hooks-timerify-histogram-sync The previous busy loop wasn't robust enough in making sure that the function runs for more than 1 nanosecond - and when it runs faster than that on a fast machine, it measures to 0 for nanosecond precision and throws a RangeErorr as histogram.record() only takes po...
[ { "path": "test/common/index.js", "patch": "@@ -931,6 +931,12 @@ function expectRequiredTLAError(err) {\n }\n }\n \n+function sleepSync(ms) {\n+ const sab = new SharedArrayBuffer(4);\n+ const i32 = new Int32Array(sab);\n+ Atomics.wait(i32, 0, 0, ms);\n+}\n+\n const common = {\n allowGlobals,\n buil...
2025-11-10T17:46:46
facebook/react
bbea677b77ebf5d696623e2f634c69744eaf9d86
f1ecf82bfb5fdfa5d1c3aedcf114415fc29bd2da
[Flight] Lazy load objects from the debug channel (#33728) When a debug channel is available, we now allow objects to be lazily requested though the debug channel and only then will the server send it. The client will actually eagerly ask for the next level of objects once it parses its payload. That way those object...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -120,10 +120,69 @@ async function ServerComponent({noCache}) {\n return await fetchThirdParty(noCache);\n }\n \n+let veryDeepObject = [\n+ {\n+ bar: {\n+ baz: {\n+ a: {},\n+ },\n+ },\n+ },\n+ {\n+ bar: {\n+ baz: {\n+ ...
2025-07-08T14:49:25
golang/go
6edb9f9c51f4f9042563f6fcf68701d1fed33c8f
819c53c25f2992113c202644045b93bd3a578f54
go/types, types2: remove support for gotypesalias GODEBUG flag For #76472. Change-Id: Ia51b41639637b1de916625e73c26f625382be305 Reviewed-on: https://go-review.googlesource.com/c/go/+/736441 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceacc...
[ { "path": "src/cmd/compile/internal/noder/irgen.go", "patch": "@@ -56,7 +56,6 @@ func checkFiles(m posMap, noders []*noder) (*types2.Package, *types2.Info, map[*\n \t\tIgnoreBranchErrors: true, // parser already checked via syntax.CheckBranches mode\n \t\tImporter: &importer,\n \t\tSizes: ...
2026-01-15T00:10:00
rust-lang/rust
1af153cdb91c3d862daa5d1382496055fef678c6
8a703520e80d87d4423c01f9d4fbc9e5f6533a02
Tweak incorrect assoc item note
[ { "path": "compiler/rustc_hir_typeck/src/method/suggest.rs", "patch": "@@ -1175,10 +1175,24 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n let mut ty_file = None;\n let mode = no_match_data.mode;\n let is_method = mode == Mode::MethodCall;\n+ let has_self_assoc_type = if let SelfSourc...
2026-02-20T03:25:04
electron/electron
26e886c517bc57747081b6cc26380b03bc61654a
26a473db981c9593154aaeb0a558565722105c83
fix: disable NSAutoFillHeuristicController on macOS 26 (#48379) Co-authored-by: Keeley Hammond <khammond@slack-corp.com>
[ { "path": "patches/chromium/.patches", "patch": "@@ -141,3 +141,4 @@ chore_add_electron_objects_to_wrappablepointertag.patch\n chore_expose_isolate_parameter_in_script_lifecycle_observers.patch\n revert_partial_remove_unused_prehandlemouseevent.patch\n allow_electron_to_depend_on_components_os_crypt_sync.pa...
2025-09-25T23:40:55
nodejs/node
408aba6190367d15c34d0437c60c480fe022852d
43eb6cb5819f08e35231c33fb2fc423f08543eb0
deps: nghttp2: revert 7784fa979d0b This commit reverts "Make error handling robust". Without this revert, we are getting timeouts, crashes, and different error codes in `parallel/test-http2-*`. Refs: https://github.com/nghttp2/nghttp2/commit/7784fa979d0bcf801a35f1afbb25fb048d815cd7 PR-URL: https://github.com/nodejs/n...
[ { "path": "deps/nghttp2/lib/nghttp2_int.h", "patch": "@@ -52,11 +52,7 @@ typedef enum {\n * Unlike NGHTTP2_ERR_IGN_HTTP_HEADER, this does not invoke\n * nghttp2_on_invalid_header_callback.\n */\n- NGHTTP2_ERR_REMOVE_HTTP_HEADER = -106,\n- /*\n- * Cancel pushed stream.\n- */\n- NGHTTP2_ERR_PU...
2025-10-26T20:32:37
vercel/next.js
7bece27057791c5d5fb0029a4d462f2d8dbf5838
663c9151cf2f75662cc1e8054b91409d8eea8cd1
[turbopack] fix our verify features in turbo-tasks backend (#90013) Some recent refactorings accidentally broke these features Mostly it was small API deltas (e.g. moving `get_task_description` onto TaskGuard, renaming some of the `TaskStorage` apis), but the removal of the `stateful` flag was more interesting, so th...
[ { "path": "turbopack/crates/turbo-tasks-backend/Cargo.toml", "patch": "@@ -19,7 +19,7 @@ no_fast_stale = []\n verify_serialization = []\n verify_aggregation_graph = []\n verify_immutable = []\n-verify_determinism = []\n+verify_determinism = [\"turbo-tasks/verify_determinism\"]\n trace_aggregation_update_que...
2026-02-17T08:44:39
facebook/react
f1ecf82bfb5fdfa5d1c3aedcf114415fc29bd2da
b44a99bf58d69d52b5288d9eadcc6d226d705e11
[Flight] Optimize Async Stack Collection (#33727) We need to optimize the collection of debug info for dev mode. This is an incredibly hot path since it instruments all I/O and Promises in the app. These optimizations focus primarily on the collection of stack traces. They are expensive to collect because we need to ...
[ { "path": "packages/react-server/src/ReactFlightAsyncSequence.js", "patch": "@@ -26,7 +26,7 @@ type PromiseWithDebugInfo = interface extends Promise<any> {\n export type IONode = {\n tag: 0,\n owner: null | ReactComponentInfo,\n- stack: ReactStackTrace, // callsite that spawned the I/O\n+ stack: null,...
2025-07-08T14:49:08
golang/go
819c53c25f2992113c202644045b93bd3a578f54
c7258178cda55e3903ad8e4b6cc51861fb689457
cmd/compile: ensure ops have the expected argument widths The generic SSA representation uses explicit extension and truncation operations to change widths of values. The map intrinsics were playing somewhat fast and loose with this requirement. Fix that, and add a check to make sure we don't regress. I don't think t...
[ { "path": "src/cmd/compile/internal/ssa/_gen/divmod.rules", "patch": "@@ -223,7 +223,7 @@\n (Rsh64Ux64 <typ.UInt64>\n (Avg64u\n (Lsh64x64 <typ.UInt64> (ZeroExt32to64 x) (Const64 <typ.UInt64> [32]))\n- (Mul64 <typ.UInt64> (ZeroExt32to64 x) (Const64 <typ.UInt32> [int64(umagic32(c).m)]...
2025-12-18T20:29:39
nodejs/node
60b9aaa3a95f48dc7a10e5bfbec4071fe04048cd
38af5317b4c54a585f8899b2be7baeba1fe98bb7
test: async iife in repl PR-URL: https://github.com/nodejs/node/pull/44878 Fixes: https://github.com/nodejs/node/issues/38685 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Antoine du Hamel <duhamelantoin...
[ { "path": "test/parallel/test-repl-async-iife.js", "patch": "@@ -0,0 +1,10 @@\n+'use strict';\n+require('../common');\n+\n+// Note: This test ensures that async IIFE doesn't crash\n+// Ref: https://github.com/nodejs/node/issues/38685\n+\n+const repl = require('repl').start({ terminal: true });\n+\n+repl.wri...
2025-11-08T22:03:18
vercel/next.js
326fb8131f3e2fcad8853f3341036771ccb5a91a
a8d460e90e431f0962325d27d82be37bd7668394
[turbopack] Fix some modification tracking bugs in TaskStorage (#89708) Fix a few cases we track modification _after_ making the mutation instead of before it. For snapshotting to work correctly we need to snapshot the task before it is modified to provide a consistent view of the database (well a point in time consi...
[ { "path": "turbopack/crates/turbo-tasks-macros/src/derive/task_storage_macro.rs", "patch": "@@ -1476,8 +1476,8 @@ fn generate_trait_accessor_methods(field: &FieldInfo) -> TokenStream {\n #check_access\n let current = self.typed().flags.#field_name();\n ...
2026-02-17T07:41:55
electron/electron
26a473db981c9593154aaeb0a558565722105c83
6661457cdfdddfc7963aa2450fcec9d4bb9688f6
refactor: make api::Menu inherit from gin::Wrappable (#48351) * refactor: make api::Menu inherit from gin::Wrappable* * refactor: make api::Menu::kWrapperInfo const * refactor: use three-arg version of GetConstructor in Menu refactor: undo branch changes to two-arg version of GetConstructor * fixup! refactor: make...
[ { "path": "patches/chromium/chore_add_electron_objects_to_wrappablepointertag.patch", "patch": "@@ -8,20 +8,21 @@ electron objects that extend gin::Wrappable and gets\n allocated on the cpp heap\n \n diff --git a/gin/public/wrappable_pointer_tags.h b/gin/public/wrappable_pointer_tags.h\n-index 80ec409efe163...
2025-09-25T00:42:22
facebook/react
e4314a0a0f6ea1ab8f739c9119583d148c1be657
e43986f1f3e6e94f7eef86fb21c830959e0ade6c
[tests] Assert on component stack for Maximum Update error (#33686) Good to assert these include the component stack
[ { "path": "packages/react-dom/src/__tests__/ReactUpdates-test.js", "patch": "@@ -20,6 +20,19 @@ let waitFor;\n let assertLog;\n let assertConsoleErrorDev;\n \n+function normalizeCodeLocInfo(str) {\n+ return (\n+ str &&\n+ str.replace(/^ +(?:at|in) ([\\S]+)[^\\n]*/gm, function (m, name) {\n+ cons...
2025-07-07T17:58:03
rust-lang/rust
f110b38c6f5b81494e0144ae4af5db1e3d8e8736
1bac2b65f56581400f5db629d9704ec5c7084289
fix a tests that assunes the wrong alignment on s390x on s390x vectors are aligned at 8 bytes not 16 or vector length like on x86.
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/layout/tests.rs", "patch": "@@ -379,15 +379,20 @@ struct Goal(Foo<S>);\n \n #[test]\n fn simd_types() {\n+ let size = 16;\n+ #[cfg(not(target_arch = \"s390x\"))]\n+ let align = 16;\n+ #[cfg(target_arch = \"s390x\")]\n+ let align = 8;\n ...
2026-03-27T08:47:36
golang/go
a006e17162ddf70b7ee23a8ec2e3e064d0102bd5
858d4bf8511a7741cf5c21f1d51b23ed180fd450
syscall: document Sendfile semantics syscall.Sendfile behavior differs significantly between operating systems. Document the platform-specific behavior for the offset argument and partial write reporting on Linux versus BSD-derived systems. Fixes #64044 Change-Id: I93f740c3e2df911a10bf0884ffab218d4bb4e5fc GitHub-La...
[ { "path": "src/syscall/syscall_unix.go", "patch": "@@ -525,6 +525,22 @@ func Socketpair(domain, typ, proto int) (fd [2]int, err error) {\n \treturn\n }\n \n+// Sendfile copies up to count bytes from file descriptor infd to file descriptor outfd.\n+//\n+// It wraps the sendfile system call. The behavior vari...
2026-01-18T14:11:05
vercel/next.js
a8d460e90e431f0962325d27d82be37bd7668394
6df47fc8a31cb665b0b5fed06935d3f094f6ca4e
fix(next/legacy/image): add deployment id (dpl) query string support (#89956) ## What? Add deployment ID (`?dpl`) query string support to `next/legacy/image`. ## Why? The shared `image-loader.ts` (used by `next/image`) already extracts and appends the `?dpl` deployment ID to optimized image URLs. The legacy image c...
[ { "path": "packages/next/src/client/legacy/image.tsx", "patch": "@@ -24,6 +24,7 @@ import { ImageConfigContext } from '../../shared/lib/image-config-context.shared\n import { warnOnce } from '../../shared/lib/utils/warn-once'\n import { normalizePathTrailingSlash } from '../normalize-trailing-slash'\n impor...
2026-02-17T02:07:03
nodejs/node
38af5317b4c54a585f8899b2be7baeba1fe98bb7
b98ada27e7fe7f66c560fd5601ad243e1419b259
doc: fix link in `--env-file=file` section PR-URL: https://github.com/nodejs/node/pull/60563 Fixes: https://github.com/nodejs/node/issues/60562 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -4150,7 +4150,7 @@ node --stack-trace-limit=12 -p -e \"Error.stackTraceLimit\" # prints 12\n [debugging security implications]: https://nodejs.org/en/docs/guides/debugging-getting-started/#security-implications\n [deprecation warnings]: deprecations.md#list-of-deprec...
2025-11-08T20:00:49
electron/electron
6661457cdfdddfc7963aa2450fcec9d4bb9688f6
b51e82c5fbec9c6d0bbf68bcfd51ec5309596cbc
refactor: prefer upstream `gin::Arguments::ThrowTypeError()` over `gin_helper` (#48368) * refactor: use gin::Arguments::ThrowTypeError() in AutoUpdater::SetFeedURL() * refactor: use gin::Arguments::ThrowTypeError() in Browser::Focus() * refactor: use gin::Arguments::ThrowTypeError() in SystemPreferences::SetUserDefa...
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -455,10 +455,10 @@ void GotPrivateKey(std::shared_ptr<content::ClientCertificateDelegate> delegate,\n }\n \n void OnClientCertificateSelected(\n- v8::Isolate* isolate,\n+ v8::Isolate* const isolate,\n std::shared_ptr<content::ClientCe...
2025-09-25T00:10:05
facebook/react
8a6c589be74a389e62a996e74f8777ccd2a237ac
7cafeff340f44fff840b332d3463533dc2d3734b
[Flight] Keep a separate ref count for debug chunks (#33717) Same as #33716 but without the separate close signal. We'll need the ref count for separate debug channel anyway but I'm not sure we'll need the separate close signal.
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -278,7 +278,7 @@ function patchConsole(consoleInst: typeof console, methodName: string) {\n request,\n parseStackTrace(new Error('react-stack-top-frame'), 1),\n );\n- request.pendingChunks++;\n+ ...
2025-07-07T15:42:20
golang/go
858d4bf8511a7741cf5c21f1d51b23ed180fd450
8e3104dc269b959083f7e7133841e3366a477ef1
debug/elf: return FormatError when reading short files NewFile returns the raw error from ReadAt when failing to read the ELF identifier, typically io.EOF for empty or short files. This breaks the API contract that all parsing failures should return *FormatError. Wrap the error in FormatError for consistency with oth...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -290,7 +290,7 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t// Read and decode ELF identifier\n \tvar ident [16]uint8\n \tif _, err := r.ReadAt(ident[0:], 0); err != nil {\n-\t\treturn nil, err\n+\t\treturn nil, &FormatError{0, \"cannot read ELF identifi...
2026-01-15T12:19:10
vercel/next.js
e5e0d35672b4663ddf554cf5a1292e3d883d1022
960437cfcccdd0b4763ef1c4e2f9ea7697e81ecc
Use StageController for runtime prerendering (#89972) Stacked on #89971 This controller was introduced to help with dev time validation. It models stage transitions in a helpful way that will become more useful soon as we get more advanced with what kinds of sync IO are considered errors. To prepare for this we will...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -222,7 +222,6 @@ import {\n } from '../../shared/lib/router/utils/get-dynamic-param'\n import type { ExperimentalConfig } from '../config-shared'\n import type { Params } from '../request/params'\n-import { createPromiseWithResolve...
2026-02-17T00:13:44
electron/electron
b51e82c5fbec9c6d0bbf68bcfd51ec5309596cbc
235fdc41f6ccea67afa10a423024d337093540fd
test: rerun failed tests individually (#48205) * test: rerun failed tests individually * ci: use screencapture-nag-remover Needed to bypass the popup message "bash" is requesting to bypass the system private window picker and directly access your screen and audio. * Revert "chore: test with 1st quadrant of the wind...
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -110,11 +110,6 @@ jobs:\n configure_sys_tccdb \"$values\"\n fi\n done\n-\n- # Ref: https://github.com/getsentry/sentry-cocoa/blob/main/scripts/ci-enable-permissions.sh\n- if [ \"$OSTYPE...
2025-09-24T20:35:14
nodejs/node
b98ada27e7fe7f66c560fd5601ad243e1419b259
828cd8ae6ad7c949559268277353ad75c9f6c553
doc: fix linter issues PR-URL: https://github.com/nodejs/node/pull/60636 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "doc/api/http.md", "patch": "@@ -253,19 +253,19 @@ added: v0.11.4\n \n Produces a socket/stream to be used for HTTP requests.\n \n-By default, this function behaves identically to [`net.createConnection(options)`][],\n+By default, this function behaves identically to [`net.createConnection()`][],\...
2025-11-08T17:09:29
facebook/react
7cafeff340f44fff840b332d3463533dc2d3734b
0378b46e7e4c5c15ac57308e2894b6d78d5fb488
[Flight] Close Debug Channel when All Lazy References Have Been GC:ed (#33718) When we have a debug channel open that can ask for more objects. That doesn't close until all lazy objects have been explicitly asked for. If you GC an object before the lazy references inside of it before asking for or releasing the object...
[ { "path": "fixtures/flight/src/index.js", "patch": "@@ -16,18 +16,49 @@ function findSourceMapURL(fileName) {\n \n let updateRoot;\n async function callServer(id, args) {\n- const response = fetch('/', {\n- method: 'POST',\n- headers: {\n- Accept: 'text/x-component',\n- 'rsc-action': id,\n-...
2025-07-07T15:28:15
rust-lang/rust
a53356ec89a20217e0968f19693e50e25beda128
23903d01c237d7c7d4fb62b82ca846bc45de4e0c
fix: [rustfmt] prevent panic when rewritng associated item delegations Fixes a rustfmt bug for `#![feature(fn_delegation)]`
[ { "path": "src/tools/rustfmt/src/visitor.rs", "patch": "@@ -665,11 +665,11 @@ impl<'b, 'a: 'b> FmtVisitor<'a> {\n }\n \n // TODO(calebcartwright): consider enabling box_patterns feature gate\n- match (&ai.kind, visitor_kind) {\n- (ast::AssocItemKind::Const(c), AssocTraitIte...
2026-03-27T05:11:27
golang/go
8e3104dc269b959083f7e7133841e3366a477ef1
eaf6650c2bff2fe466621f8fa23844dcbbdbcee8
simd/archsimd/_gen/simdgen: fix typos in error messages simdgen: fix typos in error messages Change-Id: I921eea63c4847b2af43a1d5a1ea075e86f58aa77 GitHub-Last-Rev: 8c9dae51fd906aee04f52a5d44c6d4c923fc52d0 GitHub-Pull-Request: golang/go#77012 Reviewed-on: https://go-review.googlesource.com/c/go/+/732880 Reviewed-by: Ke...
[ { "path": "src/simd/archsimd/_gen/simdgen/gen_utility.go", "patch": "@@ -157,7 +157,7 @@ func (op *Operation) shape() (shapeIn inShape, shapeOut outShape, maskType maskS\n \t\t\tif shapeOut != OneVregOutAtIn && in.AsmPos == 0 && in.Class == \"vreg\" {\n \t\t\t\tshapeOut = OneVregOutAtIn\n \t\t\t} else {\n-\...
2025-12-27T14:09:40
vercel/next.js
6144980ce306a1d962304f1e3881ad2b84f5ff92
f8e47d49b0b5feb9e0f281cdb79af6d6f7013eb8
Expand deferred entries test suite and fix turbopack build (#90057) ## Summary Reworks Turbopack deferred entries in production build so deferred routes are processed last in the same project lifecycle, with `onBeforeDeferredEntries` executed between the non-deferred and deferred phases. ## What changed - Moved defer...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -806,11 +806,26 @@ impl AppProject {\n \n #[turbo_tasks::function]\n pub async fn routes(self: Vc<Self>) -> Result<Vc<Routes>> {\n+ Ok(self.routes_with_filter(None))\n+ }\n+\n+ #[turbo_tasks::function]\n+ pub async fn routes_with_f...
2026-02-16T23:54:14
nodejs/node
828cd8ae6ad7c949559268277353ad75c9f6c553
d13796978902e70a5b7e0ce25ab7b4cee9773d81
doc: add missing history entry for `sqlite.md` PR-URL: https://github.com/nodejs/node/pull/60607 Fixes: https://github.com/nodejs/node/issues/60601 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By...
[ { "path": "doc/api/sqlite.md", "patch": "@@ -4,6 +4,12 @@\n \n <!-- YAML\n added: v22.5.0\n+changes:\n+ - version:\n+ - v23.4.0\n+ - v22.13.0\n+ pr-url: https://github.com/nodejs/node/pull/55890\n+ description: SQLite is no longer behind `--experimental-sqlite` but still experimental.\n -->\n \...
2025-11-08T16:56:14
facebook/react
453a19a107d02dbcde1f722361918db24426de64
5d87cd224452c68d09bef99656b6261e9772a210
[Flight] Collect Debug Info from Rejections in Aborted Render (#33708) This delays the abort by splitting the abort into a first step that just flags a task as abort and tracks the time that we aborted. This first step also invokes the `cacheSignal()` abort handler. Then in a macrotask do we finish flushing the abort...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js", "patch": "@@ -2876,7 +2876,9 @@ describe('ReactFlightDOM', () => {\n };\n });\n \n- controller.abort('boom');\n+ await serverAct(() => {\n+ controller.abort('boom');\n+ });\n resolveGreeting();\n ...
2025-07-05T21:01:41
rust-lang/rust
dc5cb1719eed6ac9275fe93d914d32141606b2ac
3a933e5bf5b695faf9e09d47a263a20c6b85c26a
Fix ice in rustdoc of private reexport
[ { "path": "src/librustdoc/passes/collect_intra_doc_links.rs", "patch": "@@ -1067,17 +1067,27 @@ impl LinkCollector<'_, '_> {\n #[instrument(level = \"debug\", skip_all)]\n fn resolve_links(&mut self, item: &Item) {\n let tcx = self.cx.tcx;\n- if !self.cx.document_private()\n- ...
2026-03-27T00:07:58
electron/electron
1fda08b8c8ffad2fec485f7c8089b9e0958cc2f5
19256a07dde3771b36cdec01ccf4b004a623d79b
chore: bump chromium to 142.0.7417.0 (main) (#48275) * chore: bump chromium in DEPS to 142.0.7401.0 * 6911185: Reland "Send touch moves async immediately after scroll starts." https://chromium-review.googlesource.com/c/chromium/src/+/6911185 * 6906887: mac: click through content area in main window https://chromiu...
[ { "path": ".github/actions/checkout/action.yml", "patch": "@@ -172,7 +172,6 @@ runs:\n run: |\n rm -rf src/android_webview\n rm -rf src/ios/chrome\n- rm -rf src/third_party/blink/web_tests\n rm -rf src/third_party/blink/perf_tests\n rm -rf src/chrome/test/data/xr/webvr_info\...
2025-09-23T03:16:27
golang/go
eaf6650c2bff2fe466621f8fa23844dcbbdbcee8
1b7e5836ad2ae6bc5466e3b1916294d20403386c
test: use lower-case error message in heapsampling.go According to Go style guidelines, error strings should not be capitalized. Change-Id: Iacfb3f5192b7be40da99b6b7e4801f1ae1169efc GitHub-Last-Rev: 440396e0946edb18c422442ea235b5c57c2899af GitHub-Pull-Request: golang/go#76999 Reviewed-on: https://go-review.googlesour...
[ { "path": "test/heapsampling.go", "patch": "@@ -205,7 +205,7 @@ func checkAllocations(records []runtime.MemProfileRecord, leafFrame string, fram\n // consistently far from the expected value.\n func checkValue(fname string, ln int, testName string, want int64, got []int64) error {\n \tif got == nil {\n-\t\t...
2025-12-26T14:48:24
facebook/react
5d87cd224452c68d09bef99656b6261e9772a210
5f71eed2ebade22ffd374d291b2a21d94c35ffa7
React DevTools 6.1.4 -> 6.1.5 (#33702) Same as 6.1.4, but with 2 hotfixes: * fix: check if profiling for all profiling hooks ([hoxyq](https://github.com/hoxyq) in [#33701](https://github.com/facebook/react/pull/33701)) * fix: fallback to reading string stack trace when failed ([hoxyq](https://github.com/hoxyq) in [#33...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"6.1.4\",\n+ \"version\": \"6.1.5\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2025-07-04T15:31:00
nodejs/node
3dd26f32fb01a012f3d162b91e06ccc3770e3752
343689f975257853a8cc36bae33c1a1c0d706b42
doc: recommend events.once to manage 'close' event `events.once` is a great way to manage the `close` / `error` / `exit` events of a child process. It creates a Promise that is fulfilled when the EventEmitter emits the given event or that is rejected if the EventEmitter emits 'error' while waiting. I think a lot of p...
[ { "path": "doc/api/child_process.md", "patch": "@@ -29,6 +29,7 @@ ls.on('close', (code) => {\n \n ```mjs\n import { spawn } from 'node:child_process';\n+import { once } from 'node:events';\n const ls = spawn('ls', ['-lh', '/usr']);\n \n ls.stdout.on('data', (data) => {\n@@ -39,9 +40,8 @@ ls.stderr.on('data'...
2025-11-08T15:04:44
vercel/next.js
a04d598f3c9070674968e57c610182df65a0755e
ababa1b3d967030ba2aa63a808ef3203f59e9b73
docs: agent skills, pr-status script, and AGENTS.md updates (1/8) (#89857) ## Summary - **Agent skills**: 9 new skill files in `.agents/skills/` covering DCE, flags, react-vendoring, runtime-debug, PR triage, and skill authoring - **PR status tooling**: `scripts/pr-status.js` script and `.claude/commands/pr-status.md...
[ { "path": ".agents/skills/README.md", "patch": "@@ -0,0 +1,115 @@\n+# Skills Authoring Guide\n+\n+Skills are on-demand context files that Claude loads when relevant. They extend `AGENTS.md` with deep-dive workflows, code templates, and verification steps.\n+\n+## When to Create a Skill\n+\n+Create a skill w...
2026-02-16T17:32:27
electron/electron
f62d7254c4c4c865e40da8056aee73644aa37bd7
c7aa0b537d4be8bf5db281bacdf76a26aae1866d
build: update build tools to get siso for forks fix (#48345)
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -44,14 +44,6 @@ runs:\n - name: Add Clang problem matcher\n shell: bash\n run: echo \"::add-matcher::src/electron/.github/problem-matchers/clang.json\"\n- - name: Setup Siso for fork pull requests\n- if: ${{ github.e...
2025-09-18T04:04:09
golang/go
1b7e5836ad2ae6bc5466e3b1916294d20403386c
e9e05687dee08ba0f0fb07b076f1c3f47bb57f34
cmd/compile: speedup large init function compile time Fixes #77153 Change-Id: Ia3906e4d686281be78b65daf7a7a4fd1b2b2483d Reviewed-on: https://go-review.googlesource.com/c/go/+/737880 Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Re...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -3342,6 +3342,9 @@ func (r *reader) pkgInitOrder(target *ir.Package) {\n \t// Outline (if legal/profitable) global map inits.\n \tstaticinit.OutlineMapInits(fn)\n \n+\t// Split large init function.\n+\tstaticinit.SplitLargeInit(fn)\n+\n \tta...
2026-01-21T11:11:29
facebook/react
5f71eed2ebade22ffd374d291b2a21d94c35ffa7
455424dbf3d46d7e9326a64409de063e8f768848
[devtools] fix: check if profiling for all profiling hooks (#33701) Follow-up to https://github.com/facebook/react/pull/33652. Don't know how the other were missed. Double-checked that Profiler works in dev mode. Now all hooks start with `!isProfiling` check and return, if true.
[ { "path": "packages/react-devtools-shared/src/backend/profilingHooks.js", "patch": "@@ -298,14 +298,16 @@ export function createProfilingHooks({\n }\n \n function markCommitStarted(lanes: Lanes): void {\n- if (isProfiling) {\n- recordReactMeasureStarted('commit', lanes);\n-\n- // TODO (time...
2025-07-04T15:21:51
rust-lang/rust
5e4e8da4851b92c18f31df0c63f075219ad4e5ff
bfc05d6b072585dfd0c792ec1b8728c08a3511fe
bootstrap.example.toml: Hint how to allow `build.warnings` This commit turns "Actual" into "Expected" for the following problem: Steps: 1. Do some quick and experimental local code changes in the compiler code. 2. Run `./x build`. 3. Observe `error: warnings are denied by `build.warnings` configuration`. 4. Decide to...
[ { "path": "bootstrap.example.toml", "patch": "@@ -826,7 +826,8 @@\n # in the sysroot. It is required for running nvptx tests.\n #rust.llvm-bitcode-linker = false\n \n-# Whether to deny warnings in crates\n+# Whether to deny warnings in crates. Set to `false` to avoid\n+# error: warnings are denied by `build...
2026-03-26T18:39:05
nodejs/node
887e3eca98afe6522e1d5098b938556fca36c463
8c32a71a7b9fc7755faf53887f0958378091c311
doc: fix typo in `process.unref` documentation PR-URL: https://github.com/nodejs/node/pull/59698 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/process.md", "patch": "@@ -4337,7 +4337,7 @@ added:\n \n > Stability: 1 - Experimental\n \n-* `maybeUnfefable` {any} An object that may be \"unref'd\".\n+* `maybeRefable` {any} An object that may be \"unref'd\".\n \n An object is \"unrefable\" if it implements the Node.js \"Refable protoc...
2025-11-08T14:55:15
vercel/next.js
80e849e152aa244d270cd539766e3bd69a97b6cf
0382ecc2963f42baa2aa15f378309a40d0f62ed3
fix(turbopack): --debug-build-paths fails with route groups (#89336) Confirmed the fix locally on the original app I faced the issue with. ### Why? When using `--debug-build-paths`, a pattern with a route group on Turbopack, it fails with an error: ``` Error [PageNotFoundError]: Cannot find module for page: /nested...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -10,6 +10,7 @@ use next_core::{\n instrumentation::instrumentation_files,\n middleware::middleware_files,\n mode::NextMode,\n+ next_app::{AppPage, AppPath},\n next_client::{\n ClientChunkingContextOptions, get_client_chunkin...
2026-02-16T09:23:00
electron/electron
048d6207014ac6294ac3f69bbd71182b91593f46
15cdae1cf0bed0d759fe1e7b7087e5e3fc32269d
fix: remove unneeded handlescope from JS callbacks (#48318) fix: remove handlescope from JS callbacks
[ { "path": "shell/browser/api/electron_api_session.cc", "patch": "@@ -1700,14 +1700,11 @@ Session* Session::CreateFrom(v8::Isolate* isolate,\n return nullptr;\n }\n \n- {\n- v8::HandleScope handle_scope(isolate);\n- v8::Local<v8::Object> wrapper;\n- if (!session->GetWrapper(isolate).ToLocal(&...
2025-09-15T21:56:38
facebook/react
455424dbf3d46d7e9326a64409de063e8f768848
9fd4c09d6887ccd5d8a6fe69673cd89338172b5f
[devtools] fix: fallback to reading string stack trace when failed (#33700) Discovered while testing with Hermes.
[ { "path": "packages/react-devtools-shared/src/backend/utils/index.js", "patch": "@@ -381,7 +381,7 @@ function collectStackTrace(\n // $FlowFixMe[prop-missing]\n typeof callSite.getEnclosingColumnNumber === 'function'\n ? (callSite: any).getEnclosingColumnNumber()\n- : call...
2025-07-04T14:36:52
golang/go
1996c22f0a58a32f5f415e1a6c84bcb305f04c36
c61a48619ff2d26543d0f4874ab495bbbfdc701f
syscall: return early on error in Recvmsg Currently, Recvmsg may access the rsa buffer even if the underlying syscall returns an error. Following the same change done for x/sys/unix.Recvmsg in CL 734740. For golang/go#76848 Change-Id: I2a145d822442a2033a76f4717317a39010b17bd5 Reviewed-on: https://go-review.googleso...
[ { "path": "src/syscall/syscall_unix.go", "patch": "@@ -385,6 +385,9 @@ func recvmsgInet6(fd int, p, oob []byte, flags int, from *SockaddrInet6) (n, oob\n func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags int, from Sockaddr, err error) {\n \tvar rsa RawSockaddrAny\n \tn, oobn, recvflags,...
2026-01-10T14:56:01
vercel/next.js
18b18e228aee0d578963bdebf5df805ab426f6e1
ee76e305cc26fc20035bdaf556273a0246876b14
fix(agents-md): use `require.resolve()` to get the installed `next` version (#89166) ### Why? When the package.json has Next.js version with a tag instead of a specific version, e.g., `"next": "canary"`, it received an error: ``` Failed to pull docs: Could not find documentation for Next.js vcanary. This version may...
[ { "path": "packages/next-codemod/lib/__tests__/agents-md-e2e.test.js", "patch": "@@ -5,6 +5,7 @@ const fs = require('fs')\n const path = require('path')\n const os = require('os')\n const { runAgentsMd } = require('../../bin/agents-md')\n+const { getNextjsVersion } = require('../../lib/agents-md')\n \n /**\...
2026-02-14T20:36:47
nodejs/node
4e7f9c997d93d07a7d11ba7f2ed86a074e1f49fe
1727a8f1b2485ccf7468c4af21e083837f380488
watch: fix interaction with multiple env files PR-URL: https://github.com/nodejs/node/pull/60605 Fixes: https://github.com/nodejs/node/issues/60599 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.co...
[ { "path": "lib/internal/main/watch_mode.js", "patch": "@@ -34,7 +34,10 @@ markBootstrapComplete();\n \n const kKillSignal = convertToValidSignal(getOptionValue('--watch-kill-signal'));\n const kShouldFilterModules = getOptionValue('--watch-path').length === 0;\n-const kEnvFile = getOptionValue('--env-file')...
2025-11-08T14:35:07
facebook/react
9fd4c09d6887ccd5d8a6fe69673cd89338172b5f
d45db667d4509a5d82d4509e4aa51fdb266aa136
React DevTools 6.1.3 -> 6.1.4 (#33699) Changes from 6.1.3: * feat: static Components panel layout ([hoxyq](https://github.com/hoxyq) in [#33696](https://github.com/facebook/react/pull/33696)) * fix: support optionality of structured stack trace function name ([hoxyq](https://github.com/hoxyq) in [#33697](https://githu...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"6.1.3\",\n+ \"version\": \"6.1.4\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2025-07-04T11:55:53
electron/electron
54447387218af60f6290170e72fe7c32b4b2a1c8
a6959ca97b93485f3ccc38e4d357e9b2e9273479
fix: set ozone platform for wayland (#48301) * fix: set ozone platform for wayland * whoops, includes. thx charles
[ { "path": "BUILD.gn", "patch": "@@ -655,6 +655,7 @@ source_set(\"electron_lib\") {\n \"//ui/events/devices/x11\",\n \"//ui/events/platform/x11\",\n \"//ui/gtk:gtk_config\",\n+ \"//ui/linux:display_server_utils\",\n \"//ui/linux:linux_ui\",\n \"//ui/linux:linux_ui_factory\"...
2025-09-12T23:17:06
golang/go
d2aad0df601df3a48ee4823309872cd224d91aa3
bfb851c31eaf385649263e42e1a8620e2df01158
runtime: guard unexpected return pc gp.m dereference If stack scanning reaches here while scanning a waiting goroutine, gp.m will be nil. We are going to crash anyway because the stack is corrupt, but we still want to reach the print below for context rather than dying with a SIGSEGV here. For #64030. Change-Id: I6a...
[ { "path": "src/runtime/traceback.go", "patch": "@@ -456,7 +456,7 @@ func (u *unwinder) next() {\n \t\t// get everything, so crash loudly.\n \t\tfail := u.flags&(unwindPrintErrors|unwindSilentErrors) == 0\n \t\tdoPrint := u.flags&unwindSilentErrors == 0\n-\t\tif doPrint && gp.m.incgo && f.funcID == abi.FuncI...
2025-12-03T20:42:03
vercel/next.js
ee76e305cc26fc20035bdaf556273a0246876b14
9662feb629fd9c1d402e558a7783bb12d5300313
dx: Include path count in export error message (#89333) Supersedes https://github.com/vercel/next.js/pull/88910 --- <a href="https://cursor.com/background-agent?bcId=bc-a05c69b9-7049-4095-8985-761868c63e1c"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/assets/images/open-in-cursor-d...
[ { "path": "packages/next/errors.json", "patch": "@@ -1050,5 +1050,6 @@\n \"1049\": \"Turbopack is not supported on this platform (%s/%s) because native bindings are not available. Only WebAssembly (WASM) bindings were loaded, and Turbopack requires native bindings.\\\\n\\\\nTo use Next.js on this platform...
2026-02-14T20:28:28
nodejs/node
6225189de90b64f374a8e93450c69e9c67cdccd8
b8e264d3c36d2935f9a8d0426e9c9bc014ae089f
doc: fix pseudo code in modules.md This problem was introduced in PR #38837. PR-URL: https://github.com/nodejs/node/pull/57677 Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/modules.md", "patch": "@@ -414,7 +414,7 @@ NODE_MODULES_PATHS(START)\n 4. while I >= 0,\n a. if PARTS[I] = \"node_modules\", GOTO d.\n b. DIR = path join(PARTS[0 .. I] + \"node_modules\")\n- c. DIRS = DIR + DIRS\n+ c. DIRS = DIRS + DIR\n d. let I = I - 1\n 5. return DIRS + GL...
2025-11-08T14:34:49
facebook/react
3fc1bc6f28bec1742b5f07d23148f25927e21d41
ef8b6fa257aba6c4a07b5cdb152859704aa045bc
[devtools] fix: support optionality of structured stack trace function name (#33697) Follow-up to https://github.com/facebook/react/pull/33680. Turns out `.getFunctionName` not always returns string.
[ { "path": "packages/react-devtools-shared/src/backend/utils/index.js", "patch": "@@ -360,8 +360,9 @@ function collectStackTrace(\n const callSite = structuredStackTrace[i];\n const name = callSite.getFunctionName();\n if (\n- name.includes('react_stack_bottom_frame') ||\n- name.include...
2025-07-04T09:32:09
electron/electron
a6959ca97b93485f3ccc38e4d357e9b2e9273479
45353ae38c9b3bee1ed888bed5685a64c3e864ab
refactor: allocate api::Debugger on cpp heap (#48266) * refactor: remove unused isolate arg from Debugger ctor * refactor: make Debugger ctor, dtor public needed for cppgc::MakeGarbageCollected() This is what upstream does, e.g. https://chromium-review.googlesource.com/c/chromium/src/+/6722236 * fixup! refactor: r...
[ { "path": "patches/chromium/chore_add_electron_objects_to_wrappablepointertag.patch", "patch": "@@ -8,17 +8,18 @@ electron objects that extend gin::Wrappable and gets\n allocated on the cpp heap\n \n diff --git a/gin/public/wrappable_pointer_tags.h b/gin/public/wrappable_pointer_tags.h\n-index 80ec409efe163...
2025-09-11T20:03:17
golang/go
0152075d5aba0f198ac67fb426a0fc4c16e2b363
a53589662719d0186e3ce3b965c082b829d0ce4c
encoding/json/v2: remove issue reference in Duration formatting error The json/v2 working group decided to commit to no default representation for time.Duration for the foreseeable future. Thus, we can remove the issue reference in the error message. If JavaScript (TC39) formally adopts the Temporal.Duration type, wh...
[ { "path": "src/encoding/json/v2/arshal_time.go", "patch": "@@ -54,7 +54,7 @@ func makeTimeArshaler(fncs *arshaler, t reflect.Type) *arshaler {\n \t\t\t\treturn marshalNano(enc, va, mo)\n \t\t\t} else {\n \t\t\t\t// TODO(https://go.dev/issue/71631): Decide on default duration representation.\n-\t\t\t\treturn...
2026-01-09T01:27:59
vercel/next.js
f63be5da4275166c9ee618ffa4010c888c9fa6a9
373abe4dd0046ca4810005beff087bc4345eec5d
test: Isolate read-only-source-hmr test (#86721) This was flakey with Turbopack: ``` Error: TIMED OUT: /New page/ 404 This page could not be found. undefined at check (/root/actions-runner/_work/next.js/next.js/test/lib/next-test-utils.ts:726:9) at Object.<anonymous> (/root/actions-runner/_work/next.js/next....
[ { "path": "test/development/read-only-source-hmr/test/index.test.ts", "patch": "@@ -0,0 +1,156 @@\n+import { nextTestSetup } from 'e2e-utils'\n+import { getBrowserBodyText, retry } from 'next-test-utils'\n+import fs from 'fs-extra'\n+import path from 'path'\n+import { type Playwright } from 'next-webdriver'...
2026-02-14T10:08:12
nodejs/node
b8e264d3c36d2935f9a8d0426e9c9bc014ae089f
ca9196980842c76eb4b95ab0c7a63c1af68c43ca
src: tag v8 aligned pointer slots with embedder data type tags PR-URL: https://github.com/nodejs/node/pull/60602 Fixes: https://github.com/nodejs/node/issues/60589 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: ...
[ { "path": "src/README.md", "patch": "@@ -126,10 +126,10 @@ Typical ways of working with internal fields are:\n * `obj->GetInternalField(i)` to get a JavaScript value from an internal field.\n * `obj->SetInternalField(i, v)` to store a JavaScript value in an\n internal field.\n-* `obj->GetAlignedPointerFro...
2025-11-08T14:27:25
facebook/react
dcf83f7c2db2de64ec370df73294cedb658bd896
94fce500bcd314ea19c5c89c6385be6e62397c09
Disable ScrollTimeline in Safari (#33499) Stacked on #33501. This disables the use of ScrollTimeline when detected in Safari in the recommended SwipeRecognizer approach. I'm instead using a polyfill using touch events on iOS. Safari seems set to [release ScrollTimeline soon](https://webkit.org/blog/16993/news-from-w...
[ { "path": "fixtures/view-transition/src/components/SwipeRecognizer.js", "patch": "@@ -6,6 +6,14 @@ import React, {\n } from 'react';\n \n import ScrollTimelinePolyfill from 'animation-timelines/scroll-timeline';\n+import TouchPanTimeline from 'animation-timelines/touch-pan-timeline';\n+\n+const ua = typeof ...
2025-07-02T21:01:49
golang/go
dae71067ce7ee41ebe752a4ee3c544506e74f824
adb64adfd74470a0653dde9214a1acb0ddf72268
cmd/compile: fix mis-compilation for static array initialization The bug was first introduced when the compiler is still written in C, with CL 2254041. The static array was laid out with the wrong context, causing a stack pointer will be stored in global object. Fixes #61730 Fixes #77193 Change-Id: I22c8393314d251be...
[ { "path": "src/cmd/compile/internal/walk/complit.go", "patch": "@@ -567,11 +567,7 @@ func anylit(n ir.Node, var_ ir.Node, init *ir.Nodes) {\n \t\t\t// lay out static data\n \t\t\tvstat := readonlystaticname(t)\n \n-\t\t\tctxt := inInitFunction\n-\t\t\tif n.Op() == ir.OARRAYLIT {\n-\t\t\t\tctxt = inNonInitFu...
2026-01-21T07:39:20
rust-lang/rust
8e4b26db65996879652a2ff8981d53c325f09939
bf5fe9fdd37268f78c6ded7c00ac51d1e8d41f03
fix: wrap ty-anchor in non-path type constuctor Example --- ```rust struct TestStruct { r: &'static [i32] } fn test_fn() { let s = TestStruct{ $0 }; } ``` **Before this PR** ```rust struct TestStruct { r: &'static [i32] } fn test_fn() { let s = TestStruct{ r: &'static }; } ``` **After this PR** ```rust st...
[ { "path": "src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/missing_fields.rs", "patch": "@@ -588,14 +588,14 @@ fn test_fn() {\n fn test_fill_struct_fields_default() {\n check_fix(\n r#\"\n-//- minicore: default, option\n+//- minicore: default, option, slice\n struct TestW...
2026-03-25T23:25:25
facebook/react
508f7aa78ff53d058ee1151505efd5c4a4aefa01
e104795f635e2bb423fe9264b1cfdfff15f551e5
[Fiber] Switch back to using performance.measure for trigger logs (#33659) Stacked on #33658. Unfortunately `console.timeStamp` has the same bug that `performance.measure` used to have where equal start/end times stack in call order instead of reverse call-order. We rely on that in general so we should really switch ...
[ { "path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js", "patch": "@@ -101,28 +101,22 @@ function logComponentTrigger(\n trigger: string,\n ) {\n if (supportsUserTiming) {\n+ reusableComponentOptions.start = startTime;\n+ reusableComponentOptions.end = endTime;\n+ reusableCompon...
2025-07-02T20:10:52
vercel/next.js
373abe4dd0046ca4810005beff087bc4345eec5d
40b924359474771cd11c25bc14bfa44d2a7024bb
Turbopack: Update trybuild test dependency from 1.0.104 to 1.0.116 (#89986) This fixes a bug where these tests could fail if your terminal was too wide: https://github.com/dtolnay/trybuild/pull/325
[ { "path": "Cargo.lock", "patch": "@@ -2568,7 +2568,7 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253\"\n dependencies = [\n \"fallible-iterator\",\n- \"indexmap 2.9.0\",\n+ \"indexmap 2.12.0\",\n \"stable...
2026-02-14T10:07:46
nodejs/node
83c05d4304035222968cf00b10d609753b8a3784
622c3721bf61e0bda825bed821e316e19ba75eff
src: use CP_UTF8 for wide file names on win32 `src/node_modules.cc` needs to be consistent with `src/node_file.cc` in how it translates the utf8 strings to `std::wstring` otherwise we might end up in situation where we can read the source code of imported package from disk, but fail to recognize that it is an ESM (or ...
[ { "path": "src/compile_cache.cc", "patch": "@@ -232,10 +232,8 @@ static std::string GetRelativePath(std::string_view path,\n // the paths to wide strings before using std::filesystem::path.\n // On other platforms, std::filesystem::path can handle UTF-8 directly.\n #ifdef _WIN32\n- std::filesystem::path mo...
2025-11-08T03:41:44
electron/electron
793565e4bebec96fa1a471b3a22cb147ae4e747c
1f322ebce3cccc65b32b653ea15bc1511a0b5993
chore: bump chromium to 141.0.7390.7 (main) (#48212) * chore: bump chromium in DEPS to 141.0.7381.3 * chore: update patches * chore: bump chromium in DEPS to 141.0.7382.0 * chore: update patches * chore: bump chromium in DEPS to 141.0.7384.0 * chore: bump chromium in DEPS to 141.0.7386.0 * [Extensions] Move devt...
[ { "path": ".github/actions/fix-sync/action.yml", "patch": "@@ -109,7 +109,7 @@ runs:\n deps-file: src/DEPS\n installation-dir: src/third_party/siso/cipd\n target-platform: ${{ inputs.target-platform }}\n- package: infra/build/siso/${platform}\n+ package: build/siso/${pl...
2025-09-08T10:57:15
golang/go
2d37c2077854e225204a7c4c26c10453a20de6d1
455282911aba7512e2ba045ffd9244eb97756247
go/types, types2: better error when selecting field on type rather than value Fixes #6814. Change-Id: I659670998f8e89400d03d40189e8c54f7e705cdc Reviewed-on: https://go-review.googlesource.com/c/go/+/738040 Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit: Robert Griesemer <gri@google.com> LUCI-TryBot-Resul...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -835,6 +835,7 @@ func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, wantType bool\n \t\tcheck.errorf(e.Sel, MissingFieldOrMethod, \"%s.%s undefined (%s)\", x.expr, sel, why)\n \t\tgoto Error\n \t}\n+\t// obj != nil\n \n \t// m...
2026-01-21T22:40:04
vercel/next.js
40b924359474771cd11c25bc14bfa44d2a7024bb
bd473d007b461eab4866e38c66590f79e26c370f
docs: fix broken blockquote formatting in API Routes page (#89966) The second and third bullet points in the 'Good to know' callout were incorrectly placed outside the blockquote, breaking the visual grouping on the rendered documentation page. <!-- Thanks for opening a PR! Your contribution is much appreciated. To m...
[ { "path": "docs/02-pages/03-building-your-application/01-routing/07-api-routes.mdx", "patch": "@@ -45,9 +45,8 @@ export default function handler(req, res) {\n > **Good to know**:\n >\n > - API Routes [do not specify CORS headers](https://developer.mozilla.org/docs/Web/HTTP/CORS), meaning they are **same-ori...
2026-02-14T00:31:20
nodejs/node
622c3721bf61e0bda825bed821e316e19ba75eff
7c85846cd9859eab15214c38fae85a4eb6ecea98
benchmark: add per-suite setup option This allows us to set up fixtures for the benchmark suite only once, which can save quite a bit of time when running benchmarks that require tens of thousands of fixture files or more (e.g. the module benchmarks). PR-URL: https://github.com/nodejs/node/pull/60574 Fixes: https://g...
[ { "path": "benchmark/common.js", "patch": "@@ -28,6 +28,7 @@ class Benchmark {\n const argv = process.argv.slice(2);\n const parsed_args = this._parseArgs(argv, configs, options);\n \n+ this.originalOptions = options;\n this.options = parsed_args.cli;\n this.extra_options = parsed_args.ex...
2025-11-07T17:47:43
electron/electron
1f322ebce3cccc65b32b653ea15bc1511a0b5993
f009e077f2ec4d1b224e2c7fbb6eec1ea0709211
chore: bump node to v22.19.0 (main) (#48222) * chore: bump node in DEPS to v22.19.0 * chore: fixup patch indices * crypto: add tls.setDefaultCACertificates() https://github.com/nodejs/node/pull/58822 * esm: js-string Wasm builtins in ESM Integration https://github.com/nodejs/node/pull/59179 --------- Co-authore...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '141.0.7361.0',\n 'node_version':\n- 'v22.18.0',\n+ 'v22.19.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2025-09-05T21:16:45
golang/go
a8291eb61402d4549b69803fc8f834ded45b1f6c
4edaaf2b529219ff219798914f730ca5a0ab018b
cmd/compile/internal/staticinit: fix bug in global new(expr) The StaticInit pass asserts that the operand of &v is a global, but this is not so for the &autotemp desugaring of new(expr). (The variable has by that point escaped to the heap, so the object code calls runtime.newobject. A future optimization would be to ...
[ { "path": "src/cmd/compile/internal/staticinit/sched.go", "patch": "@@ -228,6 +228,9 @@ func (s *Schedule) staticcopy(l *ir.Name, loff int64, rn *ir.Name, typ *types.Ty\n \tcase ir.OADDR:\n \t\tr := r.(*ir.AddrExpr)\n \t\tif a, ok := r.X.(*ir.Name); ok && a.Op() == ir.ONAME {\n+\t\t\tif a.Class != ir.PEXTER...
2026-01-20T21:18:59
vercel/next.js
e0668e46689d75d7f2b44b8d634dcaeecfeeb741
69d63edcc74d0ca428322406329872887e82aae9
Run fast immediates during prerender abort to fix flaky I/O stack traces (#89969) Follow-up for #89834. In `prerenderAndAbortInSequentialTasks`, React's `finishHalt` (scheduled via `setImmediate` from `abort()`) could race with the component's pending `setTimeout` callback. When both ended up in the same timer phase,...
[ { "path": "packages/next/src/server/app-render/app-render-prerender-utils.ts", "patch": "@@ -33,8 +33,15 @@ export function prerenderAndAbortInSequentialTasks<R>(\n })\n scheduleTimeout(() => {\n try {\n- expectNoPendingImmediates()\n+ DANGEROUSLY_runPendingImmediatesAf...
2026-02-13T22:24:44
facebook/react
91d097b2c588a0977a7a10ed12512dc8a34e3a5b
7216c0f002222cdee3075410f7432d64724640cc
fix: rename bottom stack frame (#33680) `react-stack-bottom-frame` -> `react_stack_bottom_frame`. This survives `@babel/plugin-transform-function-name`, but now frames will be displayed as `at Object.react_stack_bottom_frame (...)` in V8. Checks that were relying on exact function name match were updated to use eithe...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2947,7 +2947,7 @@ function buildFakeTask(\n }\n \n const createFakeJSXCallStack = {\n- 'react-stack-bottom-frame': function (\n+ react_stack_bottom_frame: function (\n response: Response,\n stack: ReactStackTrace,\n envi...
2025-07-01T17:06:26
electron/electron
828fd59a72e673acf03f878b4f488a40fca46dfe
e8928409755245eb706c55cb6180a5bf0d9d4fcd
fix: file-only picker incorrectly allowing some directories (#48198)
[ { "path": "patches/chromium/.patches", "patch": "@@ -138,3 +138,4 @@ fix_resolve_dynamic_background_material_update_issue_on_windows_11.patch\n feat_add_support_for_embedder_snapshot_validation.patch\n chore_restore_some_deprecated_wrapper_utility_in_gin.patch\n chore_add_electron_objects_to_wrappablepointe...
2025-08-29T17:14:45
nodejs/node
2703db7985fd5b192d0c9b435b7f1633c7dda627
368eb4c430d8d72440fc42e59313b5bcab8cb127
src: show original file name in FileHandle GC close errors Otherwise, it can be virtually impossible to debug where these types of errors originate from. PR-URL: https://github.com/nodejs/node/pull/60593 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-B...
[ { "path": "src/dataqueue/queue.cc", "patch": "@@ -916,6 +916,7 @@ class FdEntry final : public EntryImpl {\n fs::FileHandle::New(realm->GetBindingData<fs::BindingData>(),\n file,\n Local<Object>(),\n+ ...
2025-11-07T15:57:05
vercel/next.js
69d63edcc74d0ca428322406329872887e82aae9
ad7d27ec50ed44fcd473fd82fc2fe8283e70822d
Fix missing incremental cache in middleware unstable_cache (#89980) ## Summary - pass `IncrementalCache` into the shared middleware template adapter so middleware/proxy modules initialize `globalThis.__incrementalCache` - add regression coverage for `unstable_cache` usage inside both deprecated `middleware` (edge) and...
[ { "path": "packages/next/src/build/templates/middleware.ts", "patch": "@@ -3,6 +3,7 @@ import '../adapter/setup-node-env.external'\n import '../../server/web/globals'\n \n import { adapter } from '../../server/web/adapter'\n+import { IncrementalCache } from '../../server/lib/incremental-cache'\n \n // Impor...
2026-02-13T22:22:32
facebook/react
7216c0f002222cdee3075410f7432d64724640cc
6a3d16ca74acd28632dabccc142d42ce411a811b
[Flight] Don't assume _debugStack and _owner is defined for prod elements (#33675) We generally treat these types of fields as optional on ReactDebugInfo and should on ReactElement too. That way we can consume prod payloads from third parties.
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -928,8 +928,8 @@ function createElement(\n type: mixed,\n key: mixed,\n props: mixed,\n- owner: null | ReactComponentInfo, // DEV-only\n- stack: null | ReactStackTrace, // DEV-only\n+ owner: ?ReactComponentInfo, // DEV-only\n+...
2025-06-30T20:15:19
golang/go
7251c9e0f00a6d7d37bb441f3e823c160131e9b5
532e3203492ebcac67b2f3aa2a52115f49d51997
doc: fix urlmaxqueryparams typos Updates #77101. Change-Id: I6a6a636cd58e1bd01943066368cb1424db6c6a92 Reviewed-on: https://go-review.googlesource.com/c/go/+/737040 Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account...
[ { "path": "doc/godebug.md", "patch": "@@ -167,8 +167,8 @@ Go 1.26 added a new `urlmaxqueryparams` setting that controls the maximum number\n of query parameters that net/url will accept when parsing a URL-encoded query string.\n If the number of parameters exceeds the number set in `urlmaxqueryparams`,\n pa...
2026-01-16T17:20:39
electron/electron
e8928409755245eb706c55cb6180a5bf0d9d4fcd
7373173e44d25c90a5127ad5c7b49295c12117a7
fix: ensure dragging works again after emitting contextmenu event (#48199)
[ { "path": "shell/browser/native_window_views_win.cc", "patch": "@@ -324,11 +324,6 @@ bool NativeWindowViews::PreHandleMSG(UINT message,\n \n return false;\n }\n- case WM_RBUTTONUP: {\n- if (!has_frame())\n- electron::api::WebContents::SetDisableDraggableRegions(false);\n- retur...
2025-08-29T14:37:37
nodejs/node
368eb4c430d8d72440fc42e59313b5bcab8cb127
ed6569c7538fed16356ae15fe218073e7c6bd18c
src: avoid C strings in more C++ exception throws Similar to 2e2f4cd095ff93278, just missed them in that commit. PR-URL: https://github.com/nodejs/node/pull/60592 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli....
[ { "path": "src/debug_utils-inl.h", "patch": "@@ -23,13 +23,26 @@ concept StringConvertible = requires(T a) {\n a.ToString()\n } -> std::convertible_to<std::string>;\n };\n+// For std::filesystem::path and similar typ...
2025-11-07T15:56:54
vercel/next.js
ad7d27ec50ed44fcd473fd82fc2fe8283e70822d
6df0b7b905d298c4d47c7be389267cb0893f6343
Turbopack hmr: preserve group factory consistency for compressed modules (#89976) ## Summary - update `installCompressedModuleFactories` to reuse an existing factory in a compressed ID group when filling missing IDs - keep `newModuleId` notifications aligned with actual IDs installed (`newModuleId(id)`) - add an execu...
[ { "path": "turbopack/crates/turbopack-ecmascript-runtime/js/src/shared/runtime/runtime-utils.ts", "patch": "@@ -551,7 +551,6 @@ function installCompressedModuleFactories(\n ) {\n let i = offset\n while (i < chunkModules.length) {\n- let moduleId = chunkModules[i] as ModuleId\n let end = i + 1\n ...
2026-02-13T22:17:25
facebook/react
3cfcdfb30720a5b8de0e981c8fdabec1abb61588
9c2a8dd5f87266308a8a8e55fb7f029ba530d36a
[Flight] Resolve Deep Cycles (#33664) Stacked on #33666. If we ever get a future reference to a cycle and that reference gets eagerly parsed before the target has loaded then we can end up with a cycle that never gets resolved. That's because our cycle resolution only works if the cyclic future reference is created s...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -165,16 +165,16 @@ const HALTED = 'halted'; // DEV-only. Means it never resolves even if connection\n \n type PendingChunk<T> = {\n status: 'pending',\n- value: null | Array<(T) => mixed>,\n- reason: null | Array<(mixed) => mixed>,...
2025-06-29T14:56:16
golang/go
532e3203492ebcac67b2f3aa2a52115f49d51997
bb7c0c717c8b3517210dce8f38cb2c91694af4e2
go/types,cmd/compile/internal/types2: better diagnostic for type shadowing This change causes the "x is not a type" diagnostic to describe x's actual kind, helping to reveal when shadowing is at work. (The kind description could improve other errors too.) Fixes #76877 Change-Id: Ia3484998bb384ff570c20b6792cf8461c60...
[ { "path": "src/cmd/compile/internal/types2/object.go", "patch": "@@ -671,3 +671,52 @@ func writeFuncName(buf *bytes.Buffer, f *Func, qf Qualifier) {\n \t}\n \tbuf.WriteString(f.name)\n }\n+\n+// objectKind returns a description of the object's kind.\n+func objectKind(obj Object) string {\n+\tswitch obj := o...
2025-12-18T17:27:11
electron/electron
7373173e44d25c90a5127ad5c7b49295c12117a7
5d5e672f17248519b3c7bbdf27cb803c481c4d07
fix: showMessageDialog should center dialog to parent (#48181)
[ { "path": "shell/browser/ui/message_box_win.cc", "patch": "@@ -160,6 +160,7 @@ DialogResult ShowTaskDialogWstr(gfx::AcceleratedWidget parent,\n \n if (parent) {\n config.hwndParent = parent;\n+ config.dwFlags |= TDF_POSITION_RELATIVE_TO_WINDOW;\n }\n \n if (default_id > 0)", "additions": 1,...
2025-08-29T07:56:51