repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
65c09eafdf316ef691f0f8eccbf860d2ef5f7c70
594129b80cad4eb291a4185f3ac81699cfb3afd6
runtime: hoist invariant code out of heapBitsSmallForAddrInline The first two instructions in heapBitsSmallForAddrInline are invariant for a given span and object and are called in a loop within ScanObjectsSmall which figures as a hot routine in profiles of some benchmark runs within sweet benchmark suite (x/benchmark...
[ { "path": "src/runtime/mgcmark_greenteagc.go", "patch": "@@ -978,7 +978,9 @@ func spanSetScans(spanBase uintptr, nelems uint16, imb *spanInlineMarkBits, toSc\n }\n \n func scanObjectSmall(spanBase, b, objSize uintptr, gcw *gcWork) {\n-\tptrBits := heapBitsSmallForAddrInline(spanBase, b, objSize)\n+\thbitsBa...
2025-11-07T07:45:02
nodejs/node
c8d5b394e44733aa3938eba01c73a3c0665d82e3
35e599b3d0c25442e0b15c4e45a5b9cf59f6489e
repl: handle errors from getters during completion PR-URL: https://github.com/nodejs/node/pull/59044 Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/repl.js", "patch": "@@ -1837,7 +1837,7 @@ function includesProxiesOrGetters(expr, exprStr, evalFn, ctx, callback) {\n if (astProp.type === 'Literal') {\n // We have something like `obj['foo'].x` where `x` is the literal\n \n- if (isProxy(obj[astProp.value])) {\n+ if (safeI...
2025-07-19T12:32:19
facebook/react
54cfa95d3a83328868f9fba00d8213e6de6c7d2f
d5f3c50f584ab0212e472fc4f4d599194a0286a7
DevTools: fix initial host instance selection (#31892) Related: https://github.com/facebook/react/pull/31342 This fixes RDT behaviour when some DOM element was pre-selected in built-in browser's Elements panel, and then Components panel of React DevTools was opened for the first time. With this change, React DevT...
[ { "path": "packages/react-devtools-extensions/src/main/index.js", "patch": "@@ -345,8 +345,6 @@ function mountReactDevTools() {\n \n createBridgeAndStore();\n \n- setReactSelectionFromBrowser(bridge);\n-\n createComponentsPanel();\n createProfilerPanel();\n }", "additions": 0, "deletions": 2,...
2025-01-09T18:01:07
vercel/next.js
c2001edd618aa61942271e1c9a5f9d8d1043888d
0a21e7dd753649b6e300d6b8ec83963d5a4ae1eb
fix: correct quotes in dev script filter in package.json (#87638) ### What? Fixes a pnpm workspace resolution error where the `dev` script attempted to filter `@next/bundle-analyzer-ui`, which is not defined as a workspace package, resulting in: `No package found with name '@next/bundle-analyzer-ui' in workspace` ##...
[ { "path": "package.json", "patch": "@@ -11,7 +11,7 @@\n \"clean\": \"lerna clean -y && lerna bootstrap && lerna run clean && lerna exec 'node ../../scripts/rm.mjs dist'\",\n \"build\": \"turbo run build --remote-cache-timeout 60 --summarize true\",\n \"lerna\": \"lerna\",\n- \"dev\": \"turbo ...
2025-12-22T13:50:20
electron/electron
5ce41bac8d1c84dde5693b37fe4a4d91edbeff04
6bc7bde2293e9f845b6c60d7280f810fac8b219b
fix: `system-context-menu` should only fire in draggable regions (#45893) fix: system-context-menu should only fire in draggable regions
[ { "path": "patches/chromium/.patches", "patch": "@@ -83,7 +83,7 @@ feat_filter_out_non-shareable_windows_in_the_current_application_in.patch\n disable_freezing_flags_after_init_in_node.patch\n short-circuit_permissions_checks_in_mediastreamdevicescontroller.patch\n chore_add_electron_deps_to_gitignores.patc...
2025-03-12T12:47:58
facebook/react
d16fe4be5b9b5eee0cfb0f602ad62d6b0842d253
8932ca32f47a1441723ae30ef6828998e9587553
[compiler] Playground qol: shared compilation option directives with tests (#32012) - Adds @compilationMode(all|infer|syntax|annotation) and @panicMode(none) directives. This is now shared with our test infra - Playground still defaults to `infer` mode while tests default to `all` mode - See added fixture tests
[ { "path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/compilationMode-all-output.txt", "patch": "@@ -0,0 +1,13 @@\n+import { c as _c } from \"react/compiler-runtime\"; // \n+        @compilationMode(all)\n+function nonReactFn() {\n+  const $ = _c(1);\n+  let t0;\n+  if ($[0] === Symbo...
2025-01-09T17:38:16
golang/go
c58d075e9a457fce92bdf60e2d1870c8c4df7dc5
d55ecea9e5a5a4cfba30c6f35d4841ae66e05ccd
crypto/rsa: deprecate PKCS#1 v1.5 encryption Fixes #75302 Change-Id: I6a6a6964c2b3b33bfb34b9677a57610b933bbfab Reviewed-on: https://go-review.googlesource.com/c/go/+/701436 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Mark Freeman <markfreeman@google.com> LUCI-TryBot-Result: Go LUCI <golang-sc...
[ { "path": "api/next/75302.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg crypto/rsa, func DecryptPKCS1v15 //deprecated #75302\n+pkg crypto/rsa, func DecryptPKCS1v15SessionKey //deprecated #75302\n+pkg crypto/rsa, func EncryptPKCS1v15 //deprecated #75302\n+pkg crypto/rsa, type PKCS1v15DecryptOptions //deprecated #753...
2025-09-07T14:07:43
nodejs/node
062e8b5a741b10239195b9385b1ef10e648ddbd5
0629a175c0fae2d98aae0042a0bac1bbfa536015
worker: add web locks api PR-URL: https://github.com/nodejs/node/pull/58666 Fixes: https://github.com/nodejs/node/pull/36502 Refs: https://w3c.github.io/web-locks Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Revie...
[ { "path": "doc/api/globals.md", "patch": "@@ -768,6 +768,55 @@ consisting of the runtime name and major version number.\n console.log(`The user-agent is ${navigator.userAgent}`); // Prints \"Node.js/21\"\n ```\n \n+### `navigator.locks`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> Stability: 1 - Experimen...
2025-05-29T22:57:31
facebook/react
8932ca32f47a1441723ae30ef6828998e9587553
c4595ca4c86a2a0795bf4d6d5ca4e074babf7fc3
[playground] Partially revert #32009 (#32035) I had forgotten that our default error reporting threshold was `none` due to the fact that build pipelines should not throw errors. This resets it back to throwing on all errors which mostly is the same as the eslint plugin. Closes #32014.
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -78,6 +78,7 @@ function invokeCompiler(\n logEvent: () => {},\n },\n environment,\n+ panicThreshold: 'all_errors',\n });\n const ast = parseInput(source, language);\n let result = transformFromAstSync(...
2025-01-09T17:21:05
vercel/next.js
a3048c637116e3ef8c1468cbd19adb25a62a3720
7fb2aa908216fb3a910c7fa6d24524412b5af6e5
Turbopack: Create junction points instead of symlinks on Windows (#87606) Next 16.1 changed Turbopack's external packaging to use symlinks. Symlinks require elevated privileges on Windows if "Developer Mode" is not enabled. We can work around this by using junction points, which are mostly equivalent, but: - They on...
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -1274,9 +1274,29 @@ export async function copyTracedFiles(\n if (symlink) {\n try {\n await fs.symlink(symlink, fileOutputPath)\n- } catch (e: any) {\n- if (e.code !== 'EEXIST') {\n- ...
2025-12-22T09:38:22
electron/electron
dcd319cfbed3027b9b946f09a2d74944db1b089d
cd56b965442d254ff8801446303343f36ea8acef
build: roll sysroots to pick up glibc fix (#45974)
[ { "path": "script/sysroots.json", "patch": "@@ -1,14 +1,14 @@\n {\n \"bullseye_amd64\": {\n \"Key\": \"20230611T210420Z-2\",\n- \"Sha256Sum\": \"7c93e71bf9c4cd0825aa59fb2479054d981e36ba9be34ecf4c1d73051cae40fe\",\n+ \"Sha256Sum\": \"0be326b106f0df7b8547ec8d3b58ccb95435c8414a45cda67...
2025-03-11T21:31:48
nodejs/node
fc4a8af4305562aaef19a05c5b7bdfb7400b7a55
0fd1ecded6476378b207cacc8fb4e2f1698830c6
crypto: avoid copying buffers to UTF-8 strings in `crypto.hash()` PR-URL: https://github.com/nodejs/node/pull/59067 Fixes: https://github.com/nodejs/node/issues/59057 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-B...
[ { "path": "src/crypto/crypto_hash.cc", "patch": "@@ -275,26 +275,23 @@ void Hash::OneShotDigest(const FunctionCallbackInfo<Value>& args) {\n }\n \n DataPointer output = ([&]() -> DataPointer {\n- Utf8Value utf8(isolate, args[3]);\n- ncrypto::Buffer<const unsigned char> buf;\n if (args[3]->IsSt...
2025-07-14T07:04:52
facebook/react
800c9db22e69680f17e238724478537282215f89
98418e8902d6045e5138a2e765e026ce2e4de82d
ViewTransitions in Navigation (#32028) This adds navigation support to the View Transition fixture using both `history.pushState/popstate` and the Navigation API models. Because `popstate` does scroll restoration synchronously at the end of the event, but `startViewTransition` cannot start synchronously, it would obs...
[ { "path": "fixtures/view-transition/server/render.js", "patch": "@@ -20,24 +20,27 @@ export default function render(url, res) {\n console.error('Fatal', error);\n });\n let didError = false;\n- const {pipe, abort} = renderToPipeableStream(<App assets={assets} />, {\n- bootstrapScripts: [assets['...
2025-01-08T23:57:54
golang/go
410ef44f0054a9ab20a901895edb7db5a4d0aad7
50128a21541e3fd712ad717a223aaa109cb86d43
cmd: update x/tools to 59ff18c $ go get golang.org/x/tools@59ff18c $ GOWORK=off go mod tidy $ GOWORK=off go mod vendor This implies golang.org/x/sys@v0.38.0, for which I have also updated src/go.mod for consistency. I also upgraded x/mod@3f03020 to bring in some fixes to code that go vet would otherwise have flag...
[ { "path": "src/cmd/go.mod", "patch": "@@ -6,12 +6,12 @@ require (\n \tgithub.com/google/pprof v0.0.0-20250630185457-6e76a2b096b5\n \tgolang.org/x/arch v0.22.1-0.20251016010524-fea4a9ec4938\n \tgolang.org/x/build v0.0.0-20250806225920-b7c66c047964\n-\tgolang.org/x/mod v0.29.0\n-\tgolang.org/x/sync v0.17.0\n-...
2025-11-11T19:56:59
rust-lang/rust
77eea39d459ef5a7dd91584f8560984e3b8dd960
03749d625404994801804ab9f2a539936c50bfea
rustdoc: error out on `--test` with `--emit` These options don't behave reasonably when combined right now, and there are no tests and no docs for how they should. For the short term, make this a fatal error. If we decide to assign this some semantics, then we can do that at any time.
[ { "path": "src/librustdoc/config.rs", "patch": "@@ -462,8 +462,13 @@ impl Options {\n return None;\n }\n \n+ let should_test = matches.opt_present(\"test\");\n+\n let mut emit = FxIndexMap::<_, EmitType>::default();\n for list in matches.opt_strs(\"emit\") {\n+ ...
2026-03-15T01:58:58
vercel/next.js
9b44e2f2ee4bff2ed40316e3ca1d6c8ad8e93259
a350c2bca58dfaafa5a41c74d5cb09893b49e264
docs: fix typos and clarify examples in Cache Components guide (#87530)
[ { "path": "docs/01-app/01-getting-started/06-cache-components.mdx", "patch": "@@ -86,7 +86,7 @@ export default async function Page() {\n }\n ```\n \n-> **Good to know**: You can verify that a route was fully prerendered by checking the build output summary. Alternatively see what content was added to the st...
2025-12-20T22:11:01
electron/electron
22262c14f1f8ba2664bad2f7554f9e9c8c0e595b
6e056709bef91d796b502ace65856fd4a3b5b96d
test: fix timing issue in `utilityProcess` test fixtures (#45964) * fix: potential timing issue in utilityProcess test * fix: potential timing issue in utilityProcess esm test
[ { "path": "spec/fixtures/api/utility-process/dns-result-order.js", "patch": "@@ -1,4 +1,6 @@\n const dns = require('node:dns');\n \n-console.log(dns.getDefaultResultOrder());\n-process.exit(0);\n+const write = (writable, chunk) => new Promise((resolve) => writable.write(chunk, resolve));\n+\n+write(process....
2025-03-11T16:41:42
facebook/react
38127b281567d43972b7fb44c3fcb0d1806e7c10
3a5496b3f56f1c0b138811a564299ee0b64a64ba
[Fiber] Support only View Transitions v2 (#31996) Stacked on #31975. We're going to recommend that the primary way you style a View Transition is using a View Transition Class (and/or Type). These are only available in the View Transitions v2 spec. When they're not available it's better to fallback to just not animat...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1209,19 +1209,28 @@ export function startViewTransition(\n rootContainer.nodeType === DOCUMENT_NODE\n ? rootContainer\n : rootContainer.ownerDocument;\n- // $FlowFixMe[prop-missing]\n- if (typeof owner...
2025-01-08T18:22:15
rust-lang/rust
39631fdac191893a6eb4d000d5b258e92cae2304
35f1109ece895199e4b8d755b101e9a481d18243
Point at unit structs on foreign crates in type errors when they are the pattern of a let binding Consts and unit structs in patterns can be confusing if they are mistaken for new bindings. We already provide some context for unit structs and consts that come from the current crate, we now also point at those from for...
[ { "path": "compiler/rustc_hir_typeck/src/pat.rs", "patch": "@@ -1636,69 +1636,75 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n span_bug!(pat_span, \"unexpected resolution for path pattern: {resolved_pat:?}\");\n };\n \n- if let Some(span) = self.tcx.hir_res_span(pat_res) {\n+ let ...
2026-03-15T01:50:36
nodejs/node
036b1fd66d8e18091c826e644aef872aee92ffcc
0221d6b6521baa6d9969573eb8241048a74c816d
http,https: add built-in proxy support in http/https.request and Agent This patch implements proxy support for HTTP and HTTPS clients and agents in the `http` and `https` built-ins`. When NODE_USE_ENV_PROXY is set to 1, the default global agent would parse the HTTP_PROXY/http_proxy, HTTPS_PROXY/https_proxy, NO_PROXY/n...
[ { "path": "doc/api/errors.md", "patch": "@@ -2491,6 +2491,18 @@ Accessing `Object.prototype.__proto__` has been forbidden using\n [`Object.setPrototypeOf`][] should be used to get and set the prototype of an\n object.\n \n+<a id=\"ERR_PROXY_INVALID_CONFIG\"></a>\n+\n+### `ERR_PROXY_INVALID_CONFIG`\n+\n+Fail...
2025-07-01T23:17:07
golang/go
aea881230dcc640ad730d3759423104074577756
120f1874ef380362cf8b8c4775a327bcd417ff70
std: fix printf("%q", int) mistakes For #72850 Change-Id: I07e64f05c82a34b1dadb9a72e16f5045e68cbd24 Reviewed-on: https://go-review.googlesource.com/c/go/+/720642 Auto-Submit: Alan Donovan <adonovan@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI...
[ { "path": "src/cmd/compile/internal/ir/fmt.go", "patch": "@@ -574,7 +574,7 @@ func exprFmt(n Node, s fmt.State, prec int) {\n \t\t// Special case for rune constants.\n \t\tif typ == types.RuneType || typ == types.UntypedRune {\n \t\t\tif x, ok := constant.Uint64Val(val); ok && x <= utf8.MaxRune {\n-\t\t\t\t...
2025-11-14T19:59:36
vercel/next.js
a350c2bca58dfaafa5a41c74d5cb09893b49e264
100253c450f67eba6b9a0d936c1eedbe3a8446cf
docs: tweaks/fixes to papercuts (#87445)
[ { "path": "docs/01-app/01-getting-started/16-proxy.mdx", "patch": "@@ -52,7 +52,6 @@ export function proxy(request: NextRequest) {\n // Alternatively, you can use a default export:\n // export default function proxy(request: NextRequest) { ... }\n \n-// See \"Matching Paths\" below to learn more\n export co...
2025-12-20T21:09:21
electron/electron
eb126eecb0e259fafafe8097c1cb8dac017dd07e
4e1a915f1a1caf09d6e93ae030e809f71272b8fb
docs: Add 'Native Code and Electron' (#45882) * docs: Add 'Native Code and Electron' * docs: Add node-gyp requirements * Update docs/tutorial/native-code-and-electron.md Co-authored-by: Erick Zhao <erick@hotmail.ca> * Cross-platform clean command * Mention napi-rs * Apply suggestions from code review Co-authore...
[ { "path": "docs/tutorial/native-code-and-electron.md", "patch": "@@ -0,0 +1,380 @@\n+# Native Code and Electron\n+\n+One of Electron's most powerful features is the ability to combine web technologies with native code - both for compute-intensive logic as well as for the occasional native user interface, wh...
2025-03-10T20:45:33
rust-lang/rust
249f52c1e0189479db18c61eff75b0b5926aa525
bfca1f1187bdcf653f744e382a129889dc743204
Fix 32bit test
[ { "path": "tests/ui/const-generics/min_const_generics/invalid-patterns.32bit.stderr", "patch": "@@ -3,24 +3,48 @@ error[E0308]: mismatched types\n |\n LL | get_flag::<false, 0xFF>();\n | ^^^^ expected `char`, found `u8`\n+ |\n+note: expected because of the type of the const par...
2026-03-14T23:24:23
facebook/react
3a5496b3f56f1c0b138811a564299ee0b64a64ba
a4d122f2d192fe0b6480e669cca43c8f953aaf85
[Fiber] Use className on <ViewTransition> to assign view-transition-class (#31999) Stacked on #31975. This is the primary way we recommend styling your View Transitions since it allows for reusable styling such as a CSS library specializing in View Transitions in a way that's composable and without naming conflicts. ...
[ { "path": "fixtures/view-transition/package.json", "patch": "@@ -4,15 +4,23 @@\n \"private\": true,\n \"devDependencies\": {\n \"concurrently\": \"3.1.0\",\n- \"http-proxy-middleware\": \"0.17.3\",\n- \"react-scripts\": \"0.9.5\"\n+ \"http-proxy-middleware\": \"3.0.3\",\n+ \"react-script...
2025-01-08T18:22:06
vercel/next.js
a62b7d0641d6711d8a5f32c7942f80fc0129a6d5
c95eb899fa1559802c6a7f583d1d1bbe731dbd55
Revert "Revert "[turbopack] Set `liveness` of exports based on assignment analysis (#82802)"" (#87214) This reverts commit 7c8f84712020d388fb64ae5845a67cc370798115 which reverted ba227046ef42a8080b1fbe274fe842c0c7067bff. It was reverted because it triggered a bug in the payloadcms system which relied on distinguishin...
[ { "path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts", "patch": "@@ -610,7 +610,7 @@ describe('Cache Components Errors', () => {\n } else {\n expect(output).toMatchInlineSnapshot(`\n \"Error: Route \"/dynamic-root\": Uncached data was a...
2025-12-19T21:32:06
golang/go
120f1874ef380362cf8b8c4775a327bcd417ff70
fecfcaa4f68a220f47e2c7c8b65d55906dbf8d46
runtime: add more precise test of assist credit handling for runtime.freegc This CL is part of a set of CLs that attempt to reduce how much work the GC must do. See the design in https://go.dev/design/74299-runtime-freegc This CL adds a better test of assist credit handling when heap objects are being reused after a ...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -644,6 +644,25 @@ func Freegc(p unsafe.Pointer, size uintptr, noscan bool) {\n \tfreegc(p, size, noscan)\n }\n \n+// Expose gcAssistBytes for the current g for testing.\n+func AssistCredit() int64 {\n+\tassistG := getg()\n+\tif assistG.m.curg != nil {\n+\...
2025-11-03T21:40:40
electron/electron
f2b09ff0bd319d4609a13958f55e8a2f62049b03
b0c11371e0bb37fc1e1eb69e23c218493be54823
fix: remove redundant `MediaCaptureDevicesDispatcher::GetInstance()` call (#45929) fix: remove redundant MediaCaptureDevicesDispatcher::GetInstance() call This appears to be a copy-paste error introduced in 465dee2c
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -344,9 +344,6 @@ int ElectronBrowserMainParts::PreCreateThreads() {\n // Force MediaCaptureDevicesDispatcher to be created on UI thread.\n MediaCaptureDevicesDispatcher::GetInstance();\n \n- // Force MediaCaptureDevicesDispatcher to...
2025-03-10T14:44:24
nodejs/node
fd717c9feb783b2b7ba4953393563c6101fc12e5
a8e4e0613c0873a2d94a2c1bad292e4961c0ab09
deps: V8: revert rapidhash commits This reverts the following V8 commits: Revert "[string] Fix rapidhash on big endian" This reverts commit 3c6749f39dcaf071f7140d501eb6c507ba7d762e. Revert "Fix build with older gcc and clang compilers" This reverts commit 63cb5b3519339bb90a50f5d2150c527d1a6ab96f. ...
[ { "path": "deps/v8/.gitignore", "patch": "@@ -89,7 +89,6 @@\n /third_party/jsoncpp/source\n !/third_party/llvm-libc\n /third_party/llvm-libc/src\n-!/third_party/rapidhash-v8\n !/third_party/re2\n /third_party/re2/src\n !/third_party/siphash", "additions": 0, "deletions": 1, "language": "Unknown"...
2025-05-09T11:40:21
rust-lang/rust
75511819a482f25f5cd221f68b60f80b866c0644
35f1109ece895199e4b8d755b101e9a481d18243
Turn label into structured suggestion for `.as_ref()` and `.as_mut()` ``` error[E0382]: use of moved value: `foo` --> $DIR/as-ref-2.rs:10:14 | LL | let foo = Some(Struct); | --- move occurs because `foo` has type `Option<Struct>`, which does not implement the `Copy` trait LL | let _x: Option<St...
[ { "path": "compiler/rustc_borrowck/src/diagnostics/mod.rs", "patch": "@@ -1377,7 +1377,9 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n matches!(tcx.get_diagnostic_name(def_id), Some(sym::Option | sym::Result))\n });\n if is_option...
2026-03-14T22:40:28
vercel/next.js
71f9a8c65c00d048f0592ae764c0fb6e1d7d8354
ac4f404c97fe434ec26a4286d94450f6f605441b
bundle analyzer: remove uncompressed toggle, stabilize top bar ui (#87325) This: - Removes the uncompressed/compressed toggle in favor of just using compressed sizes when sizing treemap nodes - Fixes the width of the client/server and file type triggers so that they don't reflow horizontally when their content change...
[ { "path": "apps/bundle-analyzer/app/page.tsx", "patch": "@@ -1,7 +1,6 @@\n 'use client'\n \n import type React from 'react'\n-import { SizeMode } from '@/lib/treemap-layout'\n \n import { useEffect, useMemo, useState } from 'react'\n import useSWR from 'swr'\n@@ -25,9 +24,8 @@ import { AnalyzeData, ModulesD...
2025-12-19T18:44:14
facebook/react
a4d122f2d192fe0b6480e669cca43c8f953aaf85
e30c6693e4c7f2aec25b07f5df69a87163dbee81
Add <ViewTransition> Component (#31975) This will provide the opt-in for using [View Transitions](https://developer.mozilla.org/en-US/docs/Web/API/View_Transition_API) in React. View Transitions only trigger for async updates like `startTransition`, `useDeferredValue`, Actions or `<Suspense>` revealing from fallback ...
[ { "path": "fixtures/view-transition/README.md", "patch": "@@ -0,0 +1,30 @@\n+# View Transition\n+\n+A test case for View Transitions.\n+\n+## Setup\n+\n+To reference a local build of React, first run `npm run build` at the root\n+of the React project. Then:\n+\n+```\n+cd fixtures/view-transition\n+yarn\n+ya...
2025-01-08T17:11:18
electron/electron
b0c11371e0bb37fc1e1eb69e23c218493be54823
9b2e7db469806ef337f0b2d02cee4d02fb863adb
chore: bump chromium to 136.0.7058.1 (main) (#45928) * chore: bump chromium in DEPS to 136.0.7056.0 * chore: update mas_avoid_private_macos_api_usage.patch.patch no manual changes; patch applied with fuzz * chore: update fix_adapt_exclusive_access_for_electron_needs.patch patch applied manually due to context shea...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '136.0.7054.0',\n+ '136.0.7058.1',\n 'node_version':\n 'v22.14.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-03-10T05:30:34
golang/go
fecfcaa4f68a220f47e2c7c8b65d55906dbf8d46
5a347b775e051060f6f52ce25ec82a024a3a9365
runtime: add runtime.freegc to reduce GC work This CL is part of a set of CLs that attempt to reduce how much work the GC must do. See the design in https://go.dev/design/74299-runtime-freegc This CL adds runtime.freegc: func freegc(ptr unsafe.Pointer, uintptr size, noscan bool) Memory freed via runtime.freegc is ...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -2464,10 +2464,11 @@ var blockedLinknames = map[string][]string{\n \t// Experimental features\n \t\"runtime.goroutineLeakGC\": {\"runtime/pprof\"},\n \t\"runtime.goroutineleakcount\": {\"runtime/pprof\"},\n+\t\"runtime.freegc\": ...
2025-11-04T14:33:17
vercel/next.js
c02a04d974440f0c783e260f42997f579ef8cce0
92f72373644fae3a2822386480e9e2b6fcf3df68
docs: fix highlight in 05-server-and-client-components.mdx (#87347) In the **When to use Server and Client Components?** section of [Server and Client Components](https://nextjs.org/docs/app/getting-started/server-and-client-components) page, the code block should highlight line 17 `<LikeButton likes={post.likes} />` ...
[ { "path": "docs/01-app/01-getting-started/05-server-and-client-components.mdx", "patch": "@@ -32,7 +32,7 @@ Use **Server Components** when you need:\n \n For example, the `<Page>` component is a Server Component that fetches data about a post, and passes it as props to the `<LikeButton>` which handles clien...
2025-12-19T12:56:28
rust-lang/rust
e389568d920963504c49edc1cc277643471a0907
1d0d647b4c6d11ac42a9d1c00c141db7278ad8bd
fix clippy test
[ { "path": "tests/ui/track-diagnostics.stderr", "patch": "@@ -2,7 +2,9 @@ error[E0308]: mismatched types\n --> tests/ui/track-diagnostics.rs:LL:CC\n |\n LL | const S: A = B;\n- | ^ expected `A`, found `B`\n+ | - ^ expected `A`, found `B`\n+ | |\n+ | expe...
2026-03-14T20:43:57
electron/electron
8ac061ebe7b93b400a945b1735d239c1194f503e
b30f31e1f63364803606ae5dc3c76597360d6783
fix: race condition in utilityProcess tests (#45926)
[ { "path": "spec/api-utility-process-spec.ts", "patch": "@@ -228,7 +228,6 @@ describe('utilityProcess module', () => {\n const child = utilityProcess.fork(fixtureFile, [], {\n stdio: 'pipe'\n });\n- await once(child, 'spawn');\n expect(child.stdout).to.not.be.null();\n le...
2025-03-09T22:37:35
nodejs/node
4102dcc2269d12cb576468370419b059c31e72b0
ce4a16f50ae289bf6c7834b592ca47ad4634dd79
doc: fix typed list formatting PR-URL: https://github.com/nodejs/node/pull/59019 Refs: https://github.com/nodejs/api-docs-tooling/issues/348 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Claudio Wunder <cwunder@gnome.org>
[ { "path": "doc/api/async_context.md", "patch": "@@ -303,7 +303,7 @@ asyncLocalStorage.getStore(); // Returns the same object\n added: v24.0.0\n -->\n \n-* {string}\n+* Type: {string}\n \n The name of the `AsyncLocalStorage` instance if provided.\n ", "additions": 1, "deletions": 1, "language": "...
2025-07-15T17:18:42
golang/go
1a03d0db3f36c1a81a184fa15a54f716569a9972
cb0d9980f5721715ebb73dd2e580eaa11c2ddee2
runtime: skip tests for GOEXPERIMENT=arenas that do not handle clobberfree=1 When run with GODEBUG=clobberfree=1, three out of seven of the top-level tests in runtime/arena_test.go fail with a SIGSEGV inside the clobberfree function where it is overwriting freed memory with 0xdeadbeef. This is not a new problem. For ...
[ { "path": "src/runtime/arena_test.go", "patch": "@@ -36,6 +36,11 @@ type largeScalar [UserArenaChunkBytes + 1]byte\n type largePointer [UserArenaChunkBytes/unsafe.Sizeof(&smallPointer{}) + 1]*smallPointer\n \n func TestUserArena(t *testing.T) {\n+\tif Clobberfree() {\n+\t\t// This test crashes with SEGV in ...
2025-11-05T17:18:49
rust-lang/rust
bfca1f1187bdcf653f744e382a129889dc743204
ff0ce4f5fa83a03082ed6efb3f0088dcd935be92
fix clippy test
[ { "path": "src/tools/clippy/tests/ui/track-diagnostics.stderr", "patch": "@@ -2,7 +2,9 @@ error[E0308]: mismatched types\n --> tests/ui/track-diagnostics.rs:LL:CC\n |\n LL | const S: A = B;\n- | ^ expected `A`, found `B`\n+ | - ^ expected `A`, found `B`\n+ | |\n+ ...
2026-03-14T20:43:57
nodejs/node
049664bbdc421c63b2145c85a18c64d184b40aa5
a47274595888cb9e672c1bce3157a3eab2c50ab2
repl: fix repl crashing on variable declarations without init PR-URL: https://github.com/nodejs/node/pull/59032 Fixes: https://github.com/nodejs/node/issues/59029 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/repl.js", "patch": "@@ -1735,6 +1735,10 @@ function findExpressionCompleteTarget(code) {\n // what we can potentially complete on, so let's re-run the function's logic on that\n if (lastBodyStatement.type === 'VariableDeclaration') {\n const lastDeclarationInit = lastBodyStatement.dec...
2025-07-11T16:43:10
vercel/next.js
92f72373644fae3a2822386480e9e2b6fcf3df68
37521a02e9309b01f42ec011892e97d8e466ef19
Turbopack: refactor graph traveral and fix module graph determinism (#87312) ### What? Simplifies the graph traversal. Allows the GraphStore to store edges and nodes. This no longer forces us to abuse the node type to store edge info, which actually has lead to a race condition problem which made the module graph non...
[ { "path": "crates/next-api/src/nft_json.rs", "patch": "@@ -6,7 +6,7 @@ use tracing::{Instrument, Level, Span};\n use turbo_rcstr::RcStr;\n use turbo_tasks::{\n FxIndexMap, ReadRef, ResolvedVc, TryFlatJoinIterExt, TryJoinIterExt, ValueToString, Vc,\n- graph::{AdjacencyMap, GraphTraversal, Visit, Visit...
2025-12-19T09:10:27
golang/go
03ed43988ff7f7671094d8c455532de7f2242e70
1bb1f2bf0c07bbc583063a21b324407f7041e316
cmd/compile: allow multi-field structs to be stored directly in interfaces If the struct is a bunch of 0-sized fields and one pointer field. Merged revert-of-revert for 4 CLs. original revert 681937 695016 693415 694996 693615 695015 694195 694995 Fixes #74092 Update #74888 Update #74908 Update #74935 ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/dec.rules", "patch": "@@ -97,8 +97,10 @@\n // Helpers for expand calls\n // Some of these are copied from generic.rules\n \n-(IMake _typ (StructMake val)) => (IMake _typ val)\n-(StructSelect [0] (IData x)) => (IData x)\n+(IMake _typ (StructMake ___)) => imakeOfSt...
2025-06-15T03:10:50
electron/electron
458b14b8ed819fcf6bc20e9b42c4dca1c323e626
530ccfe350498d8bdaa26d96e4b4d81df4098848
chore: bump chromium to 136.0.7053.1 (main) (#45906) * chore: bump chromium in DEPS to 136.0.7052.0 * chore: update mas_avoid_private_macos_api_usage.patch.patch https://chromium-review.googlesource.com/c/chromium/src/+/6318359 patch applied manually due to context shear * chore: update preconnect_manager.patch X...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '135.0.7049.7',\n+ '136.0.7053.1',\n 'node_version':\n 'v22.14.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-03-07T17:35:59
facebook/react
6efbc0897f08d688c614baa205f1e1625b3a7c83
7b402084af3f43284eed3c7c3155762a871fc817
[playground] Use default compiler config (#32009) The playground's compilation mode is currently set to 'all' along with reporting all errors. This tends to be misleading since people usually expect a 1:1 match between how the playground works with what the compiler does in their codebase, eg https://github.com/react...
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -78,8 +78,6 @@ function invokeCompiler(\n logEvent: () => {},\n },\n environment,\n- compilationMode: 'all',\n- panicThreshold: 'all_errors',\n });\n const ast = parseInput(source, language);\n let ...
2025-01-07T16:53:27
rust-lang/rust
2e4a420db08a0bb5a43834227aef532a9de3b3ea
87d8f5885b4f289477e48090a86356302437cec9
Explain that default field values aren't compatible with type parameters unless going through the type parameter ``` error[E0308]: mismatched types --> $DIR/struct-type-parameter-with-default.rs:5:12 | LL | struct Foo<T = String> { | ---------- expected this type parameter LL | x: T = String::ne...
[ { "path": "compiler/rustc_hir_typeck/src/lib.rs", "patch": "@@ -205,7 +205,7 @@ fn typeck_with_inspect<'tcx>(\n }\n \n fcx.check_expr_coercible_to_type_or_error(body.value, expected_type, None, |err, _| {\n- extend_err_with_const_context(err, tcx, node);\n+ extend_err_w...
2026-03-14T18:02:00
vercel/next.js
ca831cfccccd16c83b4af1cc61b06615fd5ec264
634cfd3312bfd82e9b01f7ff04cb9dfb28debee7
test: fix actions deployment tests (#87279) Fixes a few failing deployment tests that weren't validated when landed last week. - next.cliOutput is not available when deployed because it's part of runtime logs - status code changes on Vercel because POSTing to a static 404 page is treated differently.
[ { "path": "test/e2e/app-dir/actions-unrecognized/actions-unrecognized.test.ts", "patch": "@@ -82,7 +82,7 @@ describe('unrecognized server actions', () => {\n )\n }\n \n- it('should 404 when POSTing a urlencoded action to a nonexistent page', async () => {\n+ it('should error when POSTing a urlencode...
2025-12-17T18:17:22
nodejs/node
0d128e39efaa82dc9550232a7382f70462c8eb4e
e3e739de63b0df9663411f4da9997055ab5a66e2
doc: add missing environment variables to manpage PR-URL: https://github.com/nodejs/node/pull/58963 Fixes: https://github.com/nodejs/node/issues/58894 Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/node.1", "patch": "@@ -696,12 +696,22 @@ disabled.\n .It Ev NO_COLOR\n Alias for NODE_DISABLE_COLORS\n .\n+.It Ev NODE_COMPILE_CACHE Ar dir\n+Enable the\n+.Sy module compile cache\n+for the Node.js instance.\n+.\n .It Ev NODE_DEBUG Ar modules...\n Comma-separated list of core modules that sho...
2025-07-11T07:38:24
facebook/react
7b402084af3f43284eed3c7c3155762a871fc817
3314162535c45360ee178d7bf1dc03c291f45930
Fix notify target, add lines (#32006)
[ { "path": ".github/workflows/discord_notify.yml", "patch": "@@ -1,22 +1,21 @@\n name: Discord Notify\n \n on:\n- pull_request:\n+ pull_request_target:\n types: [ labeled ]\n- \n+\n jobs:\n notify:\n- if: ${{ github.event.label.name == 'React Core Team' }}\n- runs-on: ubuntu-latest\n- ...
2025-01-07T14:34:18
electron/electron
530ccfe350498d8bdaa26d96e4b4d81df4098848
041ada15867b4ed24193f2023747f275806bcf10
fix: resolve font list in default prefernce values (#45905) * fix: resolve font list in default prefernce values * chore: fix unsafe buffer usage * docs: add code comment
[ { "path": "shell/browser/font_defaults.cc", "patch": "@@ -9,14 +9,101 @@\n \n #include \"base/containers/fixed_flat_map.h\"\n #include \"base/containers/map_util.h\"\n+#include \"base/strings/cstring_view.h\"\n #include \"base/strings/string_split.h\"\n+#include \"base/strings/utf_string_conversions.h\"\n+#...
2025-03-07T09:22:03
golang/go
1bb1f2bf0c07bbc583063a21b324407f7041e316
9fd2e4443955127ed360338cb19a5aeba6be1a8c
runtime: put AddCleanup cleanup arguments in their own allocation Currently, AddCleanup just creates a simple closure that calls `cleanup(arg)` as the actual cleanup function tracked internally. However, the argument ends up getting its own allocation. If it's tiny, then it can also end up sharing a tiny allocation sl...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -72,8 +72,9 @@ import (\n // pass the object to the [KeepAlive] function after the last point\n // where the object must remain reachable.\n func AddCleanup[T, S any](ptr *T, cleanup func(S), arg S) Cleanup {\n-\t// Explicitly force ptr to escape to the heap...
2025-11-13T18:29:23
rust-lang/rust
87d8f5885b4f289477e48090a86356302437cec9
35f1109ece895199e4b8d755b101e9a481d18243
Provide more context on type errors in const context - On `const` and `static` point at the type (like we do for let bindings) - On fn calls, point at const parameter in fn definition - On type, point at const parameter in type definition - On array type lengths, explain that array length is always `usize` - On enum v...
[ { "path": "compiler/rustc_hir_typeck/src/lib.rs", "patch": "@@ -41,7 +41,7 @@ pub use coercion::can_coerce;\n use fn_ctxt::FnCtxt;\n use rustc_data_structures::unord::UnordSet;\n use rustc_errors::codes::*;\n-use rustc_errors::{Applicability, ErrorGuaranteed, pluralize, struct_span_code_err};\n+use rustc_er...
2026-03-14T17:23:34
vercel/next.js
ea1df5f2893771ef49d935cf2bb6803989feec74
b174155e8b4863e18805ca29aaa98a240667e2a9
[turbopack] Break ties using a counter instead of node index (#87252) This should ensure that if priorities are ambiguous we revert to a BFS order BFS is better than DFS for the `fixed point` traversals since we are generally propogating information 'down' the graph so to the extent we can we should visit all r-deps ...
[ { "path": "turbopack/crates/turbopack-core/src/module_graph/mod.rs", "patch": "@@ -1451,10 +1451,17 @@ impl ModuleGraphRef {\n );\n }\n \n+ let mut visit_order = 0usize;\n+ let mut order = || {\n+ let order = visit_order;\n+ visit_order += 1;\n+ ...
2025-12-17T00:14:33
facebook/react
83be48b9dee25737063ca64880f82ef9fea11737
defffdbba43f89b95d9f67a4fb0fa146c1211734
[tests] fix hidden use() warnings (#31984) `spyOnDev` is such a footgun.
[ { "path": "packages/react-reconciler/src/__tests__/ReactUse-test.js", "patch": "@@ -27,6 +27,7 @@ let waitForPaint;\n let assertLog;\n let waitForAll;\n let waitForMicrotasks;\n+let assertConsoleErrorDev;\n \n describe('ReactUse', () => {\n beforeEach(() => {\n@@ -51,6 +52,7 @@ describe('ReactUse', () => ...
2025-01-06T19:12:35
nodejs/node
b7db89f491f981d493de4057fbde471e4c84ac84
09b4c5769a59bef1f5b999fe770155cb505ee3f8
inspector: initial support for Network.loadNetworkResource Fixes: https://github.com/nodejs/node/issues/57873 PR-URL: https://github.com/nodejs/node/pull/58077 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -1069,6 +1069,17 @@ passing a second `parentURL` argument for contextual resolution.\n \n Previously gated the entire `import.meta.resolve` feature.\n \n+### `--experimental-inspector-network-resource`\n+\n+<!-- YAML\n+added:\n+ - REPLACEME\n+-->\n+\n+> Stability: 1...
2025-07-10T12:34:11
golang/go
7a8d0b5d53dc7be331016b6903707aa256e22c2a
710abf74da2a017423e35e416ab3fd05e6053bf3
runtime: add debug mode to extend _Grunning-without-P windows This was suggested in CL 646198, and I tested with it, I forgot to push it so it wasn't merged. I think it might be worth keeping. Change-Id: Ibf97d969fe7d0eeb365f5f7b1fbeadea3a1076ab Reviewed-on: https://go-review.googlesource.com/c/go/+/716580 Reviewed-b...
[ { "path": "src/runtime/proc.go", "patch": "@@ -4658,6 +4658,11 @@ func reentersyscall(pc, sp, bp uintptr) {\n \tgp.m.locks--\n }\n \n+// debugExtendGrunningNoP is a debug mode that extends the windows in which\n+// we're _Grunning without a P in order to try to shake out bugs with code\n+// assuming this st...
2025-10-30T17:24:47
electron/electron
d987bee0073310c0bf114dd5e5c9db5e9c68ee59
431a791a995c178de1561b4c2330a1b7596900be
fix: javascript heap OOM is not raised (#45895) fix: javascript heap oom is not raised in node::OOMErrorHandler node::OOMErrorHandler terminates the process directly without raising an oom exception. To fix it, set an oom handler into node from electron.
[ { "path": "patches/node/.patches", "patch": "@@ -44,3 +44,4 @@ test_make_eval_snapshot_tests_more_flexible.patch\n build_option_to_use_custom_inspector_protocol_path.patch\n fix_adjust_wpt_and_webidl_tests_for_enabled_float16array.patch\n chore_add_createexternalizabletwobytestring_to_globals.patch\n+feat_a...
2025-03-06T16:34:19
vercel/next.js
5a44f652c983fb2b984bfae5c851b26a1d03e0d5
7e9ed7e6cb26ca244f4fefc35517c12467e00eac
[ci] Fix releaseStats in build-and-deploy (#87235)
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -707,6 +707,9 @@ jobs:\n env:\n PR_STATS_COMMENT_TOKEN: ${{ secrets.PR_STATS_COMMENT_TOKEN }}\n NEXT_SKIP_NATIVE_POSTINSTALL: 1\n+ # This uses the webpack bundle analyzer and for consistent results we need ...
2025-12-16T16:17:41
facebook/react
9627d71c5050c7665a44e499fc643acce8a8a5e4
301a18a6afeaea9c6113d7e459025ba69f436b24
fix: `react-compiler-runtime` should be cjs (#31993)
[ { "path": "compiler/packages/react-compiler-runtime/scripts/build.js", "patch": "@@ -29,7 +29,7 @@ const config = {\n outfile: path.join(__dirname, '../dist/index.js'),\n bundle: true,\n external: ['react'],\n- format: argv.p === 'browser' ? 'esm' : 'cjs',\n+ format: 'cjs',\n platform: argv.p,\n ...
2025-01-06T14:06:09
rust-lang/rust
681750bd4606b0142fdf7e4b6013c508506bfb24
f9ed8c2b1d9673669025fb7ab67e2ee6770a99b8
add fixmes for f128 also implement sqrt for f128 (using softfloat) and test sqrt for f16 and f128
[ { "path": "src/tools/miri/src/intrinsics/math.rs", "patch": "@@ -192,10 +192,12 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {\n \"powf16\" => pow_intrinsic::<HalfS>(this, args, dest)?,\n \"powf32\" => pow_intrinsic::<SingleS>(this, args, dest)?,\n \"po...
2026-03-14T15:35:00
golang/go
a0e738c657d33e2a648838546812fb50cf42e41d
2cdcc4150bc577e0b40a9cedaaa7c8301f2860cd
cmd/compile/internal: remove incorrect riscv64 SLTI rule The rule (SLTI [x] (ORI [y] _)) && y >= 0 && int64(y) >= int64(x) => (MOVDconst [0]) is incorrect as it only generates correct code if the unknown value being compared is >= 0. If the unknown value is < 0 the rule will incorrectly produce a constant value of...
[ { "path": "src/cmd/compile/internal/ssa/_gen/RISCV64.rules", "patch": "@@ -792,7 +792,6 @@\n // SLTI/SLTIU with known outcomes.\n (SLTI [x] (ANDI [y] _)) && y >= 0 && int64(y) < int64(x) => (MOVDconst [1])\n (SLTIU [x] (ANDI [y] _)) && y >= 0 && uint64(y) < uint64(x) => (MOVDconst [1])\n-(SLTI [x] (ORI [...
2025-11-13T11:28:29
electron/electron
99c943df2388bb50f62990427bac47cbb5b545ae
8c11764800c07604247b770b6bf7359d197d86bb
fix: `setContentProtection(true)` after hide on Windows (#45868) fix: content protection after hide on Windows https://chromium-review.googlesource.com/c/chromium/src/+/5789117
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -724,6 +724,10 @@ void BaseWindow::SetContentProtection(bool enable) {\n return window_->SetContentProtection(enable);\n }\n \n+bool BaseWindow::IsContentProtected() const {\n+ return window_->IsContentProtected();\n+}\n+\n void Base...
2025-03-04T21:39:59
nodejs/node
793a2792d5777cd59ec150e445196ffbabbc1421
794a13fa98e2d6a97b2209dc0beddf733d8b2083
module: throw error when re-runing errored module jobs Re-evaluating an errored ESM should lead to rejecting the rejection again - this is also the case when importing it twice. In the case of retrying with require after import, just throw the cached error. Drive-by: add some debug logs. PR-URL: https://github.com/no...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -43,6 +43,7 @@ const {\n kEvaluating,\n kEvaluationPhase,\n kInstantiated,\n+ kErrored,\n kSourcePhase,\n throwIfPromiseRejected,\n } = internalBinding('module_wrap');\n@@ -402,6 +403,9 @@ class ModuleLoader {\n mod[kRequiredMod...
2025-07-09T16:39:29
facebook/react
bf883bebbc4973dea0e4801a5a62f82043ff57ee
f42f8c0635775c3cb8beb5252aa777ff7d468ae5
[fizz] fix empty string href double warning (#31783) I think this is the suggested change from https://github.com/facebook/react/pull/31765#discussion_r1884541447 But no tests fail and I'm not sure how to test it? Seems sus. Also seems like the `removeAttribute` here should be changed? https://github.com/facebook...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -2510,26 +2510,17 @@ function diffHydratedGenericElement(\n );\n }\n }\n- hydrateSanitizedAttribute(\n- domElement,\n- propKey,\n- propKey,\n- ...
2025-01-03T17:53:28
vercel/next.js
4f13405be7281bbd9b9ba12f636cb4b0e8648044
40a9d005db1d31624cafd1432624825727db7acd
fix: otel error spans from streamed responses (#86955) When an error is thrown inside a Suspense boundary during streaming SSR, the error was not being captured in the "render route (app)" span. This happened because `getTracer().wrap()` ends the span as soon as the stream is created and returned, but errors inside Su...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -70,7 +70,7 @@ import {\n import { isRedirectError } from '../../client/components/redirect-error'\n import { getImplicitTags, type ImplicitTags } from '../lib/implicit-tags'\n import { AppRenderSpan, NextNodeServerSpan } from '../...
2025-12-15T21:31:31
rust-lang/rust
a27fdfbf0189c78574293e03dd0c0d82c96b81eb
798a011ace1c2b5be80767ba1d97a4dff0546f93
tests/debuginfo/basic-stepping.rs: Remove ignore-aarch64 It works now.
[ { "path": "tests/debuginfo/basic-stepping.rs", "patch": "@@ -2,7 +2,6 @@\n //! time works intuitively, e.g. that `next` takes you to the next source line.\n //! Regression test for <https://github.com/rust-lang/rust/issues/33013>.\n \n-//@ ignore-aarch64: Doesn't work yet.\n //@ ignore-loongarch64: Doesn't ...
2026-03-14T15:31:19
golang/go
b57962b7c7de2b70fa943e66cd26b2cce631b7f8
0a569528ea355099af864f7612c3fa1973df30e4
bytes: fix panic in bytes.Buffer.Peek This change fixed the overlooked offset in bytes.Buffer.Peek. Otherwise, it will either return wrong result or panic with "runtime error: slice bounds out of range". Change-Id: Ic42fd8a27fb9703c51430f298933b91cf0d45451 GitHub-Last-Rev: fb97ebc3b188959835706626f66898d6306c16fb Git...
[ { "path": "src/bytes/buffer.go", "patch": "@@ -86,7 +86,7 @@ func (b *Buffer) Peek(n int) ([]byte, error) {\n \tif b.Len() < n {\n \t\treturn b.buf[b.off:], io.EOF\n \t}\n-\treturn b.buf[b.off:n], nil\n+\treturn b.buf[b.off : b.off+n], nil\n }\n \n // empty reports whether the unread portion of the buffer i...
2025-11-13T01:43:03
electron/electron
2a7133b7a68287025012a12e53865105ede3a6e7
64158114aa2ac23433ad121263ff1e179c02cdca
fix: correct electron gin embedder indices (#45389) fix: correct gin embedder indices. Move electron extra embedders to the end of the enum so they do not interfere with chromium embedders indices. Also use kEmbedderBlinkTag directly in its index calculation without adding extra indices from other tags.
[ { "path": "patches/chromium/fix_harden_blink_scriptstate_maybefrom.patch", "patch": "@@ -43,15 +43,15 @@ diff --git a/gin/public/gin_embedders.h b/gin/public/gin_embedders.h\n index 8d7c5631fd8f1499c67384286f0e3c4037673b32..99b2e2f63be8a46c5546dd53bc9b05e8c54e857c 100644\n --- a/gin/public/gin_embedders.h\n...
2025-03-03T22:03:54
nodejs/node
af2ba368162d750da72d4eb40074735f3d4eed2e
8b84efc05f441c22f7409a80e93ac9926b1a8645
lib: fix incorrect `ArrayBufferPrototypeGetDetached` primordial type PR-URL: https://github.com/nodejs/node/pull/58978 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Revie...
[ { "path": "typings/primordials.d.ts", "patch": "@@ -164,7 +164,7 @@ declare namespace primordials {\n export import ArrayBuffer = globalThis.ArrayBuffer;\n export const ArrayBufferPrototype: typeof ArrayBuffer.prototype\n export const ArrayBufferIsView: typeof ArrayBuffer.isView\n- export const Array...
2025-07-09T11:05:39
facebook/react
220dece92b9ab5f8867a589f8104b15717d68d2f
c784273bcc78df995b3a45c01c26188f7bb36911
[compiler] Switch to esbuild (#31963) This migrates the compiler's bundler to esbuild instead of rollup. Unlike React, our bundling use cases are far simpler since the majority of our packages are meant to be run on node. Rollup was adding considerable build time overhead whereas esbuild remains fast and has all the f...
[ { "path": "compiler/apps/playground/package.json", "patch": "@@ -3,10 +3,11 @@\n \"version\": \"0.1.0\",\n \"private\": true,\n \"scripts\": {\n- \"dev\": \"cd ../.. && concurrently --kill-others -n compiler,runtime,playground \\\"yarn workspace babel-plugin-react-compiler run build --watch\\\" \\\...
2025-01-02T21:59:56
vercel/next.js
4b603cfa9557050850eee8c16c24ffb99b34d3aa
771447034e5d684570c3c6b0d191f0d023f5a195
Fix interception routes with trailing slash configuration (#86787) ### What? This PR fixes interception routes to work correctly with the `trailingSlash` configuration option. ### Why? Interception routes were not working when users had `trailingSlash: true` in their Next.js config. This was because interception ro...
[ { "path": "packages/next/src/lib/build-custom-route.ts", "patch": "@@ -37,14 +37,6 @@ export function buildCustomRoute(\n delimiter: '/', // default is `/#?`, but Next does not pass query info\n })\n \n- let source = compiled.source\n- if (!route.internal) {\n- source = modifyRouteRegex(\n- ...
2025-12-15T20:38:35
rust-lang/rust
77a20144b57bb9c5c3cf7379f6235822597c573d
4aa2d6fbf48d830dd6f914fa9558c173e40fbbe0
Fix overlap edit on tuple to record assist expr uses self Example --- ```rust struct T$0(u8); fn test(t: T) { T(t.0); } ``` **Before this PR** Panic **After this PR** ```rust struct T { field1: u8 } fn test(t: T) { T { field1: t.field1 }; } ```
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_named_struct_to_tuple_struct.rs", "patch": "@@ -1,9 +1,7 @@\n-use std::ops::RangeInclusive;\n-\n use either::Either;\n use ide_db::{defs::Definition, search::FileReference};\n use syntax::{\n- NodeOrToken, SyntaxElement, SyntaxKin...
2026-03-14T11:59:40
golang/go
9daaab305c4d1dede9e4f6efdc5e1268a69327e6
d50a571ddfb7661d65c8488b0bbfeacc793f964b
cmd/link/internal/ld: make runtime.buildVersion with experiments valid Specifically if there are experiments but no nonstandard toolchain suffix such as "-devel", the go version will not be valid according to go/version.IsValid. To fix that, always put the X: part into the suffix, resulting in, for example, go1.25.0-X...
[ { "path": "src/cmd/go/internal/cache/hash.go", "patch": "@@ -51,6 +51,9 @@ func stripExperiment(version string) string {\n \tif i := strings.Index(version, \" X:\"); i >= 0 {\n \t\treturn version[:i]\n \t}\n+\tif i := strings.Index(version, \"-X:\"); i >= 0 {\n+\t\treturn version[:i]\n+\t}\n \treturn versio...
2025-11-11T18:54:52
nodejs/node
8b84efc05f441c22f7409a80e93ac9926b1a8645
0992d28011effcd1922342a82e879cb22184e0fc
meta: add marco-ippolito to security release stewards PR-URL: https://github.com/nodejs/node/pull/58944 Fixes: https://github.com/nodejs/TSC/issues/1764 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Gire...
[ { "path": "README.md", "patch": "@@ -880,6 +880,9 @@ releases on a rotation basis as outlined in the\n * [Datadog](https://www.datadoghq.com/)\n * [bengl](https://github.com/bengl) -\n **Bryan English** <<bryan@bryanenglish.com>> (he/him)\n+* [HeroDevs](https://www.herodevs.com/)\n+ * [marco-ippolito...
2025-07-09T10:16:58
facebook/react
0de1233fd180969f7ffdfc98151922f2466ceb1f
1e9eb95db5b3a2064ecc26915a4e640b3a9bdaf5
[Fiber] Mark error boundaries and commit phases when an error is thrown (#31876) This tracks commit phase errors and marks the component that errored as red. These also get the errors attached to the entry. <img width="1505" alt="Screenshot 2024-12-20 at 2 40 14 PM" src="https://github.com/user-attachments/assets/cac...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -98,6 +98,7 @@ import {\n Cloned,\n PerformedWork,\n ForceClientRender,\n+ DidCapture,\n } from './ReactFiberFlags';\n import {\n commitStartTime,\n@@ -107,14 +108,17 @@ import {\n resetComponentEffectTimers,\n push...
2025-01-02T18:28:24
rust-lang/rust
4aa2d6fbf48d830dd6f914fa9558c173e40fbbe0
31f31ab2fe7e1306a4d52806b654ab3ff8621d25
Fix field ref in macro for 'convert_tuple_struct_to_named_struct'
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_tuple_struct_to_named_struct.rs", "patch": "@@ -252,13 +252,15 @@ fn edit_field_references(\n let usages = def.usages(&ctx.sema).all();\n for (file_id, refs) in usages {\n let source = ctx.sema.parse(file_...
2026-03-14T14:12:50
electron/electron
add374ef6a3e576fa4f73dbf68199540668a75cf
eac270bea7798b5f8b62504e1f1161f89f3a189d
chore: bump chromium to 135.0.7041.2 (main) (#45850) * chore: bump chromium in DEPS to 135.0.7041.2 * [Extensions] Remove ExtensionsBrowserClient::GetUserAgent() https://chromium-review.googlesource.com/c/chromium/src/+/6306854 * chore: update patches * [api] Remove deprecated FunctionCallbackInfo::Holder() https...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '135.0.7040.0',\n+ '135.0.7041.2',\n 'node_version':\n 'v22.14.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-02-28T22:29:23
vercel/next.js
3884de9b4ef7f90d5ec451302c4b08c287a7223c
33e9ed59136b62f4d3cc197a6e5033f938908264
[ci] Fix build-and-deploy
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -3,8 +3,8 @@ name: build-and-deploy\n \n on:\n push:\n- tags-ignore:\n- - 'v*'\n+ branches:\n+ - '*'\n # we need the preview tarball for deploy tests\n pull_request:\n types: [opened, synchronize]", "additions": 2...
2025-12-15T19:09:38
golang/go
d50a571ddfb7661d65c8488b0bbfeacc793f964b
704f841eab87462d4eefac07345c96f71fb6e964
test: fix tests to work with sizespecializedmalloc turned off Cq-Include-Trybots: luci.golang.try:gotip-linux-386-nosizespecializedmalloc,gotip-linux-amd64-nosizespecializedmalloc,gotip-linux-arm64-nosizespecializedmalloc Change-Id: I6a6a696465004b939c989afc058c4c3e1fb7134f Reviewed-on: https://go-review.googlesource....
[ { "path": "test/codegen/strings.go", "patch": "@@ -23,7 +23,7 @@ func CountBytes(s []byte) int {\n \n func ToByteSlice() []byte { // Issue #24698\n \t// amd64:`LEAQ type:\\[3\\]uint8`\n-\t// amd64:`CALL runtime\\.mallocTiny3`\n+\t// amd64:`CALL runtime\\.(newobject|mallocTiny3)`\n \t// amd64:-`.*runtime.str...
2025-11-13T22:04:54
facebook/react
1e9eb95db5b3a2064ecc26915a4e640b3a9bdaf5
fe21c947c82b173ae538aa1d215559ec3dccd103
[Fiber] Mark cascading updates (#31866) A common source of performance problems is due to cascading renders from calling `setState` in `useLayoutEffect` or `useEffect`. This marks the entry from the update to when we start the render as red and `"Cascade"` to highlight this. <img width="964" alt="Screenshot 2024-12-1...
[ { "path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js", "patch": "@@ -276,11 +276,15 @@ export function logBlockingStart(\n eventTime: number,\n eventType: null | string,\n eventIsRepeat: boolean,\n+ isSpawnedUpdate: boolean,\n renderStartTime: number,\n lanes: Lanes,\n ): void {...
2025-01-02T18:04:09
nodejs/node
0992d28011effcd1922342a82e879cb22184e0fc
4de01974413bba0cd04d1b148169a0cd8c25ec20
test: add missing port=0 arg in test-debugger-extract-function-name PR-URL: https://github.com/nodejs/node/pull/58977 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/parallel/test-debugger-extract-function-name.mjs", "patch": "@@ -7,7 +7,7 @@ import startCLI from '../common/debugger.js';\n \n import assert from 'assert';\n \n-const cli = startCLI([path('debugger', 'three-lines.js')]);\n+const cli = startCLI(['--port=0', path('debugger', 'three-lines.js')...
2025-07-08T23:18:27
vercel/next.js
99a947ce1d235b62669c4059909eb52d8d10fa4f
aba09f4a0e6beabe2a09b5b6b16fb2781308e1ab
Fix error propagation and teardown in Server Action request decoding (#87193) This change switches to promise-based pipelines and uses `AbortController` to ensure multipart pipelines are properly canceled when decoding fails. Request bodies are fully consumed or aborted so decoding cannot hang or silently drop errors.
[ { "path": "packages/next/src/server/app-render/action-handler.ts", "patch": "@@ -858,8 +858,10 @@ export async function handleAction({\n \n temporaryReferences = createTemporaryReferenceSet()\n \n- const { Transform, pipeline } =\n+ const { PassThrough, Readable, Transform } =\n ...
2025-12-15T15:52:01
electron/electron
36ec9d72362bf4cf5a81a63b61f0a66ac01cc3fb
3041fd66cddac32cd1dc6a129e1edd46fe2c77ce
docs: fix spelling errors in code comments (#45842) chore: Fix typos
[ { "path": "shell/browser/api/electron_api_power_monitor.h", "patch": "@@ -44,7 +44,7 @@ class PowerMonitor final : public gin::Wrappable<PowerMonitor>,\n void SetListeningForShutdown(bool);\n #endif\n \n- // Called by native calles.\n+ // Called by native callers.\n bool ShouldShutdown();\n \n #if BUI...
2025-02-28T11:24:00
facebook/react
62208bee5ad7e447d42459ace8c0edcb7c4f9197
694d3e1aae4ae9e29fe8de8ad246662be65f5e0b
DevTools: fork FastRefresh test for <18 versions of React (#31893) We currently have a failing test for React DevTools against React 17. This started failing in https://github.com/facebook/react/pull/30899, where we changed logic for error tracking and started relying on `onPostCommitFiberRoot` hook. Looking at ...
[ { "path": "packages/react-devtools-shared/src/__tests__/FastRefreshDevToolsIntegration-test.js", "patch": "@@ -186,8 +186,83 @@ describe('Fast Refresh', () => {\n expect(getContainer().firstChild).not.toBe(element);\n });\n \n+ // @reactVersion < 18.0\n // @reactVersion >= 16.9\n- it('should not b...
2025-01-02T14:07:21
nodejs/node
4de01974413bba0cd04d1b148169a0cd8c25ec20
eff504ff1214d58814f697a4c077e79f98c0806c
net: update net.blocklist to allow file save and file management PR-URL: https://github.com/nodejs/node/pull/58087 Fixes: https://github.com/nodejs/node/issues/56252 Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/net.md", "patch": "@@ -181,6 +181,38 @@ added:\n * `value` {any} Any JS value\n * Returns `true` if the `value` is a `net.BlockList`.\n \n+### `blockList.fromJSON(value)`\n+\n+> Stability: 1 - Experimental\n+\n+ <!-- YAML\n+added: REPLACEME\n+-->\n+\n+```js\n+const blockList = new net.Blo...
2025-07-08T20:37:51
vercel/next.js
0c3aa188e6dfa37eaa8510e9d6b5fb2e5c93c4a7
c4b20045423d08a6e1775df6417d08c706a85d2c
Fix: External redirect swallowed by Next.js (#87121) Fix for a regression introduced by https://github.com/vercel/next.js/pull/86367. When a Server Action performed an external redirect, Next.js was no longer triggering an MPA navigation from directly inside the response handler. It would end up working regardless if...
[ { "path": "packages/next/src/client/components/router-reducer/reducers/server-action-reducer.ts", "patch": "@@ -60,6 +60,7 @@ import {\n ActionDidRevalidateStaticAndDynamic,\n type ActionRevalidationKind,\n } from '../../../../shared/lib/action-revalidation-kind'\n+import { isExternalURL } from '../../a...
2025-12-13T04:08:58
electron/electron
b504f65acea54e485c692632851443089c9c1f70
5cb87b711084c5abb41e9ed3fc8df5e36715337b
docs: update breaking-changes.md for 35.0.0 (#45822) * docs: update breaking-changes.md for 35.0.0 * fixup! docs: update breaking-changes.md for 35.0.0 docs: make lint happy
[ { "path": "docs/breaking-changes.md", "patch": "@@ -35,6 +35,16 @@ https://learn.microsoft.com/en-us/windows/win32/dwm/composition-ovw#disabling-dw\n \n ## Planned Breaking API Changes (35.0)\n \n+### Behavior Changed: Dialog API's `defaultPath` option on Linux\n+\n+On Linux, the required portal version for...
2025-02-28T04:01:26
nodejs/node
1c4fe6d795ca8e318503fe0d78585d9ba99a31df
c7eff619c218c84a512e3582aae745c9c36b0cba
crypto: support outputLength option in crypto.hash for XOF functions Support `outputLength` option in crypto.hash() for XOF hash functions to align with the behaviour of crypto.createHash() API closes: https://github.com/nodejs/node/issues/57312 Co-authored-by: Filip Skokan <panva.ip@gmail.com> PR-URL: https://githu...
[ { "path": "deps/ncrypto/ncrypto.cc", "patch": "@@ -4191,6 +4191,22 @@ DataPointer hashDigest(const Buffer<const unsigned char>& buf,\n return data.resize(result_size);\n }\n \n+DataPointer xofHashDigest(const Buffer<const unsigned char>& buf,\n+ const EVP_MD* md,\n+ ...
2025-07-08T13:39:00
vercel/next.js
32f6ed396e483f141df40dc57a98dfe1be4ddd50
92e2cc028df47806713ae8004700bac31208fde9
improve segment cache lru typesafety (#87129) The LRU and cache map code was using any types in several places `(MapEntry<any>`,` type LRUNode = MapEntry<any>`) which meant we had no type safety for those operations. This masked a bug fixed in #87124 where `deleteFromCacheMap(tail.value)` was being called incorrectly ...
[ { "path": "packages/next/src/client/components/segment-cache/cache-map.ts", "patch": "@@ -65,41 +65,61 @@ import { lruPut, updateLruSize, deleteFromLru } from './lru'\n * should prefer to put it in cache.ts.\n */\n \n-type MapEntryShared<V extends MapValue> = {\n- parent: MapEntry<V> | null\n- key: any\...
2025-12-13T01:04:02
facebook/react
c01b8058e6e2d50a5c1ed69f1bdd4c541bf4aa92
50f00fd876b0b92b243cd8b54a222f9577446392
DevTools: fix Compiler inegration test with 18.2 (#31904) Currently failing with `TypeError: Invalid Version: 19`, looks like I've overlooked this one in https://github.com/facebook/react/pull/31241.
[ { "path": "scripts/ci/download_devtools_regression_build.js", "patch": "@@ -110,7 +110,7 @@ async function downloadRegressionBuild() {\n );\n }\n \n- if (semver.gte(reactVersion, '18.2.0') && semver.lt(reactVersion, '19')) {\n+ if (semver.gte(reactVersion, '18.2.0') && semver.lt(reactVersion, '19.0....
2024-12-29T15:36:21
electron/electron
d19cac6772c262e4fccc0608b252a5734cd3165a
eac1a7ff68fd03dea343efeff09ef345d48c51df
docs: fix PrinterInfo info in breaking-changes.md (#45843) > ### Removed:`isDefault` and `status` properties on `PrinterInfo` > These properties have been removed from the PrinterInfo Object > because they have been removed from upstream Chromium. These properties won't be removed until Electron 36, but breaking-chan...
[ { "path": "docs/breaking-changes.md", "patch": "@@ -14,6 +14,11 @@ This document uses the following convention to categorize breaking changes:\n \n ## Planned Breaking API Changes (36.0)\n \n+### Removed:`isDefault` and `status` properties on `PrinterInfo`\n+\n+These properties have been removed from the Pr...
2025-02-27T23:49:58
nodejs/node
c7eff619c218c84a512e3582aae745c9c36b0cba
41cd6ba30e7dce622750df7c0050e6f757e0c02c
dns: fix parse memory leaky PR-URL: https://github.com/nodejs/node/pull/58973 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: James M Snell <jasnel...
[ { "path": "src/cares_wrap.cc", "patch": "@@ -1565,6 +1565,8 @@ Maybe<int> SoaTraits::Parse(QuerySoaWrap* wrap,\n \n if (status != ARES_SUCCESS) return Just<int>(status);\n \n+ auto cleanup = OnScopeLeave([&]() { ares_free_data(soa_out); });\n+\n Local<Object> soa_record = Object::New(env->isolate());\n...
2025-07-08T09:42:22
vercel/next.js
a7ca0459a58a44992da65f49cf1b61ff905e2f38
ea927b583d24f42e538001bf13370e38c91d17bf
Fix: Missing null check in LRU cleanup (#87124) Unfortunately this field is not strongly typed because it's a cyclic type and I wasn't able to soundly model it with TypeScript. Skill issue I'm sure. Don't have an exact repro yet but the previous code was obviously wrong. The way this should have been structured rega...
[ { "path": "packages/next/src/client/components/segment-cache/cache-map.ts", "patch": "@@ -396,7 +396,7 @@ function dropRef<V extends MapValue>(value: V): void {\n value.ref = null\n }\n \n-function deleteMapEntry<V extends MapValue>(entry: MapEntry<V>): void {\n+export function deleteMapEntry<V extends Ma...
2025-12-12T23:05:06
facebook/react
50f00fd876b0b92b243cd8b54a222f9577446392
d4ac7689f94f8ed53b779a651d62a2b9af20e6c0
[Flight] Mark Errored Server Components (#31879) This is similar to #31876 but for Server Components. It marks them as errored and puts the error message in the Summary properties. <img width="1511" alt="Screenshot 2024-12-20 at 5 05 35 PM" src="https://github.com/user-attachments/assets/92f11e42-0e23-41c7-bfd4-09ef...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -73,6 +73,7 @@ import {\n markAllTracksInOrder,\n logComponentRender,\n logDedupedComponentRender,\n+ logComponentErrored,\n } from './ReactFlightPerformanceTrack';\n \n import {\n@@ -2876,6 +2877,7 @@ function flushComponentPer...
2024-12-28T07:02:16
rust-lang/rust
7a698be60580b1e9d68620e4ca3a8517eed654f5
3a352497c3ac93654abaa8a376fc14ac448bbfa2
min,max: Add tests for signaling NaNs and update documentation We do handle signaling NaNs properly, with the exception of raising exceptions as IEEE 754 requires. Add tests to this effect for `fmin`, `fminimum`, `fminimum_num`, and the max variants.
[ { "path": "library/compiler-builtins/libm/src/math/fmin_fmax.rs", "patch": "@@ -77,9 +77,12 @@ pub fn fmaxf128(x: f128, y: f128) -> f128 {\n #[cfg(test)]\n mod tests {\n use super::*;\n+ use crate::support::hex_float::Hexi;\n use crate::support::{Float, Hexf};\n \n fn fmin_spec_test<F: Float>...
2026-03-06T00:11:20
electron/electron
eac1a7ff68fd03dea343efeff09ef345d48c51df
00089a951b334c4789f687f39c401b3a34dfad0b
fix: context-menu event emitted in draggable regions (#45813) * fix: context-menu event emitted in draggable regions * fix: only trigger on mouse release
[ { "path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -12,6 +12,7 @@\n \n #include \"base/feature_list.h\"\n #include \"base/i18n/rtl.h\"\n+#include \"shell/browser/api/electron_api_web_contents.h\"\n #include \"shell/browser/native_window_features.h\"\n #include \"shell/brow...
2025-02-27T19:44:46
facebook/react
d4ac7689f94f8ed53b779a651d62a2b9af20e6c0
4309bde2b4faa044dc6266142378a330c030e053
Add Profiler mode to fixtures even if React DevTools is not installed (#31877) Currently you need to do one of either: 1. Install React DevTools 2. Install React Refresh 3. Add Profiler component To opt in to component level profiling. It was a bit confusing that some of the fixtures was doing 2 which made them wor...
[ { "path": "fixtures/flight/src/index.js", "patch": "@@ -1,5 +1,5 @@\n import * as React from 'react';\n-import {use, Suspense, useState, startTransition} from 'react';\n+import {use, Suspense, useState, startTransition, Profiler} from 'react';\n import ReactDOM from 'react-dom/client';\n import {createFromF...
2024-12-28T07:01:49
vercel/next.js
ea927b583d24f42e538001bf13370e38c91d17bf
940f889249b23c356af985e6d99823a1c76a5b7f
Turbopack: Improve the description on InvalidLoaderRuleConditionIssue (#87008) It's near-impossible to get this to error on the Rust side (issues are caught before we get here), but I hacked up the code to make it error. It looks like this: ![Screenshot 2025-12-09 at 4.39.24 PM.png](https://app.graphite.com/user-atta...
[ { "path": "crates/next-core/src/next_config.rs", "patch": "@@ -1283,6 +1283,7 @@ impl Issue for InvalidLoaderRuleRenameAsIssue {\n \n #[turbo_tasks::value(shared)]\n struct InvalidLoaderRuleConditionIssue {\n+ error_string: RcStr,\n condition: ConfigConditionItem,\n config_file_path: FileSystemPa...
2025-12-12T20:51:14
nodejs/node
41cd6ba30e7dce622750df7c0050e6f757e0c02c
ba49d71dbffa53c45c9b9a2d7677938952f2ee3b
doc: remove broken link to permission model source code The permission model grew enough to be splited into multiple files, the link in the md file is broken. And as it is not part of a single file, the best way to fix this is just remove the link, many APIs in Node.js does not have the source code linked, this is not...
[ { "path": "doc/api/permissions.md", "patch": "@@ -2,8 +2,6 @@\n \n <!--introduced_in=v20.0.0-->\n \n-<!-- source_link=src/permission.cc -->\n-\n Permissions can be used to control what system resources the\n Node.js process has access to or what actions the process can take\n with those resources.", "ad...
2025-07-08T05:22:36
rust-lang/rust
24d86b5f2b69665d6b6c0868239e37da221f2e19
620e36a8d1fc2f9e5694ce83c2631877651a962c
Fix rust build failure for vxworks
[ { "path": "library/std/build.rs", "patch": "@@ -79,4 +79,28 @@ fn main() {\n println!(\"cargo:rustc-cfg=backtrace_in_libstd\");\n \n println!(\"cargo:rustc-env=STD_ENV_ARCH={}\", env::var(\"CARGO_CFG_TARGET_ARCH\").unwrap());\n+\n+ println!(\"cargo:rustc-check-cfg=cfg(vxworks_lt_25_09)\");\n+\n+ ...
2026-03-03T06:35:43