repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vercel/next.js
6ba9c21d29d8f3786fcb0ad4c419819ea0ffbd4d
65df0c37c1edd746e9d83bd6d48fd152c8f5b192
fix typo (#81336) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Documentation - R...
[ { "path": "docs/01-app/01-getting-started/09-caching-and-revalidating.mdx", "patch": "@@ -154,7 +154,7 @@ See the [`unstable_cache` API reference](/docs/app/api-reference/functions/unsta\n \n ## `revalidateTag`\n \n-`revalidateTag` is used to revalidate a cache entries based on a tag and following an event....
2025-07-05T22:54:02
electron/electron
f35b9b3f06663e657a2f3b36cc021cf4b109ab26
a0a44f07dda3562bcd7039e0270eae32be7549d6
fix: `AXManualAccessibility` showing failure (#38102) fix: AXManualAccessibility showing failure
[ { "path": "docs/tutorial/accessibility.md", "patch": "@@ -28,6 +28,8 @@ On macOS, third-party assistive technology can toggle accessibility features ins\n Electron applications by setting the `AXManualAccessibility` attribute\n programmatically:\n \n+Using Objective-C:\n+\n ```objc\n CFStringRef kAXManualAc...
2023-04-26T17:41:56
nodejs/node
eaffed65f0bc1dbd82a436d5c4cd14519d9ad632
e849dd66322332638a0a14eea3a2ea9ea9e5970c
src: fix implementation of `PropertySetterCallback` V8 does not allow returning arbitrary values from the interceptor setter callbacks, only a boolean return value is allowed. Since default return value is `true`, it's not even necessary to set the return value on a successful path. Refs: https://crbug.com/348660658 ...
[ { "path": "src/node_contextify.cc", "patch": "@@ -614,7 +614,6 @@ Intercepted ContextifyContext::PropertySetterCallback(\n // property\n if (desc_obj->HasOwnProperty(context, env->get_string()).FromMaybe(false) ||\n desc_obj->HasOwnProperty(context, env->set_string()).FromMaybe(false)) {\n- ...
2024-06-24T08:42:18
golang/go
cfc784a152ebbc4fc0b8bf13c02e0f6eb9c980bd
b17a99d6fca7f33bb821d450ebe67d6d4b3ea289
os: avoid panic in Root when symlink references the root We would panic when opening a symlink ending in .., where the symlink references the root itself. Fixes #73081 Change-Id: I7dc3f041ca79df7942feec58c197fde6881ecae5 Reviewed-on: https://go-review.googlesource.com/c/go/+/661416 Reviewed-by: Alan Donovan <adonova...
[ { "path": "src/os/root_openat.go", "patch": "@@ -226,6 +226,9 @@ func doInRoot[T any](r *Root, name string, f func(parent sysfdType, name string)\n \t\t\t\treturn ret, errPathEscapes\n \t\t\t}\n \t\t\tparts = slices.Delete(parts, i-count, end)\n+\t\t\tif len(parts) == 0 {\n+\t\t\t\tparts = []string{\".\"}\n...
2025-03-27T23:22:38
vercel/next.js
2d19dc626babcaf28665c270e1b58d717846bbb9
8d789925573d8ac092703a65f6ce372b0c573eda
[dynamicIO] Use owner stacks for dynamic validation errors (#81277) With recent improvements in React, and after switching to the React builds for Node.js in #81048, we can now generate better dynamic validation error stacks in dev mode by utilizing owner stacks instead of component stacks. For async I/O, we're using...
[ { "path": "packages/next/src/export/index.ts", "patch": "@@ -410,6 +410,14 @@ async function exportAppImpl(\n authInterrupts: !!nextConfig.experimental.authInterrupts,\n },\n reactMaxHeadersLength: nextConfig.reactMaxHeadersLength,\n+ hasReadableErrorStacks:\n+ nextConfig.experimental....
2025-07-04T20:09:23
electron/electron
a0a44f07dda3562bcd7039e0270eae32be7549d6
08593fd2bdb38de2b409cda0692ac57abf410e9e
chore: correct extra qualification causing build error with GCC (#37548) * chore: correct extra qualification causing build error with GCC * fixup for lint * chore: fix lint --------- Co-authored-by: John Kleinschmidt <kleinschmidtorama@gmail.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
[ { "path": "shell/browser/hid/electron_hid_delegate.h", "patch": "@@ -94,9 +94,8 @@ class ElectronHidDelegate : public content::HidDelegate,\n namespace base {\n \n template <>\n-struct base::ScopedObservationTraits<\n- electron::HidChooserContext,\n- electron::HidChooserContext::DeviceObserver> {\n+st...
2023-04-26T14:40:02
nodejs/node
b4e8f1b6bb3616ba222c4513218aa1fa9d543d8e
1a1639de3e2508cfa428f0aab90e1fc71c6233cc
lib,src,test,doc: add node:sqlite module PR-URL: https://github.com/nodejs/node/pull/53752 Fixes: https://github.com/nodejs/node/issues/53264 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Vinícius Lo...
[ { "path": "doc/api/cli.md", "patch": "@@ -1049,6 +1049,14 @@ added:\n \n Use this flag to enable [ShadowRealm][] support.\n \n+### `--experimental-sqlite`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+Enable the experimental [`node:sqlite`][] module.\n+\n ### `--experimental-test-coverage`\n \n <!-- YAML\n@@...
2024-07-09T20:33:38
vercel/next.js
05d179cb16eee28437ee72fdd4886f2278c8d925
383e000d380e60567a946ef820bd2af1e7459f9e
Allow `pnpm build` to be run when offline (#81273) When running `pnpm build` in the Next.js repo without an internet connection, this currently fails while trying to download the AMP `validator_wasm.js` file. We can fix this, and thus enable offline support for `pnpm build`, by moving the download of this file from th...
[ { "path": "packages/next/taskfile.js", "patch": "@@ -676,6 +676,23 @@ export async function ncc_amphtml_validator(task, opts) {\n .source(relative(__dirname, require.resolve('amphtml-validator')))\n .ncc({ packageName: 'amphtml-validator', externals })\n .target('src/compiled/amphtml-validator')...
2025-07-04T18:41:21
electron/electron
08593fd2bdb38de2b409cda0692ac57abf410e9e
fe5cdd39d64d6c43ee01fed969816260abdf4410
chore: fix clang-tidy warnings (#38079) * chore: fix clang-tidy warnings * refactor: avoid need for NOLINTNEXTLINE
[ { "path": ".clang-tidy", "patch": "@@ -0,0 +1,4 @@\n+---\n+Checks: '-modernize-use-nullptr'\n+InheritParentConfig: true\n+...", "additions": 4, "deletions": 0, "language": "Unknown" }, { "path": "shell/browser/api/electron_api_desktop_capturer.cc", "patch": "@@ -243,8 +243,8 @@ void ...
2023-04-26T14:09:54
rust-lang/rust
4d07a8f24c42c4cb7362ea8c4db8cfca62a846b2
08a4ce529f4ea17ad1c0fa2e39ca1f5e7cd047b6
std: Don't panic when removing a nonexistent UEFI var `std::env::remove_var` does not say that deleting a nonexistent variable is an error (and at least on Linux, it indeed does not cause an error). The UEFI Shell Protocol spec also doesn't say it's an error, but the edk2 implementation delegates to the UEFI runtime ...
[ { "path": "library/std/src/sys/env/uefi.rs", "patch": "@@ -43,7 +43,20 @@ mod uefi_env {\n pub(crate) fn unset(key: &OsStr) -> io::Result<()> {\n let mut key_ptr = helpers::os_string_to_raw(key)\n .ok_or(io::const_error!(io::ErrorKind::InvalidInput, \"invalid key\"))?;\n- unsa...
2026-02-08T17:29:59
facebook/react
56cd10beb40586d09e91157e8f6ac531478a62be
214fe84f53c5ba9d40c3427b72c5e6fb9be830e5
DevTools: Add support for useFormState (#28232) ## Summary Add support for `useFormState` Hook fixing "Unsupported hook in the react-debug-tools package: Missing method in Dispatcher: useFormState" when inspecting components using `useFormState` ## How did you test this change? - Added test to ReactHooksIns...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -8,6 +8,7 @@\n */\n \n import type {\n+ Awaited,\n ReactContext,\n ReactProviderType,\n StartTransitionOptions,\n@@ -80,11 +81,14 @@ function getPrimitiveStackCache(): Map<string, Array<any>> {\n // This type check i...
2024-02-05T14:39:45
golang/go
a645bc5eb9b9fabc024c076140013a8ad87dded5
6722c008c139a8abfe841275d12a601d7ea513a1
maps: implement faster clone │ base │ experiment │ │ sec/op │ sec/op vs base │ MapClone-24 66.802m ± 7% 3.348m ± 2% -94.99% (p=0.000 n=10) Fixes #70836 Change-Id: I9e192b1ee82e18f5580ff18918307042a337fdcc Reviewed-on: https://go...
[ { "path": "src/internal/runtime/maps/group.go", "patch": "@@ -322,3 +322,32 @@ func (g *groupsReference) group(typ *abi.SwissMapType, i uint64) groupReference\n \t\tdata: unsafe.Pointer(uintptr(g.data) + offset),\n \t}\n }\n+\n+func cloneGroup(typ *abi.SwissMapType, newGroup, oldGroup groupReference) {\n+\t...
2025-03-21T23:07:20
vercel/next.js
383e000d380e60567a946ef820bd2af1e7459f9e
a0a882e063b95302c6f14f7428005f8cb60175ad
[sourcemaps] ignore-list Webpack runtime (#81229) The way this works in dev is by assigning a dummy sourcemap to the Webpack runtime that ignore-lists everything. The mappings will will be incorrect in development. Production sourcemaps will be correct since those emit real sourcemaps for the webpack runtime where we ...
[ { "path": "packages/next/src/build/webpack/plugins/devtools-ignore-list-plugin.ts", "patch": "@@ -31,6 +31,13 @@ function defaultIsSourceMapAsset(name: string): boolean {\n return name.endsWith('.map')\n }\n \n+function isWebpackRuntimeModule(modulePath: string): boolean {\n+ // webpack:///webpack/bootst...
2025-07-04T16:47:54
nodejs/node
1a1639de3e2508cfa428f0aab90e1fc71c6233cc
d15f514077502c1bbe9b81783669eb704d6e041c
deps: V8: cherry-pick 9ebca66a5740 Original commit message: [rab/gsab] Remove --harmony-rab-gsab (has been on by default for a while) Bug: v8:11111 Change-Id: Ie74e7737f3e2e8730820cf00f1cbc7ae02b515af Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5516580 Commit-Queue: Marja Hölt...
[ { "path": "deps/v8/src/api/api.cc", "patch": "@@ -8953,9 +8953,6 @@ std::unique_ptr<v8::BackingStore> v8::ArrayBuffer::NewBackingStore(\n // static\n std::unique_ptr<BackingStore> v8::ArrayBuffer::NewResizableBackingStore(\n size_t byte_length, size_t max_byte_length) {\n- Utils::ApiCheck(i::v8_flags.h...
2024-06-23T22:31:33
electron/electron
f4b7e59b2d4ec7e6c15574d476feae5a862ee498
a0a1a3645b7353c010311aff17f6a10048e676bd
fix: crash on missing `RenderWidgetHostView` (#38100) chore: fix crash on missing RenderWidgetHostView
[ { "path": "shell/browser/ui/cocoa/electron_inspectable_web_contents_view.mm", "patch": "@@ -287,12 +287,14 @@ - (void)redispatchContextMenuEvent:(NSEvent*)event {\n // Temporarily pretend that the WebContents is fully non-draggable while we\n // re-send the mouse event. This allows the re-dispatched...
2023-04-25T09:30:16
rust-lang/rust
d14c26f45a84eff6eabddd8c0e0580d851ade217
8aa0e905f4a1806a9406eb7c34e0c58157dc2856
Fix help on `AmbiguousMissingKwForItemSub` diagnostic
[ { "path": "compiler/rustc_parse/src/errors.rs", "patch": "@@ -2266,7 +2266,9 @@ pub(crate) enum AmbiguousMissingKwForItemSub {\n span: Span,\n snippet: String,\n },\n- #[help(\"you likely meant to define an item, e.g., `{$vis} fn foo() {\\\"{}\\\"}`\")]\n+ #[help(\n+ \"if yo...
2026-02-08T09:24:07
facebook/react
3d6fcf958233a004ff9bd0af8f1f65b8f22f1b3c
85cc01743bc992a689770a4f37e3d5441f14f082
Convert ReactErrorBoundaries-test.internal.js to createRoot (#28122)
[ { "path": "packages/react-dom/src/__tests__/ReactErrorBoundaries-test.internal.js", "patch": "@@ -12,6 +12,7 @@\n let PropTypes;\n let React;\n let ReactDOM;\n+let ReactDOMClient;\n let act;\n let ReactFeatureFlags;\n let Scheduler;\n@@ -44,6 +45,7 @@ describe('ReactErrorBoundaries', () => {\n ReactFeat...
2024-02-03T01:41:56
golang/go
4d6722a8fd40e86822535b82e0dc9d2b5fd25b74
b3aff930cf4a423bd03d68b70d64cfa66807b0f0
cmd/compile: match more patterns for shortcircuit This CL tries to generalize the pattern matching of certain shortcircuit-able CFGs a bit more: For a shortcircuit-able CFG: p q \ / b / \ t u Where the constant branch is t, and b has multiple phi values other than the control phi. For the non-constant branch ...
[ { "path": "src/cmd/compile/internal/ssa/shortcircuit.go", "patch": "@@ -135,6 +135,8 @@ func shortcircuitBlock(b *Block) bool {\n \t\t// to reason about the values of phis.\n \t\treturn false\n \t}\n+\t// We only process blocks with only phi values except for control\n+\t// value and its wrappers.\n \tif le...
2025-03-09T20:14:32
vercel/next.js
dc48e551fa956d6c992f59aaf76b033c656d6ec7
e574dcb2e11ec80daa68015540f7b53cf5694675
Turbopack: fix instrumentation-edge layer name (#81304) A typo Regression from https://github.com/vercel/next.js/pull/80388
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1567,7 +1567,7 @@ impl Project {\n self.execution_context(),\n ),\n Layer::new_with_user_friendly_name(\n- rcstr!(\"instrumentation\"),\n+ rcstr!(\"instrumentation-edge\"),\n ...
2025-07-04T16:14:48
nodejs/node
d15f514077502c1bbe9b81783669eb704d6e041c
307430e490a6a81f45942311003d015dd9c46e71
deps: V8: cherry-pick e061cf9970d9 Original commit message: [arraybuffers] initialize max byte length of empty array buffers Without initializing the max byte length field, any empty array buffer captured in the snapshot can make the snapshot unreproducible. Refs: https://github.com/nodejs/node/issu...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,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...
2024-07-07T18:22:17
electron/electron
a0a1a3645b7353c010311aff17f6a10048e676bd
9b41ab1e5351a3b810916063ca3a0b19e4098d40
docs: fix start highlight tutorial-2-first-app.md (#38069) doc: fix start highlight tutorial-2-first-app.md
[ { "path": "docs/tutorial/tutorial-2-first-app.md", "patch": "@@ -134,7 +134,7 @@ add `electron .` to the `start` command in the [`scripts`][package-scripts]\n field of your package.json. This command will tell the Electron executable to look for the main\n script in the current directory and run it in dev m...
2023-04-25T09:19:14
rust-lang/rust
8aa0e905f4a1806a9406eb7c34e0c58157dc2856
953aa57c7503177f494dfb168306503867aa26fc
Fix suggestion on `CallToDeprecatedSafeFnRequiresUnsafe` diagnostic
[ { "path": "compiler/rustc_mir_build/src/errors.rs", "patch": "@@ -22,7 +22,7 @@ pub(crate) struct CallToDeprecatedSafeFnRequiresUnsafe {\n \n #[derive(Subdiagnostic)]\n #[multipart_suggestion(\n- \"you can wrap the call in an `unsafe` block if you can guarantee that the environment access only happens in...
2026-02-08T09:23:58
facebook/react
85cc01743bc992a689770a4f37e3d5441f14f082
00f9acb12c036ef24a2b6d7957d75359c6280087
DevTools: Add support for useOptimistic Hook (#27982) ## Summary Add support for `useOptimistic` Hook fixing "Unsupported hook in the react-debug-tools package: Missing method in Dispatcher: useOptimistic" when inspecting components using `useOptimistic` ## How did you test this change? - Added test followi...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -80,6 +80,11 @@ function getPrimitiveStackCache(): Map<string, Array<any>> {\n // This type check is for Flow only.\n Dispatcher.useMemoCache(0);\n }\n+\n+ if (typeof Dispatcher.useOptimistic === 'function...
2024-02-02T22:18:16
vercel/next.js
5c59feb79757d7416f977d66f53f7cc0d456d458
45a5405de21fe158e93aec6441e3ed70399323dd
Ensure resolvedPathname normalizes trailing slash (#81265) Fixes case with trailing slash from refactoring done in https://github.com/vercel/next.js/pull/81144
[ { "path": "packages/next/src/build/templates/pages.ts", "patch": "@@ -225,7 +225,9 @@ export async function handler(\n const method = req.method || 'GET'\n \n const resolvedUrl = formatUrl({\n- pathname: parsedUrl.pathname,\n+ pathname: nextConfig.trailingSlash\n+ ? parsedUrl.pathna...
2025-07-03T23:21:32
golang/go
b3aff930cf4a423bd03d68b70d64cfa66807b0f0
e9242ee81274154f2ec0a82a176496acea0b91ef
go/types: LookupSelection: returns LookupFieldOrMethod as a Selection Also, rewrite some uses of LookupFieldOrMethod in terms of it. + doc, relnote Fixes #70737 Change-Id: I58a6dd78ee78560d8b6ea2d821381960a72660ab Reviewed-on: https://go-review.googlesource.com/c/go/+/647196 LUCI-TryBot-Result: Go LUCI <golang-scop...
[ { "path": "api/go1.25.txt", "patch": "@@ -10,6 +10,7 @@ pkg go/types, const RecvVar = 3 #70250\n pkg go/types, const RecvVar VarKind #70250\n pkg go/types, const ResultVar = 5 #70250\n pkg go/types, const ResultVar VarKind #70250\n+pkg go/types, func LookupSelection(Type, bool, *Package, string) (Selection,...
2025-02-07T03:28:30
electron/electron
141f65b291763bb70dd971f92ac20c5f71de4177
b626be5e33be3d25b6b371770dfeb675449ab7cf
fix: webContents return type incorrect (#38026) * fix: webContents type incorrect * fix: ci failed * fix: ci failed 2
[ { "path": "docs/api/web-contents.md", "patch": "@@ -65,28 +65,28 @@ for all windows, webviews, opened devtools, and devtools extension background pa\n \n ### `webContents.getFocusedWebContents()`\n \n-Returns `WebContents` | null - The web contents that is focused in this application, otherwise\n+Returns `W...
2023-04-24T14:28:21
rust-lang/rust
fb55b5dcf33c3f134a41851771c3b13710a8a048
13c38730d981289cc7ae4cc109fd7756bf83ee67
diagnostics: fix ICE in closure signature mismatch This fixes the ICE by renaming conflicting arguments in the diagnostic.
[ { "path": "compiler/rustc_trait_selection/src/errors.rs", "patch": "@@ -153,10 +153,10 @@ impl Subdiagnostic for AdjustSignatureBorrow {\n fn add_to_diag<G: EmissionGuarantee>(self, diag: &mut Diag<'_, G>) {\n match self {\n AdjustSignatureBorrow::Borrow { to_borrow } => {\n- ...
2026-02-08T12:20:13
nodejs/node
307430e490a6a81f45942311003d015dd9c46e71
c0962dc3bfd94409162fcb77a9da20bce98848c7
fs: improve error performance of `fs.dir` PR-URL: https://github.com/nodejs/node/pull/53667 Reviewed-By: Daniel Lemire <daniel@lemire.me> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
[ { "path": "lib/internal/fs/dir.js", "patch": "@@ -26,7 +26,6 @@ const {\n getDirent,\n getOptions,\n getValidatedPath,\n- handleErrorFromBinding,\n } = require('internal/fs/utils');\n const {\n validateFunction,\n@@ -155,27 +154,26 @@ class Dir {\n \n readSyncRecursive(dirent) {\n const path ...
2024-07-09T14:38:01
vercel/next.js
45a5405de21fe158e93aec6441e3ed70399323dd
c450cd83d1ad34e7906582573584956f401feb2a
bugfix: propagate staleTime to seeded prefetch entry (#81263) In #71280, we hooked up the server-side `staleTime` header to the client-side prefetch cache. This means that if the server responds with a staleTime value, the client router will use that rather than the previous heuristic when determining if a prefetch en...
[ { "path": "packages/next/src/client/components/router-reducer/create-initial-router-state.ts", "patch": "@@ -4,7 +4,10 @@ import type { FlightDataPath } from '../../../server/app-render/types'\n import { createHrefFromUrl } from './create-href-from-url'\n import { fillLazyItemsTillLeafWithHead } from './fil...
2025-07-03T21:58:27
facebook/react
b25dcd3958872322cbeff797ba99c0856de1ebbc
2a45118b1039bc81a44bad81f8e3b1fb2395da1b
Add ReactDOMClient to ServerIntegration tests (minor fixes) (#28131) ## Overview Branched off https://github.com/facebook/react/pull/28130 Converts to `createRoot`, with a few additional in-line conversions in each file.
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationAttributes-test.js", "patch": "@@ -15,6 +15,7 @@ const ReactFeatureFlags = require('shared/ReactFeatureFlags');\n \n let React;\n let ReactDOM;\n+let ReactDOMClient;\n let ReactTestUtils;\n let ReactDOMServer;\n \n@@ -23,12 +24,13 @@ funct...
2024-02-02T00:01:16
golang/go
af53bd2c030fa585d116e916a0676aa6c582faf7
d88f93f720692c7a7f3740093afdd51b45c6056f
internal/syscall/windows: run go generate CL 660595 manually edited zsyscall_windows.go, making it be out of sync with its associated //sys directive. Longtest builders are failing due to that. Fixes #73069. Change-Id: If7256ef4b831423e4925fb6e5656fe3f7ef77fea Reviewed-on: https://go-review.googlesource.com/c/go/+/6...
[ { "path": "src/internal/syscall/windows/zsyscall_windows.go", "patch": "@@ -268,7 +268,7 @@ func CreateEvent(eventAttrs *SecurityAttributes, manualReset uint32, initialStat\n \treturn\n }\n \n-func CreateNamedPipe(name *uint16, flags uint32, pipeMode uint32, maxInstances uint32, outSize uint32, inSize uint3...
2025-03-27T09:39:40
electron/electron
b626be5e33be3d25b6b371770dfeb675449ab7cf
964934c16122767e3554e372126fb7def0243c1c
docs: fix 'usb-device-added', 'usb-device-removed', 'usb-device-revoked' typings (#38035) * Fix 'usb-device-added', 'usb-device-removed', 'usb-device-revoked' typings * Add webContents
[ { "path": "docs/api/session.md", "patch": "@@ -519,9 +519,8 @@ app.whenReady().then(() => {\n Returns:\n \n * `event` Event\n-* `details` Object\n- * `device` [USBDevice](structures/usb-device.md)\n- * `frame` [WebFrameMain](web-frame-main.md)\n+* `device` [USBDevice](structures/usb-device.md)\n+* `webCon...
2023-04-23T20:16:38
nodejs/node
c0962dc3bfd94409162fcb77a9da20bce98848c7
213fea0c55e5d57eea0f9e5ced5b66c00b1e095d
vm,src: add property query interceptors Distinguish named property and indexed property when enumerating keys and handle query interceptions. Co-Authored-By: Michaël Zasso <targos@protonmail.com> PR-URL: https://github.com/nodejs/node/pull/53517 Fixes: https://github.com/nodejs/node/issues/52720 Reviewed-By: Michaël ...
[ { "path": "src/node_contextify.cc", "patch": "@@ -50,10 +50,13 @@ using v8::FunctionCallbackInfo;\n using v8::FunctionTemplate;\n using v8::HandleScope;\n using v8::IndexedPropertyHandlerConfiguration;\n+using v8::IndexFilter;\n using v8::Int32;\n+using v8::Integer;\n using v8::Intercepted;\n using v8::Isol...
2024-06-20T09:14:57
rust-lang/rust
842bed6f939f74c8c005bc223acb50e22464d108
13c38730d981289cc7ae4cc109fd7756bf83ee67
Parse #[rustc_delayed_bug_from_inside_query]
[ { "path": "compiler/rustc_attr_parsing/src/attributes/test_attrs.rs", "patch": "@@ -190,3 +190,12 @@ impl<S: Stage> SingleAttributeParser<S> for RustcAbiParser {\n Some(AttributeKind::RustcAbi { attr_span: cx.attr_span, kind })\n }\n }\n+\n+pub(crate) struct RustcDelayedBugFromInsideQueryParser;...
2026-02-04T20:32:49
vercel/next.js
b8d5f262429f6543e975fd11255297883dace1d6
7c048e337883c172b7a5ff8685426c7d838da6d7
Turbopack: move write_version feature to env var (#81250) This is useful for debugging infinite file write loop situations. Put it behind the env var `TURBO_ENGINE_WRITE_VERSION=1` to be able to debug this if other people want to debug this without recompiling Next.js
[ { "path": "turbopack/crates/turbo-tasks-fs/Cargo.toml", "patch": "@@ -18,8 +18,6 @@ default = []\n # A binary built with this option **is not portable**, the directory\n # path will be embedded into the binary.\n dynamic_embed_contents = []\n-# Write a hashed version of each file to allow to debug conflicti...
2025-07-03T17:12:11
golang/go
440a8f7024044387a6e440fc003bd8fd61908c81
b138f8e4d2912e1105b69b9aaa24c6e8250652c6
internal/poll: support async file operations on Windows This CL adds support for async file operations on Windows. The affected functions are Read, Write, Pread, and Pwrite. The code has been slightly refactored to avoid duplication. Both the async and sync variants follow the same code path, with the exception of th...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -88,6 +88,17 @@ type operation struct {\n \tbufs []syscall.WSABuf\n }\n \n+func (o *operation) overlapped() *syscall.Overlapped {\n+\tif o.runtimeCtx == 0 {\n+\t\t// Don't return the overlapped object if the file handle\n+\t\t// doesn't use overlap...
2025-03-25T15:42:51
facebook/react
c39ec17e66552d8ea8d6d3e11c1d7f85a9f7247f
4bd5e3ea5c449fdd2089f6bdfb07fb1120b0eec7
Convert ReactErrorBoundariesHooks to createRoot (#28175)
[ { "path": "packages/react-dom/src/__tests__/ReactErrorBoundariesHooks-test.internal.js", "patch": "@@ -10,16 +10,18 @@\n 'use strict';\n \n let React;\n-let ReactDOM;\n+let ReactDOMClient;\n+let act;\n \n describe('ReactErrorBoundariesHooks', () => {\n beforeEach(() => {\n jest.resetModules();\n- R...
2024-02-01T23:48:58
electron/electron
964934c16122767e3554e372126fb7def0243c1c
f727da4a74a93cca627f5db0da9f88c450944f69
fix: defaults broken in shell.openExternal() options (#38038) Co-authored-by: Milan Burda <miburda@microsoft.com>
[ { "path": "shell/common/api/electron_api_shell.cc", "patch": "@@ -59,13 +59,11 @@ v8::Local<v8::Promise> OpenExternal(const GURL& url, gin::Arguments* args) {\n v8::Local<v8::Promise> handle = promise.GetHandle();\n \n platform_util::OpenExternalOptions options;\n- if (args->Length() >= 2) {\n- gin:...
2023-04-21T17:13:59
rust-lang/rust
81d42146040c4a6b3d252e3dc3ac32e563694796
0db0acd6993cbdf84384b00773d7509df6bc20fb
Remove fluent tests in `rustc_error`
[ { "path": "compiler/rustc_errors/src/lib.rs", "patch": "@@ -83,8 +83,6 @@ pub mod error;\n pub mod json;\n mod lock;\n pub mod markdown;\n-#[cfg(test)]\n-mod tests;\n pub mod timings;\n pub mod translation;\n ", "additions": 0, "deletions": 2, "language": "Rust" }, { "path": "compiler/ru...
2026-02-06T19:09:13
nodejs/node
213fea0c55e5d57eea0f9e5ced5b66c00b1e095d
2b068ffc4a8bc4b2ef0fd46124d48e55af1231b8
src: remove unused ContextifyContext::WeakCallback PR-URL: https://github.com/nodejs/node/pull/53517 Fixes: https://github.com/nodejs/node/issues/52720 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "src/node_contextify.cc", "patch": "@@ -81,7 +81,6 @@ using v8::Symbol;\n using v8::Uint32;\n using v8::UnboundScript;\n using v8::Value;\n-using v8::WeakCallbackInfo;\n \n // The vm module executes code in a sandboxed environment with a different\n // global object than the rest of the code. This...
2024-06-19T23:01:54
vercel/next.js
f5f559220a09880ed8d8d55e73c4bd65dcc89af1
e2422f4c94685e040d868033a6d666ccc183d6fd
Fix NEXT_CPU_PROF during development (#81248) ## What? `next dev` spawns a forked process that wouldn't be instrumented because `cpu-profile.ts` only runs in `cli/next-dev.ts` which is the process that boots the forked process. This adds the initialization to the forked process too.
[ { "path": "packages/next/src/server/lib/start-server.ts", "patch": "@@ -1,3 +1,5 @@\n+// Start CPU profile if it wasn't already started.\n+import './cpu-profile'\n import { getNetworkHost } from '../../lib/get-network-host'\n \n if (performance.getEntriesByName('next-start').length === 0) {", "additions...
2025-07-03T17:02:13
golang/go
87d1833c66aa25a7e495987b066bdd22d1fe3105
44fef2aa4db70bfbe7bfd2abbd5b12eb776cde1d
cmd/go/internal/modload: improve ErrNoModRoot error text Before this change, in several cases where HasModRoot() returned false, we'd return ErrNoModRoot. ErrNoModRoot would say that there was no go.mod file but would not mention workspaces. With this change, ErrNoModRoot will return error text that's different if we'...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -610,7 +610,7 @@ func inWorkspaceMode() bool {\n \treturn workFilePath != \"\"\n }\n \n-// HasModRoot reports whether a main module is present.\n+// HasModRoot reports whether a main module or main modules are present.\n // HasModRoot may return ...
2025-03-25T18:10:31
facebook/react
4bd5e3ea5c449fdd2089f6bdfb07fb1120b0eec7
fa6674b5bcf52610e92d19a5105308e56091c386
Add ReactDOMClient to ServerIntegrationReconnecting (#28136) ## Overview Branched off https://github.com/facebook/react/pull/28130 ## Why In https://github.com/facebook/react/pull/24276 we changed the new root behavior to error when a client-render is forced for certain cases, so these now expect a mismatch...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationReconnecting-test.js", "patch": "@@ -13,30 +13,30 @@ const ReactDOMServerIntegrationUtils = require('./utils/ReactDOMServerIntegratio\n \n let React;\n let ReactDOM;\n+let ReactDOMClient;\n let ReactDOMServer;\n let ReactTestUtils;\n \n-fu...
2024-02-01T23:32:38
electron/electron
cf4c46c8e0337b3123c7256ddf033ae556731fee
0240f6664e5c94d68cb9ad7fb1a9e7c8bbf281d3
build: fix Codespaces prebuilds with missing comma (#38052) Add missing comma
[ { "path": ".devcontainer/on-create-command.sh", "patch": "@@ -41,7 +41,7 @@ if [ ! -f $buildtools/configs/evm.testing.json ]; then\n \\\"electron\\\": {\n \\\"origin\\\": \\\"https://github.com/electron/electron.git\\\"\n }\n- }\n+ },...
2023-04-20T22:41:54
vercel/next.js
e2422f4c94685e040d868033a6d666ccc183d6fd
8ecf21e59f219d4f91ba19eafd3f32bdc11a841d
[turbopack] Add FileSystemPath.has_extension and optimize module graph operations (#81205) ## Optimize file extension checks and module graph traversal ### What? This PR introduces several optimizations: 1. Added a new `has_extension()` method to `FileSystemPath` for more efficient extension checking 2. Improved mod...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -861,14 +861,13 @@ impl AppProject {\n client_shared_entries: Vc<EvaluatableAssets>,\n has_layout_segments: bool,\n ) -> Result<Vc<ModuleGraphs>> {\n- let client_shared_entries = client_shared_entries\n- .await?\n- ...
2025-07-03T15:43:01
golang/go
2bf57a3534f478d9c072391b1deba1d211545661
936bb82ddb7f6456e3008b26f0398880d11ce3c0
testing: document exit codes Fixes #25989 Change-Id: I2e2a2a17854034ff68e69b8973018b1b2e7d59f5 Reviewed-on: https://go-review.googlesource.com/c/go/+/660076 Reviewed-by: Thanyalak Detkhong (Palm’my) <pmy4416@gmail.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Damien Neil <dneil@google.com> LUC...
[ { "path": "src/testing/testing.go", "patch": "@@ -2043,6 +2043,9 @@ var testingTesting bool\n var realStderr *os.File\n \n // Run runs the tests. It returns an exit code to pass to os.Exit.\n+// The exit code is zero when all tests pass, and non-zero for any kind\n+// of failure. For machine readable test r...
2025-03-22T00:48:16
nodejs/node
2b068ffc4a8bc4b2ef0fd46124d48e55af1231b8
66a635cece74eda6772b062ed4df9f683e66accd
build: fix build warning of c-ares under GN build PR-URL: https://github.com/nodejs/node/pull/53750 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "deps/cares/unofficial.gni", "patch": "@@ -65,11 +65,17 @@ template(\"cares_gn_build\") {\n sources += gypi_values.cares_sources_mac\n }\n \n- if (is_clang || !is_win) {\n- cflags_c = [\n- \"-Wno-implicit-fallthrough\",\n- \"-Wno-unreachable-code\",\n- ]\n+ ...
2024-07-09T08:42:40
electron/electron
0240f6664e5c94d68cb9ad7fb1a9e7c8bbf281d3
f12e12b341cbc202388d704449b2fcf6c1743ae0
fix: crash in utilityProcess when generating code from strings (#38014)
[ { "path": "shell/app/electron_main_delegate.cc", "patch": "@@ -40,6 +40,7 @@\n #include \"shell/common/logging.h\"\n #include \"shell/common/options_switches.h\"\n #include \"shell/common/platform_util.h\"\n+#include \"shell/common/process_util.h\"\n #include \"shell/common/thread_restrictions.h\"\n #includ...
2023-04-20T00:27:02
facebook/react
fa6674b5bcf52610e92d19a5105308e56091c386
c0d927713002fe27c4d58717d35cd930e6814c2b
Add ReactDOMClient to ServerIntegration(Hooks|NewContext) (#28135) ## Overview Branched off https://github.com/facebook/react/pull/28130 ### ~Failing~ Fixed by @eps1lon Most of the tests pass, but there are 3 tests that have additional warnings due to client render error retries. For example, before we wou...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationHooks-test.js", "patch": "@@ -15,7 +15,7 @@\n const ReactDOMServerIntegrationUtils = require('./utils/ReactDOMServerIntegrationTestUtils');\n \n let React;\n-let ReactDOM;\n+let ReactDOMClient;\n let ReactDOMServer;\n let ReactTestUtils;\n...
2024-02-01T23:32:27
rust-lang/rust
953aa57c7503177f494dfb168306503867aa26fc
13c38730d981289cc7ae4cc109fd7756bf83ee67
Fix suggestion on `AutoTraitItems` diagnostic
[ { "path": "compiler/rustc_ast_passes/src/errors.rs", "patch": "@@ -503,7 +503,7 @@ pub(crate) struct AutoTraitItems {\n #[primary_span]\n pub spans: Vec<Span>,\n #[suggestion(\n- \"remove the super traits or lifetime bounds\",\n+ \"remove the associated items\",\n code = \"...
2026-02-08T09:23:31
nodejs/node
b9289a6e29e54beeaa3f781bde1195e48df0da75
39f207023a0f3d4cf3d54f2983da5f775d22e8ca
lib,permission: support fs.lstat PR-URL: https://github.com/nodejs-private/node-private/pull/486/ Fixes: https://hackerone.com/bugs?subject=nodejs&report_id=2145862 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> CVE-ID: CVE-2024-22018
[ { "path": "lib/fs.js", "patch": "@@ -1550,6 +1550,10 @@ function lstat(path, options = { bigint: false }, callback) {\n }\n callback = makeStatsCallback(callback);\n path = getValidatedPath(path);\n+ if (permission.isEnabled() && !permission.has('fs.read', path)) {\n+ callback(new ERR_ACCESS_DENIE...
2024-06-17T18:17:42
golang/go
9c88db5f1eba68999184bb043a0b339349b81db4
aaf9b46800fe12c11c17bffebc82436204a1e85b
runtime: always show runfinq in traceback Today, runtime.runfinq is hidden whenever runtime frames are hidden. However this frame serves as a hint that this goroutine is running finalizers, which is otherwise unclear, but can be useful when debugging issues with finalizers. Fixes #73011. Change-Id: I6a6a636cb63951f...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"flag\"\n \t\"fmt\"\n+\t\"internal/profile\"\n \t\"internal/testenv\"\n \ttraceparse \"internal/trace\"\n \t\"io\"\n@@ -1100,3 +1101,77 @@ func TestNetpollWaiters(t *testing.T) {\n \t\tt.Fatalf(\"output is not %q...
2025-03-24T07:08:33
vercel/next.js
8ecf21e59f219d4f91ba19eafd3f32bdc11a841d
7ed2d23ae59f557e99c0e512a986e1c4fe2fb5e9
perf(next-napi): optimize output assets collection using flat_map (#81222) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're mak...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -956,10 +956,10 @@ async fn output_assets_operation(\n .try_join()\n .await?;\n \n- let mut output_assets: FxIndexSet<ResolvedVc<Box<dyn OutputAsset>>> = FxIndexSet::default();\n- for assets in endpoint_assets {\n- ou...
2025-07-03T15:24:20
facebook/react
c0d927713002fe27c4d58717d35cd930e6814c2b
278199b3deeee73f969a242c777c2d38406f8bfe
Add ReactDOMClient to ServerIntegrationElements (#28134) ## Overview Branched off https://github.com/facebook/react/pull/28130 ## ~Failing~ Fixed by @eps1lon The tests are currently failing because of two tests covering special characters. I've tried a few ways to fix, but I'm stuck and will need some hel...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationElements-test.js", "patch": "@@ -16,19 +16,23 @@ const TEXT_NODE_TYPE = 3;\n \n let React;\n let ReactDOM;\n+let ReactDOMClient;\n let ReactDOMServer;\n+let ReactFeatureFlags;\n let ReactTestUtils;\n \n function initModules() {\n jest.re...
2024-02-01T23:32:18
nodejs/node
d39e993903e27bb5761dd98b0a93964dcaabac65
4fe0f826a80365ce2512b8193ceaa9466c288aa5
src,permission: fix UNC path resolution PR-URL: https://github.com/nodejs-private/node-private/pull/581 Fixes: https://hackerone.com/bugs?subject=nodejs&report_id=2079103 CVE-ID: CVE-2024-37372
[ { "path": "src/permission/fs_permission.cc", "patch": "@@ -49,15 +49,18 @@ bool is_tree_granted(\n const std::string_view& param) {\n std::string resolved_param = node::PathResolve(env, {param});\n #ifdef _WIN32\n- // is UNC file path\n- if (resolved_param.rfind(\"\\\\\\\\\", 0) == 0) {\n- // ret...
2024-04-22T21:45:13
electron/electron
de192c2db26c673b5dd0fcc0e44990d580b3543e
941153be329c0f0321bb8ba7cc73fb3f01499642
chore: bump node to v18.16.0 (main) (#37973) * chore: bump node in DEPS to v18.16.0 * build,test: add proper support for IBM i https://github.com/nodejs/node/pull/46739 * lib: enforce use of trailing commas https://github.com/nodejs/node/pull/46881 * src: add initial support for single executable applic...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '114.0.5715.0',\n 'node_version':\n- 'v18.15.0',\n+ 'v18.16.0',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2023-04-18T20:23:11
vercel/next.js
c28261568f50c47595b06dce631ac89c07338d07
81f0c7645b360d4056976ada0dc2e81de49e08e8
Update caching.mdx (#81185) Updating caching guide to be more specific on fetch API. Solves https://github.com/vercel/next.js/issues/81183 <!-- 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 belo...
[ { "path": "docs/01-app/02-guides/caching.mdx", "patch": "@@ -376,24 +376,24 @@ When configuring the different caching mechanisms, it's important to understand\n \n The following table provides an overview of how different Next.js APIs affect caching:\n \n-| API ...
2025-07-03T10:45:47
golang/go
5918101d673d601c26f5de880b1fa2c6564fb745
b7f8c2a11058fe266fa5ddd0bc80dbf69b03b172
testing: detect a stopped timer in B.Loop Currently, if the user stops the timer in a B.Loop benchmark loop, the benchmark will run until it hits the timeout and fails. Fix this by detecting that the timer is stopped and failing the benchmark right away. We avoid making the fast path more expensive for this check by ...
[ { "path": "src/cmd/compile/internal/inline/interleaved/interleaved.go", "patch": "@@ -253,7 +253,7 @@ func (s *inlClosureState) mark(n ir.Node) ir.Node {\n \n \tif isTestingBLoop(n) {\n \t\t// No inlining nor devirtualization performed on b.Loop body\n-\t\tif base.Flag.LowerM > 1 {\n+\t\tif base.Flag.LowerM...
2025-03-20T16:16:17
rust-lang/rust
7c95f57bc95c36f44a50fffb07cb2b933184ee2b
b303ab4c86361b9e3d7c803237f0b8ef5c7804d7
fix outdated doc comments
[ { "path": "book/src/development/type_checking.md", "patch": "@@ -154,7 +154,7 @@ in this chapter:\n [expr_ty]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/struct.TypeckResults.html#method.expr_ty\n [node_type]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/struct.Typeck...
2026-02-08T07:25:51
facebook/react
278199b3deeee73f969a242c777c2d38406f8bfe
c42e7c7adc3a036c0c176d5b3dd7cf9215862815
Add ReactDOMClient to ServerIntegrationBasic (#28133) ## Overview Branched off https://github.com/facebook/react/pull/28130 In `hydrateRoot`, we now error if you pass `undefined`: ``` Warning: Must provide initial children as second argument to hydrateRoot. ``` So we expect 1 error for this now.
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationBasic-test.js", "patch": "@@ -15,21 +15,21 @@ const ReactDOMServerIntegrationUtils = require('./utils/ReactDOMServerIntegratio\n const TEXT_NODE_TYPE = 3;\n \n let React;\n-let ReactDOM;\n+let ReactDOMClient;\n let ReactDOMServer;\n let Re...
2024-02-01T23:32:04
nodejs/node
4fe0f826a80365ce2512b8193ceaa9466c288aa5
0881c1f01ac90006315cae5b9c38cfbf44d37e59
2024-07-08, Version 22.4.1 (Current) This is a security release. Notable changes: * CVE-2024-36138 - Bypass incomplete fix of CVE-2024-27980 (High) * CVE-2024-22020 - Bypass network import restriction via data URL (Medium) * CVE-2024-22018 - fs.lstat bypasses permission model (Low) * CVE-2024-36137 - fs.fchown/fchmo...
[ { "path": "CHANGELOG.md", "patch": "@@ -38,7 +38,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.4.0\">22.4.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.4.1\">22.4.1</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V22.md#22.4.0\">2...
2024-07-04T03:05:26
golang/go
b7f8c2a11058fe266fa5ddd0bc80dbf69b03b172
c72e2747255b6ee44d024732b37333dbc9efa37e
testing: detect early return from B.Loop Currently, if a benchmark function returns prior to B.Loop() returning false, we'll report a bogus result. While there was no way to detect this with b.N-style benchmarks, one way b.Loop()-style benchmarks are more robust is that we *can* detect it. This CL adds a flag to B th...
[ { "path": "src/testing/benchmark.go", "patch": "@@ -124,6 +124,8 @@ type B struct {\n \t\t// i is the current Loop iteration. It's strictly monotonically\n \t\t// increasing toward n.\n \t\ti int\n+\n+\t\tdone bool // set when B.Loop return false\n \t}\n }\n \n@@ -201,6 +203,7 @@ func (b *B) runN(n int) {\n...
2025-03-20T14:26:54
vercel/next.js
81f0c7645b360d4056976ada0dc2e81de49e08e8
4551373c972d0a9c49874258f66ffff73d7109c3
[devtool] styling fixes (#81228) ### Styling fixes * The overlay needs to have the highiest index, it's regressed from the change in #80974 while tweaking around new panel UI * Noticed the route info needs to be set as nowrap when pathname is super long | After | Before | |:-- |:-- | | ![image](https://github...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/overlay/styles.tsx", "patch": "@@ -5,7 +5,8 @@ const styles = `\n right: 0;\n bottom: 0;\n left: 0;\n- z-index: 3;\n+ /* secondary z-index, -1 than toast z-index */\n+ z-index: 2147483646;\n \n display: flex;\n al...
2025-07-03T10:15:31
electron/electron
7a6af1a5299a6f54e169e57683cf9089e7db62e6
1ffe7ee76b8c61d7ef6a0fc03eaff7debc2accc0
chore: bump chromium to 114.0.5715.0 (main) (#37976) * chore: bump chromium in DEPS to 114.0.5712.0 * chore: update patches * 4401084: Remove extensions::InfoMap which is no longer needed. | https://chromium-review.googlesource.com/c/chromium/src/+/4401084 * 4415646: Add more details to print settings error l...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '114.0.5710.0',\n+ '114.0.5715.0',\n 'node_version':\n 'v18.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2023-04-17T21:40:26
facebook/react
c42e7c7adc3a036c0c176d5b3dd7cf9215862815
6054be9c86f2e01e5e24c1fe2182479fec8667e4
Add ReactDOMClient to ServerIntegrationSelect (#28132) ## Overview Branched off https://github.com/facebook/react/pull/28130 ## React for count changing ### Before These tests are weird because on main they pass, but log to the console: ``` We expected 2 warning(s), but saw 1 warning(s). We saw these warn...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationSelect-test.js", "patch": "@@ -13,21 +13,21 @@\n const ReactDOMServerIntegrationUtils = require('./utils/ReactDOMServerIntegrationTestUtils');\n \n let React;\n-let ReactDOM;\n+let ReactDOMClient;\n let ReactDOMServer;\n let ReactTestUtils...
2024-02-01T23:31:52
nodejs/node
0881c1f01ac90006315cae5b9c38cfbf44d37e59
4324e11935659a2ed2d17f84bc87b9c9198b4fdf
2024-07-08, Version 20.15.1 'Iron' (LTS) This is a security release. Notable changes: * CVE-2024-36138 - Bypass incomplete fix of CVE-2024-27980 (High) * CVE-2024-22020 - Bypass network import restriction via data URL (Medium) * CVE-2024-22018 - fs.lstat bypasses permission model (Low) * CVE-2024-36137 - fs.fchown/f...
[ { "path": "CHANGELOG.md", "patch": "@@ -60,7 +60,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V21.md#21.0.0\">21.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.15.0\">20.15.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.15.1\">20.15.1...
2024-06-27T13:45:03
golang/go
2d2bcdd2ad83ba93e61747417d6865cdd88b32fe
7372b64425eda6725fb84be71d6a3c4415b35d0d
cmd/go: upgrade go install pkg@version's go using local mod, work This CL changes the toolchain selection behavior for go install pkg@v and go run pkg@v to also take into account the go and toolchain version lines in the containing go.mod and go.work file. Before this change, the go command would detect that go insta...
[ { "path": "src/cmd/go/internal/toolchain/select.go", "patch": "@@ -169,7 +169,7 @@ func Select() {\n \t}\n \n \tgotoolchain = minToolchain\n-\tif (mode == \"auto\" || mode == \"path\") && !goInstallVersion(minVers) {\n+\tif mode == \"auto\" || mode == \"path\" {\n \t\t// Read go.mod to find new minimum and ...
2025-03-05T20:17:20
vercel/next.js
4551373c972d0a9c49874258f66ffff73d7109c3
2212ea72dd1dd87df95d9b5090d42157daea24cd
Docs: include effect in docs for default optimized libraries (#81203) This PR updates the docs for `optimizePackageImports` default optimized packages to include `effect` and the `@effect/*` packages These were added by 9f647f311fc051ca65a3fd810533ed1d5254020b <!-- Thanks for opening a PR! Your contribution is much...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/optimizePackageImports.mdx", "patch": "@@ -44,3 +44,5 @@ The following libraries are optimized by default:\n - `@tabler/icons-react`\n - `mui-core`\n - `react-icons/*`\n+- `effect`\n+- `@effect/*`", "additions": 2, "deletions": 0, ...
2025-07-03T09:38:48
electron/electron
1ffe7ee76b8c61d7ef6a0fc03eaff7debc2accc0
c857c9b7e2575769a26769dfa32e967a3da26e99
build: fix building with no PDF support (#38003)
[ { "path": "shell/browser/extensions/api/resources_private/resources_private_api.cc", "patch": "@@ -9,7 +9,6 @@\n \n #include \"base/values.h\"\n #include \"chrome/browser/browser_process.h\"\n-#include \"chrome/browser/pdf/pdf_extension_util.h\"\n #include \"chrome/common/extensions/api/resources_private.h\...
2023-04-17T15:02:43
facebook/react
2efa38332adc1fc1500753d79fcba41a0197a7a6
3d1da1f9ab7d54984c096e6a04c8729f3a50fd8a
fix(eslint-plugin-react-hooks): accepting `as` expression as a callback (#28202) ## Summary Closes #20750 ## How did you test this change? Added a test case
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -7765,6 +7765,15 @@ const testsTypescript = {\n }\n `,\n },\n+ {\n+ code: normalizeIndent`\n+ function App(props) {\n+ React.useEffect((() => {\n+ cons...
2024-02-01T20:08:21
nodejs/node
4324e11935659a2ed2d17f84bc87b9c9198b4fdf
53483a13449a703647ce0383fa1f292476c09cbe
2024-07-08, Version 18.20.4 'Hydrogen' (LTS) This is a security release. Notable changes: * CVE-2024-36138 - Bypass incomplete fix of CVE-2024-27980 (High) * CVE-2024-22020 - Bypass network import restriction via data URL (Medium) PR-URL: https://github.com/nodejs-private/node-private/pull/609
[ { "path": "CHANGELOG.md", "patch": "@@ -86,7 +86,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V20.md#20.0.0\">20.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.20.3\">18.20.3</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.20.4\">18.20.4...
2024-06-27T15:22:19
golang/go
7372b64425eda6725fb84be71d6a3c4415b35d0d
d2d1fd68b6299d4645298e6d70fe8e8cfd98001a
net/url: document referenced RFCs Fixes #30611 Change-Id: If933c2a7e63d89402d2034618057ad546cf9641b Reviewed-on: https://go-review.googlesource.com/c/go/+/660077 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acco...
[ { "path": "src/net/url/url.go", "patch": "@@ -3,12 +3,14 @@\n // license that can be found in the LICENSE file.\n \n // Package url parses URLs and implements query escaping.\n+//\n+// See RFC 3986. This package generally follows RFC 3986, except where\n+// it deviates for compatibility reasons.\n+// RFC 68...
2025-03-22T01:15:22
vercel/next.js
82115d6e5e3bb746846af35dfe61169d00cb8f70
0bad0e5d87aa2d40afdc6c8e8bde2fde0122daee
Docs/after function mdx fix (#81174) The current formatting caused the mdx parser to do `details > p > summary` - which caused a hydration error for invalid HTML, but also just rendered `> Details` <img width="501" alt="Screenshot 2025-07-02 at 10 38 51" src="https://github.com/user-attachments/assets/61819edc-75bb-4...
[ { "path": "docs/01-app/03-api-reference/04-functions/after.mdx", "patch": "@@ -126,7 +126,8 @@ Learn how to [configure `after`](/docs/app/guides/self-hosting#after) when self-\n \n <details id=\"after-serverless\">\n <summary>Reference: supporting `after` for serverless platforms</summary>\n- Using `afte...
2025-07-03T08:44:21
electron/electron
c7ea8872270a281fea344faa9c51510740a1bc08
fa3379a5d5cd6494c126be4d4d21a36c75f46554
chore: drop patch for fixed Linux menus issue in Views (#37984)
[ { "path": "patches/chromium/.patches", "patch": "@@ -126,4 +126,3 @@ expose_v8initializer_codegenerationcheckcallbackinmainthread.patch\n chore_patch_out_profile_methods_in_profile_selections_cc.patch\n add_gin_converter_support_for_arraybufferview.patch\n chore_defer_usb_service_getdevices_request_until_us...
2023-04-16T04:20:34
facebook/react
a1433ca0bacff76f720ffec9a0020f56e8c9ffed
53b12e46a17549ec7644e13c126440ed2f3629fd
fix(eslint-plugin-react-hooks): accepting `as` expressions as deps array (#28189) ## Summary This PR closes #25844 The original issue talks about `as const`, but seems like it fails for any `as X` expressions since it adds another nesting level to the AST. EDIT: Also closes #20162 ## How did you test this c...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -7747,6 +7747,24 @@ const testsTypescript = {\n }\n `,\n },\n+ {\n+ code: normalizeIndent`\n+ function App(props) {\n+ React.useEffect(() => {\n+ conso...
2024-02-01T19:30:17
nodejs/node
1d4d76ff3fb08f9a0c55a1d5530b46c4d5d550c7
0095726bf3d0a2c01062d98e087526299e709515
src: fix typo in node.h Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/53759 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gma...
[ { "path": "src/node.h", "patch": "@@ -658,8 +658,8 @@ enum Flags : uint64_t {\n // inspector in situations where one has already been created,\n // e.g. Blink's in Chromium.\n kNoCreateInspector = 1 << 9,\n- // Controls where or not the InspectorAgent for this Environment should\n- // call StartDebu...
2024-07-08T14:39:37
golang/go
3ada42ffedf61343cc8a7cd7d6293bd646ecf3a6
b70244ff7a043786c211775b68259de6104ff91c
go/types, types2: align trace output a bit better for easier debugging Compute alignment padding rather than using a tab in trace output. This aligns the ":" after the file position in typical cases (files shorter than 1000 lines, lines shorter than 100 columns), resulting in nicer trace output for easier debugging. ...
[ { "path": "src/cmd/compile/internal/types2/format.go", "patch": "@@ -88,13 +88,32 @@ func (check *Checker) sprintf(format string, args ...any) string {\n }\n \n func (check *Checker) trace(pos syntax.Pos, format string, args ...any) {\n-\tfmt.Printf(\"%s:\\t%s%s\\n\",\n+\t// Use the width of line and pos va...
2025-03-20T23:12:15
vercel/next.js
0bad0e5d87aa2d40afdc6c8e8bde2fde0122daee
36764b9916f317d5d5bd1c430e44802906abe82a
chore(turbopack): Remove unused dependencies reported by cargo-shear (#81221) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're ma...
[ { "path": "Cargo.lock", "patch": "@@ -9359,7 +9359,6 @@ dependencies = [\n \"dashmap 6.1.0\",\n \"dunce\",\n \"futures\",\n- \"futures-retry\",\n \"include_dir\",\n \"indexmap 2.9.0\",\n \"jsonc-parser 0.21.0\",\n@@ -9623,7 +9622,6 @@ dependencies = [\n \"const_format\",\n \"data-encoding\",\n \"ei...
2025-07-03T08:03:34
electron/electron
fa3379a5d5cd6494c126be4d4d21a36c75f46554
cdace753894b693ea9b0d6c5570d585fc118c24b
chore: fix lint (#37971)
[ { "path": "shell/browser/web_contents_preferences.cc", "patch": "@@ -432,14 +432,16 @@ void WebContentsPreferences::OverrideWebkitPrefs(\n iter->second;\n if (auto iter = default_font_family_.find(\"serif\");\n iter != default_font_family_.end())\n- prefs->serif_font_family_map[bl...
2023-04-13T13:54:41
facebook/react
7bce30242137b4668b656feb866184a418cb537a
a0aa66ca8f68bdc66f04e8aa55a7f41a52c41f0d
Make Other mutation validation message more generic The current error message "This mutates a global or a variable after it was passed to React" no longer makes sense since we now have more specific error messages for different kinds of Effect.Mutate or Effect.Stores. This replaces the fallthrough "Other" case ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReferenceEffects.ts", "patch": "@@ -1506,6 +1506,6 @@ function getWriteErrorReason(abstractValue: AbstractValue): string {\n } else if (abstractValue.reason.has(ValueReason.ReactiveFunctionArgument)) {\n return \"Mutating props ...
2024-02-01T16:02:30
nodejs/node
11f4efc73ad7c533623f09daa32c8f3d38b37f29
7e80584829277915813df77fa30b430b77a2250f
build: fix build error in sqlite under GN build PR-URL: https://github.com/nodejs/node/pull/53686 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "deps/sqlite/unofficial.gni", "patch": "@@ -18,5 +18,13 @@ template(\"sqlite_gn_build\") {\n forward_variables_from(invoker, \"*\")\n public_configs = [ \":sqlite_config\" ]\n sources = gypi_values.sqlite_sources\n+ if (is_win) {\n+ cflags_c = [\n+ \"-Wno-sign-compare\",...
2024-07-02T06:21:56
golang/go
afe11db4a7d61d6ec196577f39b45648f987927d
ba01453bbed831f143d3005abc85fd6baec36da5
cmd/compile/internal/abi: fix ComputePadding Fixes the ComputePadding calculation to take into account the padding added for the current offset. This fixes an issue where padding can be added incorrectly for certain structs. Related: https://github.com/go-delve/delve/issues/3923 Same as https://go-review.googlesourc...
[ { "path": "src/cmd/compile/internal/abi/abiutils.go", "patch": "@@ -673,10 +673,9 @@ func (pa *ABIParamAssignment) ComputePadding(storage []uint64) []uint64 {\n \t\tpanic(\"internal error\")\n \t}\n \toffsets, _ := appendParamOffsets([]int64{}, 0, pa.Type)\n-\toff := int64(0)\n \tfor idx, t := range types {...
2025-03-21T19:43:32
vercel/next.js
36764b9916f317d5d5bd1c430e44802906abe82a
97958668025bedbc51e188cc01143e9be80f764f
Turbopack: fix source map panic (#81212) Fix a panic, related to scope hoisting. ``` An error occurred while generating the chunk item X Caused by: - Cannot decode dummy BytePos ``` ``` thread 'tokio-runtime-worker' panicked at turbopack/crates/turbopack-ecmascript/src/lib.rs:2431:13: Cannot decode dummy BytePos stac...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -2498,14 +2498,17 @@ fn encode_module_into_comment_span(\n \n impl Comments for CodeGenResultCommentsConsumable<'_> {\n fn add_leading(&self, _pos: BytePos, _cmt: Comment) {\n- unimplemented!()\n+ unimplemented!(\"a...
2025-07-03T07:54:42
electron/electron
e84bcb39e7b6b5ff606236f9e31dc86afa6710c2
fceeb64e7c835868bec48442cfb4c7450bddf959
fix: defaultFontFamily in webPreferences (#37863) * fix: defaultFontFamily in webPreferences * chore: check if default_font_family_ is empty
[ { "path": "shell/browser/web_contents_preferences.cc", "patch": "@@ -425,24 +425,30 @@ void WebContentsPreferences::OverrideWebkitPrefs(\n prefs->web_security_enabled = web_security_;\n prefs->allow_running_insecure_content = allow_running_insecure_content_;\n \n- if (auto font =\n- default_fo...
2023-04-13T09:30:25
facebook/react
a0aa66ca8f68bdc66f04e8aa55a7f41a52c41f0d
d55420c430cee6338fcc63ad663cb4b778af55de
Add test for function property mutation There were no previous test paths that tested it, so I'm adding the example from https://github.com/facebookexternal/forget-feedback/issues/32 as a fixture
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.mutate-function-property.expect.md", "patch": "@@ -0,0 +1,21 @@\n+\n+## Input\n+\n+```javascript\n+export function ViewModeSelector(props) {\n+ const renderIcon = () => <AcceptIcon />;\n+ renderIcon.displayName = ...
2024-02-01T16:02:30
nodejs/node
e1b80a5fb32a19523dcf6e75304aefb4766d650d
3ca05ffa02fdf3a765c6e3f957e007e6eebf4f0c
src: fix Worker termination when '--inspect-brk' is passed Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/53724 Fixes: https://github.com/nodejs/node/issues/53648 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Revi...
[ { "path": "src/debug_utils.h", "patch": "@@ -46,6 +46,7 @@ void NODE_EXTERN_PRIVATE FWrite(FILE* file, const std::string& str);\n V(DIAGNOSTICS) \\\n V(HUGEPAGES) \\\n V(INSPEC...
2024-07-06T15:49:50
golang/go
3108366214bb1fc15b0f261ba27f448e3bd0e685
2cc0ea46e410b295181c9e1efa85b0e2be495682
runtime: deduplicate context call injection on Windows Injecting a call to a thread context is complex enough to warrant a dedicated function so that we don't repeat the same code in multiple places. Note that the unix sigctxt struct also follows the same approach. The behavior is unchanged, but the implementation se...
[ { "path": "src/runtime/defs_windows_386.go", "patch": "@@ -4,6 +4,11 @@\n \n package runtime\n \n+import (\n+\t\"internal/goarch\"\n+\t\"unsafe\"\n+)\n+\n const _CONTEXT_CONTROL = 0x10001\n \n type floatingsavearea struct {\n@@ -59,6 +64,13 @@ func (c *context) set_sp(x uintptr) { c.esp = uint32(x) }\n // 3...
2025-03-14T10:56:20
vercel/next.js
97958668025bedbc51e188cc01143e9be80f764f
fbc988d042e7a421d1e2aaf993eb6671d8614cf0
Fix future Rust warnings (#81217) I tried to upgrade to nightly-2025-07-02, but rust-analyzer is just completely broken: ![Bildschirmfoto 2025-07-03 um 08.52.48.png](https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/sjZSbv6AFeuDg7Gb9rma/56c6fece-893c-41fb-98e6-fa225b325225.png) So I reverted that again but...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/dynamic_storage.rs", "patch": "@@ -75,11 +75,11 @@ impl DynamicStorage {\n })\n }\n \n- pub fn get(&self, key: &CachedDataItemKey) -> Option<CachedDataItemValueRef> {\n+ pub fn get(&self, key: &CachedDataItemKey) -> Option<CachedD...
2025-07-03T07:37:57
electron/electron
fceeb64e7c835868bec48442cfb4c7450bddf959
f03315ad4d16d0d066f7c3f8a35ab06d297fb440
fix: swipe event emission on macOS (#37946)
[ { "path": "shell/browser/ui/cocoa/electron_ns_window.mm", "patch": "@@ -25,7 +25,6 @@ - (NSImage*)_cornerMask;\n - (int64_t)_resizeDirectionForMouseLocation:(CGPoint)location;\n @end\n \n-#if IS_MAS_BUILD()\n // See components/remote_cocoa/app_shim/native_widget_mac_nswindow.mm\n @interface NSView (CRFrameV...
2023-04-13T09:28:22
facebook/react
1219d57fc9fcbf44c873c0b10e5acbd31f613c15
d29f7d973da616a02d6240ea10306a6f33e35ca1
[Fizz] Support aborting with Postpone (#28183) Semantically if you make your reason for aborting a Postpone instance the render should not hit the error pathways but should instead follow the postpone pathways. It's awkward today to actually get your hands on a Postpone instance because you have to catch the throw ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -7498,4 +7498,451 @@ describe('ReactDOMFizzServer', () => {\n </div>,\n );\n });\n+\n+ // @gate enablePostpone\n+ it('does not call onError when you abort with a postpone instance during prerender', async () ...
2024-02-01T15:14:08
nodejs/node
b32c7229d536cd0dfb967f297759991849481755
dca7bc5b1059a99a676b2cb7fddeb8052bba58c2
worker: allow copied NODE_OPTIONS in the env setting When the worker spawning code copies NODE_OPTIONS from process.env, previously we do a check again on the copied NODE_OPTIONS and throw if it contains per-process settings. This can be problematic if the end user starts the process with a NODE_OPTIONS and the worker...
[ { "path": "src/node_worker.cc", "patch": "@@ -549,12 +549,40 @@ void Worker::New(const FunctionCallbackInfo<Value>& args) {\n // [0] is expected to be the program name, add dummy string.\n env_argv.insert(env_argv.begin(), \"\");\n std::vector<std::string> invalid_args{};\n- options_p...
2024-07-05T18:40:03
golang/go
c0392e7e494c7e1fa7122df3cb5c1a30760ac5b4
69ea62fe95a14a04d6b2ba145aaf78e36f42e2eb
runtime: fix interactions between synctest, race detector, and timers When an AfterFunc executes in a synctest bubble, there is a series of happens-before relationships: 1. The AfterFunc is created. 2. The AfterFunc goroutine executes. 3. The AfterFunc goroutine returns. 4. A subsequent synctest.Wait call ret...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -455,28 +455,89 @@ func TestWaitGroup(t *testing.T) {\n }\n \n func TestHappensBefore(t *testing.T) {\n-\tvar v int\n+\t// Use two parallel goroutines accessing different vars to ensure that\n+\t// we correctly account for multiple goroutines ...
2025-03-17T20:48:50
electron/electron
f03315ad4d16d0d066f7c3f8a35ab06d297fb440
6f2ab392abb3b18f79c1287727e0fafa8ec94a73
docs: Fix the syntax error for code fragment (#37939) By using `app.on('ready').then(xxx)`, application will throw a TypeError
[ { "path": "docs/tutorial/tutorial-2-first-app.md", "patch": "@@ -274,7 +274,7 @@ calling `createWindow()` once its promise is fulfilled.\n You typically listen to Node.js events by using an emitter's `.on` function.\n \n ```diff\n-+ app.on('ready').then(() => {\n++ app.on('ready', () => {\n - app.whenReady(...
2023-04-13T08:00:27
vercel/next.js
289f5d55f3514b362e416a168341812a00b1c23b
ee1026494618291b62a23be57546dc41e17aff3e
Sync NFT test suite from upstream (#81189) Prompted by https://github.com/vercel/next.js/pull/81186 zeromq fails with: ``` 2025-07-02T18:18:18.6796394Z FAIL [ 2.187s] turbopack::node-file-trace node_file_trace_noop_backing_storage::case_109_zeromq Error: Failed to load zeromq.js addon.node: Error: EN...
[ { "path": "turbopack/crates/turbopack/tests/node-file-trace.rs", "patch": "@@ -60,6 +60,7 @@ static ALLOC: turbo_tasks_malloc::TurboMalloc = turbo_tasks_malloc::TurboMalloc;\n #[case::argon2(\"integration/argon2.js\")]\n #[case::auth0(\"integration/auth0.js\")]\n #[case::aws_sdk(\"integration/aws-sdk.js\")]...
2025-07-03T06:44:15
facebook/react
d29f7d973da616a02d6240ea10306a6f33e35ca1
f7ce4164c90990bd43b2671bf0b1db45e160fc15
Enable enableFilterEmptyStringAttributesDOM everywhere (#28125) ## Summary Stacked on [#28124](https://github.com/facebook/react/pull/28124) ([Diff against #28124](https://github.com/facebook/react/compare/eps1lon:fix/anchor-href-empty...eps1lon:feat/enableFilterEmptyStringAttributesDOM-canary)) Enables `enabl...
[ { "path": "packages/shared/forks/ReactFeatureFlags.native-fb.js", "patch": "@@ -64,7 +64,7 @@ export const enableUseEffectEventHook = false;\n export const enableClientRenderFallbackOnTextMismatch = true;\n export const enableComponentStackLocations = false;\n export const enableLegacyFBSupport = false;\n-e...
2024-01-31T16:23:21
nodejs/node
3f86bdd34e3538b4d8b29d41c8bc93f91f174b4e
88beb76e5c1b895a6758c19bdeba9ed80512253d
doc: fix releases guide for recent Git versions PR-URL: https://github.com/nodejs/node/pull/53709 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Beth Griggs <bethanyngriggs@gmail.com> Reviewed-By: Matteo Coll...
[ { "path": "doc/contributing/releases.md", "patch": "@@ -819,7 +819,7 @@ Git should stop to let you fix conflicts.\n Revert all changes that were made to `src/node_version.h`:\n \n ```bash\n-git checkout --ours HEAD -- src/node_version.h\n+git restore --source=upstream/main src/node_version.h\n ```\n \n <det...
2024-07-05T11:36:00
rust-lang/rust
5265ee063791eda960bcb3924f85a18184e2688b
0bf2d005fdf653d61c8bb0a447679afa494e3972
fix: refactored to use directives instead of `CHECK-DAG`
[ { "path": "src/tools/compiletest/src/directives/directive_names.rs", "patch": "@@ -218,6 +218,7 @@ pub(crate) const KNOWN_DIRECTIVE_NAMES: &[&str] = &[\n \"only-eabihf\",\n \"only-elf\",\n \"only-emscripten\",\n+ \"only-endian-big\",\n \"only-gnu\",\n \"only-i686-pc-windows-gnu\",\n ...
2026-02-08T04:53:25
golang/go
69ea62fe95a14a04d6b2ba145aaf78e36f42e2eb
c386ed107e65f495acb6aacb0efcaade27da6a15
Revert "cmd/compile/internal/abi: fix ComputePadding" This reverts CL 656736. Reason for revert: breaks many builders (all flavors of linux-amd64 builders). Change-Id: Ie7190d4078fada227391804c5cf10b9ce9cc9115 Reviewed-on: https://go-review.googlesource.com/c/go/+/659955 LUCI-TryBot-Result: Go LUCI <golang-scoped@lu...
[ { "path": "src/cmd/compile/internal/abi/abiutils.go", "patch": "@@ -673,9 +673,10 @@ func (pa *ABIParamAssignment) ComputePadding(storage []uint64) []uint64 {\n \t\tpanic(\"internal error\")\n \t}\n \toffsets, _ := appendParamOffsets([]int64{}, 0, pa.Type)\n+\toff := int64(0)\n \tfor idx, t := range types {...
2025-03-21T15:46:14
vercel/next.js
ee1026494618291b62a23be57546dc41e17aff3e
e358e301dc00e4d18e00da4bb80e53c9087af423
Turbopack: add `EcmascriptExports::Unknown` (#81214) Closes PACK-4881 Previously, you'd get both a `Parsing ecmascript source code failed` error and a `export Abc was not found in module` error if anything imported from the module with the parse error (because it had `EcmascriptExports::None` in that case).
[ { "path": ".prettierignore", "patch": "@@ -64,6 +64,7 @@ test/e2e/async-modules/amp-validator-wasm.js\n /turbopack/crates/next-transform-strip-page-exports/tests\n /turbopack/crates/next-transform-dynamic/tests\n /turbopack/crates/turbopack-tests/tests/execution/turbopack/basic/error/input/broken.js\n+/turb...
2025-07-03T06:36:36
electron/electron
908bef7ca983d553cba7ee82012823a50d30418a
c326b0068e34f2cfebd4b5a1b86de2114461df51
chore: bump chromium to 114.0.5708.0 (main) (#37834) * chore: bump chromium in DEPS to 114.0.5696.0 * chore: update patches * chore: revert clang revert (cherry picked from commit 4c3ffa8001b5fdbfc99374bf77895d8d8e35ee31) * test: remove unneeded test for title on ses.setCertificateVerifyProc This test i...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -524,6 +524,18 @@ step-fix-sync: &step-fix-sync\n mv .git/config.backup .git/config\n git fetch\n \n+step-fix-clang: &step-fix-clang\n+ run:\n+ name: Fix Clang on 32-bit Linux ARM\n+ command: |\n+ if [ \"$TARGET_ARCH\" == \"arm\" ];...
2023-04-12T11:37:48