repo
stringclasses
11 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
59.2k
files
listlengths
1
300
timestamp
timestamp[s]date
2016-04-11 04:39:55
2026-04-09 07:34:40
electron/electron
71f3ff6bf289745c74d48cf54c254120a70804b4
ff0a14a7c63bb913da67f3d8660eac32bf29dd92
docs: fix types of `app.dock` (#46073)
[ { "path": "docs/api/app.md", "patch": "@@ -1559,8 +1559,8 @@ command line arguments that Chromium uses.\n \n ### `app.dock` _macOS_ _Readonly_\n \n-A [`Dock`](./dock.md) `| undefined` object that allows you to perform actions on your app icon in the user's\n-dock on macOS.\n+A `Dock | undefined` property ([...
2025-03-18T12:14:08
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
vercel/next.js
fa56f2c1fa02fcaeca08358725a9565a7a5997ac
8aa9feb379334d02bd6968c19fbf0eb97b6e9eca
fix: revalidateTag with profile should not trigger client cache invalidation (#88069) ## Summary Fixes a bug where calling `revalidateTag(tag, profile)` incorrectly triggers client-side cache invalidation, causing read-your-own-writes behavior that violates stale-while-revalidate semantics. ### The Problem When `re...
[ { "path": "packages/next/src/server/app-render/action-handler.ts", "patch": "@@ -160,7 +160,14 @@ function addRevalidationHeader(\n // TODO-APP: Currently paths are treated as tags, so the second element of the tuple\n // is always empty.\n \n- const isTagRevalidated = workStore.pendingRevalidatedTags?...
2026-01-04T16:30:32
facebook/react
cd28a946d57695a025581c0ff851bde08ea6ca27
8243f3f0631698e819c690710a7f18f767068981
Add observer methods to fragment instances (#32619) This implements `observeUsing(observer)` and `unobserverUsing(observer)` on fragment instances. IntersectionObservers and ResizeObservers can be passed to observe each host child of the fragment. This is the equivalent to calling `observer.observe(child)` or `observe...
[ { "path": "fixtures/dom/src/components/fixtures/fragment-refs/EventListenerCase.js", "patch": "@@ -0,0 +1,96 @@\n+import TestCase from '../../TestCase';\n+import Fixture from '../../Fixture';\n+\n+const React = window.React;\n+const {Fragment, useEffect, useRef, useState} = React;\n+\n+function WrapperCompo...
2025-03-17T15:40:05
electron/electron
bea7d618f1916d196e0a68c05f17a7ada286056f
4ad20ccb396a3354d99b8843426bece2b28228bf
fix: warning in file picker UI (#46067)
[ { "path": "shell/browser/file_system_access/file_system_access_permission_context.cc", "patch": "@@ -825,13 +825,7 @@ std::u16string FileSystemAccessPermissionContext::GetPickerTitle(\n ? IDS_FILE_SYSTEM_ACCESS_CHOOSER_OPEN_WRITABLE_DIRECTORY_TITLE\n : IDS_FILE_SYSTEM_ACCESS_CHOO...
2025-03-17T01:49:15
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
vercel/next.js
69ae2c10e72e20df6b098197364d354d20376864
d4c73df3c76c123fcc5b807323c9625057dc65b8
fix: normalize CRLF line endings in jscodeshift tests on Windows (#88008) ## Summary Fixes flaky jscodeshift codemod tests on Windows CI (e.g., `next-async-request-api-dynamic-apis.test.js`, `built-in-next-font.test.js`, `new-link.test.js`). ### Problem Windows CI runners have `core.autocrlf=true` by default, which...
[ { "path": ".gitattributes", "patch": "@@ -1,3 +1,6 @@\n+# Enforce LF line endings for all text files (fixes Windows CRLF test flakiness)\n+* text=auto eol=lf\n+\n .github/actions/*/dist/** -text linguist-vendored\n packages/next/bundles/** -text linguist-vendored\n packages/next/compiled/** -text linguist-v...
2026-01-03T08:15:48
electron/electron
2d8a5476921a8681c9d678578da917a369d4621f
5f0603ed2863d7cb1327efa6e704cba91edf68d0
build: fix compound bash conditional in patchup (#46047)
[ { "path": ".github/actions/checkout/action.yml", "patch": "@@ -99,7 +99,7 @@ runs:\n fi\n \n ELECTRON_USE_THREE_WAY_MERGE_FOR_PATCHES=1 e d gclient sync --with_branch_heads --with_tags -vv\n- if [ \"${{ inputs.is-release }}\" != \"true\" && -n \"${{ env.PATCH_UP_APP_CREDS }}\" ]; then\n+ ...
2025-03-15T08:57:59
rust-lang/rust
384f363b7023244df33bef7eb8070a334eae9b48
0e4bafc47cfd39fbe620226e1b9fceeeb8af9e8a
change "error finalizing incremental compilation" from warning to note The warning has no error code, so in a `-D warnings` environment, it's impossible to ignore if it consistently breaks your build. Change it to a note so it is still visible, but doesn't break the build
[ { "path": "compiler/rustc_incremental/src/persist/fs.rs", "patch": "@@ -366,7 +366,7 @@ pub fn finalize_session_directory(sess: &Session, svh: Option<Svh>) {\n }\n Err(e) => {\n // Warn about the error. However, no need to abort compilation now.\n- sess.dcx().emit_warn...
2026-03-13T18:32: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
8243f3f0631698e819c690710a7f18f767068981
df319522758b7fdfed3ddfa517cc1cc298ef1602
[bug] Fix component name for Portal and add tests (#32640) Based off: https://github.com/facebook/react/pull/32499 While looking into `React.lazy` issues for built-ins, I noticed we already error for `lazy` with build-ins, but we don't have any tests for `getComponentNameFromType` using all the built-ins. This may be...
[ { "path": "packages/react-reconciler/src/__tests__/ReactLazy-test.internal.js", "patch": "@@ -791,7 +791,7 @@ describe('ReactLazy', () => {\n );\n });\n \n- it('throws with a useful error when wrapping fragment with lazy()', async () => {\n+ it('throws with a useful error when wrapping Fragment with...
2025-03-17T15:23:28
vercel/next.js
942eb14d7c82886b1f896713e6629108669b3105
754770add2df895fea3a12b7939ebe0d34be562d
misc: fix type check log for CI envs (#87838) this fixes the case where we would not show the typescritp check duration in a CI/non interactive env <!-- 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 sect...
[ { "path": "packages/next/src/build/type-check.ts", "patch": "@@ -136,12 +136,12 @@ export async function startTypeChecking({\n \n if (typeCheckingSpinner) {\n typeCheckingSpinner.stop()\n-\n- createSpinner(\n- `Finished TypeScript${ignoreTypeScriptErrors ? ' config validation' : ''} in...
2025-12-29T11:50:02
golang/go
4d0658bb0871806a8c5551063d1ef1d205916ceb
ba634ca5c7f19105c853db5752cc0f6d3ca76e45
cmd/compile: prefer fixed registers for values For this code: func f() (int, int) { return 0, 0 } We currently generate on arm64: MOVD ZR, R0 MOVD R0, R1 This CL changes that to MOVD ZR, R0 MOVD ZR, R1 Probably not a big performance difference, but it makes the generated code clearer. A followup-is...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -596,17 +596,18 @@ func (s *regAllocState) allocValToReg(v *Value, mask regMask, nospill bool, pos\n \tvar c *Value\n \tif vi.regs != 0 {\n \t\t// Copy from a register that v is already in.\n-\t\tr2 := pickReg(vi.regs)\n \t\tvar current *Val...
2025-11-17T23:33:01
electron/electron
5f0603ed2863d7cb1327efa6e704cba91edf68d0
afca4e271e354c7fcbd1378cd08e030259b8de57
fix: `ElectronBrowserContext` `raw_ptr` bug + remove dead code (#46030) refactor: remove unused ElectronBrowserContext::extension_system() Last use removed on Jul 21, 2020 by 2fb14f5 in PR #24575 This fixes a raw_ptr warning by letting us remove the raw_ptr field `ElectronBrowserContext::extension_system_`.
[ { "path": "shell/browser/electron_browser_context.cc", "patch": "@@ -365,10 +365,10 @@ ElectronBrowserContext::ElectronBrowserContext(\n BrowserContextDependencyManager::GetInstance()\n ->CreateBrowserContextServices(this);\n \n- extension_system_ = static_cast<extensions::ElectronExtensionSy...
2025-03-15T04:35:10
rust-lang/rust
fed57899b93d6e17b00bf00326d7b9aebdccc6e0
cdbe2b35b55bb38ac503e0989e69cca9aa530ce5
Remove `value_from_cycle_error` specialization for `type_of`
[ { "path": "compiler/rustc_query_impl/src/from_cycle_error.rs", "patch": "@@ -21,11 +21,6 @@ use rustc_span::{ErrorGuaranteed, Span};\n use crate::job::report_cycle;\n \n pub(crate) fn specialize_query_vtables<'tcx>(vtables: &mut QueryVTables<'tcx>) {\n- vtables.type_of.value_from_cycle_error = |tcx, _, _...
2026-03-12T16:02:49
facebook/react
99563e91736e9de473c4865d5cb6fd9eb1a26bcb
17d274dc127400b31379a1b26c5be53599c36aa5
Partially revert #32588 (#32621) https://github.com/facebook/react/pull/32588 changed the babel config impacting local tests, and I'm not able to run test: <img width="1354" alt="Screenshot 2025-03-15 at 2 37 00 PM" src="https://github.com/user-attachments/assets/2d4afe39-6ab6-4c83-87a9-ceb0ee5f8df5" /> This PR rev...
[ { "path": "babel.config.js", "patch": "@@ -4,8 +4,7 @@ module.exports = {\n plugins: [\n '@babel/plugin-syntax-jsx',\n '@babel/plugin-transform-flow-strip-types',\n- ['@babel/plugin-transform-class-properties', {loose: true}],\n- '@babel/plugin-transform-classes',\n+ ['@babel/plugin-propo...
2025-03-15T19:21:57
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
vercel/next.js
c68d18c507a278079581f54b13b2c98c79dc8374
2446efeaa631e3262c714c72695d7db63d20b283
fix(examples): resolve hydration mismatch in blog-starter (#87703) ## What? Add `suppressHydrationWarning` to the `<html>` element in the blog-starter example. ## Why? The ThemeSwitcher script runs before React hydration and adds `dark` class and `data-mode` attribute to the `<html>` element, causing a hydration mism...
[ { "path": "examples/blog-starter/src/app/layout.tsx", "patch": "@@ -23,7 +23,7 @@ export default function RootLayout({\n children: React.ReactNode;\n }>) {\n return (\n- <html lang=\"en\">\n+ <html lang=\"en\" suppressHydrationWarning>\n <head>\n <link\n rel=\"apple-touch-i...
2025-12-23T21:02:35
golang/go
9461db5c5945472b0ba9d3ef75e802bb861f214d
4004ff3523f03a6e42e60e47b41d8954dfa3a001
[dev.simd] simd: fix comment in file generator the comment was accidentally updated in the generated file, and the update was good. So update the generator, too. Change-Id: I6a76aa3bdb7fb78378508b95248939567bff69e4 Reviewed-on: https://go-review.googlesource.com/c/go/+/721341 LUCI-TryBot-Result: Go LUCI <golang-scop...
[ { "path": "src/simd/genfiles.go", "patch": "@@ -912,6 +912,7 @@ type SIMDLogicalOP uint8\n const (\n \t// boolean simd operations, for reducing expression to VPTERNLOG* instructions\n \t// sloInterior is set for non-root nodes in logical-op expression trees.\n+\t// the operations are even-numbered.\n \tsloI...
2025-11-17T20:37:47
electron/electron
c0e180758bc2701cc9efd6f72671559f25e57243
5817d27429827e162c00c0fad523ed309238256b
fix: don't crash Utility Processes on unhandled rejections (#45921) * fix: don't crash on unhandled rejections * Update docs/breaking-changes.md Co-authored-by: Niklas Wenzel <dev@nikwen.de> --------- Co-authored-by: Niklas Wenzel <dev@nikwen.de>
[ { "path": "docs/breaking-changes.md", "patch": "@@ -14,6 +14,19 @@ This document uses the following convention to categorize breaking changes:\n \n ## Planned Breaking API Changes (36.0)\n \n+### Utility Process unhandled rejection behavior change\n+\n+Utility Processes will now warn with an error message w...
2025-03-14T14:09:02
rust-lang/rust
cdbe2b35b55bb38ac503e0989e69cca9aa530ce5
791f4f9315cdf85c5137c26070f2818d332d66b7
Remove `value_from_cycle_error` specialization for `erase_and_anonymize_regions_ty`
[ { "path": "compiler/rustc_query_impl/src/from_cycle_error.rs", "patch": "@@ -26,11 +26,6 @@ pub(crate) fn specialize_query_vtables<'tcx>(vtables: &mut QueryVTables<'tcx>) {\n erase_val(ty::EarlyBinder::bind(Ty::new_error(tcx, guar)))\n };\n \n- vtables.erase_and_anonymize_regions_ty.value_fro...
2026-03-12T15:35:50
facebook/react
2c560374d6276c51cfeeff7af39628058c155a13
2e385738a4dfd1554c146f6313b1530a09b5ce78
Measure and apply names for the "new" phase (#32612) Stacked on #32599 and #32611. This is able to reuse the code from CommitViewTransitions for "enter", "shared" and "layout". The difference is that for "enter"/"shared" in the "new" phase we pass in the deletions. For "layout" of nested boundaries we just need to m...
[ { "path": "packages/react-reconciler/src/ReactFiberApplyGesture.js", "patch": "@@ -62,6 +62,8 @@ import {\n restoreEnterOrExitViewTransitions,\n restoreNestedViewTransitions,\n appearingViewTransitions,\n+ commitEnterViewTransitions,\n+ measureNestedViewTransitions,\n } from './ReactFiberCommitViewT...
2025-03-14T18:26:55
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
2446efeaa631e3262c714c72695d7db63d20b283
31b62520366aefef9d6800cd519157a16f958052
fix: Change Dockerfile.bun to use group/useradd instead of addgroup/user (#87443) <!-- 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'r...
[ { "path": "examples/with-docker/Dockerfile.bun", "patch": "@@ -37,8 +37,8 @@ ENV NODE_ENV=production \\\n PORT=3000 \\\n HOSTNAME=\"0.0.0.0\"\n \n-RUN addgroup --system --gid 1001 nodejs && \\\n- adduser --system --uid 1001 nextjs\n+RUN groupadd --system --gid 1001 nodejs && \\\n+ useradd --sy...
2025-12-23T17:34:44
golang/go
8806d53c106ba9d797a4383b2a49418c509a42c2
c93766007dbb9c975d2f18b7c741f4804ce911c0
cmd/link: align sections, not symbols after DWARF compress After DWARF compression, we recompute the symbol and section addresses. On Windows, we need to align the sections to PEFILEALIGN. But the code actually apply the alignment to every symbol. This works mostly fine as after compression a section usually contains ...
[ { "path": "src/cmd/link/internal/ld/dwarf.go", "patch": "@@ -2507,19 +2507,19 @@ func dwarfcompress(ctxt *Link) {\n \tvar prevSect *sym.Section\n \tfor _, si := range dwarfp {\n \t\tfor _, s := range si.syms {\n-\t\t\tldr.SetSymValue(s, int64(pos))\n \t\t\tsect := ldr.SymSect(s)\n \t\t\tif sect != prevSect ...
2025-11-17T22:27:21
electron/electron
5817d27429827e162c00c0fad523ed309238256b
4812b4e6c249a6ff346d435fcc21d8e03bfe5073
fix: take Snapped status into account when showing a window (#46006)
[ { "path": "patches/chromium/.patches", "patch": "@@ -142,3 +142,4 @@ feat_separate_content_settings_callback_for_sync_and_async_clipboard.patch\n fix_win32_synchronous_spellcheck.patch\n fix_enable_wrap_iter_in_string_view_and_array.patch\n fix_linter_error.patch\n+fix_take_snapped_status_into_account_when_...
2025-03-14T14:07:27
rust-lang/rust
791f4f9315cdf85c5137c26070f2818d332d66b7
0e4bafc47cfd39fbe620226e1b9fceeeb8af9e8a
Remove `value_from_cycle_error` specialization for `type_of_opaque_hir_typeck`
[ { "path": "compiler/rustc_query_impl/src/from_cycle_error.rs", "patch": "@@ -26,11 +26,6 @@ pub(crate) fn specialize_query_vtables<'tcx>(vtables: &mut QueryVTables<'tcx>) {\n erase_val(ty::EarlyBinder::bind(Ty::new_error(tcx, guar)))\n };\n \n- vtables.type_of_opaque_hir_typeck.value_from_cyc...
2026-03-12T14:55:28
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
facebook/react
5398b7115847e87c0053aa719728d8dd1a635ccd
f3c956006a90dc68210bd3e19497d10fb9b028d3
[compiler] detect and throw on untransformed required features (#32512) Traverse program after running compiler transform to find untransformed references to compiler features (e.g. `inferEffectDeps`, `fire`). Hard error to fail the babel pipeline when the compiler fails to transform these features to give predictabl...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Babel/BabelPlugin.ts", "patch": "@@ -11,6 +11,7 @@ import {\n injectReanimatedFlag,\n pipelineUsesReanimatedPlugin,\n } from '../Entrypoint/Reanimated';\n+import validateNoUntransformedReferences from '../Entrypoint/ValidateNoUntransformedRefe...
2025-03-14T15:44:49
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
4812b4e6c249a6ff346d435fcc21d8e03bfe5073
7c0b7b417bd7efbda774f76eeb428693c429408c
fix: prevent title change for within page navigation (#45981) * fix: prevent title change for on page navigation * add back and forward testing * update Chromium comment * remove errant script tag
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2057,6 +2057,17 @@ void WebContents::DidFinishNavigation(\n if (is_main_frame) {\n Emit(\"did-navigate\", url, http_response_code, http_status_text);\n }\n+\n+ content::NavigationEntry* entry = navigation_hand...
2025-03-14T11:10:23
golang/go
c93766007dbb9c975d2f18b7c741f4804ce911c0
9859b436430aac382b337964a1b380bc4bfcda70
runtime: do not print recovered when double panic with the same value Show the "[recovered, repanicked]" message only when it is repanicked after recovered. For the duplicated panics that not recovered, do not show this message. Fixes #76099 Change-Id: I87282022ebe44c6f6efbe3239218be4a2a7b1104 Reviewed-on: https://g...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -413,6 +413,15 @@ func TestRepanickedPanicSandwich(t *testing.T) {\n \t}\n }\n \n+func TestDoublePanicWithSameValue(t *testing.T) {\n+\toutput := runTestProg(t, \"testprog\", \"DoublePanicWithSameValue\")\n+\twant := `panic: message\n+`\n+\tif !strings.Has...
2025-10-29T05:11:48
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
facebook/react
e9d80d939ee0f6b1d6146eb11917c433a7791d17
ef1103d3e92168803000e12d9a27cb7440e5e1c8
Revert "[ci] Fix node_modules cache glob (#32604)" (#32606) This reverts commit ef1103d3e92168803000e12d9a27cb7440e5e1c8. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32606). * #32609 * #32608 * #3...
[ { "path": ".github/workflows/compiler_playground.yml", "patch": "@@ -36,9 +36,8 @@ jobs:\n uses: actions/cache@v4\n id: node_modules\n with:\n- path: |\n- **/node_modules\n- key: compiler-node_modules-v2-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('...
2025-03-14T01:52:46
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
rust-lang/rust
d19a07b2a9d7f0a18409485451c12632b93ff674
8db65c71725664d85d06ec96ee3e575665de1f6a
Fix LegacyKeyValueFormat report from docker build: x86_64-gnu
[ { "path": "src/ci/docker/host-x86_64/x86_64-gnu-aux/Dockerfile", "patch": "@@ -29,5 +29,5 @@ RUN sh /scripts/sccache.sh\n ENV NO_DEBUG_ASSERTIONS=1\n ENV NO_OVERFLOW_CHECKS=1\n \n-ENV RUST_CONFIGURE_ARGS --build=x86_64-unknown-linux-gnu\n-ENV RUST_CHECK_TARGET check-aux\n+ENV RUST_CONFIGURE_ARGS=\"--build=x...
2026-03-03T23:47:53
electron/electron
7c0b7b417bd7efbda774f76eeb428693c429408c
785fe5f3b631c9d451b1f787db1e524f648198a2
fix: emit `context-menu` event in Windows draggable regions (#45851) fix: emit context-menu event in Windows draggable regions
[ { "path": "shell/browser/native_window_views_win.cc", "patch": "@@ -10,6 +10,7 @@\n #include \"base/win/scoped_handle.h\"\n #include \"base/win/windows_version.h\"\n #include \"content/public/browser/browser_accessibility_state.h\"\n+#include \"shell/browser/api/electron_api_web_contents.h\"\n #include \"sh...
2025-03-14T09:29:29
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
golang/go
9859b436430aac382b337964a1b380bc4bfcda70
b9ef0633f6117c74fabcd7247a76b4feb86df086
cmd/asm,cmd/compile,cmd/internal/obj/riscv: use compressed instructions on riscv64 Make use of compressed instructions on riscv64 - add a compress pass to the end of the assembler, which replaces non-compressed instructions with compressed alternatives if possible. Provide a `compressinstructions` compiler and assemb...
[ { "path": "src/cmd/asm/internal/flags/flags.go", "patch": "@@ -29,8 +29,9 @@ var (\n )\n \n var DebugFlags struct {\n-\tMayMoreStack string `help:\"call named function before all stack growth checks\"`\n-\tPCTab string `help:\"print named pc-value table\\nOne of: pctospadj, pctofile, pctoline, pctoin...
2025-09-25T19:05:49
facebook/react
ef1103d3e92168803000e12d9a27cb7440e5e1c8
67338703aa52d662998733e58671dc9fe1edae47
[ci] Fix node_modules cache glob (#32604) Seems like the stringified cache path can cause some directories not to be cached, trying an alternative format
[ { "path": ".github/workflows/compiler_playground.yml", "patch": "@@ -36,8 +36,9 @@ jobs:\n uses: actions/cache@v4\n id: node_modules\n with:\n- path: \"**/node_modules\"\n- key: compiler-node_modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('compiler/**/yar...
2025-03-14T00:59:27
rust-lang/rust
201bbb30a4faa261f488afae6b6fb66d4b210e0d
3a0572c2d67648c32513f9439d7cd6488ebc9492
fix: offer on const like path-expr for 'extract_variable' Example --- ```rust struct Foo; fn foo() -> Foo { $0Foo$0 } ``` **Before this PR** Assist not applicable **After this PR** ```rust struct Foo; fn foo() -> Foo { let foo = Foo; foo } ```
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/extract_variable.rs", "patch": "@@ -75,7 +75,7 @@ pub(crate) fn extract_variable(acc: &mut Assists, ctx: &AssistContext<'_>) -> Op\n .next()\n .and_then(ast::Expr::cast)\n {\n- expr.syntax().ancesto...
2026-03-13T14:34:06
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
golang/go
b9ef0633f6117c74fabcd7247a76b4feb86df086
a087dea8692eee879e8226b70eb691dea7758b0b
cmd/internal/sys,internal/goarch,runtime: enable the use of compressed instructions on riscv64 Enable the use of compressed instructions on riscv64 by reducing the PC quantum to two bytes and reducing the minimum instruction length to two bytes. Change gostartcall on riscv64 to land at two times the PC quantum into go...
[ { "path": "src/cmd/internal/obj/riscv/obj.go", "patch": "@@ -4799,10 +4799,17 @@ func assemble(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\tv := pcAlignPadLength(p.Pc, alignedValue)\n \t\t\toffset := p.Pc\n \t\t\tfor ; v >= 4; v -= 4 {\n-\t\t\t\t// NOP\n-\t\t\t\tcursym.WriteBytes(ctxt,...
2023-08-27T09:35:33
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
facebook/react
67338703aa52d662998733e58671dc9fe1edae47
7939d92fcc95ad5ee719c38272eaef14a3750fc0
[ci] Update yarn and node_modules cache key (#32603) Now that the compiler lint rule is merged into eslint-plugin-react-hooks, we also need to update our caches so compiler dependencies are also cached. This should fix the CI walltime regression we are now seeing. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with ...
[ { "path": ".github/workflows/runtime_build_and_test.yml", "patch": "@@ -50,13 +50,13 @@ jobs:\n with:\n node-version-file: '.nvmrc'\n cache: yarn\n- cache-dependency-path: yarn.lock\n+ cache-dependency-path: '**/yarn.lock'\n - name: Restore cached node_mod...
2025-03-14T00:31:04
nodejs/node
7be2528e05448a9a291ec679aa823d119c997141
9523c84c17d5ac00f62c1ca356a91bc397e81da0
tools: compile maglev files into v8_compiler if maglev is disabled v8_compiler needs maglev graph builder even if maglev is disabled. But the required files shouldn't be compiled into v8_internal_headers, which both v8_base_without_compiler and v8_compiler depends on, causing duplicate symbols during linking if maglev...
[ { "path": "tools/v8_gypfiles/v8.gyp", "patch": "@@ -636,11 +636,6 @@\n '<!@pymod_do_main(GN-scraper \"<(V8_ROOT)/BUILD.gn\" \"v8_header_set.\\\\\"v8_internal_headers\\\\\".*?sources = \")',\n ],\n 'conditions': [\n- ['v8_enable_maglev==0', {\n- 'sources': [\n- ...
2025-06-27T06:44:05
golang/go
a087dea8692eee879e8226b70eb691dea7758b0b
e1a12c781f55da85a30fd63471f8adcba908acd2
debug/elf: sync new loong64 relocation types up to LoongArch ELF psABI v20250521 Add several new relocation types defined in newer versions of LoongArch ELF psABI v20250521, part of the v2.40 spec bundle. The new relocations are seeing increased adoption because distributions are moving to newer GNU/LLVM toolchain ver...
[ { "path": "api/next/75562.txt", "patch": "@@ -0,0 +1,38 @@\n+pkg debug/elf, const R_LARCH_TLS_DESC32 = 13 #75562\n+pkg debug/elf, const R_LARCH_TLS_DESC32 R_LARCH #75562\n+pkg debug/elf, const R_LARCH_TLS_DESC64 = 14 #75562\n+pkg debug/elf, const R_LARCH_TLS_DESC64 R_LARCH #75562\n+pkg debug/elf, const R_LA...
2025-09-13T07:57:12
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
facebook/react
d92e5713be2dc78f467c31fce4a1e5c84a74e4e6
93b61fc4ecb34abec2b55c206f34ed22dd340b71
[compiler] Avoid bailouts when inserting gating (#32598) This change fixes a coverage hole in rolling out with `gating`. Prior to this PR, configuring `gating` causes React Compiler to bail out of optimizing some functions. This means that it's not entirely safe to cutover from `gating` enabled for all users (i.e. ro...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Gating.ts", "patch": "@@ -10,6 +10,117 @@ import * as t from '@babel/types';\n import {PluginOptions} from './Options';\n import {CompilerError} from '../CompilerError';\n \n+/**\n+ * Gating rewrite for function declarations which are r...
2025-03-13T23:31:49
nodejs/node
9ab976397da80e84ebf9ed12c3e7bd308aab6de1
b890c51ff29081c81a40d4910071cfdd80c40ff5
fs: close dir before throwing if `options.bufferSize` is invalid PR-URL: https://github.com/nodejs/node/pull/58856 Fixes: https://github.com/nodejs/node/issues/58854 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
[ { "path": "lib/internal/fs/dir.js", "patch": "@@ -59,7 +59,13 @@ class Dir {\n }),\n };\n \n- validateUint32(this.#options.bufferSize, 'options.bufferSize', true);\n+ try {\n+ validateUint32(this.#options.bufferSize, 'options.bufferSize', true);\n+ } catch (validationError) {\n+ ...
2025-07-06T05:32:45
electron/electron
4a28e60e89919a569a24f1d37e0b0ad8ebc26071
a90d50e13f71b2371868b7b545e0ba28b38ca392
fix: package import existence verification (#45997)
[ { "path": "patches/node/fix_allow_passing_fileexists_fn_to_legacymainresolve.patch", "patch": "@@ -53,7 +53,7 @@ index 2879e5cf541fb4d226cfd7cc0fe367ca448fb926..03082f0ec4f91382933eec48e77331cd\n const maybeMain = resolvedOption <= legacyMainResolveExtensionsIndexes.kResolvedByMainIndexNode ?\n pack...
2025-03-13T19:51:43
golang/go
6caab99026a496107e903469d8c906be66a71896
eda2e8c683798e435e725f60f0bb580eb4aa9686
runtime: relax TestMemoryLimit on darwin a bit more Add 8MB more. Covers most of the failures watchflakes has seen. Fixes #73136 Change-Id: I593c599a9519b8b31ed0f401d4157d27ac692587 Reviewed-on: https://go-review.googlesource.com/c/go/+/708617 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser...
[ { "path": "src/runtime/testdata/testprog/gc.go", "patch": "@@ -396,7 +396,7 @@ func gcMemoryLimit(gcPercent int) {\n \t\t// should do considerably better than this bound.\n \t\tbound := int64(myLimit + 16<<20)\n \t\tif runtime.GOOS == \"darwin\" {\n-\t\t\tbound += 16 << 20 // Be more lax on Darwin, see issu...
2025-10-02T20:09:03
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
facebook/react
f457d0b4c6dd70c10acb9c93c7d01c80d8e23b92
1c79cb82ab8d3bd1f099115704f28df1097beb46
[compiler][ez] Only fail gating hoisting check for referenced identifiers (#32596) Reduce false positive bailouts by using the same `isReferencedIdentifier` logic that the compiler also uses for determining context variables and a function's own hoisted declarations. Details: Previously, we counted every babel identi...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts", "patch": "@@ -1143,7 +1143,7 @@ function checkFunctionReferencedBeforeDeclarationAtTopLevel(\n * A null scope means there's no function scope, which means we're at the\n * top level scope.\n */\n- ...
2025-03-13T16:10:22
nodejs/node
b890c51ff29081c81a40d4910071cfdd80c40ff5
f5da8f89ee6e6450746c54a0809d43d64006c0f8
os: fix GetInterfaceAddresses memory lieaky PR-URL: https://github.com/nodejs/node/pull/58940 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/node_os.cc", "patch": "@@ -214,6 +214,9 @@ static void GetInterfaceAddresses(const FunctionCallbackInfo<Value>& args) {\n return;\n }\n \n+ auto cleanup =\n+ OnScopeLeave([&]() { uv_free_interface_addresses(interfaces, count); });\n+\n Local<Value> no_scope_id = Integer::New(iso...
2025-07-05T17:33:23
electron/electron
a90d50e13f71b2371868b7b545e0ba28b38ca392
962d8b325aa2ace6a72f0606ddc2e1ac65ee0907
fix: don't crash Web Workers on unhandled rejections (#45992)
[ { "path": "shell/renderer/web_worker_observer.cc", "patch": "@@ -85,6 +85,9 @@ void WebWorkerObserver::WorkerScriptReadyForEvaluation(\n }\n }\n \n+ // We do not want to crash Web Workers on unhandled rejections.\n+ env->options()->unhandled_rejections = \"warn-with-error-code\";\n+\n // Add Elect...
2025-03-13T18:09:23
golang/go
934dbcea1a806c198a7870b1808fb8e41b568984
e4d94842207a7f29fb473ecece2acdc5a2a207f7
[dev.simd] simd: update CPU feature APIs This CL also updates the internal uses of these APIs. This CL also fixed a instable output issue left by previous CLs. Change-Id: Ibc38361d35e2af0c4943a48578f3c610b74ed14d Reviewed-on: https://go-review.googlesource.com/c/go/+/720020 Reviewed-by: Cherry Mui <cherryyz@google.c...
[ { "path": "src/simd/_gen/simdgen/gen_simdTypes.go", "patch": "@@ -146,21 +146,25 @@ type {{.Name}} struct {\n const simdFeaturesTemplate = `\n import \"internal/cpu\"\n \n+type X86Features struct {}\n+\n+var X86 X86Features\n+\n {{range .}}\n {{- if eq .Feature \"AVX512\"}}\n-// Has{{.Feature}} returns whet...
2025-11-12T19:56:09
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
nodejs/node
f5da8f89ee6e6450746c54a0809d43d64006c0f8
053467253dddc7aed19c4c19e40ba698714a0e4d
crypto: fix SHAKE128/256 breaking change introduced with OpenSSL 3.4 Reverts: https://github.com/nodejs/node/pull/56160 Fixes: https://github.com/nodejs/node/issues/56159 Fixes: https://github.com/nodejs/node/issues/58913 Refs: https://github.com/nodejs/node/pull/58121 PR-URL: https://github.com/nodejs/node/pull/58942...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -4061,6 +4061,19 @@ Type: Documentation-only\n \n The [`util.types.isNativeError`][] API is deprecated. Please use [`Error.isError`][] instead.\n \n+### DEP0198: Creating SHAKE-128 and SHAKE-256 digests without an explicit `options.outputLength`\n+\n+<!-- YA...
2025-07-05T09:34:24
facebook/react
ef06b54f8d1d9818806e221974c8b64efbbfda0d
1b77c3d7b98f21ec707d3accb441c678dac2803f
fix: clarify which mobx libs are not compatible with compiler (#32570) ## Summary Right now, `react-compiler-healthcheck` flags `mobx` as a "known incompatible library". But it's not precisely *MobX* that's incompatible. It's the observer HOC that comes from `mobx-react` and `mobx-react-lite`. I've been working on [...
[ { "path": "compiler/packages/react-compiler-healthcheck/src/config.ts", "patch": "@@ -1,3 +1,7 @@\n export const config = {\n- knownIncompatibleLibraries: ['mobx', '@risingstack/react-easy-state'],\n+ knownIncompatibleLibraries: [\n+ 'mobx-react',\n+ 'mobx-react-lite',\n+ '@risingstack/react-easy...
2025-03-13T15:46:26
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
golang/go
e4d94842207a7f29fb473ecece2acdc5a2a207f7
d7a0c45642fef106b5443aa16937fd4bffb51d12
[dev.simd] cmd/compile: fix unstable output This CL fixed an error left by CL 718160. Change-Id: I442ea59bc1ff0dda2914d1858dd5ebe93e2818dc Reviewed-on: https://go-review.googlesource.com/c/go/+/720281 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <d...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -42,32 +42,50 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPBROADCASTW512,\n \t\tssa.OpAMD64VPBROADCASTD512,\n \t\tssa.OpAMD64VPBROADCASTQ512,\n-\t\tssa.OpAMD64VPMOVWB128,\n+\t\tssa.OpAMD64VPMOVWB128_128,\...
2025-11-13T17:07:16
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
nodejs/node
19876f492e2a966f298499f0a8d297779be396b8
cc856b3d5da2f8ee7ebc77afd0cb94f12b3827e5
doc: move "Core Promise APIs" to "Completed initiatives" PR-URL: https://github.com/nodejs/node/pull/58934 Fixes: https://github.com/nodejs/TSC/issues/1094 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: ...
[ { "path": "doc/contributing/strategic-initiatives.md", "patch": "@@ -8,7 +8,6 @@ agenda to ensure they are active and have the support they need.\n \n | Initiative | Champion | Links |\n | ---------------------- | --------------...
2025-07-04T22:35:37
facebook/react
1b77c3d7b98f21ec707d3accb441c678dac2803f
5ccfcd17ffa0adf9e7f5ba7fbf48e6bf6a4eb67e
Update DEVELOPMENT_GUIDE.md (#32281) fix: update CONTRIBUTING.md link path Updated the relative path to CONTRIBUTING.md from `../CONTRIBUTING.md` to `./../../CONTRIBUTING.md` to ensure the correct file is referenced. <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these ch...
[ { "path": "compiler/docs/DEVELOPMENT_GUIDE.md", "patch": "@@ -1,6 +1,6 @@\n # React Compiler Development Guide\n \n-Note: for general notes about contributing, see the [CONTRIBUTING.md](../CONTRIBUTING.md).\n+Note: for general notes about contributing, see the [CONTRIBUTING.md](../../CONTRIBUTING.md).\n \n ...
2025-03-13T15:45:26
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
golang/go
8e734ec954ed25e4c41e7d5a6f59ed1c1072ea83
592775ec7d8bbc99ee0a1ada56c4490c855f9385
go/ast: fix BasicLit.End position for raw strings containing \r This CL causes the parser to record in a new field, BasicLit.EndPos, the actual end position of each literal token, and to use it in BasicLit.End. Previously, the End was computed heuristically as Pos + len(Value). This heuristic is incorrect for a multil...
[ { "path": "api/next/76031.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/ast, type BasicLit struct, ValueEnd token.Pos #76031", "additions": 1, "deletions": 0 }, { "path": "doc/next/6-stdlib/99-minor/go/ast/76031.md", "patch": "@@ -0,0 +1,5 @@\n+The new [BasicLit.ValueEnd] field records the prec...
2025-11-12T22:13:40
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
facebook/react
8646349aebb514eeef7e01614fb4aeb2f2c7a6c8
f31779a112f3b5c9e56d651ad59c2db0bc236981
[rollup] Fix codeFrame is not a function (#32591) Extracting portions of #32416 for easier review. Fixes a small issue where `codeFrame` is not a function when a rollup error was encountered. Co-authored-by: michael faith <michaelfaith@users.noreply.github.com> --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [...
[ { "path": "scripts/rollup/build.js", "patch": "@@ -22,7 +22,7 @@ const useForks = require('./plugins/use-forks-plugin');\n const dynamicImports = require('./plugins/dynamic-imports');\n const Packaging = require('./packaging');\n const {asyncRimRaf} = require('./utils');\n-const codeFrame = require('@babel/...
2025-03-12T23:12:33
rust-lang/rust
e09936e820524a32544a3681e259d8127d02b596
b91901d7513b98172420a6a5c860ecf68473efbb
Add codegen tidy check enforcing FIXME over TODO
[ { "path": "src/tools/tidy/src/codegen.rs", "patch": "@@ -0,0 +1,60 @@\n+//! Tidy check for codegen backend TODO policy.\n+\n+use std::ffi::OsStr;\n+use std::path::Path;\n+\n+use crate::diagnostics::{CheckId, TidyCtx};\n+use crate::walk::walk;\n+\n+fn is_codegen_repo_path(path: &Path) -> bool {\n+ const C...
2026-03-06T06:26:50
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
nodejs/node
00ba5ff4d0b624ed5e39c16042f6d3bc8cee7b0f
9501c868d4997992c3bf0e6717b45bc7852ffb71
doc: fix `fetch` subsections in `globals.md` PR-URL: https://github.com/nodejs/node/pull/58933 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chemi ...
[ { "path": "doc/api/globals.md", "patch": "@@ -579,7 +579,7 @@ The implementation is based upon [undici](https://undici.nodejs.org), an HTTP/1.\n written from scratch for Node.js. You can figure out which version of `undici` is bundled\n in your Node.js process reading the `process.versions.undici` property....
2025-07-04T16:44:16
golang/go
590cf18dafcad9f39a3bf2ecf9f1b7578471eff8
c12c33709923907348837e8131122ec4c45d2c83
crypto/mlkem/mlkemtest: add derandomized Encapsulate768/1024 Fixes #73627 Change-Id: I6a6a69649927e9b1cdff910832084fdc04ff5bc2 Reviewed-on: https://go-review.googlesource.com/c/go/+/703795 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Filippo Valsorda <filippo@...
[ { "path": "api/next/73627.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg crypto/mlkem/mlkemtest, func Encapsulate1024(*mlkem.EncapsulationKey1024, []uint8) ([]uint8, []uint8, error) #73627\n+pkg crypto/mlkem/mlkemtest, func Encapsulate768(*mlkem.EncapsulationKey768, []uint8) ([]uint8, []uint8, error) #73627", "a...
2025-09-05T17:37:45
facebook/react
f31779a112f3b5c9e56d651ad59c2db0bc236981
0e2402eb20de53e08fd0a767554f93e5e53af873
[ez] Run Prettier on eslint-plugin-react-compiler/src/types (#32590) Extracting portions of #32416 for easier review. This PR contains small formatting fixes. Co-authored-by: michael faith <michaelfaith@users.noreply.github.com> --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com)...
[ { "path": "compiler/packages/eslint-plugin-react-compiler/src/types/hermes-eslint.d.ts", "patch": "@@ -6,7 +6,7 @@\n */\n \n // v0.17.1\n-declare module \"hermes-eslint\" {\n+declare module 'hermes-eslint' {\n // https://fburl.com/2vikhmaa\n type ParseForESLintOptions = {\n /**\n@@ -37,7 +37,7 @@ d...
2025-03-12T23:12:22
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
rust-lang/rust
e485708b84b357a8fc40d7e0550042f0ca6c2920
801bc19d6089fed18b1ffa2f496d154da30f7a18
Point turbofish inference errors at the uninferred generic arg
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/infer/need_type_info.rs", "patch": "@@ -1260,21 +1260,33 @@ impl<'a, 'tcx> Visitor<'tcx> for FindInferSourceVisitor<'a, 'tcx> {\n have_turbofish,\n } = args;\n let generics = tcx.generics_of(generics_def_id...
2026-03-12T21:39:29
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
nodejs/node
51d9f3f5164380814d49a9af1418a73db850800b
f2ca1ec4003a711c20aa8c3de8a08b54bbca50bf
src: -Wunreachable-code error in crypto_context.cc PR-URL: https://github.com/nodejs/node/pull/58901 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -77,8 +77,6 @@ static const char* const root_certs[] = {\n #include \"node_root_certs.h\" // NOLINT(build/include_order)\n };\n \n-static const char system_cert_path[] = NODE_OPENSSL_SYSTEM_CERT_PATH;\n-\n static std::string extra_root_certs_file; // ...
2025-06-30T09:40:40
facebook/react
0e2402eb20de53e08fd0a767554f93e5e53af873
f695f95290aa3560a00e8a3b617205ac9e087e0e
Update eslint fixtures (#32589) Extracting portions of #32416 for easier review. This PR lightly updates the build scripts for the eslint fixtures. Co-authored-by: michael faith <michaelfaith@users.noreply.github.com> --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best revi...
[ { "path": "fixtures/eslint-v6/build.mjs", "patch": "@@ -1,12 +1,13 @@\n #!/usr/bin/env node\n \n-import {exec} from 'node:child_process';\n+import {execSync} from 'node:child_process';\n import {dirname, resolve} from 'node:path';\n import {fileURLToPath} from 'node:url';\n \n const __filename = fileURLToPa...
2025-03-12T23:07:51
golang/go
c12c33709923907348837e8131122ec4c45d2c83
bc159638135e751a291fe6753fc8c8c3d61be863
cmd/compile: teach prove about subtract idioms For v = x-y: if y >= 0 then v <= x if y <= x then v >= 0 (With appropriate guards against overflow/underflow.) Fixes #76304 Change-Id: I8f8f1254156c347fa97802bd057a8379676720ae Reviewed-on: https://go-review.googlesource.com/c/go/+/720740 Reviewed-by: Mark Free...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -1945,6 +1945,7 @@ func (ft *factsTable) flowLimit(v *Value) {\n \t\tft.newLimit(v, a.sub(b, uint(v.Type.Size())*8))\n \t\tft.detectMod(v)\n \t\tft.detectSliceLenRelation(v)\n+\t\tft.detectSubRelations(v)\n \tcase OpNeg64, OpNeg32, OpNeg16, OpN...
2025-11-14T23:26:36
rust-lang/rust
c6c150b0e0fba4a46a900c887d8e75e35f8a942d
1d7b33214316140dc51f725e417a4180a3d49497
Remove `CycleErrorHandling`. Currently if a cycle error occurs the error is created, then handled according to `CycleErrorHandling` (which comes from the `cycle_delay_bug` query modifer, or lack thereof), and then `value_from_cycle_error` is called. This commit changes things so the error is created and then just pas...
[ { "path": "compiler/rustc_macros/src/query.rs", "patch": "@@ -143,7 +143,6 @@ struct QueryModifiers {\n anon: Option<Ident>,\n arena_cache: Option<Ident>,\n cache_on_disk_if: Option<CacheOnDiskIf>,\n- cycle_delay_bug: Option<Ident>,\n depth_limit: Option<Ident>,\n desc: Desc,\n ev...
2026-03-11T09:37:22
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
golang/go
1297fae7081a3116d2097ce7cfcc0f89ba2cf0fc
65c09eafdf316ef691f0f8eccbf860d2ef5f7c70
go/token: add (*File).End method Also, use it in a number of places. + test, api, relnote Fixes #75849 Change-Id: I44acf5b8190b964fd3975009aa407d7c82cee19b Reviewed-on: https://go-review.googlesource.com/c/go/+/720061 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed...
[ { "path": "api/next/75849.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/token, method (*File) End() Pos #75849", "additions": 1, "deletions": 0 }, { "path": "doc/next/6-stdlib/99-minor/go/token/75849.md", "patch": "@@ -0,0 +1 @@\n+The new [File.End] convenience method returns the file's end pos...
2025-11-12T23:17:35
facebook/react
5de83dcc0f34dc196664cb200088c6253cb2cd34
5135f98795d13aeea6f009b537a660c7afbe17ed
[playground] Use onMount to check if the editor is available (#32586) Playground test flakiness seems to be fixed but adding this as an extra precaution
[ { "path": "compiler/apps/playground/__tests__/e2e/page.spec.ts", "patch": "@@ -9,6 +9,13 @@ import {expect, test} from '@playwright/test';\n import {encodeStore, type Store} from '../../lib/stores';\n import {format} from 'prettier';\n \n+function isMonacoLoaded(): boolean {\n+ return (\n+ typeof window...
2025-03-12T22:27:15
facebook/react
5135f98795d13aeea6f009b537a660c7afbe17ed
26bca0005c7ef82a733c23f08baa1e2b8d702ec9
Add DOM fixture page for Fragment Ref (#32527) This adds a page to the DOM fixture to test Fragment Refs. The first test case is for `addEventListener`/`removeEventListener`. Setting `enableFragmentRefs` to `__EXPERIMENTAL__` and building is required to run the fixture. <img width="872" alt="Screenshot 2025-03-05 at...
[ { "path": "fixtures/dom/src/components/Header.js", "patch": "@@ -89,6 +89,7 @@ class Header extends React.Component {\n <option value=\"/selection-events\">Selection Events</option>\n <option value=\"/suspense\">Suspense</option>\n <option value=\"/form-state\...
2025-03-12T21:49:44
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
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 }, { "path": "patches/chromium/add_didinstallco...
2025-03-10T05:30:34
facebook/react
3456b6634abb4a8a2ef500397b94606ce4b6dda7
75c979847f1c6dd954860f17b4dc181ad7c2891e
[compiler] Repro for object spread and Array.from with mutable iterators (#32520) See newly added test fixtures. Repros fixed in later prs of this stack --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-array-spread-mutable-iterator.expect.md", "patch": "@@ -0,0 +1,87 @@\n+\n+## Input\n+\n+```javascript\n+/**\n+ * TODO: object spreads should have conditionally mutate semantics\n+ * Found differences in evaluator ...
2025-03-12T19:08:55
nodejs/node
f2ca1ec4003a711c20aa8c3de8a08b54bbca50bf
06b0987f12ced28f9e479420213d463876747154
src: fix -Wunreachable-code-return in src/node_contextify.cc PR-URL: https://github.com/nodejs/node/pull/58901 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
[ { "path": "src/node_contextify.cc", "patch": "@@ -733,7 +733,6 @@ Intercepted ContextifyContext::PropertyDefinerCallback(\n // kYes to behave according to the expected semantics.\n return Intercepted::kNo;\n }\n- return Intercepted::kNo;\n }\n \n // static", "additions": 0, "deletions": 1...
2025-06-30T09:21:21
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
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
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
nodejs/node
06b0987f12ced28f9e479420213d463876747154
560d00ffb716fc445b4eccc203c272cf924bb83c
src: fix -Wunreachable-code in src/node_api.cc PR-URL: https://github.com/nodejs/node/pull/58901 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
[ { "path": "src/node_api.cc", "patch": "@@ -1058,8 +1058,7 @@ napi_create_external_buffer(napi_env env,\n \n #ifdef V8_ENABLE_SANDBOX\n return napi_set_last_error(env, napi_no_external_buffers_allowed);\n-#endif // V8_ENABLE_SANDBOX\n-\n+#else\n v8::Isolate* isolate = env->isolate;\n \n // The finaliz...
2025-06-30T09:15:36
rust-lang/rust
bf631b32835bc0a24e2c496cddba9a473ad37e8a
2d76d9bc76f27b03b4899e72ce561c7ac2c5cf6b
compiletest: Use PYTHONPATH for lldb too, not only gdb That allows you to e.g. run debuginfo tests with lldb-15 on Ubuntu 24.04 like this: sudo apt install lldb-15 python3-six PYTHONPATH=/usr/lib/python3/dist-packages ./x --set build.lldb=lldb-15 test tests/debuginfo/basic-stepping.rs
[ { "path": "src/tools/compiletest/src/runtest/debuginfo.rs", "patch": "@@ -310,12 +310,7 @@ impl TestCx<'_> {\n \n let mut gdb = Command::new(self.config.gdb.as_ref().unwrap());\n \n- // FIXME: we are propagating `PYTHONPATH` from the environment, not a compiletest flag!\n- ...
2026-03-13T05:41:11
facebook/react
75c979847f1c6dd954860f17b4dc181ad7c2891e
6aa8254bb7353fe3096289edc669cf168e9fd190
Ignore AbortError for gestures (#32579) Follow up to #32540. We do allow gestures to be cancelled early (we call skipTransition) if the gesture stops before it has even started. This happens in the fixture when we auto-scroll.
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1577,7 +1577,10 @@ function cancelAllViewTransitionAnimations(scope: Element) {\n // either cached the font or preloaded it earlier.\n const SUSPENSEY_FONT_TIMEOUT = 500;\n \n-function customizeViewTransitionError(error...
2025-03-12T18:20:35
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
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 }, { "path": "patches/boringssl/revert_track_ss...
2025-03-07T17:35:59
rust-lang/rust
49163144b19ea28f8c656090918e75345e1fb032
c7b206bba4434ed928e9615f31082a9ef3f67c27
Fix grammar in Pin documentation
[ { "path": "library/core/src/pin.rs", "patch": "@@ -600,7 +600,7 @@\n //! automatically called [`Pin::get_unchecked_mut`].\n //!\n //! This can never cause a problem in purely safe code because creating a pinning pointer to\n-//! a type which has an address-sensitive (thus does not implement `Unpin`) require...
2026-03-08T13:35:28
nodejs/node
1539f3b727a49fddd8b71eb6ea07aa3251d4afaf
247672d078c6b0ee69c3f9581c0a141458c16843
deps: V8: cherry-pick 0ce2edb7adfd Original commit message: Fix invalid template specialization Bug: chromium:40565911 Change-Id: If206c140e99e24a6df4ee7351e8022748eabac22 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6491420 Auto-Submit: Bruno Pitrus <brunopitrus@hotmail.com> ...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.15',\n+ 'v8_embedder_string': '-node.16',\n \n ##### V8 defaults for Node.js #####\n...
2025-07-04T12:56:56
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