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
rust-lang/rust
924748717bfc90d3a34bed407d75eb6c988f9fc9
1b7d722f429f09c87b08b757d89c689c6cf7f6e7
Implement `Diagnostic` trait for `rustc_errors::DecorateDiagCompat`
[ { "path": "compiler/rustc_errors/src/decorate_diag.rs", "patch": "@@ -1,15 +1,16 @@\n /// This module provides types and traits for buffering lints until later in compilation.\n use rustc_ast::node_id::NodeId;\n use rustc_data_structures::fx::FxIndexMap;\n+use rustc_data_structures::sync::DynSend;\n use rus...
2026-03-03T16:21:16
golang/go
c2d85eb999fcd428a1cd71ed93805cbde0c16eaa
ac82fe68aaec797a9677171b00241fba57f057bc
cmd/go: disable cgo by default if CC unset and DefaultCC doesn't exist CL 621995 disrupted the behavior introduced by CL 450739, now restore it. Fixes #75340 Change-Id: Icd1a0eb970876995f9446e0547ceb9e78990f6ed Reviewed-on: https://go-review.googlesource.com/c/go/+/703555 LUCI-TryBot-Result: Go LUCI <golang-scoped@...
[ { "path": "src/cmd/go/internal/cfg/cfg.go", "patch": "@@ -145,7 +145,8 @@ func defaultContext() build.Context {\n \tif buildcfg.DefaultCGO_ENABLED == \"1\" {\n \t\tdefaultCgoEnabled = true\n \t} else if buildcfg.DefaultCGO_ENABLED == \"0\" {\n-\t} else if runtime.GOARCH == ctxt.GOARCH && runtime.GOOS == ctx...
2025-09-13T18:32:24
facebook/react
9f4e4611ead28d34f7f598c9bd12424cf68f5781
f2df5694f2be141954f22618fd3ad035203241a3
fix: add Error prefix to Error objects names (#30969) This fixes printing Error objects in Chrome DevTools. I've observed that Chrome DevTools is not source mapping and linkifying URLs, when was running this on larger apps. Chrome DevTools talks to V8 via Chrome DevTools protocol, every object has a corresponding...
[ { "path": "packages/react-devtools-shared/src/backend/console.js", "patch": "@@ -229,9 +229,19 @@ export function patch({\n // In Chromium, only the stack property is printed but in Firefox the <name>:<message>\n // gets printed so to make the colon make sense, we nam...
2024-09-16T16:43:40
nodejs/node
c16e26d066b2a187eeff8c5bee4baaed4572e1ca
a0139e06a0754058ffd891f779be55584665f8a8
doc: fix small typo in `process.md` PR-URL: https://github.com/nodejs/node/pull/57333 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/process.md", "patch": "@@ -4249,7 +4249,7 @@ added: v23.9.0\n -->\n \n * `previousValue` {Object} A previous return value from calling\n- `process.cpuUsage()`\n+ `process.threadCpuUsage()`\n * Returns: {Object}\n * `user` {integer}\n * `system` {integer}", "additions": 1, "d...
2025-03-13T12:15:45
electron/electron
41b8fdca5c53a41eabdad9a6a75b45bda4a6f37b
38512efd25a159ddc64a54c22ef9eb6dd60064ec
fix: devtools dock state with WCO on linux (#43490)
[ { "path": "shell/browser/ui/inspectable_web_contents.cc", "patch": "@@ -550,7 +550,7 @@ void InspectableWebContents::LoadCompleted() {\n prefs.FindString(\"currentDockState\");\n base::RemoveChars(*current_dock_state, \"\\\"\", &dock_state_);\n }\n-#if BUILDFLAG(IS_WIN)\n+#if BUILDFLAG(I...
2024-08-29T00:17:00
vercel/next.js
1bb10fc51cf44be3062ae7821a5050827999c302
fa70898f0d74d106fbce9f315af71e42f9afa1c8
Turbopack: Track errored tasks as dependency when using untracked() (#84914) ### What? The pattern `some_operation().untracked().await?` is dangerous as it propages the error to the parent task. An untracked read accepts an incorrectness due to eventual consistency during an update. This might also cause eventual co...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -28,8 +28,8 @@ use tokio::time::{Duration, Instant};\n use tracing::{Span, field::Empty, info_span, trace_span};\n use turbo_tasks::{\n CellId, FxDashMap, FxIndexMap, KeyValuePair, RawVc, ReadCellOptions, ReadConsistency,\...
2025-10-17T19:11:06
rust-lang/rust
bf6db4f345799e1f922b3109a7278d8be11f3058
f5a2bb6263ad332ceb2d9b3b82afe935259a7723
Add regression tests for token hygiene annotations in macro bodies Add `unpretty-debug-shadow` test covering macro body tokens that reference a shadowed variable, and simplify the `unpretty-debug-metavars` test macro. Signed-off-by: Andrew V. Teylu <andrew.teylu@vector.com>
[ { "path": "tests/ui/hygiene/unpretty-debug-metavars.rs", "patch": "@@ -1,9 +1,10 @@\n //@ check-pass\n //@ compile-flags: -Zunpretty=expanded,hygiene\n \n-// Regression test: metavar parameters in macro-generated macro_rules!\n-// definitions should have hygiene annotations so that textually identical\n-// ...
2026-03-03T13:06:55
golang/go
ac82fe68aaec797a9677171b00241fba57f057bc
0b26678db2d042c6273c435df5cb5a37e7e04994
bytes,strings: remove reference to non-existent SplitFunc Fixes #75462 Updates #72841 Change-Id: Ie2cbbdb031578a3138ecc6e60c0025807f1990e6 Reviewed-on: https://go-review.googlesource.com/c/go/+/703675 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Alan Donovan <...
[ { "path": "src/bytes/bytes.go", "patch": "@@ -508,7 +508,7 @@ func Fields(s []byte) [][]byte {\n // It splits the slice s at each run of code points c satisfying f(c) and\n // returns a slice of subslices of s. If all code points in s satisfy f(c), or\n // len(s) == 0, an empty slice is returned. Every elem...
2025-09-14T15:24:57
nodejs/node
ebbc5f701708cc5d7fe10c3b2072aa976a807bac
64f56e415693106a7ca6765794b5c3cd12f963a7
assert: implement partial error comparison assert.partialDeepStrictEqual now also handled error properties as expected. On top of that, the main implementation also handles non-string `name` and `message` properties and the comparison is a tad faster by removing duplicated comparison steps. As a drive-by fix this als...
[ { "path": "lib/internal/util/comparisons.js", "patch": "@@ -10,17 +10,17 @@ const {\n Error,\n NumberIsNaN,\n NumberPrototypeValueOf,\n- ObjectGetOwnPropertySymbols,\n+ ObjectGetOwnPropertySymbols: getOwnSymbols,\n ObjectGetPrototypeOf,\n ObjectIs,\n ObjectKeys,\n- ObjectPrototypeHasOwnProper...
2025-03-10T17:20:32
facebook/react
8cf64620c7dd4ec7e72aa16ee2d5f15eb3420b92
fc5ef50da8e975a569622d477f1fed54cb8b193d
fix[rdt/fiber/renderer.js]: getCurrentFiber can be injected as null (#30968) In production artifacts for `18.x.x` `getCurrentFiber` can actually be injected as `null`. Updated `getComponentStack` and `onErrorOrWarning` implementations to support this. ![Screenshot 2024-09-16 at 10 52 00](https://github.com/user-...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -1078,7 +1078,7 @@ export function attach(\n function getComponentStack(\n topFrame: Error,\n ): null | {enableOwnerStacks: boolean, componentStack: string} {\n- if (getCurrentFiber === undefined) {\n+ if (g...
2024-09-16T13:47:57
electron/electron
38512efd25a159ddc64a54c22ef9eb6dd60064ec
7cea9929264a8fcd569a55a69aa0bfe785be67ab
chore: bump node to v20.17.0 (main) (#43428) * chore: bump node in DEPS to v20.17.0 * module: disallow CJS <-> ESM edges in a cycle from require(esm) https://github.com/nodejs/node/pull/52264 * src: expose LookupAndCompile with parameters https://github.com/nodejs/node/pull/53886 * src: fix -Wshadow war...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '130.0.6672.0',\n 'node_version':\n- 'v20.16.0',\n+ 'v20.17.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2024-08-26T19:09:33
vercel/next.js
bc59f210b02256e63b93d9f473c97ae130568e63
3129db08ad4ebc3221a0aff1965ea7330d9553ae
docs: Deprecation of Middleware (#84710) This PR removes middleware docs and adds a "Migration to Proxy" section to the Proxy docs, which explains the rationale for the renaming to Proxy and provides a migration guide. Did not remove `middleware-upgrade-docs` as it's an upgrade doc from the legacy middleware. Below ...
[ { "path": "docs/01-app/01-getting-started/02-project-structure.mdx", "patch": "@@ -29,15 +29,15 @@ Top-level folders are used to organize your application's code and static assets\n \n ### Top-level files\n \n-Top-level files are used to configure your application, manage dependencies, run middleware, integ...
2025-10-17T18:03:13
golang/go
0b26678db2d042c6273c435df5cb5a37e7e04994
e2cfc1eb3affe8bcdfeca4a9f0a2d7902dbb940f
cmd/compile: fix mips zerorange implementation A +8 was missed when simplifying this code in CL 700936. Fixes #75477 Change-Id: Ic7b83322dc1373432b44f0b63607141195220380 Reviewed-on: https://go-review.googlesource.com/c/go/+/703937 Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-scope...
[ { "path": "src/cmd/compile/internal/mips/ggen.go", "patch": "@@ -5,6 +5,7 @@\n package mips\n \n import (\n+\t\"cmd/compile/internal/base\"\n \t\"cmd/compile/internal/objw\"\n \t\"cmd/compile/internal/types\"\n \t\"cmd/internal/obj\"\n@@ -17,7 +18,7 @@ func zerorange(pp *objw.Progs, p *obj.Prog, off, cnt in...
2025-09-16T02:59:22
facebook/react
b75cc078c5fda0d57135523a7a2f4e8d1536472f
3d95c43b8967d4dda1ec9a22f0d9ea4999fee8b8
Fix nodeName to UPPERCASE in insertStylesheetIntoRoot (#28255) ## Summary <!-- Explain the **motivation** for making this change. What existing problem does the pull request solve? --> <img width="518" alt="image" src="https://github.com/facebook/react/assets/18693190/6d12df76-7dae-403b-b486-4940992abe8d"> ...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -3520,7 +3520,7 @@ function insertStylesheetIntoRoot(\n for (let i = 0; i < nodes.length; i++) {\n const node = nodes[i];\n if (\n- node.nodeName === 'link' ||\n+ node.nodeName === 'LINK' ||...
2024-09-14T15:18:27
rust-lang/rust
ee1d0cfbe6b17fe77e1da569be33ac0ee7916be7
1b7d722f429f09c87b08b757d89c689c6cf7f6e7
MGCA: fix type error handling for array and tuple lowering logic
[ { "path": "compiler/rustc_hir_analysis/src/hir_ty_lowering/mod.rs", "patch": "@@ -2416,11 +2416,15 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {\n ) -> Const<'tcx> {\n let tcx = self.tcx();\n \n- let ty::Array(elem_ty, _) = ty.kind() else {\n- let e = tcx\n- .dcx()...
2026-03-03T12:08:26
nodejs/node
d615a3cfcbc357ccebd07a37fa0002fee162d9ce
59f00d713299bfe7d18d15c4504ac14bd5b428a8
src: suggest --use-system-ca when a certificate error occurs PR-URL: https://github.com/nodejs/node/pull/57362 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "doc/api/tls.md", "patch": "@@ -547,6 +547,12 @@ description are taken from deps/openssl/openssl/crypto/x509/x509_txt.c\n * `'CERT_REJECTED'`: Certificate rejected.\n * `'HOSTNAME_MISMATCH'`: Hostname mismatch.\n \n+When certificate errors like `UNABLE_TO_VERIFY_LEAF_SIGNATURE`,\n+`DEPTH_ZERO_SELF...
2025-03-12T13:21:22
electron/electron
9ce0ca74c348d40de1aad417c1c163ac44ae5f09
3a5a1ea7bd1ff813c0dc62e3486c32f562dee612
build: remove fix_disable_scope_reuse_associated_dchecks.patch (#43441) chore: remove fix_disable_scope_reuse_associated_dchecks.patch
[ { "path": "patches/v8/.patches", "patch": "@@ -1,3 +1,2 @@\n chore_allow_customizing_microtask_policy_per_context.patch\n deps_add_v8_object_setinternalfieldfornodecore.patch\n-fix_disable_scope_reuse_associated_dchecks.patch", "additions": 0, "deletions": 1, "language": "Unknown" }, { "...
2024-08-23T15:04:20
vercel/next.js
3129db08ad4ebc3221a0aff1965ea7330d9553ae
c27ac0dd3a73038ef63ec00ed53baa9af8f41d56
[turbopack] Allow withRspack to work even if you already have NEXT_RSPACK set (#84987) Fix an issue where if a user set `NEXT_RSPACK` as an environment variable then `next` would think it was using rspack but `withRspack` would think it was using `--webpack`. The issue is that the idempotency check was too strict. ...
[ { "path": "packages/next-rspack/index.js", "patch": "@@ -1,10 +1,10 @@\n Error.stackTraceLimit = 100\n module.exports = function withRspack(config) {\n- if (process.env.NEXT_RSPACK === 'true') {\n+ if (process.env.NEXT_RSPACK) {\n // we have already been called. This can happen when using build worke...
2025-10-17T17:18:38
golang/go
61dc7fe30d16b920888123390c6965614e491a66
ca0e03560df7279bc307da08db7237beb32b0d99
iter: document that calling yield after terminated range loop causes runtime panic The existing documentation isn't clear about the behaviour of when the iterator function ignores the value returned from the yield function. The changes here update the documentation, to explicitly explain that. Change-Id: I24a8198c3d...
[ { "path": "src/iter/iter.go", "patch": "@@ -28,6 +28,8 @@ or index-value pairs.\n Yield returns true if the iterator should continue with the next\n element in the sequence, false if it should stop.\n \n+Yield panics if called after it returns false.\n+\n For instance, [maps.Keys] returns an iterator that p...
2025-09-15T17:04:04
facebook/react
6774caa37973e3e26d60f100971e5e785fd12235
5deb78223a269a6cb1706da8ec6aad8c007cab03
[Flight] properly track pendingChunks when changing environment names (#30958) When the environment name changes for a chunk we issue a new debug chunk which updates the environment name. This chunk was not beign included in the pendingChunks count so the count was off when flushing
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -3813,6 +3813,7 @@ function retryTask(request: Request, task: Task): void {\n if (__DEV__) {\n const currentEnv = (0, request.environmentName)();\n if (currentEnv !== task.environmentName) {\n+ request.pe...
2024-09-13T22:55:42
nodejs/node
a446e3bdc96b0f263fd363ce89b9c739b066240f
1b655c76313b36fd6c1a368af4311c4610132b89
sqlite: reset statement immediately in run() This commit updates StatementSync.prototype.run() to reset the prepared statement immediately after calling sqlite3_step() to return the correct change metadata. Fixes: https://github.com/nodejs/node/issues/57344 PR-URL: https://github.com/nodejs/node/pull/57350 Reviewed-B...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -1866,13 +1866,9 @@ void StatementSync::Run(const FunctionCallbackInfo<Value>& args) {\n return;\n }\n \n- auto reset = OnScopeLeave([&]() { sqlite3_reset(stmt->statement_); });\n- r = sqlite3_step(stmt->statement_);\n- if (r != SQLITE_ROW && r != SQLITE...
2025-03-11T00:33:27
electron/electron
6e4d90fcdbfff7eb1d445edf6ad7312c2fc7ded0
fd8d9f06fd9b1154836f9c76a02f651ddf8cd603
fix: ensure bounds stability in `OnWidgetBoundsChanged` (#43431) * fix: ensure bounds stability in OnWidgetBoundsChanged * Update shell/browser/native_window_views.cc Co-authored-by: Charles Kerr <charles@charleskerr.com> --------- Co-authored-by: Charles Kerr <charles@charleskerr.com>
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -22,6 +22,7 @@\n \n #include \"base/containers/contains.h\"\n #include \"base/memory/raw_ref.h\"\n+#include \"base/numerics/ranges.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"content/public/browser/desktop_media_id.h\"\...
2024-08-23T15:02:05
vercel/next.js
71ce95dffac4014105f7951d25b885dc46ec3739
fd8b4c5979c9254591dbbf49e08bef2be5fab36c
docs: Replace Middleware docs to Proxy (#84709) > [!NOTE] > Best reviewed by each commit for better diff view. This PR clones the Middleware docs for Proxy and removes the Middleware docs. Did not clone the list of docs: - `errors/middleware-upgrade.mdx` - It's a middleware upgrade guide from v12.2 - `error...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/middleware.mdx", "patch": "@@ -8,7 +8,7 @@ related:\n - app/api-reference/functions/next-response\n ---\n \n-The `middleware.js|ts` file is used to write [Middleware](/docs/app/getting-started/route-handlers-and-middleware#middleware) and run c...
2025-10-17T14:13:26
facebook/react
d9c4920e8b3fff3d3da24d14adf7ac884aee55b2
d3d4d3a46b014ab0f6edc443c19fcdba09105f20
fix: restore selection should consider the window of the container (#30951) ## Summary Fixes #30864 Before this PR the active elemen was always taken from the global `window`. This is incorrect if the renderer is in one window rendering into a container element in another window. The changes in this PR adds...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -325,7 +325,7 @@ export function getPublicInstance(instance: Instance): Instance {\n \n export function prepareForCommit(containerInfo: Container): Object | null {\n eventsEnabled = ReactBrowserEventEmitterIsEnabled();...
2024-09-13T20:29:40
nodejs/node
823c9b70c727e2efaa6dfd8e97551c31b45ff666
7a1b26e357f67ad2715f39d06e0bacac058f7172
doc: fix usage of module.registerSync in comment PR-URL: https://github.com/nodejs/node/pull/57328 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/module.md", "patch": "@@ -1226,7 +1226,7 @@ opt-in to using the non-default behavior:\n import { readFile } from 'node:fs/promises';\n \n // Asynchronous version accepted by module.register(). This fix is not needed\n-// for the synchronous version accepted by module.registerSync().\n+// ...
2025-03-10T21:25:56
electron/electron
ca0837c85201690648821aa13473a15c70a21f6e
1aeca6fd0e988cfc4f82322a19da034f190134b3
chore: fix typos in 'shell/' folder. (#43373)
[ { "path": "shell/browser/api/electron_api_session.cc", "patch": "@@ -261,7 +261,7 @@ class ClearDataTask {\n }\n \n private:\n- // An individiual |content::BrowsingDataRemover::Remove...| operation as part\n+ // An individual |content::BrowsingDataRemover::Remove...| operation as part\n // of a full ...
2024-08-23T00:48:32
nodejs/node
fbe37d501ec45c79ca3904b392f8858e63e42c0b
599ec77679d55912e47116a8a1b0804a9bbc962d
esm: fix module.exports export on CJS modules PR-URL: https://github.com/nodejs/node/pull/57366 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/modules/esm/translators.js", "patch": "@@ -188,10 +188,13 @@ function createCJSModuleWrap(url, source, isMain, format, loadCJS = loadCJSModul\n const { exportNames, module } = cjsPreparseModuleExports(filename, source, format);\n cjsCache.set(url, module);\n \n- const wrapperNam...
2025-03-07T21:05:09
vercel/next.js
fd8b4c5979c9254591dbbf49e08bef2be5fab36c
332aaf393911b49b9774a94d021660e122c5dc78
docs: Split "Get Started: Route Handlers and Middleware" to Route Handlers and Proxy (#84708) This PR splits the route handlers and middleware to allow for separate onboarding docs, making it easier to migrate the docs from Middleware to Proxy. These PR stacks are to publish a full replacement of the docs for the Mid...
[ { "path": "docs/01-app/01-getting-started/15-route-handlers.mdx", "patch": "@@ -1,13 +1,12 @@\n ---\n-title: Route Handlers and Middleware\n-nav_title: Route Handlers and Middleware\n-description: Learn how to use Route Handlers and Middleware\n+title: Route Handlers\n+nav_title: Route Handlers\n+descriptio...
2025-10-17T14:00:14
facebook/react
d3d4d3a46b014ab0f6edc443c19fcdba09105f20
633a0fe536febefa02698db124b7265a3fde55e1
Call cleanup of insertion effects when hidden (#30954) Insertion effects do not unmount when a subtree is removed while offscreen. Current behavior for an insertion effect is if the component goes - *visible -> removed:* calls insertion effect cleanup - *visible -> offscreen -> removed:* insertion effect clean...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -40,6 +40,7 @@ import type {\n import {\n alwaysThrottleRetries,\n enableCreateEventHandleAPI,\n+ enableHiddenSubtreeInsertionEffectCleanup,\n enablePersistedModeClonedFlag,\n enableProfilerTimer,\n enableProfilerComm...
2024-09-13T20:18:14
electron/electron
1aeca6fd0e988cfc4f82322a19da034f190134b3
b481966f02f83aa49d6ba39a40b976e6e78dd2bf
feat: GPU shared texture offscreen rendering (#42953) * feat: GPU shared texture offscreen rendering * docs: clarify texture infos that passed by the paint event. * feat: make gpu osr spec test optional * fix: osr image compare * fix: remove duplicate test * fix: update patch file * fix: code review ...
[ { "path": "docs/api/structures/offscreen-shared-texture.md", "patch": "@@ -0,0 +1,24 @@\n+# OffscreenSharedTexture Object\n+\n+* `textureInfo` Object - The shared texture info.\n+ * `widgetType` string - The widget type of the texture. Can be `popup` or `frame`.\n+ * `pixelFormat` string - The pixel forma...
2024-08-23T00:23:13
nodejs/node
9df0ff7015bed1613c09cc0b15b76390d21ee178
9a9a45adb700125cb7a2888a14341f7db484daf5
test_runner: change ts default glob PR-URL: https://github.com/nodejs/node/pull/57359 Fixes: https://github.com/nodejs/node/issues/56546 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Paolo Inso...
[ { "path": "doc/api/test.md", "patch": "@@ -418,12 +418,9 @@ By default, Node.js will run all files matching these patterns:\n Unless [`--no-experimental-strip-types`][] is supplied, the following\n additional patterns are also matched:\n \n-* `**/*.test.{cts,mts,ts}`\n-* `**/*-test.{cts,mts,ts}`\n-* `**/*_t...
2025-03-09T12:55:40
facebook/react
633a0fe536febefa02698db124b7265a3fde55e1
94e4acaa1477e65cac02ba86058cde0afe4c8f1f
[compiler] Factor out function effects from reference effects Summary: This PR performs a major refactor of InferReferenceEffects to separate out the work on marking places with Effects from inferring FunctionEffects. The behavior should be identical after this change (see [internal sync](https://www.internalfb.com/in...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferFunctionEffects.ts", "patch": "@@ -0,0 +1,335 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this...
2024-09-13T19:38:17
golang/go
c39abe065886f62791f41240eef6ca03d452a17b
e3ed0fbe6a4c7c5e91a4a82c1bcbc96b9ac37016
runtime: fix TestSehUnwind The various TestSehUnwind tests recently started to fail due an unrelated refactor (in CL 698098) that made the stack frames to not match the expected pattern. This CL updates the tests to be more robust to such changes. Fixes #75467 Change-Id: I7950332bb6ca54e4bf693d13e2490b3d9d901dde Rev...
[ { "path": "src/runtime/runtime-seh_windows_test.go", "patch": "@@ -65,14 +65,20 @@ func TestSehLookupFunctionEntry(t *testing.T) {\n \t}\n }\n \n-func sehCallers() []uintptr {\n-\t// We don't need a real context,\n-\t// RtlVirtualUnwind just needs a context with\n-\t// valid a pc, sp and fp (aka bp).\n+//go...
2025-09-15T14:02:22
vercel/next.js
7296aa624e6205def670b22bdc5681f8a42eb55a
8bc8dc343c30fdc263fcf719fbc99febe0fe4c93
Update prefetching.mdx providing more clarity on the usage of `router.prefetch()` (#84903) ## What Updated `prefetching.mdx` in the App Router documentation providing more clarity on the usage of `router.prefetch()`. ## Why We found the current section on `Manual Prefetching` to be lacking in detail and a bit mislead...
[ { "path": "docs/01-app/02-guides/prefetching.mdx", "patch": "@@ -58,16 +58,27 @@ Automatic prefetching runs only in production. Disable with `prefetch={false}` o\n \n ## Manual prefetch\n \n+To do manual prefetching, import the `useRouter` hook from `next/navigation`, and call `router.prefetch()` to warm ro...
2025-10-17T13:20:22
electron/electron
50ce448556b870f42f98d6567159576b8d0f0495
7391db93e25b6a19f5c6836f62a00e4a96548088
fix: menu should allow focused `BaseWindow` where possible (#43404) fix: menu should allow focused BaseWindow
[ { "path": "docs/api/menu-item.md", "patch": "@@ -10,9 +10,9 @@ See [`Menu`](menu.md) for examples.\n \n * `options` Object\n * `click` Function (optional) - Will be called with\n- `click(menuItem, browserWindow, event)` when the menu item is clicked.\n+ `click(menuItem, window, event)` when the menu...
2024-08-22T18:13:30
nodejs/node
9a9a45adb700125cb7a2888a14341f7db484daf5
725089a17325bce4c797d6faf6fe99a3cead880d
src: do not pass nullptr to std::string ctor fixes -Wnonnull warning on some compilers PR-URL: https://github.com/nodejs/node/pull/57354 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Shelley Vohr <shelle...
[ { "path": "src/debug_utils.cc", "patch": "@@ -254,7 +254,7 @@ class Win32SymbolDebuggingContext final : public NativeSymbolDebuggingContext {\n USE(GetLastError());\n #endif // DEBUG\n }\n- return nullptr;\n+ return {};\n }\n \n SymbolInfo LookupSymbol(void* address) override {", "a...
2025-03-09T03:48:08
facebook/react
94e4acaa1477e65cac02ba86058cde0afe4c8f1f
206df66e70652e85711c3177ce1a0459609a7771
[Fiber] Set profiler values to doubles (#30942) At some point this trick was added to initialize the value first to NaN and then replace them with zeros and negative ones. This is to address the issue noted in https://github.com/facebook/react/issues/14365 where these hidden classes can be initialized to SMIs at...
[ { "path": "packages/react-reconciler/src/ReactFiber.js", "patch": "@@ -187,18 +187,11 @@ function FiberNode(\n // Learn more about this here:\n // https://github.com/facebook/react/issues/14365\n // https://bugs.chromium.org/p/v8/issues/detail?id=8538\n- this.actualDuration = Number.NaN;\n- ...
2024-09-13T16:27:00
golang/go
aa83aee7de1d69b207ab9669bb2b7dcdcbdf9383
b9e2977f1d62bba2df652a3b57b4fdd15a756601
net/http: clarify panic conditions in Handle, HandleFunc, AddInsecureBypassPattern Add explicit mention that these methods panic on both pattern conflict and invalid syntax. Fixes #75226 Change-Id: If7dbfc44e1ec4624ab156f0e5d7e66cee2c2fef3 GitHub-Last-Rev: acc9a9c3338373f5a9376ff2eb1decd30bbee04d GitHub-Pull-Request...
[ { "path": "src/net/http/csrf.go", "patch": "@@ -90,6 +90,10 @@ var sentinelHandler Handler = &noopHandler{}\n // would redirect to a pattern (e.g. after cleaning the path or adding a\n // trailing slash) are not.\n //\n+// AddInsecureBypassPattern panics if the pattern conflicts with one already\n+// regist...
2025-09-13T17:54:40
vercel/next.js
8bc8dc343c30fdc263fcf719fbc99febe0fe4c93
56db4345f2eca501712d1963b78521a68a73803e
docs: Add missing codemod docs (#84980) - middleware-to-proxy - remove-unstable-prefix
[ { "path": "docs/01-app/02-guides/upgrading/codemods.mdx", "patch": "@@ -40,6 +40,69 @@ This codemod removes the `experimental_ppr` Route Segment Config from App Router\n - export const experimental_ppr = true;\n ```\n \n+#### Remove `unstable_` prefix from stabilized API\n+\n+##### `remove-unstable-prefix`\...
2025-10-17T11:20:17
electron/electron
b27dc7514e639360812e534bd1d184e980bbe2ee
ae0c8881c3f908c32f11bf0f8a185f626734d3e3
fix: documentation spelling errors (#43366) chore: fix typos in 'docs/' folder.
[ { "path": "docs/api/session.md", "patch": "@@ -1511,7 +1511,7 @@ Returns `Promise<void>` - resolves when all data has been cleared.\n \n Clears various different types of data.\n \n-This method clears more types of data and is more thourough than the\n+This method clears more types of data and is more thoro...
2024-08-22T13:44:55
nodejs/node
b3b9f5224342c366ece5f24618410baa8110c6b3
7c2709de33d644c09bc878ab1af2b3718b0b2c21
src: fix process exit listeners not receiving unsettled tla codes fix listeners registered via `process.on('exit', ...` not receiving error code 13 when an unsettled top-level-await is encountered in the code PR-URL: https://github.com/nodejs/node/pull/56872 Fixes: https://github.com/nodejs/node/issues/53551 Reviewed...
[ { "path": "doc/api/process.md", "patch": "@@ -1893,8 +1893,28 @@ A number which will be the process exit code, when the process either\n exits gracefully, or is exited via [`process.exit()`][] without specifying\n a code.\n \n-Specifying a code to [`process.exit(code)`][`process.exit()`] will override any\n...
2025-03-08T19:54:30
vercel/next.js
50f53158cb9ef11abab36dbc84fc712fe8ee3fd5
67aa35d499346473c989e59f7db1fe71091a8f09
Turbopack: Add ChunkedVec test case (#84756) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### I...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/utils/chunked_vec.rs", "patch": "@@ -41,7 +41,7 @@ impl<T> ChunkedVec<T> {\n }\n }\n \n- pub fn iter(&self) -> impl Iterator<Item = &T> {\n+ pub fn iter(&self) -> impl ExactSizeIterator<Item = &T> {\n ExactSizeIter {\n ...
2025-10-17T04:01:53
golang/go
b9e2977f1d62bba2df652a3b57b4fdd15a756601
8105d0ccc273afa717ba536f4d42dac3920c017e
crypto/internal/cryptotest: use linux-amd64_avx512 builder for SHA-NI Updates #74772 Fixes #69592 Change-Id: I6a6a69647ab1785ed953f3ed2dfa04cd55576f2b Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64_avx512 Reviewed-on: https://go-review.googlesource.com/c/go/+/701315 Reviewed-by: Daniel McCarney <daniel@binaryp...
[ { "path": "src/crypto/internal/cryptotest/implementations.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"internal/goarch\"\n \t\"internal/goos\"\n \t\"internal/testenv\"\n+\t\"strings\"\n \t\"testing\"\n )\n \n@@ -38,22 +39,33 @@ func TestAllImplementations(t *testing.T, pkg string, f func(t *testing.T)) {...
2025-08-07T22:16:27
facebook/react
206df66e70652e85711c3177ce1a0459609a7771
5ac4034e14a72c0edf602585c10fd2725fb376c5
[compiler][rewrite] PropagateScopeDeps hir rewrite Resubmission of #30079 -- core logic unchanged, but needed to rebase past #30573 ### Quick background #### Temporaries The compiler currently treats temporaries and named variables (e.g. `x`) differently in this pass. - named variables may be reassigned (in fact, si...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -101,6 +101,7 @@ import {propagatePhiTypes} from '../TypeInference/PropagatePhiTypes';\n import {lowerContextAccess} from '../Optimization/LowerContextAccess';\n import {validateNoSetStateInPassiveEffects} fro...
2024-09-12T20:59:40
rust-lang/rust
52e0f3f5dc5c8d72bb401b73da84c0c9158c68ce
58745ca3b05afa82bd5720dd05f3854e674700e0
fix autodiff parsing for non-trait impl
[ { "path": "compiler/rustc_builtin_macros/src/autodiff.rs", "patch": "@@ -214,7 +214,7 @@ mod llvm_enzyme {\n // first get information about the annotable item: visibility, signature, name and generic\n // parameters.\n // these will be used to generate the differentiated version of t...
2026-03-03T04:30:45
electron/electron
ae0c8881c3f908c32f11bf0f8a185f626734d3e3
4ae43dcb3b34949697e333b863c34cce30701575
chore: fix typos in 'spec/' folder (and one in 'lib/' folder) (#43374)
[ { "path": "lib/browser/init.ts", "patch": "@@ -212,7 +212,7 @@ if (packagePath) {\n }\n });\n } else {\n- // Call appCodeLoaded before just for safety, it doesn't matter here as _load is syncronous\n+ // Call appCodeLoaded before just for safety, it doesn't matter here as _load is synchron...
2024-08-22T13:44:15
nodejs/node
abd73d865ae25df50d9c91b65d6843b48a2e8d9f
27f98c3cd1cee93efb28efea11d59e51ba9be4b9
build: fix compatibility with V8's `depot_tools` Recent changes to `depot_tools`'s `ninja.py` proxy is causing infinite recursion in our V8 CI builds as we checkout `depot_tools` into a directory with a leading `_` (i.e. `_depot_tools`) and the proxy now checks for an exact match (i.e. `== "depot_tools"`) instead of `...
[ { "path": "tools/make-v8.sh", "patch": "@@ -53,7 +53,7 @@ if [ \"$ARCH\" = \"s390x\" ] || [ \"$ARCH\" = \"ppc64le\" ]; then\n gn gen -v \"out.gn/$BUILD_ARCH_TYPE\" --args=\"is_component_build=false is_debug=false use_goma=false goma_dir=\\\"None\\\" use_custom_libcxx=false v8_target_cpu=\\\"$TARGET_ARCH\\...
2025-03-07T15:35:36
golang/go
8ace10dad2774a760b5028140a7d3f8140e6e1c0
3573227fe3fe8d141dbf06e257609a59871d5248
os: add (*Process).WithHandle Implement (*Process).WithHandle, add tests for all platforms. Fixes #70352 Change-Id: I7a8012fb4e1e1b4ce1e75a59403ff6e77504fc56 Reviewed-on: https://go-review.googlesource.com/c/go/+/699615 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewe...
[ { "path": "api/next/70352.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg os, method (*Process) WithHandle(func(uintptr)) error #70352\n+pkg os, var ErrNoHandle error #70352", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/os/70352.md", "patch...
2025-08-28T05:39:25
vercel/next.js
67aa35d499346473c989e59f7db1fe71091a8f09
11c741ecb505a98323aa5502517d4cb69f260fe5
Turbopack: rename Persistent Caching (#84896) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### ...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/database/db_versioning.rs", "patch": "@@ -51,21 +51,21 @@ pub fn handle_db_versioning(\n let disabled_versioning = env::var(\"TURBO_ENGINE_DISABLE_VERSIONING\").ok().is_some();\n let version = if disabled_versioning {\n println!(\n- ...
2025-10-17T03:08:55
electron/electron
4ae43dcb3b34949697e333b863c34cce30701575
46bed807ca362aa415821c3d3808f79b93af0524
fix: touch bar functionality on BaseWindow (#43353) * fix: touch bar functionality on BaseWindow * test: add test for BaseWindow.setTouchBar
[ { "path": "lib/browser/api/base-window.ts", "patch": "@@ -1,5 +1,7 @@\n import { EventEmitter } from 'events';\n import type { BaseWindow as TLWT } from 'electron/main';\n+import { TouchBar } from 'electron/main';\n+\n const { BaseWindow } = process._linkedBinding('electron_browser_base_window') as { BaseWi...
2024-08-22T10:48:25
facebook/react
5ac4034e14a72c0edf602585c10fd2725fb376c5
f6dcce5199a3b9480a47d9feda8e00d8d9a0905d
[compiler] Fork fixtures for enablePropagateDepsInHIR - flip `enablePropagateDepsInHIR` to off by default - fork fixtures which produce compilation differences in #30894 to separate directory `propagate-scope-deps-hir-fork`, to be cleaned up when we remove this flag ghstack-source-id: 7d5b8dc29788a65c272c846af9877b09...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -223,7 +223,7 @@ const EnvironmentConfigSchema = z.object({\n */\n enableUseTypeAnnotations: z.boolean().default(false),\n \n- enablePropagateDepsInHIR: z.boolean().default(true),\n+ enablePropagateDepsInHI...
2024-09-12T20:59:40
golang/go
3573227fe3fe8d141dbf06e257609a59871d5248
68c6a73380e82a0ea9a93c1a75ab8a38f28f3a3d
os: add and use errProcessReleased This error is already used in three places, so let's define it. Change-Id: I73565d94aebcf3d5a278201d96839d82db85a2d4 Reviewed-on: https://go-review.googlesource.com/c/go/+/702436 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: M...
[ { "path": "src/os/exec.go", "patch": "@@ -14,8 +14,12 @@ import (\n \t\"time\"\n )\n \n-// ErrProcessDone indicates a [Process] has finished.\n-var ErrProcessDone = errors.New(\"os: process already finished\")\n+var (\n+\t// ErrProcessDone indicates a [Process] has finished.\n+\tErrProcessDone = errors.New(...
2025-09-11T02:00:19
nodejs/node
4cc69f9470b752292ea50990745d6fd101e40218
f161033bd559f5e59ddd069fea67a6da5564fff1
src: allow embedder customization of OOMErrorHandler PR-URL: https://github.com/nodejs/node/pull/57325 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Jake Yueson...
[ { "path": "src/api/environment.cc", "patch": "@@ -233,7 +233,10 @@ void SetIsolateErrorHandlers(v8::Isolate* isolate, const IsolateSettings& s) {\n auto* fatal_error_cb = s.fatal_error_callback ?\n s.fatal_error_callback : OnFatalError;\n isolate->SetFatalErrorHandler(fatal_error_cb);\n- isolate-...
2025-03-07T10:15:49
vercel/next.js
07b3ae71d179bb3ca2b9ad3c6e0de12123c0004a
a5a47b2a6e189c6537717e9abecbc25aee0aba14
chore: Attempt to fix ppr-partial-hydration flakiness (#84672) Write to a marker file to determine when the slow server component finishes rendering instead of trying to sleep for some fixed amount of time.
[ { "path": "test/e2e/app-dir/ppr-partial-hydration/app/with-shell/with-streaming-metadata/page.tsx", "patch": "@@ -1,7 +1,7 @@\n import { Suspense } from 'react'\n import { connection } from 'next/server'\n-import { setTimeout } from 'timers/promises'\n import { HydrationIndicator } from '../../hydration-ind...
2025-10-17T02:38:52
facebook/react
f6dcce5199a3b9480a47d9feda8e00d8d9a0905d
dff50825c6ca4c04c79fd7fe2d2d345ea5e29f87
[compiler][ez] Add entrypoints to ssa fixtures Adds evaluator support for a few compiler test fixtures ghstack-source-id: 202654992a9876cea59885b54a338c908e369ddb Pull Request resolved: https://github.com/facebook/react/pull/30948
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/alias-capture-in-method-receiver-and-mutate.expect.md", "patch": "@@ -57,4 +57,4 @@ export const FIXTURE_ENTRYPOINT = {\n ```\n \n ### Eval output\n-(kind: ok) [[{\"a\":0,\"b\":\"value1\",\"c\":true}],\"[[ cyclic ...
2024-09-12T20:59:39
nodejs/node
f161033bd559f5e59ddd069fea67a6da5564fff1
365faa7a4fbf973741600990b606d848ce0dcc14
win,build: add option to enable Control Flow Guard PR-URL: https://github.com/nodejs/node/pull/56605 Fixes: https://github.com/nodejs/node/issues/42100 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "common.gypi", "patch": "@@ -28,6 +28,7 @@\n 'clang%': 0,\n 'error_on_warn%': 'false',\n 'suppress_all_error_on_warn%': 'false',\n+ 'control_flow_guard%': 'false',\n \n 'openssl_product': '<(STATIC_LIB_PREFIX)openssl<(STATIC_LIB_SUFFIX)',\n 'openssl_no_asm%': 0,\n@@ -310,6 +...
2025-03-07T07:09:26
golang/go
dabe2bb4fbf47e64729591e896f7231bda0c42a7
3ec0b25ab7a130709863cf0837190d2995e176a4
[dev.simd] cmd/compile: fix holes in mask peepholes It turns out that ".Masked" is implemented by VPANDQ *and* VPANDD. The shape of bitwise AND doesn't matter, the correctness of the rules is guaranteed by the way the mask is generated. This CL fix the holes in the peephole rules. Change-Id: I2d15c4d17afed6fdbb2f390...
[ { "path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules", "patch": "@@ -1768,6 +1768,10 @@\n (VPANDQ512 x (VPMOVMToVec32x16 k)) => (VMOVDQU32Masked512 x k)\n (VPANDQ512 x (VPMOVMToVec16x32 k)) => (VMOVDQU16Masked512 x k)\n (VPANDQ512 x (VPMOVMToVec8x64 k)) => (VMOVDQU8Masked512 x k)\n+(VPANDD512 x (VPMOVMT...
2025-09-14T20:17:55
vercel/next.js
a5a47b2a6e189c6537717e9abecbc25aee0aba14
b42555aa39f7b6823d827715d73608701d458d1e
fix: throw error during build when invalid export for Proxy (#84886) ### Why? When Proxy/Middleware had invalid exports (valid: named function `proxy` for `proxy.js`, named function `middleware` for `middleware.js`, or default function), it errored during runtime but not during build. This error can sneak into produ...
[ { "path": "crates/next-core/src/middleware.rs", "patch": "@@ -2,7 +2,13 @@ use anyhow::Result;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{ResolvedVc, Vc, fxindexmap};\n use turbo_tasks_fs::FileSystemPath;\n-use turbopack_core::{context::AssetContext, module::Module, reference_type::ReferenceType...
2025-10-17T02:24:04
rust-lang/rust
8a824ee3019c77c5c26b3e7b8a0855ba34759f5a
2be5835a7e0dea5deb0f5595b0c02264e5fa3d11
Fix performance of early lints
[ { "path": "compiler/rustc_hir_analysis/src/lib.rs", "patch": "@@ -88,6 +88,7 @@ use rustc_abi::{CVariadicStatus, ExternAbi};\n use rustc_hir as hir;\n use rustc_hir::def::DefKind;\n use rustc_hir::lints::DelayedLint;\n+use rustc_lint::DecorateAttrLint;\n use rustc_middle::mir::interpret::GlobalId;\n use rus...
2026-03-02T22:27:55
electron/electron
f366caac84df20a2b8128424583f516941001168
4874233aae0079c522bcd822e847926d2e60389a
chore: bump chromium to 130.0.6669.0 (main) (#43397) * chore: bump chromium in DEPS to 130.0.6669.0 * 5789734: Consolidate all the accessibility scale factor utility code into one file https://chromium-review.googlesource.com/c/chromium/src/+/5789734 * 5798543: [autofill] Don't emit autofill audit reports if ...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '129.0.6668.0',\n+ '130.0.6669.0',\n 'node_version':\n 'v20.16.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2024-08-21T16:34:18
facebook/react
473522093d3dd95582729d01cd5c0d15dcc9cd3b
bb6b86ed596399ddd8bf642404a9e68ae430a6ea
[Fizz] Add resumeAndPrerender to Static Rendering (#30950) This is only in the same experimental exports as `resume`. Useful with Postpone/Halt. We already have `prerender()` to create a partial tree with postponed state. We also have `resume()` to dynamically resume such a tree. This lets you do a new prerend...
[ { "path": "packages/react-dom/npm/static.browser.js", "patch": "@@ -9,3 +9,4 @@ if (process.env.NODE_ENV === 'production') {\n \n exports.version = s.version;\n exports.prerender = s.prerender;\n+exports.resumeAndPrerender = s.resumeAndPrerender;", "additions": 1, "deletions": 0, "language": "Ja...
2024-09-12T14:51:01
nodejs/node
8032e96cc82934bf020aaaaec81a30edefc3bea6
117c1ca9eb09e378c5992e7a25b26022b514e3d8
doc: use more clear name in getSystemErrorMessage's example In the previous example, `name` actually points to the `message`. So I changed this name to fit the context of the example. Fixes: https://github.com/nodejs/node/issues/57305 PR-URL: https://github.com/nodejs/node/pull/57310 Reviewed-By: Joyee Cheung <joyeec...
[ { "path": "doc/api/util.md", "patch": "@@ -668,8 +668,8 @@ The mapping between error codes and string messages is platform-dependent.\n \n ```js\n fs.access('file/that/does/not/exist', (err) => {\n- const name = util.getSystemErrorMessage(err.errno);\n- console.error(name); // No such file or directory\n...
2025-03-04T12:46:38
golang/go
8320fe8f0e5283eb67429de30b4e24be6a85c7a7
080882a928c96f997a1cb67cef40d2cc6126ffcd
runtime: deduplicate syscall assembly for darwin The darwin port provides different syscall functions that only differ on how they handle the errors, and they are all written in assembly. This duplication can be removed by factoring out the error handling logic to arch-agnostic Go code and leaving the assembly functi...
[ { "path": "src/runtime/sys_darwin.go", "patch": "@@ -10,37 +10,56 @@ import (\n \t\"unsafe\"\n )\n \n+//go:nosplit\n+func libcError() uintptr {\n+\terrPtr, _ := syscall(abi.FuncPCABI0(libc_error_trampoline), 0, 0, 0)\n+\treturn errPtr\n+}\n+func libc_error_trampoline()\n+\n // The X versions of syscall expe...
2025-08-26T09:47:51
vercel/next.js
16d0191d023e7fc934e449c62b20aecb1dd7a96c
dc61d29e49ab328e9b36d3993f02b2762bc69f6c
[Cache Components] Allow unstable prefix for cacheLife and cacheTag (#84934) These are now stable but to allow for graceful upgrading we still export unstable versions. The unstable version includes a once-warning that indicates you should upgrade to the stable name.
[ { "path": "crates/next-custom-transforms/src/transforms/react_server_components.rs", "patch": "@@ -653,7 +653,9 @@ impl ReactServerComponentValidator {\n \"revalidateTag\",\n // \"unstable_cache\", // useless in client, but doesn't technically error\n ...
2025-10-16T23:01:24
electron/electron
a2de94dda1b716d8084d7f51c0e72e6cc226b53a
2cc14c6e8faf9c9affcd00dab76524bb19337109
chore: remove unused ConvertableToTraceFormatWrapper (#43356) * chore: remove unused ConvertableToTraceFormatWrapper Last use removed in Apr 2024 (39bf441b, #41880) * fixup! chore: remove unused ConvertableToTraceFormatWrapper remove now-unused trace_event.h header, too
[ { "path": "shell/browser/javascript_environment.cc", "patch": "@@ -18,7 +18,6 @@\n #include \"base/task/current_thread.h\"\n #include \"base/task/single_thread_task_runner.h\"\n #include \"base/task/thread_pool/initialization_util.h\"\n-#include \"base/trace_event/trace_event.h\"\n #include \"gin/array_buff...
2024-08-20T19:21:43
facebook/react
bb6b86ed596399ddd8bf642404a9e68ae430a6ea
d6cb4e771341ff82489c00f4907990cb8a75696b
refactor[react-devtools]: initialize renderer interface early (#30946) The current state is that `rendererInterface`, which contains all the backend logic, like generating component stack or attaching errors to fibers, or traversing the Fiber tree, ..., is only mounted after the Frontend is created. For browser ...
[ { "path": "packages/react-devtools-extensions/src/background/dynamicallyInjectContentScripts.js", "patch": "@@ -25,14 +25,6 @@ const contentScriptsToInject = [\n runAt: 'document_start',\n world: chrome.scripting.ExecutionWorld.MAIN,\n },\n- {\n- id: '@react-devtools/renderer',\n- js: ['bui...
2024-09-12T12:59:29
nodejs/node
5401ac687cd0dd745f78efc7429d2e5118512394
a7909014f77d737b5998f0bef92687507e992217
doc: recommend setting `noEmit: true` in `tsconfig.json` PR-URL: https://github.com/nodejs/node/pull/57320 Fixes: https://github.com/nodejs/node/issues/57294 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "doc/api/typescript.md", "patch": "@@ -81,6 +81,7 @@ but we recommend version 5.8 or newer with the following `tsconfig.json` setting\n ```json\n {\n \"compilerOptions\": {\n+ \"noEmit\": true, // Optional - see note below\n \"target\": \"esnext\",\n \"module\": \"nodenext\",\n ...
2025-03-06T22:30:59
golang/go
080882a928c96f997a1cb67cef40d2cc6126ffcd
ac803b5949f6dbc5bfa559afe506d35f9e1b3195
net: use context.AfterFunc in connect This saves a goroutine when ctx can be but is not canceled during the connect call. The redundant fd.Close() call is removed, because the caller closes the fd on error. Change-Id: I124d7e480294a48ef74d5650d8ef0489bdfc64d6 Reviewed-on: https://go-review.googlesource.com/c/go/+/69...
[ { "path": "src/net/fd_unix.go", "patch": "@@ -74,46 +74,32 @@ func (fd *netFD) connect(ctx context.Context, la, ra syscall.Sockaddr) (rsa sysc\n \tif err := fd.pfd.Init(fd.net, true); err != nil {\n \t\treturn nil, err\n \t}\n-\tif deadline, hasDeadline := ctx.Deadline(); hasDeadline {\n-\t\tfd.pfd.SetWrite...
2025-08-27T09:38:13
electron/electron
2cc14c6e8faf9c9affcd00dab76524bb19337109
945aabfaeeafc30b4fed5b4ba49876f6b9b85e5d
chore: bump chromium to 129.0.6668.0 (main) (#43368) * chore: bump chromium in DEPS to 129.0.6668.0 * 5787687: [Extensions] Remove EventRouterForwarder from BrowserProcess https://chromium-review.googlesource.com/c/chromium/src/+/5787687 * 5788808: Resolve Blob URL's origin using info from browser process ...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '129.0.6664.0',\n+ '129.0.6668.0',\n 'node_version':\n 'v20.16.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2024-08-20T14:54:27
facebook/react
3dfd5d9efb8fb56c4f602915c0e38a84b0e956db
63cefa2957bbf8c599643d8252f6b8221b399349
refactor[RendererInterface]: expose onErrorOrWarning and getComponentStack (#30931) Make `onErrorOrWarning` and `getComponentStack` part of `rendererInterface`. By doing this, they will be available from the global hook `rendererInterfaces` Map. This makes them available to be used by Hook, which soon will be the o...
[ { "path": "packages/react-devtools-shared/src/backend/console.js", "patch": "@@ -7,7 +7,11 @@\n * @flow\n */\n \n-import type {ConsolePatchSettings} from './types';\n+import type {\n+ ConsolePatchSettings,\n+ OnErrorOrWarning,\n+ GetComponentStack,\n+} from './types';\n \n import {\n formatConsoleArg...
2024-09-10T14:59:40
nodejs/node
395439be8b101c29ce86bb13464fd53381859768
2a6f90813f4802def79f2df1bfe20e95df279abf
assert: improve myers diff performance fix: https://github.com/nodejs/node/issues/57242 PR-URL: https://github.com/nodejs/node/pull/57279 Fixes: https://github.com/nodejs/node/issues/57242 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: LiviaMedeiros <livia@cirno.name>
[ { "path": "benchmark/assert/assertion-error.js", "patch": "@@ -0,0 +1,38 @@\n+'use strict';\n+const common = require('../common.js');\n+const assert = require('assert');\n+\n+const bench = common.createBenchmark(main, {\n+ n: [10, 50, 200, 500],\n+ size: [10, 100],\n+ datasetName: ['objects'],\n+});\n+\n...
2025-03-06T11:59:53
vercel/next.js
dc61d29e49ab328e9b36d3993f02b2762bc69f6c
6bd5c47b90a3165df55a29fb3f0e7ebc5d4cd6be
Interception routes match from nested route navigation (#84898) ### What? Refactors interception route regex generation to fix nested route navigation and improve maintainability. ### Why? Interception routes failed to trigger when navigating from nested descendant routes. The previous implementation had overly com...
[ { "path": "packages/next/src/lib/generate-interception-routes-rewrites.test.ts", "patch": "@@ -36,16 +36,48 @@ describe('generateInterceptionRoutesRewrites', () => {\n // - / (root)\n // - /nested-link (any root-level route)\n // - /foo (any other root-level route)\n- // But NOT:\n- ...
2025-10-16T22:58:09
golang/go
ac803b5949f6dbc5bfa559afe506d35f9e1b3195
889e71c2ac43f22dbd41c0b935acac2e778c8f87
cmd/go/internal/work: copy vet tool's stdout to our stdout The go command connects both the stdout and stderr files of its child commands (cmd/compile, cmd/vet, etc) to the go command's own stderr. If the child command is supposed to produce structure output on stderr, as is the case for go vet -json or go fix -diff, ...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -1184,6 +1184,7 @@ type vetConfig struct {\n \tPackageVetx map[string]string // map package path to vetx data from earlier vet run\n \tVetxOnly bool // only compute vetx data; don't report detected problems\n \tVetxOutput stri...
2025-09-11T15:02:03
rust-lang/rust
f5a2bb6263ad332ceb2d9b3b82afe935259a7723
8ddf4ef064fb702fed0f3d239ec8d0bac607484e
Add hygiene annotations for tokens in macro_rules! bodies `-Zunpretty=expanded,hygiene` was not printing syntax context annotations for identifiers and lifetimes inside `macro_rules!` bodies. These tokens are printed via `print_tt()` → `token_to_string_ext()`, which converts tokens to strings without calling `ann_post...
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state.rs", "patch": "@@ -735,6 +735,23 @@ pub trait PrintState<'a>: std::ops::Deref<Target = pp::Printer> + std::ops::Dere\n TokenTree::Token(token, spacing) => {\n let token_str = self.token_to_string_ext(token, convert_dollar_crat...
2026-03-02T20:28:16
facebook/react
63cefa2957bbf8c599643d8252f6b8221b399349
d160aa0fbb1bd2d00ea8c771c551c9cb5b47f1e9
[DevTools] Implement getComponentStack and onErrorOrWarning for replayed Flight logs (#30930) This adds owner stacks to replayed Server Component logs in environments that don't support native console.createTask. <img width="521" alt="Screenshot 2024-09-09 at 8 55 21 PM" src="https://github.com/user-attachments/a...
[ { "path": "packages/react-devtools-shared/src/backend/flight/DevToolsComponentInfoStack.js", "patch": "@@ -0,0 +1,55 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this sour...
2024-09-10T14:37:29
vercel/next.js
6bd5c47b90a3165df55a29fb3f0e7ebc5d4cd6be
828211efa1a440e18df23b871c421b772214473d
Add codemod for removing `unstable_` prefix (#84974) Stacked on https://github.com/vercel/next.js/pull/84877, https://github.com/vercel/next.js/pull/84880 This PR adds a codemod for removing the `unstable_` prefix for stabilized APIs. It is considered to scale by adding more APIs to the `UNSTABLE_TO_STABLE_MAPPING` m...
[ { "path": "packages/next-codemod/lib/utils.ts", "patch": "@@ -132,4 +132,9 @@ export const TRANSFORMER_INQUIRER_CHOICES = [\n value: 'middleware-to-proxy',\n version: '15.6.0-canary.54',\n },\n+ {\n+ title: 'Remove `unstable_` prefix from stabilized API',\n+ value: 'remove-unstable-prefix',...
2025-10-16T22:55:30
nodejs/node
755e4603fd1679de72d250514ea5096b272ae8d6
157b36b91b5998508973ecbb04c4dc498f8370c1
doc: fix Windows ccache section position PR-URL: https://github.com/nodejs/node/pull/57326 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "BUILDING.md", "patch": "@@ -40,6 +40,7 @@ file a new issue.\n * [Option 2: Automated install with WinGet](#option-2-automated-install-with-winget)\n * [Option 3: Automated install with Boxstarter](#option-3-automated-install-with-boxstarter)\n * [Building Node.js](#building-nodejs...
2025-03-05T16:33:52
facebook/react
d160aa0fbb1bd2d00ea8c771c551c9cb5b47f1e9
6066b8e8e6f07721f4e092920d3e98787122f0fb
[DevTools] Use Unicode Atom Symbol instead of Atom Emoji (#30832) This reverts #19603. Before: <img width="724" alt="Screenshot 2024-08-28 at 12 07 29 AM" src="https://github.com/user-attachments/assets/0613088f-c013-4f1c-92c3-fbdae8c1f109"> After: <img width="771" alt="Screenshot 2024-08-28 at 12 08 13 AM" ...
[ { "path": "packages/react-devtools-extensions/src/main/index.js", "patch": "@@ -185,7 +185,7 @@ function createComponentsPanel() {\n }\n \n chrome.devtools.panels.create(\n- __IS_CHROME__ || __IS_EDGE__ ? '⚛️ Components' : 'Components',\n+ __IS_CHROME__ || __IS_EDGE__ ? 'Components ⚛' : 'Component...
2024-09-10T04:09:42
nodejs/node
157b36b91b5998508973ecbb04c4dc498f8370c1
b4c8440109e5a945090d8ffc3acc9aa7c1f1add1
src: make even more improvements to error handling PR-URL: https://github.com/nodejs/node/pull/57264 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "src/crypto/crypto_tls.cc", "patch": "@@ -2157,10 +2157,11 @@ void TLSWrap::SetMaxSendFragment(const FunctionCallbackInfo<Value>& args) {\n Environment* env = Environment::GetCurrent(args);\n TLSWrap* w;\n ASSIGN_OR_RETURN_UNWRAP(&w, args.This());\n- int rv = SSL_set_max_send_fragment(\n- ...
2025-03-01T20:59:20
facebook/react
fa3cf509a9a1fcfa33dac6a2936391e06bb06316
f4b3a1fea2485c414985d341d6445660da471a98
[DevTools] Add Map for Server Component Logs (#30905) Stacked on #30899. This adds another map to store Server Components logs. When they're replayed with an owner we can associate them with a DevToolsInstance. The replaying should happen before they can mount in Fiber so they'll always have all logs when they m...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -100,6 +100,9 @@ import {\n SERVER_CONTEXT_SYMBOL_STRING,\n } from '../shared/ReactSymbols';\n import {enableStyleXFeatures} from 'react-devtools-feature-flags';\n+\n+import {componentInfoToComponentLogsMap} from '../sh...
2024-09-09T19:12:28
nodejs/node
64f6a2fc4dc8c8556a3d61c77d4110b259ffe3a4
c5666390266ec2b2c4b2a9cd947ea8387995b1d4
doc: update node-api version matrix PR-URL: https://github.com/nodejs/node/pull/57287 Fixes: https://github.com/nodejs/node/issues/57284 Refs: https://github.com/nodejs/node/pull/55676 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Vladimir Morozov ...
[ { "path": "doc/api/n-api.md", "patch": "@@ -291,6 +291,10 @@ information is in the latest API documentation in:\n <th>Node-API version</th>\n <th scope=\"col\">Supported In</th>\n </tr>\n+ <tr>\n+ <th scope=\"row\">10</th>\n+ <td>v22.14.0+, 23.6.0+ and all later versions</td>\n+ </tr>\n ...
2025-03-05T10:10:10
vercel/next.js
c6cd1f455f5c55530ce894aad3210ef5f6003a77
c2863c87249bdd95ff3ede6b299a9e36470521b4
Relax default.tsx validation for parallel routes leaf segments (#84767) ### What? Relaxes the overly strict `default.tsx` validation for parallel routes to only require the file when it's actually needed (non-leaf segments with routable children). ### Why? The initial validation for parallel routes required `defaul...
[ { "path": "crates/next-core/src/app_structure.rs", "patch": "@@ -896,15 +896,24 @@ impl Issue for MissingDefaultParallelRouteIssue {\n #[turbo_tasks::function]\n async fn description(&self) -> Vc<OptionStyledString> {\n Vc::cell(Some(\n- StyledString::Text(\n- forma...
2025-10-16T19:45:38
electron/electron
4c3014944cda8a35fc005af3ade8ba3633e88866
cc16de7032228933f6a0f09cbd72178d8ffd84d0
chore: bump chromium to 129.0.6664.0 (main) (#43329) * chore: bump chromium in DEPS to 129.0.6657.0 * chore: update patches * chore: bump chromium in DEPS to 129.0.6658.0 * chore: update patches * 5743786: [ServiceWorker] Populate service worker start token to WorkerId. https://chromium-review.googlesou...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '129.0.6656.0',\n+ '129.0.6664.0',\n 'node_version':\n 'v20.16.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2024-08-19T18:52:53
golang/go
911455fe1893bcd90d30246117415dfbce658d88
f1fd13016ab51b93f5d39b0c46aa8c2b42e8f761
cmd/link: don't count tbss section in TestFlagD TestFlagD looks for a data-like section at the lowest address. On OpenBSD, the .tbss section matches the current condition, which has address 0, causing the test fail. Don't count TLS sections. Also, print the section name on error. Fixes #75444. Change-Id: Ic0aa1a2bb...
[ { "path": "src/cmd/link/elf_test.go", "patch": "@@ -627,30 +627,30 @@ func testFlagD(t *testing.T, dataAddr string, roundQuantum string, expectedAddr\n \tdefer ef.Close()\n \n \t// Find the first data-related section to verify segment placement\n-\tvar firstDataSectionAddr uint64\n-\tvar found bool = false\...
2025-09-12T16:36:38
vercel/next.js
05627514cf9950e4890310fa643df00cb070e7b0
baf4401c7bf039573e3c3b233c4e127c1deae2fd
Turbopack: turn panic into bail (#84927) Eventual consistency strikes again
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -2543,9 +2543,9 @@ impl SourceMapper for CodeGenResultSourceMap {\n }\n fn span_to_snippet(&self, sp: Span) -> Result<String, Box<SpanSnippetError>> {\n match self {\n- CodeGenResultSourceMap::None => {\n- ...
2025-10-16T19:21:14
facebook/react
e07235b980df30c0ec865500a3e747dd67ce80db
e210d08180a63f42079b91acaa7f6af15eef6d32
[DevTools] Refactor Error / Warning Count Tracking (#30899) We can simplify this tracking by not having a separate pending set of logs and the logs tracked per instance and instead we just track the logs per Fiber. This avoids the need to move it back into the pending set after unmounts in case a Fiber is reparente...
[ { "path": "packages/react-devtools-shared/src/__tests__/store-test.js", "patch": "@@ -1817,13 +1817,8 @@ describe('Store', () => {\n jest.runOnlyPendingTimers();\n }\n \n- // Gross abstraction around pending passive warning/error delay.\n- function flushPendingPassiveErrorAndWarningC...
2024-09-09T19:10:04
nodejs/node
c5666390266ec2b2c4b2a9cd947ea8387995b1d4
345aa1f7c48af7f8b9c65301ec73dc731c473f1b
stream: fix sizeAlgorithm validation in WritableStream Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/57280 Fixes: https://github.com/nodejs/node/issues/57272 Refs: https://github.com/nodejs/node/pull/56067 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Mi...
[ { "path": "lib/internal/webstreams/writablestream.js", "patch": "@@ -1181,7 +1181,9 @@ function writableStreamDefaultControllerGetChunkSize(controller, chunk) {\n sizeAlgorithm,\n } = controller[kState];\n if (sizeAlgorithm === undefined) {\n- assert(stream[kState].state === 'errored' || stream[k...
2025-03-05T03:04:39
electron/electron
cc16de7032228933f6a0f09cbd72178d8ffd84d0
4d51edc504e300e02976bb64db476f352c695c23
fix: printing occasionally showing failed when cancelled (#43337) Closes https://github.com/electron/electron/issues/36084
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -91,7 +91,7 @@ index 163eacc8bb6654880d37111923a87ea5a6134485..565258e9bd4cc52e347e1f4a72ee29ec\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/...
2024-08-19T18:25:14
golang/go
dc960d0bfeb6ce6abd0cfa2c096476d98e9ec7cd
7acb0d044695ca0fbedf94dca7abfdfd991bc69a
cmd/compile, reflect: further allow inlining of TypeFor Previous CLs optimized direct use of abi.Type, but reflect.Type is indirected, so was not benefiting. For TypeFor, we can use toRType directly without a nil check because the types are statically known. Normally, I'd think SSA would remove the nil check, but du...
[ { "path": "src/cmd/compile/internal/reflectdata/reflect.go", "patch": "@@ -717,6 +717,10 @@ func writeType(t *types.Type) *obj.LSym {\n \t}\n \ts.SetSiggen(true)\n \n+\tif !tbase.HasShape() {\n+\t\tTypeLinksym(t) // ensure lsym.Extra is set\n+\t}\n+\n \tif !NeedEmit(tbase) {\n \t\tif i := typecheck.BaseType...
2025-09-06T03:04:58
facebook/react
a8fc4b1ef8149a0f2b55942683bf96409e3f313f
99cba2b041cd13d7ade48a5c97b473e8a188df35
[compiler][playground] Fix displayed naming of outlined functions ghstack-source-id: 20c8e9eeba1620b061e41119dfb1a0e15c36645e Pull Request resolved: https://github.com/facebook/react/pull/30907
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -235,7 +235,7 @@ function compile(source: string): [CompilerOutput, 'flow' | 'typescript'] {\n name: result.name,\n value: {\n type: 'FunctionDeclaration',\n- id,\n+...
2024-09-08T00:50:19
vercel/next.js
baf4401c7bf039573e3c3b233c4e127c1deae2fd
e4e6df78ca86d3f5ad4a042c4b6cb6ce98c17666
Turbopack: fix client reference order for shared references (#84760) At first, we performed one naive traversal per page to collect all client references. That had the problem that references used by multiple layout segments were attributed only to the first layout segment (e.g. only on `not-found` and not on `page`)....
[ { "path": "crates/next-api/src/client_references.rs", "patch": "@@ -3,21 +3,13 @@ use next_core::{\n next_client_reference::{CssClientReferenceModule, EcmascriptClientReferenceModule},\n next_server_component::server_component_module::NextServerComponentModule,\n };\n-use roaring::RoaringBitmap;\n u...
2025-10-16T19:20:28
nodejs/node
52ac44888df66df91df921e307b309eceb360f4c
2cff2560658a81c749c6e3f46566ee659af0810d
src: make more error handling improvements PR-URL: https://github.com/nodejs/node/pull/57262 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "src/env.cc", "patch": "@@ -54,10 +54,12 @@ using v8::HeapProfiler;\n using v8::HeapSpaceStatistics;\n using v8::Integer;\n using v8::Isolate;\n+using v8::JustVoid;\n using v8::Local;\n using v8::Maybe;\n using v8::MaybeLocal;\n using v8::NewStringType;\n+using v8::Nothing;\n using v8::Number;\n u...
2025-03-01T19:56:27
electron/electron
4d51edc504e300e02976bb64db476f352c695c23
8474bbe6895bd98f30e551aa8b3f34d75210a2c5
docs: api history (#42982) * feat(api-history): api history schema Reference: https://github.com/electron/rfcs/blob/f36e0a8483e1ea844710890a8a7a1bd58ecbac05/text/0004-api-history-schema.md * feat(api-history): add `lint:api-history` to `package.json` * docs(api-history): add api history to `styleguide.md` ...
[ { "path": "docs/api-history.schema.json", "patch": "@@ -0,0 +1,47 @@\n+{\n+ \"title\": \"JSON schema for API history blocks in Electron documentation\",\n+ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n+ \"$comment\": \"If you change this schema, remember to edit the TypeScript interfaces in...
2024-08-19T18:17:10
golang/go
7acb0d044695ca0fbedf94dca7abfdfd991bc69a
60c1ee91834d6c9701c5058830645da6eaa0cee9
runtime: fix syscall9 on darwin/arm64 The aarch64 ABI says that only the first 8 arguments should be passed as registers, subsequent arguments should be put on the stack. Syscall9 is not putting the 9th argument on the stack, and it should. The standard library hasn't hit this issue because it uses Syscall9 for fun...
[ { "path": "src/runtime/sys_darwin_arm64.s", "patch": "@@ -724,13 +724,9 @@ TEXT runtime·syscall9(SB),NOSPLIT,$0\n \tMOVD\t56(R0), R6\t// a7\n \tMOVD\t64(R0), R7\t// a8\n \tMOVD\t72(R0), R8\t// a9\n+\tMOVD\tR8, 0(RSP)\t// the 9th arg and onwards must be passed on the stack\n \tMOVD\t8(R0), R0\t// a1\n \n-\t/...
2025-09-10T14:34:22
facebook/react
d76a5651f46619fde486b4119953a8f9dd240612
727b3615287074ddaa28069bfbd2dfee8cf73575
[DevTools] Handle reordered contexts in Profiler (#30887) While looking at the Context tracking implementation for other reasons I noticed this bug. Originally it wasn't allowed to have conditional `useContext(context)` (although we did because it's technically possible). With `use(context)` it is officially all...
[ { "path": "packages/react-devtools-shared/src/__tests__/profilingCache-test.js", "patch": "@@ -1209,6 +1209,106 @@ describe('ProfilingCache', () => {\n }\n });\n \n+ // @reactVersion >= 19.0\n+ it('should detect context changes or lack of changes with conditional use()', () => {\n+ const ContextA...
2024-09-07T01:45:52
vercel/next.js
206fa758ee67677999bac7d726e84c25ed614449
1bb64bf9fa98f70e42f1a2098388fd83e8519378
Turbopack: fix pageExtensions precedence (#84926) Webpack doesn't use the specified order, it's by length.
[ { "path": "crates/next-core/src/next_config.rs", "patch": "@@ -1388,7 +1388,12 @@ impl NextConfig {\n \n #[turbo_tasks::function]\n pub fn page_extensions(&self) -> Vc<Vec<RcStr>> {\n- Vc::cell(self.page_extensions.clone())\n+ // Sort page extensions by length descending. This mirrors ...
2025-10-16T18:08:43
electron/electron
3f71ed73552e94ef7c48fb4a685c6054fd4f0bcb
d7689bb9b5c062dd7c3a024e340ebff75bd63668
build: fix valid versions in issue version parsing (#43346)
[ { "path": ".github/workflows/issue-opened.yml", "patch": "@@ -76,7 +76,8 @@ jobs:\n const { ElectronVersions } = await import('${{ github.workspace }}/node_modules/@electron/fiddle-core/dist/index.js');\n const versions = await ElectronVersions.create(undefined, { ignoreC...
2024-08-19T09:04:30
golang/go
a4e25c3d657cf7c3f3a921cc99ea60ad5a337b82
dd8276657f2244193d399f01941ee1d76a79529d
net,internal/poll: skip TestAllocs when race is enabled on Windows The Windows implementation of several network protocols make use of sync.Pool, which randomly drops cached items when race is enabled. While here, zero out the control buffer to allow it to be garbage collected. Fixes #75341 Change-Id: Ie20e21adef2e...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -196,6 +196,8 @@ func freeWSAMsg(msg *windows.WSAMsg) {\n \t// Clear pointers to buffers so they can be released by garbage collector.\n \tmsg.Buffers.Len = 0\n \tmsg.Buffers.Buf = nil\n+\tmsg.Control.Len = 0\n+\tmsg.Control.Buf = nil\n \twsaMsgPool....
2025-09-12T08:13:15
facebook/react
727b3615287074ddaa28069bfbd2dfee8cf73575
bd788b4180e4ad201100b9defb849cb8f1483f9c
Fix useMemoCache with setState in render Fixes the bug that @alexmckenley and @mofeiZ found where setState-in-render can reset useMemoCache and cause an infinite loop. The bug was that renderWithHooksAgain() was not resetting hook state when rerendering (so useMemo values were preserved) but was resetting the updateQu...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -770,6 +770,12 @@ export function replaySuspendedComponentWithHooks<Props, SecondArg>(\n ignorePreviousDependencies =\n current !== null && current.type !== workInProgress.type;\n }\n+ // renderWithHooks only resets the ...
2024-09-06T21:10:56
vercel/next.js
54ecdd83f636bfe32c43469da63cf5630d07cdb1
65d6ffb7eff5eca4d417ca948ae7ace4adeb2aeb
[dev] Fix Middleware and Proxy file conflict (#84965) Since the conflict check looked only at the file name 💀, when there's a `proxy` or `middleware` file inside the app, it also detected a conflict: ``` Unhandled Rejection: Error: Both "middleware" and "proxy" files are detected. Please use "proxy" instead. ``` CI...
[ { "path": "packages/next/src/server/lib/router-utils/setup-dev-bundler.ts", "patch": "@@ -393,34 +393,38 @@ async function startWatcher(\n \n let hasMiddlewareFile = false\n let hasProxyFile = false\n+\n for (const fileName of sortedKnownFiles) {\n- const { name } = path.parse(fileN...
2025-10-16T17:59:11