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
964d0634cd5f8782cfbac145865c7e0f3f414b70
6f88000f0bce63bb447de2b6843883043347e84a
Fix: createRouterAct "reject" config (#81720) Fixes a problem with the internal `createRouterAct` testing helper where the `block: "reject"` option would not error correctly, leading to potential false negatives. I think I accidentally broke this when I added the ability to provide an array of expected responses.
[ { "path": "test/e2e/app-dir/segment-cache/router-act.ts", "patch": "@@ -72,6 +72,7 @@ export function createRouterAct(\n }\n \n let expectedResponses: Array<ExpectedResponseConfig> | null\n+ let forbiddenResponses: Array<ExpectedResponseConfig> | null = null\n let shouldBlockAll = false\n ...
2025-07-16T16:12:58
golang/go
0c15d88974e5bb4285d6cdf6ef125e1e4d438c6d
ef7724c4324f6bac40463a12e4fea43ff0b4a8e8
runtime: fix tag pointers on aix, take 2 Previous fix in CL 667715 wasn't correct for aix. Change-Id: I44042786079463967165507b15756cf24b9a213a Reviewed-on: https://go-review.googlesource.com/c/go/+/668036 Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam...
[ { "path": "src/runtime/tagptr_64bit.go", "patch": "@@ -66,6 +66,9 @@ func (tp taggedPointer) pointer() unsafe.Pointer {\n \t\t// val before unpacking.\n \t\treturn unsafe.Pointer(uintptr(int64(tp) >> tagBits << tagAlignBits))\n \t}\n+\tif GOOS == \"aix\" {\n+\t\treturn unsafe.Pointer(uintptr((tp >> tagBits ...
2025-04-25T17:09:44
facebook/react
98b8359f656ef714cc44828d7bfd2409ca16b9b3
aaa4acb1280fcda398defb805db47a8623df6c0f
[RN] Move unifiedSyncLane back to dynamic (#28430) This surfaced a bug because it wasn't on everywhere, moving back to dynamic while we investigate the bug
[ { "path": "packages/shared/forks/ReactFeatureFlags.native-fb-dynamic.js", "patch": "@@ -26,6 +26,7 @@ export const enableDeferRootSchedulingToMicrotask = __VARIANT__;\n export const enableUseRefAccessWarning = __VARIANT__;\n export const passChildrenWhenCloningPersistedNodes = __VARIANT__;\n export const us...
2024-02-23T15:31:01
rust-lang/rust
262cd76333b79fb85bb87f2846b3db79c82d2402
625b18027d4d8d9b2092cf3706b29a5812f76357
Optimize `SliceIndex<str>` for `RangeInclusive` Replace `self.end() == usize::MAX` and `self.end() + 1 > slice.len()` with `self.end() >= slice.len()`. Same reasoning as previous commit. Also consolidate the str panicking functions into function.
[ { "path": "library/alloctests/tests/str.rs", "patch": "@@ -630,13 +630,13 @@ mod slice_index {\n // note: using 0 specifically ensures that the result of overflowing is 0..0,\n // so that `get` doesn't simply return None for the wrong reason.\n bad: data...
2025-07-25T20:57:44
nodejs/node
5d6c76adee0407252b0785f4b08697e8dd6aea4e
acbd0be0da92cd5abe73a5c136e2d3c6537edc23
module: fix strip-types interaction with detect-module PR-URL: https://github.com/nodejs/node/pull/54164 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Revie...
[ { "path": "lib/internal/modules/esm/get_format.js", "patch": "@@ -164,7 +164,8 @@ function getFileProtocolModuleFormat(url, context = { __proto__: null }, ignoreE\n const { tsParse } = require('internal/modules/helpers');\n const parsedSource = tsParse(source);\n const detectedFormat...
2024-08-03T17:15:11
vercel/next.js
10ce117bdf5d702969fd81ec15d539be4dfa24cd
9088ece15f42ff5e11df5ef164fb307494a36e74
[test] Fix `app-static` deploy test (#81712)
[ { "path": "test/e2e/app-dir/app-static/app-static.test.ts", "patch": "@@ -2763,27 +2763,51 @@ describe('app-dir static/dynamic handling', () => {\n for (let i = 0; i < 6; i++) {\n await waitFor(1000)\n \n- const timings = {\n- start: Date.now(),\n- startedStreaming: 0,\n- }...
2025-07-16T16:02:53
golang/go
94c4cdc94869454eb25c725c5f4a92ff305ffa3b
591c4b50c0d8c61087c30261efd5e97668625e06
runtime: remove GODEBUG=runtimecontentionstacks Go 1.22 promised to remove the setting in a future release once the semantics of runtime-internal lock contention matched that of sync.Mutex. That work is done, remove the setting. Previously reviewed as https://go.dev/cl/585639. For #66999 Change-Id: I9fe62558ba0ac12...
[ { "path": "doc/godebug.md", "patch": "@@ -169,6 +169,9 @@ Go command will follow symlinks to regular files embedding files.\n The default value `embedfollowsymlinks=0` does not allow following\n symlinks. `embedfollowsymlinks=1` will allow following symlinks.\n \n+Go 1.25 corrected the semantics of contenti...
2025-04-29T21:39:11
facebook/react
aaa4acb1280fcda398defb805db47a8623df6c0f
25dbb3556ee9802c18f45c278abf3c33711237eb
Add `enableComponentStackLocations` to `ReactNativeInternalFeatureFlags` libdef (#28424) ## Summary Fixing something I accidentally broke this in https://github.com/facebook/react/commit/25dbb3556ee9802c18f45c278abf3c33711237eb. ## How did you test this change? Ran the following successfully: ``` $ yarn ...
[ { "path": "scripts/flow/xplat.js", "patch": "@@ -9,6 +9,7 @@\n \n declare module 'ReactNativeInternalFeatureFlags' {\n declare export var alwaysThrottleRetries: boolean;\n+ declare export var enableComponentStackLocations: boolean;\n declare export var enableDeferRootSchedulingToMicrotask: boolean;\n ...
2024-02-22T23:58:12
rust-lang/rust
f53eed56d2ae49064b79abd49e4f849d4f41edc3
7d8ebe3128fc87f3da1ad64240e63ccf07b8f0bd
Borrowck: simplify diagnostics for placeholders. This essentially folds the call to `region_from_element` into `RegionInferenceContext`, and simplifies the error variant for this case. It also clarifies the type information on the methods called to emphasise the fact that they only ever use placeholder regions in the ...
[ { "path": "compiler/rustc_borrowck/src/diagnostics/bound_region_errors.rs", "patch": "@@ -24,7 +24,6 @@ use rustc_traits::{type_op_ascribe_user_type_with_span, type_op_prove_predicate_\n use tracing::{debug, instrument};\n \n use crate::MirBorrowckCtxt;\n-use crate::region_infer::values::RegionElement;\n us...
2026-01-30T14:29:22
nodejs/node
358ff748ea52707bddde13787c18623d00c4175b
492032f34c1bf264eae01dc5cdfc77c8032b8552
lib,permission: support Buffer to permission.has PR-URL: https://github.com/nodejs/node/pull/54104 Fixes: https://github.com/nodejs/node/issues/54100 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "lib/fs.js", "patch": "@@ -1546,7 +1546,8 @@ function lstat(path, options = { bigint: false }, callback) {\n callback = makeStatsCallback(callback);\n path = getValidatedPath(path);\n if (permission.isEnabled() && !permission.has('fs.read', path)) {\n- callback(new ERR_ACCESS_DENIED('Acce...
2024-08-03T16:46:57
vercel/next.js
115eff7201191fcc1d2f10bbc4c69f5359897311
c3e6680bfd245d840d479ba3ba1d0b1a570a19b1
Turbopack: Support string without options for @next/mdx (#81713) ## What? Adds support for `remarkPlugins: ['remark-gfm']` and `rehypePlugins: ['rehype-slug']`. Previously you had to nest an array like `remarkPlugins: [['remark-gfm']]` but that's a bug, that case is only for passing options. Directly passing the str...
[ { "path": "docs/01-app/02-guides/mdx.mdx", "patch": "@@ -727,8 +727,18 @@ const nextConfig = {\n \n const withMDX = createMDX({\n options: {\n- remarkPlugins: [],\n- rehypePlugins: [['rehype-katex', { strict: true, throwOnError: true }]],\n+ remarkPlugins: [\n+ // Without options\n+ 're...
2025-07-16T15:05:23
facebook/react
07c2543e54f0e2ccd91908ec765683b47bc2f532
aaf85f3af8c30252edaab5c24975cd086937b2a4
Ignore /fixtures for dependabot (#28422) We'll keep these up to date out of band, they are just for testing and don't ship in the npm packages.
[ { "path": ".github/dependabot.yml", "patch": "@@ -0,0 +1,107 @@\n+version: 2\n+updates:\n+ - package-ecosystem: \"npm\"\n+ directory: \"/fixtures/art\"\n+ schedule:\n+ interval: \"weekly\"\n+ open-pull-requests-limit: 0\n+ - package-ecosystem: \"npm\"\n+ directory: \"/fixtures/attribute-b...
2024-02-22T20:44:37
nodejs/node
13ca021da3a00362c90ac85e0c93fcbf967187eb
1e3a3470a5d6b0f4137507fd7a66008a7020bf2d
doc: fix worker threadId/destination typo PR-URL: https://github.com/nodejs/node/pull/53933 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "doc/api/worker_threads.md", "patch": "@@ -260,7 +260,7 @@ added: v22.5.0\n \n > Stability: 1.1 - Active development\n \n-* `destination` {number} The target thread ID. If the thread ID is invalid, a\n+* `threadId` {number} The target thread ID. If the thread ID is invalid, a\n [`ERR_WORKER_MESS...
2024-08-02T10:45:49
golang/go
591c4b50c0d8c61087c30261efd5e97668625e06
4d0f955a5e2a7c3310f15983b643ff5bf5fc1351
runtime: verify attribution of mutex delay Have the test use the same clock (cputicks) as the profiler, and use the test's own measurements as hard bounds on the magnitude to expect in the profile. Compare the depiction of two users of the same lock: one where the critical section is fast, one where it is slow. Confi...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -40,6 +40,8 @@ var Atoi32 = atoi32\n var ParseByteCount = parseByteCount\n \n var Nanotime = nanotime\n+var Cputicks = cputicks\n+var CyclesPerSecond = pprof_cyclesPerSecond\n var NetpollBreak = netpollBreak\n var Usleep = usleep\n ", "additions": 2, ...
2024-05-16T22:48:36
electron/electron
a97028bacfba8c0416e02805897e89d1c013717c
cc7d724a3b85a858044916e5a4b61269610cab09
fix: Notification 'Show' button visible when no actions exist (#38997)
[ { "path": "shell/browser/notifications/mac/cocoa_notification.mm", "patch": "@@ -64,6 +64,11 @@\n options.reply_placeholder)];\n }\n \n+ // We need to explicitly set this to false if there are no\n+ // actions, otherwise a Show button will appear by default....
2023-07-06T19:50:08
vercel/next.js
a3f031d834af6da4640a6f33ab6fb86d87df442c
5608f19a4d4bcf202fbd7df8d5b7dd7d4e4f2b3f
fix: rootParams should throw in client when fallbackParams are not present (#81711) `rootParams` was erroring if used in a `'prerender-client'`, but only if we had `fallbackRouteParams`. this is an edge case, but it is technically possible to hit if our compiler checks for using `rootParams` in client code are bypasse...
[ { "path": "packages/next/src/server/app-render/work-unit-async-storage.external.ts", "patch": "@@ -78,12 +78,19 @@ export interface RequestStore extends CommonWorkUnitStore {\n * only needs to happen during the RSC prerender when we are prospectively prerendering\n * to fill all caches.\n */\n-export int...
2025-07-16T14:23:34
facebook/react
288cf747c96cea278a6ddce126ce7a0484678afd
d54b4cf303143b459c3caae54d14ae926a8ee09a
React DevTools 5.0.0 -> 5.0.1 (#28418) Full list of changes (not a public CHANGELOG): * feature[REMOVED][devtools]: turn off / hide location based component filters ([hoxyq](https://github.com/hoxyq) in [#28417](https://github.com/facebook/react/pull/28417)) * Add useSyncExternalStore and useTransition to getPri...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.0.0\",\n+ \"version\": \"5.0.1\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2024-02-22T19:45:55
nodejs/node
1fd170a7fc9275ba6e5ce77b0b1a51eda91a083b
7941b4b3330cd38e11180280cd8714d0d0906930
stream: throw TypeError when criteria fulfilled in getIterator PR-URL: https://github.com/nodejs/node/pull/53825 Fixes: https://github.com/nodejs/node/issues/53819 Refs: https://github.com/nodejs/node/issues/53819 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.co...
[ { "path": "lib/internal/webstreams/util.js", "patch": "@@ -18,6 +18,7 @@ const {\n \n const {\n codes: {\n+ ERR_ARG_NOT_ITERABLE,\n ERR_INVALID_ARG_VALUE,\n ERR_INVALID_STATE,\n ERR_OPERATION_FAILED,\n@@ -235,6 +236,11 @@ function getIterator(obj, kind = 'sync', method) {\n method = o...
2024-08-01T02:00:47
golang/go
4d0f955a5e2a7c3310f15983b643ff5bf5fc1351
bce8486ebec8b2f62f2305b2a17cc5aec8202507
runtime: blame unlocker for mutex delay Correct how the mutex contention profile reports on runtime-internal mutex values, to match sync.Mutex's semantics. Decide at the start of unlock2 whether we'd like to collect a contention sample. If so: Opt in to a slightly slower unlock path which avoids accidentally acceptin...
[ { "path": "src/runtime/lock_spinbit.go", "patch": "@@ -86,7 +86,8 @@ func key8(p *uintptr) *uint8 {\n // forming a singly-linked list with the mutex's key field pointing to the head\n // of the list.\n type mWaitList struct {\n-\tnext muintptr // next m waiting for lock\n+\tnext muintptr // next m wai...
2025-04-22T16:21:30
electron/electron
cc7d724a3b85a858044916e5a4b61269610cab09
c7a64ab994de826ed6e4c300cce75d9fd88efa20
fix: menu border being created properly on Windows 11 (#38998) * fix: menu border being created properly on Windows 11 * chore: update patches --------- Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
[ { "path": "patches/chromium/fix_crash_on_nativetheme_change_during_context_menu_close.patch", "patch": "@@ -15,7 +15,7 @@ This should be upstreamed, as other uses of MenuController in this\n file do check for menu controller being null.\n \n diff --git a/ui/views/controls/menu/menu_scroll_view_container.cc ...
2023-07-06T13:46:12
rust-lang/rust
337abba988bda85e1340d892e3c6a0c128ca9675
39a532445aeea34ad5ebcb4ec9512563be1a44c9
fix rustdoc test
[ { "path": "tests/rustdoc-html/type-layout.rs", "patch": "@@ -64,6 +64,12 @@ pub type GenericTypeAlias = (Generic<(u32, ())>, Generic<u32>);\n //@ hasraw type_layout/type.Edges.html 'Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, ...
2026-02-10T18:00:54
facebook/react
d54b4cf303143b459c3caae54d14ae926a8ee09a
d4cac3f96c01b4222f917a2e5a8ce85754f706f8
fix[devtools]: fixed Tree indentation logic after updating react-windows (#28421) Forward-fixing the indentation after landing https://github.com/facebook/react/pull/28408. Could potentially be related to `ref` changes in `react`, but haven't validated yet. Haven't occured while testing the previous PR, but repro...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/Tree.js", "patch": "@@ -538,7 +538,7 @@ function updateIndentationSizeVar(\n }\n \n // $FlowFixMe[missing-local-annot]\n-function InnerElementType({children, style, ...rest}) {\n+function InnerElementType({children, style}) {\n const ...
2024-02-22T19:18:30
vercel/next.js
43b64ccdb53eba5589a36b657aa9935dd2367750
7efeae3de8f1edee9a20f8e17a5306388b798b48
Ignore pending revalidations during prerendering (#81621) When reading a cache entry, we usually check its tags against the recently revalidated tags, and dismiss it, if it has any of those tags. However, this is only needed during dynamic requests, specifically during the rendering that follows a revalidating server ...
[ { "path": "packages/next/src/server/use-cache/use-cache-wrapper.ts", "patch": "@@ -1004,6 +1004,7 @@ export function cache(\n shouldDiscardCacheEntry(\n entry,\n workStore,\n+ workUnitStore,\n implicitTags,\n implicitTagsExpira...
2025-07-16T12:12:03
nodejs/node
49a9ba43cf913ee7484236be0e406129304f5cf0
f2126744525114557a817982aae9582124abe5d0
doc: expand troubleshooting section Update the troubleshooting section with regards to memory requirements and potential errors. This error specifically happened to me on an Ubuntu host with 2GB of RAM which wasn't enough and g++ error'ed during Node.js compilation step. PR-URL: https://github.com/nodejs/node/pull/53...
[ { "path": "BUILDING.md", "patch": "@@ -593,6 +593,11 @@ rebuild may take a lot more time than previous builds. Additionally,\n ran `./configure` with non-default options (such as `--debug`), you will need\n to run it again before invoking `make -j4`.\n \n+If you received the error `nodejs g++ fatal error co...
2024-07-31T09:42:02
golang/go
86101b083ad14bb0c6ca9c55d2869cba57760046
ab2a92dd84aa4d0e12e7a6ef929aee765dd2aa8d
runtime: print stack traces for bubbled goroutines on synctest deadlock When synctest.Run panics due to every goroutine in the bubble being blocked, print a stack trace for every goroutine in the bubble. For #67434 Change-Id: Ie751c2ee6fa136930b18f4bee0277ff30da46905 Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/runtime/panic.go", "patch": "@@ -1272,7 +1272,7 @@ func fatalthrow(t throwType) {\n \n \t\tstartpanic_m()\n \n-\t\tif dopanic_m(gp, pc, sp) {\n+\t\tif dopanic_m(gp, pc, sp, nil) {\n \t\t\t// crash uses a decent amount of nosplit stack and we're already\n \t\t\t// low on stack in throw, so cra...
2025-02-21T18:55:32
electron/electron
c7a64ab994de826ed6e4c300cce75d9fd88efa20
5a77c75753f560bbc4fe6560441ba88433a561f8
fix: webview crash when removing in close event (#38996)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1297,7 +1297,9 @@ void WebContents::CloseContents(content::WebContents* source) {\n for (ExtendedWebContentsObserver& observer : observers_)\n observer.OnCloseContents();\n \n- Destroy();\n+ // This is handled by the embedder ...
2023-07-06T08:20:34
rust-lang/rust
39a532445aeea34ad5ebcb4ec9512563be1a44c9
d4454e59d3021557aead4591dea0390bf9d8e68b
prevent incorrect layout error aliases may be rigid even if they don't reference params. If the alias isn't well-formed, trying to normalize it as part of the input should have already failed
[ { "path": "compiler/rustc_ty_utils/src/layout.rs", "patch": "@@ -764,14 +764,20 @@ fn layout_of_uncached<'tcx>(\n }\n \n ty::Alias(..) => {\n- // NOTE(eddyb) `layout_of` query should've normalized these away,\n- // if that was possible, so there's no reason to try again...
2026-02-10T18:00:42
facebook/react
d4cac3f96c01b4222f917a2e5a8ce85754f706f8
47beb96ccf1085fe048c4d79d1f762566166d94e
feature[REMOVED][devtools]: turn off / hide location based component filters (#28417) Following https://github.com/facebook/react/pull/28265, this should disable location-based component filters. ``` // Following __debugSource removal from Fiber, the new approach for finding the source location // of a component...
[ { "path": "packages/react-devtools-shared/src/backend/renderer.js", "patch": "@@ -36,6 +36,7 @@ import {\n renamePathInObject,\n setInObject,\n utfEncodeString,\n+ filterOutLocationComponentFilters,\n } from 'react-devtools-shared/src/utils';\n import {sessionStorageGetItem} from 'react-devtools-shar...
2024-02-22T16:59:29
vercel/next.js
08209b9bf46a05d625292b9c0d7150dd61a8c483
152dc29c9441efe12709d9addfcbf322cc053541
Improve error message for sync server functions (#81705) When a server action or `'use cache'` function is defined as a synchronous function, the error message now only marks the function name for better clarity. Previously, the entire function body was marked, which looks fine in small test fixtures, but is pretty me...
[ { "path": "crates/next-custom-transforms/src/transforms/server_actions.rs", "patch": "@@ -998,9 +998,14 @@ impl<C: Comments> VisitMut for ServerActions<C> {\n }\n \n if let Some(directive) = directive {\n+ let fn_name = self\n+ .fn_decl_ident\n+ .clon...
2025-07-16T11:33:20
nodejs/node
f9f9a421a8d3826ade3087a58c4c8535b8af62d0
4d1cc7618e3aa3578d6a5a612391a0df69e85a04
path: use the correct name in `validateString` The parameter was renamed from `ext` to `suffix` but not in the `validateString` call. PR-URL: https://github.com/nodejs/node/pull/53669 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Deokjin Kim <deokjin81.kim@g...
[ { "path": "lib/path.js", "patch": "@@ -775,7 +775,7 @@ const win32 = {\n */\n basename(path, suffix) {\n if (suffix !== undefined)\n- validateString(suffix, 'ext');\n+ validateString(suffix, 'suffix');\n validateString(path, 'path');\n let start = 0;\n let end = -1;\n@@ -1335,...
2024-07-30T14:59:47
golang/go
ab2a92dd84aa4d0e12e7a6ef929aee765dd2aa8d
17789bc8771ad2d36e374df65262c4ffd81c97c5
runtime: improve Error documentation The current Error documentation is vacuous and doesn't say anything about what this interface is actually for. Expand to include its meaning and why it might be used. Change-Id: I6a6a636cbd5f5788cb9d1a88845de16b98f7424b Reviewed-on: https://go-review.googlesource.com/c/go/+/670635...
[ { "path": "src/runtime/error.go", "patch": "@@ -10,14 +10,24 @@ import (\n \t\"internal/runtime/sys\"\n )\n \n-// The Error interface identifies a run time error.\n+// Error identifies a runtime error used in panic.\n+//\n+// The Go runtime triggers panics for a variety of cases, as described by the\n+// Go...
2025-05-07T18:00:37
facebook/react
47beb96ccf1085fe048c4d79d1f762566166d94e
404ed926588ec1cb7e9524d4dbb75b7297130adc
Add useSyncExternalStore and useTransition to getPrimitiveStackCache (#28399) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before sub...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -82,6 +82,13 @@ function getPrimitiveStackCache(): Map<string, Array<any>> {\n Dispatcher.useImperativeHandle(undefined, () => null);\n Dispatcher.useDebugValue(null);\n Dispatcher.useCallback(() => {});\n+ Di...
2024-02-22T11:42:52
electron/electron
3fa15ebb7e8aef2029cd23370fdc96f382c9d161
52fe76ca28286400ab61927b2b4e937c52ae9ab5
fix: use Chromium's way to compute min/max sizes (#38974)
[ { "path": "patches/chromium/.patches", "patch": "@@ -129,5 +129,4 @@ chore_patch_out_profile_methods_in_titlebar_config.patch\n fix_crash_on_nativetheme_change_during_context_menu_close.patch\n fix_select_the_first_menu_item_when_opened_via_keyboard.patch\n fix_return_v8_value_from_localframe_requestexecute...
2023-07-05T15:02:05
vercel/next.js
af74b4a36f32d3037d002570800e75217e2199b4
d8fdb6ffa85269a9696ca905a5ee39d8ae737701
Include `use-cache` test suite in the Cache Components tests (#81610) We're splitting the test app routes between two root layouts, one for (partially) static pages that does not wrap its children in a Suspense boundary, and one for dynamic pages that adds a Suspense boundary above `body`, which opts those pages into ...
[ { "path": "test/cache-components-tests-manifest.json", "patch": "@@ -27,6 +27,12 @@\n \"searchparams-reuse-loading should re-use loading from \\\"full\\\" prefetch for param-less URL when navigating to param-full route\"\n ]\n },\n+ \"test/e2e/app-dir/use-cache/use-cache.test.ts\": {\n+...
2025-07-16T11:05:25
nodejs/node
7485ad817a5801c479b26a2deafdfee6ae1cc5b0
027710e408bbf6c276678a8908ed82b202619b70
crypto: include NODE_EXTRA_CA_CERTS in all secure contexts by default Store loaded NODE_EXTRA_CA_CERTS into root_certs_vector, allowing them to be added to secure contexts when NewRootCertStore() is called, rather than losing them when unrelated options are provided. When NODE_EXTRA_CA_CERTS is specified, the root ce...
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -52,7 +52,7 @@ static const char* const root_certs[] = {\n \n static const char system_cert_path[] = NODE_OPENSSL_SYSTEM_CERT_PATH;\n \n-static bool extra_root_certs_loaded = false;\n+static std::string extra_root_certs_file; // NOLINT(runtime/string)\...
2022-09-05T16:16:50
golang/go
0028532118eed355d0ac6337c63b01219cdc4c17
6681ff9c9e7805fab9e0dcb767f4807af03dbbbd
unique: use a bespoke canonicalization map and runtime.AddCleanup This change moves the unique package away from using a concurrent map and instead toward a bespoke concurrent canonicalization map. The map holds all its keys weakly, though keys may be looked up by value. The result is the strong pointer for the canoni...
[ { "path": "src/runtime/mfinal.go", "patch": "@@ -324,7 +324,7 @@ func isGoPointerWithoutSpan(p unsafe.Pointer) bool {\n // blockUntilEmptyFinalizerQueue blocks until either the finalizer\n // queue is emptied (and the finalizers have executed) or the timeout\n // is reached. Returns true if the finalizer qu...
2025-02-18T03:19:06
electron/electron
e991c1868e301fab1fa9c160cc1317a47a468e8c
ccd4531bfb9d14c54de70a10a5d6f35f72db3abb
docs: fix misleading code sample for handling deeplinks on Linux (#38862) Fix misleading docs for handling deeplinks in Linux
[ { "path": "docs/tutorial/launch-app-from-url-in-another-app.md", "patch": "@@ -63,9 +63,9 @@ const createWindow = () => {\n \n In this next step, we will create our `BrowserWindow` and tell our application how to handle an event in which an external protocol is clicked.\n \n-This code will be different in ...
2023-07-03T08:30:45
vercel/next.js
386afcd423999915958c237f6c4532f150463b18
01e1854f2a4334fb830c132bfeab85872ad61ddf
docs: Update redirects i18n documentation for App Router (#81347) ### What? Updated the documentation to clarify that App Router requires manual locale handling through dynamic route segments and middleware, with examples showing how to implement i18n redirects correctly. ### Why? The App Router doesn't use the i18n ...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/redirects.mdx", "patch": "@@ -250,16 +250,49 @@ module.exports = {\n \n <AppOnly>\n \n-When leveraging [`i18n` support](/docs/app/guides/internationalization) with redirects each `source` and `destination` is automatically prefixed to handl...
2025-07-16T07:22:07
nodejs/node
890760b8e580f1d5bc1ac3a97c31eaae0c62bb32
3c50297e9e68553c4ee31e7f3fd677c8360a11f0
console: fix issues with frozen intrinsics PR-URL: https://github.com/nodejs/node/pull/54070 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "lib/internal/console/constructor.js", "patch": "@@ -78,7 +78,6 @@ function lazyUtilColors() {\n }\n \n // Track amount of indentation required via `console.group()`.\n-const kGroupIndent = Symbol('kGroupIndent');\n const kGroupIndentationWidth = Symbol('kGroupIndentWidth');\n const kFormatForStde...
2024-07-30T04:38:21
facebook/react
404ed926588ec1cb7e9524d4dbb75b7297130adc
81d2a51a97ca8ea7cfbce885ecab070a668732ab
chore[devtools]: use react-window from npm and bump react-virtualized-auto-sizer to ^1.0.23 (#28408) 1. Bumps `react-virtualized-auto-sizer` to 1.0.23, which has a fix for cases with multiple realms - https://github.com/bvaughn/react-virtualized-auto-sizer/pull/82 2. Removes `react-window` from react-devtools-share...
[ { "path": "packages/react-devtools-shared/package.json", "patch": "@@ -23,6 +23,7 @@\n \"local-storage-fallback\": \"^4.1.1\",\n \"lodash.throttle\": \"^4.1.1\",\n \"memoize-one\": \"^3.1.1\",\n- \"react-virtualized-auto-sizer\": \"^1.0.6\"\n+ \"react-virtualized-auto-sizer\": \"^1.0.23\",...
2024-02-22T11:31:10
vercel/next.js
8b7f4c50d19ccfce10837f6ca5a0e952e8ae57e0
d884398da6c55f662115cd1b3ff19e72fb6bb8d5
Update NextAdapter type and re-export (#81692) Just fixes up the type and re-exports it so it can be imported directly from `next`. Also fixes test file not being type checked which didn't catch missing optional fields.
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -51,10 +51,10 @@ export type AdapterOutputs = Array<{\n \n export interface NextAdapter {\n name: string\n- modifyConfig(\n+ modifyConfig?: (\n config: NextConfigComplete\n- ): Promise<NextConfigComplete> | NextConfigComplete\n- o...
2025-07-15T23:51:16
nodejs/node
d7941b24ae6d3e647b0b1e9e543a01ad370b1a08
cf9a8140aa3ca61e614dfa18efbb87499bd5d40f
test: do not swallow uncaughtException errors in exit code tests PR-URL: https://github.com/nodejs/node/pull/54039 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/common/process-exit-code-cases.js", "patch": "@@ -62,23 +62,25 @@ function getTestCases(isWorker = false) {\n cases.push({ func: changeCodeInsideExit, result: 99 });\n \n function zeroExitWithUncaughtHandler() {\n+ const noop = () => { };\n process.on('exit', (code) => {\n- a...
2024-07-25T10:42:11
rust-lang/rust
e20a44db783650a5d0d43a430810f9d12c2c890e
4c9bb23107dfd035bff8a68f3eff0653670f2efb
Fix typos and capitalization across documentation - Fix "Github" → "GitHub" capitalization throughout (about.md, git.md, about-this-guide.md, debugging-support-in-rustc.md, and all notification-groups files) - Fix "its self" → "itself" (macro-expansion.md, what-bootstrapping-does.md) - Fix "MIRI" → "Miri" (overvie...
[ { "path": "src/doc/rustc-dev-guide/src/about-this-guide.md", "patch": "@@ -10,7 +10,7 @@ There are several parts to this guide:\n about building, debugging, profiling, etc.\n 1. [Contributing to Rust][p2]:\n Contains information that should be useful no matter how you are contributing,\n- about proc...
2026-02-10T16:35:43
facebook/react
81d2a51a97ca8ea7cfbce885ecab070a668732ab
59fe6c3ac1d52e4e568be52b908905b8898a4777
Add smoke test for flight fixture (#28350)
[ { "path": ".circleci/config.yml", "patch": "@@ -236,6 +236,53 @@ jobs:\n RELEASE_CHANNEL: experimental\n command: ./scripts/circleci/run_devtools_e2e_tests.js\n \n+ run_fixtures_flight_tests:\n+ docker:\n+ - image: cimg/openjdk:20.0-node\n+ environment: *environment\n+ s...
2024-02-21T22:47:36
electron/electron
ccd4531bfb9d14c54de70a10a5d6f35f72db3abb
499d893040b5590bf88bd7f3d4e3685d1e95a272
chore: bump chromium to 117.0.5852.0 (main) (#38891) * chore: bump chromium in DEPS to 117.0.5846.0 * chore: update patches * 4628901: Bump the macOS deployment target to 10.15 https://chromium-review.googlesource.com/c/chromium/src/+/4628901 * 4593350: [Private Network Access] Trigger Permission Prompt ...
[ { "path": "BUILD.gn", "patch": "@@ -37,7 +37,7 @@ if (is_mac) {\n import(\"build/rules.gni\")\n \n assert(\n- mac_deployment_target == \"10.13\",\n+ mac_deployment_target == \"10.15\",\n \"Chromium has updated the mac_deployment_target, please update this assert, update the supported ver...
2023-07-01T20:22:55
vercel/next.js
d884398da6c55f662115cd1b3ff19e72fb6bb8d5
2b3728f901a5a189fc09f23353b5c94747739049
feat(build): optimize filterUniqueParamsCombinations to generate sub-combinations (#81321) ### What? Optimizes the `generateParamPrefixCombinations` function (previously `filterUniqueRootParamsCombinations`) to generate all unique sub-combinations of route parameters while ensuring partial shells include complete set...
[ { "path": "packages/next/errors.json", "patch": "@@ -719,5 +719,6 @@\n \"718\": \"Invariant: projectDir is required for node runtime\",\n \"719\": \"Failed to get source map for '%s'. This is a bug in Next.js\",\n \"720\": \"A client prerender store should not be used for a route handler.\",\n- \"721...
2025-07-15T23:32:31
nodejs/node
cf9a8140aa3ca61e614dfa18efbb87499bd5d40f
c40c41c285274314d10ff8f3e3f8717e12f099d8
module: fix extensionless typescript in cjs loader PR-URL: https://github.com/nodejs/node/pull/54062 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Jam...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -653,9 +653,13 @@ function getDefaultExtensions() {\n let extensions = ObjectKeys(Module._extensions);\n const tsEnabled = getOptionValue('--experimental-strip-types');\n if (tsEnabled) {\n+ // remove .ts and .cts from the default extensi...
2024-07-29T19:43:28
facebook/react
c0274063f0d625d6e17e82f3436f4a0b78b7e58f
9a5b6bd84ffa69bfd8b2859ce23e56d17daa8c40
[Flight] Prefix Replayed Console Logs with a Badge (#28403) Builds on top of #28384. This prefixes each log with a badge similar to how we badge built-ins like "ForwardRef" and "Memo" in the React DevTools. The idea is that we can add such badges in DevTools for Server Components too to carry on the consistency....
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -50,6 +50,7 @@ import {\n readFinalStringChunk,\n createStringDecoder,\n prepareDestinationForModule,\n+ printToConsole,\n } from './ReactFlightClientConfig';\n \n import {registerServerReference} from './ReactFlightReplyClient'...
2024-02-21T19:59:08
electron/electron
499d893040b5590bf88bd7f3d4e3685d1e95a272
607e71d563377b64bc0cb3d127f73dafe83c4df2
feat: add support for keyboard initialized menu popup (#38903) * feat: add support for keyboard initialized menu popup * Update docs/api/menu.md Co-authored-by: Erick Zhao <erick@hotmail.ca> * fix: add patch to chromium for keyboard accessibility menu behavior * refactor: s/initiatedByKeyboard/sourceType ...
[ { "path": "docs/api/menu.md", "patch": "@@ -80,6 +80,10 @@ The `menu` object has the following instance methods:\n * `positioningItem` number (optional) _macOS_ - The index of the menu item to\n be positioned under the mouse cursor at the specified coordinates. Default\n is -1.\n+ * `sourceType` ...
2023-06-29T22:54:06
golang/go
66ea0ee409df5a025296d7dac8bb3dc1ec0d2b90
d365f2266df98985f19705717ff8cf4ad3e743dc
spec: avoid use of "raise" in conjunction with panics For #73526 Change-Id: I06d8ae9080695745db68a51635faa0b244c1760e Reviewed-on: https://go-review.googlesource.com/c/go/+/670155 Reviewed-by: Robert Griesemer <gri@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> R...
[ { "path": "doc/go_spec.html", "patch": "@@ -7894,7 +7894,7 @@ <h3 id=\"Handling_panics\">Handling panics</h3>\n <p>\n The <code>protect</code> function in the example below invokes\n the function argument <code>g</code> and protects callers from\n-run-time panics raised by <code>g</code>.\n+run-time panics ...
2025-05-05T20:39:11
vercel/next.js
43b4364f7cbf1b9578a0b2cf4676a7e7de282d98
8659d47c0995f004550c9e521dd4e180b5c23f45
Turbopack: Generalize `ImportedBinding` effect creation to avoid as much special-casing of SimpleAssignTarget (#81653) There was some logic here that checked for the existence of `SimpleAssignTarget`, and using that to bail out of `visit_ident`. That doesn't scale well to pattern assignments, but it turns out that we ...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs", "patch": "@@ -1312,6 +1312,14 @@ impl Analyzer<'_> {\n }\n \n impl VisitAstPath for Analyzer<'_> {\n+ fn visit_import_specifier<'ast: 'r, 'r>(\n+ &mut self,\n+ _import_specifier: &'ast ImportSpecifier,\n+ _ast_p...
2025-07-15T23:00:32
nodejs/node
be7a0c578026dda29a1c9e76d5a0e04b71f25601
269175b2b45dc16dd515509c6d8638de4ce044c5
module: do not warn for typeless package.json when there isn't one It was intended that warnings should only be emitted for an existing package.json without a type. This fixes a confusing warning telling users to update /package.json when there are no package.json on the lookup path at all, like this: [MODULE_TYPELES...
[ { "path": "lib/internal/modules/esm/get_format.js", "patch": "@@ -92,8 +92,9 @@ let typelessPackageJsonFilesWarnedAbout;\n function warnTypelessPackageJsonFile(pjsonPath, url) {\n typelessPackageJsonFilesWarnedAbout ??= new SafeSet();\n if (!typelessPackageJsonFilesWarnedAbout.has(pjsonPath)) {\n- co...
2024-07-29T17:46:41
rust-lang/rust
da80677d6a84c1a3ea3e22785392c91ccae6a69b
f21b4c0888ca6a388fcf9365fc0044fa0642ab98
Fix typos and grammar in top-level and src/doc documentation - CONTRIBUTING.md: add missing verb "is" - INSTALL.md: fix subject-verb agreement ("requires" → "require") - RELEASES.md: fix 4 issues (previous → previously, remove extra "is", add hyphen in Rust-for-Linux, results → result) - src/doc/not_found.md: fix mi...
[ { "path": "CONTRIBUTING.md", "patch": "@@ -10,7 +10,7 @@ the Zulip stream is the best place to *ask* for help.\n \n Documentation for contributing to the compiler or tooling is located in the [Guide to Rustc\n Development][rustc-dev-guide], commonly known as the [rustc-dev-guide]. Documentation for the\n-st...
2026-02-10T15:22:19
facebook/react
9a5b6bd84ffa69bfd8b2859ce23e56d17daa8c40
41b3c31bcbe9f238697b4c79b39017916e0f131c
[Flight] Instrument the Console in the RSC Environment and Replay Logs on the Client (#28384) When developing in an RSC environment, you should be able to work in a single environment as if it was a unified environment. With thrown errors we already serialize them and then rethrow them on the client. Since by def...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -670,6 +670,10 @@ function parseModelString(\n }\n case '@': {\n // Promise\n+ if (value.length === 2) {\n+ // Infinite promise that never resolves.\n+ return new Promise(() => {});\n+ ...
2024-02-21T19:47:55
electron/electron
09669f9d215ceb96d7f02f9085d7906e27c2b301
ff6d0df2d534efe1aa8d466e1ea75333290cb0dc
fix: child window may have opener removed (#38910)
[ { "path": "shell/renderer/electron_render_frame_observer.cc", "patch": "@@ -63,7 +63,7 @@ void ElectronRenderFrameObserver::DidClearWindowObject() {\n // Check DidInstallConditionalFeatures below for the background.\n auto* web_frame =\n static_cast<blink::WebLocalFrameImpl*>(render_frame_->GetWeb...
2023-06-26T21:04:54
golang/go
d365f2266df98985f19705717ff8cf4ad3e743dc
92e23b683f01fe581a0e14b5658f0c59d9ce0d38
runtime: replace mentions of "raised" with "panicked" Fixes #73526 Change-Id: I4b801cf3e54b99559e6d5ca8fdb2fd0692a0d3a5 Reviewed-on: https://go-review.googlesource.com/c/go/+/669975 TryBot-Bypass: Mark Freeman <mark@golang.org> Reviewed-by: Robert Griesemer <gri@google.com> Auto-Submit: Mark Freeman <mark@golang.org>...
[ { "path": "doc/next/4-runtime.md", "patch": "@@ -3,19 +3,19 @@\n <!-- go.dev/issue/71517 -->\n \n The message printed when a program exits due to an unhandled panic\n-that was recovered and re-raised no longer repeats the text of\n+that was recovered and repanicked no longer repeats the text of\n the panic ...
2025-05-05T16:33:46
vercel/next.js
d0ea7129747a045450c646cc0e4ea4f84348bd32
e210360bb9d66870f69d35512a3d317cb68147ec
fix patch-next by adding missing script (#81430) The `patch-next.cjs` script is failing because two of its dependencies, `pack-util` and `build-native`, are missing their CommonJS versions, which are required for compatibility with the current Node.js environment. To fix this, i added the transpiled `pack-util.js` and...
[ { "path": "package.json", "patch": "@@ -70,7 +70,7 @@\n \"prepare\": \"husky\",\n \"sync-react\": \"node ./scripts/sync-react.js\",\n \"update-google-fonts\": \"node ./scripts/update-google-fonts.js\",\n- \"patch-next\": \"node scripts/patch-next.cjs\",\n+ \"patch-next\": \"tsx scripts/pat...
2025-07-15T22:15:05
nodejs/node
7480a903f4255dce3606d3d2bea10b4f0475de9b
6ad25e37b570124d82e6cb25e237592c9b927ec4
doc: fix typo in technical-priorities.md added a space between the two words. PR-URL: https://github.com/nodejs/node/pull/54094 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "doc/contributing/technical-priorities.md", "patch": "@@ -130,7 +130,7 @@ the expansion of where/when Node.js is used in building solutions.\n ## Serverless\n \n Serverless is a cloud computing model where the cloud provider manages the\n-underlyinginfrastructure and automatically allocates resour...
2024-07-29T10:42:33
rust-lang/rust
11e4873b96961d14202a8c63d83a21be5b7f7b82
f21b4c0888ca6a388fcf9365fc0044fa0642ab98
Fix typos and grammar in compiler and build documentation - compiler/rustc_codegen_llvm/src/debuginfo/doc.md: fix 5 issues (adaption → adaptation, "allow to" → "allow V-ing" x3, later → latter + plural) - compiler/rustc_thread_pool/src/sleep/README.md: fix 2 issues (idle → active per context, then → than) - src/bo...
[ { "path": "compiler/rustc_codegen_llvm/src/debuginfo/doc.md", "patch": "@@ -16,7 +16,7 @@ module to generate correct metadata and insert it into the LLVM IR.\n As the exact format of metadata trees may change between different LLVM\n versions, we now use LLVM\n [DIBuilder](https://llvm.org/docs/doxygen/html...
2026-02-10T15:22:05
electron/electron
327af3b03ccdb435d25b94c74d1c74552564ab21
ef6569b7d3b0dfb8c7dc33b109b573bf7eb55184
chore: bump node to v18.16.1 (main) (#38869) * chore: bump node in DEPS to v18.16.1 * chore: update patches * deps: update c-ares to 1.19.1 https://github.com/nodejs/node/pull/48115 * chore: fix -Wunreachable-code,-Werror FTBFS in c-ares * chore: disable x509 bssl test new test added in bf3e2c892 ...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '116.0.5845.0',\n 'node_version':\n- 'v18.16.0',\n+ 'v18.16.1',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2023-06-26T16:03:30
facebook/react
5fb2c93f3924ba980444da5698f60651b5ef0689
ec160f32c28ccab798c73ecccbb36ce121e1640e
Combine createElement and JSX modules (#28320) Depends on: - #28317 --- There's a ton of overlap between the createElement implementation and the JSX implementation, so I combined them into a single module. In the actual build output, the shared code between JSX and createElement will get duplicated any...
[ { "path": "packages/react-devtools-shared/src/__tests__/utils-test.js", "patch": "@@ -23,7 +23,7 @@ import {\n REACT_SUSPENSE_LIST_TYPE as SuspenseList,\n REACT_STRICT_MODE_TYPE as StrictMode,\n } from 'shared/ReactSymbols';\n-import {createElement} from 'react/src/ReactElement';\n+import {createElement...
2024-02-20T03:45:18
vercel/next.js
3c2a1959047f668dfffcd6344aeaa4acb531eccf
1a0c4d089739800c34f825c85d27bf79741f7c0b
Also enforce experimental features when there's no next config file (#81679) When running `next build --debug-prerender`, we also want to set the experimental features even if there is no next.config.js file present. This PR also fixes the `cloneObject` function to better handle nested optional object properties, a...
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -1283,7 +1283,7 @@ export interface NextConfig extends Record<string, any> {\n htmlLimitedBots?: RegExp\n }\n \n-export const defaultConfig = {\n+export const defaultConfig = Object.freeze({\n env: {},\n webpack: null,\n eslint: {\n...
2025-07-15T20:25:32
rust-lang/rust
78dc744e93028188c66d92dc2064b2107dd9992c
f21b4c0888ca6a388fcf9365fc0044fa0642ab98
unwind/wasm: fix compile error by wrapping wasm_throw in unsafe block
[ { "path": "library/unwind/src/wasm.rs", "patch": "@@ -73,7 +73,7 @@ pub unsafe fn _Unwind_RaiseException(exception: *mut _Unwind_Exception) -> _Unwi\n // corresponds with llvm::WebAssembly::Tag::CPP_EXCEPTION\n // in llvm-project/llvm/include/llvm/CodeGen/WasmEHFuncInfo.h\n ...
2026-02-10T13:20:02
nodejs/node
6ad25e37b570124d82e6cb25e237592c9b927ec4
5210cd860ac0d4497c823815c01ff49215062fd8
doc: fix typo in diagnostic tooling support tiers document PR-URL: https://github.com/nodejs/node/pull/54058 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By:...
[ { "path": "doc/contributing/diagnostic-tooling-support-tiers.md", "patch": "@@ -26,7 +26,7 @@ the following tiers.\n organization or website;\n * The tool must be working on all supported platforms;\n * The tool must only be using APIs exposed by Node.js as opposed to\n- its dependencies; and\n+ ...
2024-07-29T06:36:41
golang/go
92e23b683f01fe581a0e14b5658f0c59d9ce0d38
30b2b767d6d902787b90476fd00eee4c9b3a3f15
os: avoid escape from Root via paths ending in ../ The doInRoot function operates on a path split into components. The final path component retained any trailing path separator characters, to permit operations in a Root to retain the trailing-separator behavior of non-Root operations. However, doInRoot failed to take ...
[ { "path": "src/os/root.go", "patch": "@@ -254,20 +254,20 @@ func (r *Root) logStat(name string) {\n //\n // \".\" components are removed, except in the last component.\n //\n-// Path separators following the last component are preserved.\n-func splitPathInRoot(s string, prefix, suffix []string) (_ []string,...
2025-04-16T18:01:19
facebook/react
2e84e1629924e6cb278638305fa92040f6ef6eb5
65a0e2b25ec4642f83c32d7599b5252c3955a60b
[Flight] Better error message if you pass a function as a child to a client component (#28367) Similar to #28362 but if you pass it to a client component.
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -689,7 +689,7 @@ describe('ReactFlight', () => {\n );\n }\n function FunctionProp() {\n- return <div>{() => {}}</div>;\n+ return <div>{function fn() {}}</div>;\n }\n function SymbolProp() {\n ...
2024-02-19T17:36:16
electron/electron
395b608dd56d78155700cab3d4f75250e4d32eb4
1eb19f3078b46227eb773ec417808971de0b478a
refactor: more constexpr lookup tables (#38886) * refactor: use constexpr lookup table in electron_api_web_contents.cc * refactor: make KeyboardCodeFromStr() private it is only used as a helper to KeyboardCodeFromStr() * chore: savepoint * chore: make lint happy * fixup! refactor: make KeyboardCodeFromS...
[ { "path": "shell/browser/api/electron_api_tray.cc", "patch": "@@ -6,6 +6,7 @@\n \n #include <string>\n \n+#include \"base/containers/fixed_flat_map.h\"\n #include \"gin/dictionary.h\"\n #include \"gin/object_template_builder.h\"\n #include \"shell/browser/api/electron_api_menu.h\"\n@@ -29,27 +30,16 @@ struc...
2023-06-22T12:33:44
vercel/next.js
c432d07a595b5edbd6d2ce6c50a065e7115e1622
a0d15704e1c7f5571c1435bf9536592b33690cbd
Fix before interactive incorrectly render css (#81146) Fixing a bug - Related issues linked using fixes #81130 - Tests added. See: https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs - Errors have a helpful link attached, see https://github.com/vercel/next.js/blob/can...
[ { "path": "packages/next/src/client/app-bootstrap.ts", "patch": "@@ -5,6 +5,8 @@\n * - next/script with `beforeInteractive` strategy\n */\n \n+import { setAttributesFromProps } from './set-attributes-from-props'\n+\n const version = process.env.__NEXT_VERSION\n \n window.next = {\n@@ -27,11 +29,7 @@ funct...
2025-07-15T19:29:26
nodejs/node
5210cd860ac0d4497c823815c01ff49215062fd8
01cf9bccdfa7fb31a8a1d91ae45e594a730e0427
typings: fix typo on quic onSessionDatagram PR-URL: https://github.com/nodejs/node/pull/54064 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> R...
[ { "path": "typings/internalBinding/quic.d.ts", "patch": "@@ -2,7 +2,7 @@ interface QuicCallbacks {\n onEndpointClose: (context: number, status: number) => void;\n onSessionNew: (session: Session) => void;\n onSessionClose: (type: number, code: bigint, reason?: string) => void;\n- onSessionDatagram: (...
2024-07-29T04:52:07
golang/go
5e7f0b947c3907bd23a13864c3fea2b204f11567
044ca4e5c878c785e2c69e5ebcb3d44bf97abc9f
go/types, types2: set up recording of positions for declarations This creates the infrastructure needed to record compiler panics induced somewhere beneath a declaration. For now, this is turned off via a flag. This does not yet use the position information for better error messages. That is moved off to a separate C...
[ { "path": "src/cmd/compile/internal/types2/check.go", "patch": "@@ -20,6 +20,9 @@ var nopos syntax.Pos\n // debugging/development support\n const debug = false // leave on during development\n \n+// position tracing for panics during type checking\n+const tracePos = false // TODO(markfreeman): check perform...
2025-04-10T15:27:29
facebook/react
017397d7d33f151f2c2a9936c4b130fded68d08b
9444c51c7e44936c24e1f44db905cfd45c51cff3
Recover from SSR error in Flight fixture (#28368) If an error happens before the shell, we need to handle it. In this case we choose the strategy of rendering a blank document and client rendering the app. Which will intentionally have a hydration mismatch.
[ { "path": "fixtures/flight/server/global.js", "patch": "@@ -174,8 +174,19 @@ app.all('/', async function (req, res, next) {\n const {pipe} = renderToPipeableStream(React.createElement(Root), {\n bootstrapScripts: mainJSChunks,\n formState: formState,\n+ onShellReady() {\n+ ...
2024-02-19T16:50:04
vercel/next.js
5a7cec1e570d73699a7e6c31790b46eb5c1706d6
16011fe88a09eff4914682a9d535bc50e2b692da
fix(router): Prevent redirect loop on root data requests with basePath (#81096) Fixes #64910 This PR resolves an issue where a client-side navigation to the root page fails when both `basePath` and `middleware` are active. This is caused by an incorrect redirect loop on the `/_next/data` request. The sequence of eve...
[ { "path": "packages/next/src/server/lib/router-utils/resolve-routes.ts", "patch": "@@ -423,7 +423,10 @@ export function getResolveRoutes(\n // base path.\n if (updated) {\n if (hadBasePath) {\n- normalized = path.posix.join(config.basePath, normalized)\n+...
2025-07-15T17:36:54
electron/electron
1eb19f3078b46227eb773ec417808971de0b478a
a00a25376d339ba78c4a1efbae2de05fd534332e
chore: bump chromium to 116.0.5845.0 (main) (#38827) * chore: bump chromium in DEPS to 116.0.5835.0 * chore: update patches * chore: bump chromium in DEPS to 116.0.5837.0 * chore: bump chromium in DEPS to 116.0.5839.0 * chore: bump chromium in DEPS to 116.0.5841.0 * chore: bump chromium in DEPS to 116.0...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '116.0.5833.0',\n+ '116.0.5845.0',\n 'node_version':\n 'v18.16.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2023-06-22T08:51:15
nodejs/node
01cf9bccdfa7fb31a8a1d91ae45e594a730e0427
5ac969fdcaaf4fa232a1ac6ff976b4ff5cdae0d8
lib: support dynamic trace events on debugWithTimer PR-URL: https://github.com/nodejs/node/pull/53913 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "lib/internal/util/debuglog.js", "patch": "@@ -20,7 +20,7 @@ const {\n CHAR_LOWERCASE_N: kTraceInstant,\n } = require('internal/constants');\n const { inspect, format, formatWithOptions } = require('internal/util/inspect');\n-const { isTraceCategoryEnabled, trace } = internalBinding('trace_event...
2024-07-28T17:20:38
golang/go
044ca4e5c878c785e2c69e5ebcb3d44bf97abc9f
35b4fd9f373cbe13778eb259a19c496c9c613a1f
log/slog: export Source method in Record for custom handler support Currently, the `source` method in `slog.Record` is not accessible to custom handlers, requiring developers to re-implement logic for retrieving source location information. This commit exports the `source` method as `Source`, enabling consistent acces...
[ { "path": "api/next/70280.txt", "patch": "@@ -0,0 +1 @@\n+pkg log/slog, method (Record) Source() *Source #70280", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/log/slog/70280.md", "patch": "@@ -0,0 +1 @@\n+[Record] now has a Source(...
2025-05-04T04:30:25
facebook/react
9444c51c7e44936c24e1f44db905cfd45c51cff3
c323f8290c2336713b62c69322bb30ed63234c24
[Flight] Allow a Server Reference to be registered twice (#28343) It's possible for the same function instance to appear more than once in the same graph or even the same file. Currently this errors on trying to reconfigure the property but it really doesn't matter which one wins. First or last. Regardless the...
[ { "path": "packages/react-server-dom-esm/src/ReactFlightESMReferences.js", "patch": "@@ -70,8 +70,8 @@ export function registerServerReference<T: Function>(\n ): ServerReference<T> {\n return Object.defineProperties((reference: any), {\n $$typeof: {value: SERVER_REFERENCE_TAG},\n- $$id: {value: id ...
2024-02-19T16:49:38
vercel/next.js
16011fe88a09eff4914682a9d535bc50e2b692da
465c2218356371ef217ae3fa82f663efef4a3253
Fix build-native.ts on Windows (#81673)
[ { "path": "scripts/build-native.ts", "patch": "@@ -2,6 +2,7 @@\n \n import { promises as fs } from 'node:fs'\n import path from 'node:path'\n+import url from 'node:url'\n import execa from 'execa'\n import { NEXT_DIR, logCommand, execFn } from './pack-util'\n \n@@ -31,7 +32,7 @@ export default async functio...
2025-07-15T16:33:10
electron/electron
a00a25376d339ba78c4a1efbae2de05fd534332e
ce6fe040feefe326a557132fb81137097d4a39c1
fix: crash calling `BrowserWindow.removeBrowserView()` with destroyed `webContents` (#38842) fix: crash calling removeBrowserView() with destroyed webContents https://github.com/electron/electron/issues/37642
[ { "path": "shell/browser/api/electron_api_browser_view.cc", "patch": "@@ -131,6 +131,10 @@ void BrowserView::WebContentsDestroyed() {\n Unpin();\n }\n \n+void BrowserView::OnCloseContents() {\n+ api_web_contents_ = nullptr;\n+}\n+\n // static\n gin::Handle<BrowserView> BrowserView::New(gin_helper::ErrorT...
2023-06-21T19:20:54
nodejs/node
e4263dad968b949b41922dbc371344d784a5b8a0
69a69f6ca39e8fe3ad831605a609cd95a40af621
assert: use isError instead of instanceof in innerOk Co-Authored-By: Ruben Bridgewater <ruben@bridgewater.de> Co-Authored-By: Nihar Phansalkar <phansalkarnihar@gmail.com> PR-URL: https://github.com/nodejs/node/pull/53980 Fixes: https://github.com/nodejs/node/issues/50780 Reviewed-By: James M Snell <jasnell@gmail.com> ...
[ { "path": "lib/assert.js", "patch": "@@ -393,7 +393,7 @@ function innerOk(fn, argLen, value, message) {\n } else if (message == null) {\n generatedMessage = true;\n message = getErrMessage(message, fn);\n- } else if (message instanceof Error) {\n+ } else if (isError(message)) {\n ...
2024-07-28T13:13:59
golang/go
fa2bb342d7b0024440d996c2d6d6778b7a5e0247
6729fbe93e535080e9e050b3ca0a80ab407dbacc
Revert "cmd/compile: allow all of the preamble to be preemptible" This reverts commits 3f3782feed6e0726ddb08afd32dad7d94fbb38c6 (CL 648518) b386b628521780c048af14a148f373c84e687b26 (CL 668475) Fixes #73542 Change-Id: I218851c5c0b62700281feb0b3f82b6b9b97b910d Reviewed-on: https://go-review.googlesource.com/c/go/+/67...
[ { "path": "src/cmd/internal/obj/arm/obj5.go", "patch": "@@ -703,6 +703,12 @@ func (c *ctxt5) stacksplit(p *obj.Prog, framesize int32) *obj.Prog {\n \tp.To.Type = obj.TYPE_REG\n \tp.To.Reg = REG_R1\n \n+\t// Mark the stack bound check and morestack call async nonpreemptible.\n+\t// If we get preempted here, ...
2025-05-05T17:51:52
facebook/react
c323f8290c2336713b62c69322bb30ed63234c24
59831c98cffe0edf706238b067928e7cf54d1065
Encode better error messages when part of the context is a client reference (#28355) Alternative to #28354. If a client reference is one of the props being describes as part of another error, we call toString on it, which errors. We should error explicitly when a Symbol prop is extracted. However, pragmatica...
[ { "path": "packages/react-server-dom-turbopack/src/ReactFlightTurbopackReferences.js", "patch": "@@ -92,7 +92,11 @@ export function registerServerReference<T: Function>(\n const PROMISE_PROTOTYPE = Promise.prototype;\n \n const deepProxyHandlers = {\n- get: function (target: Function, name: string, receive...
2024-02-19T16:49:25
vercel/next.js
465c2218356371ef217ae3fa82f663efef4a3253
92a9d2840db6521190f28755c3905c3000caeb4b
Improve reliability of owner stacks for async I/O errors (#81501) When running the following test isolated, and not as part of the full test suite, the owner stacks for async I/O errors were missing the top-most stack frame that's pointing at the `fetch` call. ``` pnpm test-dev test/e2e/app-dir/dynamic-io-errors/dyna...
[ { "path": "packages/next/src/server/lib/patch-fetch.ts", "patch": "@@ -559,7 +559,7 @@ export function createPatchedFetcher(\n cacheSignal = null\n }\n \n- return makeHangingPromise<Response>(\n+ return await makeHangingPromise<Response>(\n ...
2025-07-15T16:14:42
rust-lang/rust
c9b5c934ca7acc33ff4aebbe1630cb02bb4c0f1f
c7f5f3e0d5defe632d44743cbaed56272e2b67f0
Fix passing/returning structs with the 64-bit SPARC ABI Co-authored-by: beetrees <b@beetr.ee>
[ { "path": "compiler/rustc_abi/src/callconv/reg.rs", "patch": "@@ -35,6 +35,7 @@ impl Reg {\n \n reg_ctor!(f32, Float, 32);\n reg_ctor!(f64, Float, 64);\n+ reg_ctor!(f128, Float, 128);\n }\n \n impl Reg {", "additions": 1, "deletions": 0, "language": "Rust" }, { "path": "compil...
2026-02-10T10:39:06
nodejs/node
69a69f6ca39e8fe3ad831605a609cd95a40af621
2b5856e466fa81a8f196fd0bb7849418f69ea20c
http: add diagnostics channel `http.client.request.error` PR-URL: https://github.com/nodejs/node/pull/54054 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "doc/api/diagnostics_channel.md", "patch": "@@ -1129,6 +1129,13 @@ independently.\n \n Emitted when client starts a request.\n \n+`http.client.request.error`\n+\n+* `request` {http.ClientRequest}\n+* `error` {Error}\n+\n+Emitted when an error occurs during a client request.\n+\n `http.client.respo...
2024-07-28T09:57:38
electron/electron
ce6fe040feefe326a557132fb81137097d4a39c1
e73edb54817acb8f0e548916a97a9ed9340dfc3f
fix: set minimize visibility true with enable (#38860)
[ { "path": "shell/browser/ui/views/win_caption_button_container.cc", "patch": "@@ -162,6 +162,7 @@ void WinCaptionButtonContainer::UpdateButtons() {\n \n const bool minimizable = frame_view_->window()->IsMinimizable();\n minimize_button_->SetEnabled(minimizable);\n+ minimize_button_->SetVisible(minimiza...
2023-06-21T18:58:33
golang/go
6953ef86cd72a835d398319c4da560c8b78ba28e
8ec555931dc65f1cd0e7cf28d771615d8064a8ad
net,os: support converting between *os.File and net.Conn on Windows The runtime poller and os.NewFile recently gained support for disassociating the handle from the runtime poller IOCP (see CL 664455). This was the main blocker for allowing the conversion between *os.File and net.Conn. Implementing the conversion is ...
[ { "path": "doc/next/6-stdlib/99-minor/net/10350.md", "patch": "@@ -0,0 +1,3 @@\n+On Windows, the [TCPConn.File], [UDPConn.File], [UnixConn.File],\n+[IPConn.File], [TCPListener.File], and [UnixListener.File]\n+methods are now supported.\n\\ No newline at end of file", "additions": 3, "deletions": 0, ...
2025-04-25T12:11:31
facebook/react
c1fd2a91b1042c137d750be85e5998f699a54d2a
fef30c2e0403e0c6986904be89fcd01e665866ee
Include the function name for context on invalid function child (#28362) Also warn for symbols. It's weird because for objects we throw a hard error but functions we do a dev only check. Mainly because we have an object branch anyway. In the object branch we have some built-ins that have bad errors like forwar...
[ { "path": "packages/react-dom/src/__tests__/ReactComponent-test.js", "patch": "@@ -635,8 +635,9 @@ describe('ReactComponent', () => {\n });\n }).toErrorDev(\n 'Warning: Functions are not valid as a React child. This may happen if ' +\n- 'you return a Component instead of <Comp...
2024-02-17T21:41:59
vercel/next.js
5c090e81a97d9af54e8ec95b21d5c8d06787462b
f1b88b4cfa63a6560a04baa209c09065c419969c
[segment explorer] fix content overflow styling (#81649) * The bottom reset button should cover the content * No need for transparent button background | After | Before | |:--|:--| | <video src="https://github.com/user-attachments/assets/598a6474-315a-4ed5-819b-dd49306125ef"> | <video src="https://github.com/use...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-explorer.css", "patch": "@@ -3,7 +3,7 @@\n padding: 0 8px;\n width: 100%;\n height: 100%;\n- overflow: auto;\n+ overflow-y: hidden;\n }\n \n .segment-explorer-page-route-bar {\n@@ -156,7 +156,6 @@\n }\n \n .segment-ex...
2025-07-15T08:58:08
nodejs/node
dcccf9ab9b5086dab25c773f5159e5301f3f0a7e
3779c2ccd26eec4ded52c1e3b2ea09fc18af5109
test: move shared module to `test/common` `test/fixtures/process-exit-code-cases.js` is a shared module and should be in `test/common` (so it gets linted, etc.) and documented in `test/common/README.md`. PR-URL: https://github.com/nodejs/node/pull/54042 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Tobi...
[ { "path": "test/common/README.md", "patch": "@@ -2,7 +2,7 @@\n \n This directory contains modules used to test the Node.js implementation.\n \n-## Table of Contents\n+## Table of contents\n \n * [ArrayStream module](#arraystream-module)\n * [Benchmark module](#benchmark-module)\n@@ -19,13 +19,14 @@ This dir...
2024-07-25T11:26:27
electron/electron
f6bbc3465888a113db91e16647e54a2aa4650606
2b3902e526d57a37c68f8f7c5dd370358c5c06f7
fix: set supported scale factors on startup (#38836)
[ { "path": "shell/browser/browser.cc", "patch": "@@ -203,13 +203,6 @@ void Browser::DidFinishLaunching(base::Value::Dict launch_info) {\n }\n for (BrowserObserver& observer : observers_)\n observer.OnFinishLaunching(launch_info.Clone());\n-\n-#if BUILDFLAG(IS_MAC)\n- if (dock_icon_) {\n- DockSetI...
2023-06-20T16:24:03
golang/go
8ec555931dc65f1cd0e7cf28d771615d8064a8ad
93fb2c90740aef00553c9ce6a7cd4578c2469675
go/types: fix typo in Info.Types doc comment Change-Id: Ib95b77ab3dc6e48158e25e70fabb2579f3706b5f Reviewed-on: https://go-review.googlesource.com/c/go/+/669755 Auto-Submit: Russ Cox <rsc@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Robert Griesemer ...
[ { "path": "src/go/types/api.go", "patch": "@@ -228,7 +228,7 @@ type Info struct {\n \t// Similarly, no type is recorded for the (synthetic) FuncType\n \t// node in a FuncDecl.Type field, since there is no corresponding\n \t// syntactic function type expression in the source in this case\n-\t// Instead, the ...
2025-05-03T21:06:41
facebook/react
fef30c2e0403e0c6986904be89fcd01e665866ee
62a9c7db185b0852fccd0e48797a3de05520f120
Fix crash running `yarn flags --sort flag` (#28344)
[ { "path": "scripts/flags/flags.js", "patch": "@@ -318,11 +318,15 @@ for (const flag of allFlagsUniqueFlags) {\n let sorted = table;\n if (isDiff || argv.sort) {\n const sortChannel = argToHeader(isDiff ? argv.diff[0] : argv.sort);\n- sorted = Object.fromEntries(\n- Object.entries(table).sort(([, rowA]...
2024-02-17T14:28:35
nodejs/node
2cd968717d5a4b5aba9c60f0f9a4e654c27ff599
a851d0cce2ab986251e145e70f0570509bbce20c
doc: correct typescript stdin support PR-URL: https://github.com/nodejs/node/pull/54036 Fixes: https://github.com/nodejs/node/issues/54035 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "doc/api/typescript.md", "patch": "@@ -123,10 +123,10 @@ import { fn, FnParams } from './fn.ts';\n \n ### Non-file forms of input\n \n-Type stripping can be enabled for `--eval` and STDIN input. The module system\n+Type stripping can be enabled for `--eval`. The module system\n will be determined ...
2024-07-25T12:58:08
electron/electron
b693f884916a290a4cfaa82a42ddb24dfd02d7f6
97132ece33bd32660a5f26612a14232875f4fbdf
fix: crash on nativeTheme change during context menu close (#38824)
[ { "path": "patches/chromium/.patches", "patch": "@@ -127,3 +127,4 @@ chore_defer_usb_service_getdevices_request_until_usb_service_is.patch\n fix_remove_profiles_from_spellcheck_service.patch\n chore_patch_out_profile_methods_in_chrome_browser_pdf.patch\n chore_patch_out_profile_methods_in_titlebar_config.pa...
2023-06-19T09:26:54
golang/go
21908c3dec35f19d283051e150143a651cc2a71f
1b40dbce1ab039f6715b8b151a4db093ede87fff
cmd/go/internal/vcs: include Subversion VCS build information The existing implementation lacks the Status function for retrieving VCS build information for Subversion. As a consequence, binaries aren't stamped with the Revision, CommitTime and Uncommitted information from SVN repositories. This change provides the s...
[ { "path": "src/cmd/go/internal/vcs/vcs.go", "patch": "@@ -498,6 +498,7 @@ var vcsSvn = &Cmd{\n \tScheme: []string{\"https\", \"http\", \"svn\", \"svn+ssh\"},\n \tPingCmd: \"info -- {scheme}://{repo}\",\n \tRemoteRepo: svnRemoteRepo,\n+\tStatus: svnStatus,\n }\n \n func svnRemoteRepo(vcsSvn *Cmd, ...
2025-04-22T15:49:26
facebook/react
6a44f352ecdfa93949cade1d2e74755e7d7e9aaa
ef72271c2d1234c9d1e1358f8083021089a50faa
Consume the RSC stream twice in the Flight fixture (#28353) We have an unresolved conflict where the Flight client wants to execute inside Fizz to emit side-effects like preloads (which can be early) into that stream. However, the FormState API requires the state to be passed at the root, so if you're getting that ...
[ { "path": "fixtures/flight/server/global.js", "patch": "@@ -37,6 +37,7 @@ const React = require('react');\n \n const {renderToPipeableStream} = require('react-dom/server');\n const {createFromNodeStream} = require('react-server-dom-webpack/client');\n+const {PassThrough} = require('stream');\n \n const app ...
2024-02-16T23:25:09
nodejs/node
d1c7817da21b5276ef6907258cc438c847074c62
87e18a7b374d6b812fca4d5285fa2c218ad7eebc
test: mark 'test/parallel/test-sqlite.js' as flaky The current test is large and can time out. It should be split into multiple smaller tests as done in #54014. However, that approach appears to change GC behavior such that the database files are not cleaned up quickly enough on Windows. Forcing any unfinalized SQL st...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -19,6 +19,9 @@ test-fs-read-stream-concurrent-reads: PASS, FLAKY\n # https://github.com/nodejs/node/issues/52630\n test-error-serdes: PASS, FLAKY\n \n+# https://github.com/nodejs/node/issues/54006\n+test-sqlite: PASS, FLAKY\n+\n [$system==win32]\n \n #...
2024-07-25T12:12:41
vercel/next.js
e54a837ebaad5c8f08291dc5f202e74e2886a57d
0a220665f5ddd4104e42ccb5db3e1166f1970c1b
feat: new detachable panel UI (#81483) This PR updates the devtool overlay to use a new detachable panel based system for rendering content. Each panel can be configured to: - drag - resize - close on click outside - have min/max sizes if resizable, size if fixed https://github.com/user-attachments/assets/982ecee3-5...
[ { "path": "packages/next/.storybook/main.ts", "patch": "@@ -9,6 +9,8 @@ import { fileURLToPath } from 'url'\n function getAbsolutePath(value: string): any {\n return dirname(require.resolve(join(value, 'package.json')))\n }\n+import { createRequire } from 'module'\n+const require = createRequire(import.me...
2025-07-15T04:47:40
electron/electron
46fb0d8f5f3a33c5b9bba2329ac5de946cd66a3c
d78f37ec8faae9a3677037e1b40baea81fc93b6c
fix: `webContents.print({ silent: true })` not working correctly (#38741) fix: webContents.print({ silent: true }) not working correctly
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -91,7 +91,7 @@ index 3a66a52b8d3c6da9cd8d7e9afdc8d59f528ec3d5..facaa6fbca8ee7c04f83607e62b81b95\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/...
2023-06-15T14:46:38
facebook/react
d6406d8360c5d90fc777dfd1a720ba235c5a8a12
9c419dfd804efa4646784120790e606bb74bd905
Validate hook calls in object methods Adds some test cases for hook calls in object methods. Initially we didn't catch these because InferTypes doesn't actually visit ObjectMethod bodies. Once we fix that we correctly reject these examples.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/TypeInference/InferTypes.ts", "patch": "@@ -69,7 +69,10 @@ function apply(func: HIRFunction, unifier: Unifier): void {\n const { lvalue, value } = instr;\n lvalue.identifier.type = unifier.get(lvalue.identifier.type);\n \n- if (valu...
2024-02-16T19:27:52