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
facebook/react
01ae2ddaa94386b2250230004f1051218ada2de1
f820f5a8b6c8b106ba3756f3e60a5a4017eb5080
[DevTools] Include some Filtered Fiber Instances (#30865) When we filter Fiber Instances where have no way to recover our position in the Fiber tree. The extreme form of this is if you filter out all the Fibers and keep only Server Components. This affects operations that are performed against fibers such as col...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -146,6 +146,7 @@ import {formatOwnerStack} from '../shared/DevToolsOwnerStack';\n // Kinds\n const FIBER_INSTANCE = 0;\n const VIRTUAL_INSTANCE = 1;\n+const FILTERED_FIBER_INSTANCE = 2;\n \n // Flags\n const FORCE_SUSPENS...
2024-09-04T23:35:28
electron/electron
4d51edc504e300e02976bb64db476f352c695c23
8474bbe6895bd98f30e551aa8b3f34d75210a2c5
docs: api history (#42982) * feat(api-history): api history schema Reference: https://github.com/electron/rfcs/blob/f36e0a8483e1ea844710890a8a7a1bd58ecbac05/text/0004-api-history-schema.md * feat(api-history): add `lint:api-history` to `package.json` * docs(api-history): add api history to `styleguide.md` ...
[ { "path": "docs/api-history.schema.json", "patch": "@@ -0,0 +1,47 @@\n+{\n+ \"title\": \"JSON schema for API history blocks in Electron documentation\",\n+ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n+ \"$comment\": \"If you change this schema, remember to edit the TypeScript interfaces in...
2024-08-19T18:17:10
nodejs/node
d1ec9488665e57244e9802ae142245be3323ceec
a6181b4a715670bc3c266935ce305563f668c186
doc: fix rendering of DEP0174 description PR-URL: https://github.com/nodejs/node/pull/56835 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/deprecations.md", "patch": "@@ -3568,7 +3568,7 @@ changes:\n \n Type: Runtime\n \n-Calling [`util.promisify`][] on a function that returns a <Promise> will ignore\n+Calling [`util.promisify`][] on a function that returns a `Promise` will ignore\n the result of said promise, which can lead...
2025-03-01T23:46:31
golang/go
61dc7fe30d16b920888123390c6965614e491a66
ca0e03560df7279bc307da08db7237beb32b0d99
iter: document that calling yield after terminated range loop causes runtime panic The existing documentation isn't clear about the behaviour of when the iterator function ignores the value returned from the yield function. The changes here update the documentation, to explicitly explain that. Change-Id: I24a8198c3d...
[ { "path": "src/iter/iter.go", "patch": "@@ -28,6 +28,8 @@ or index-value pairs.\n Yield returns true if the iterator should continue with the next\n element in the sequence, false if it should stop.\n \n+Yield panics if called after it returns false.\n+\n For instance, [maps.Keys] returns an iterator that p...
2025-09-15T17:04:04
facebook/react
8d68da3f7396064614f34b84881fe8833b6039ac
e0a07e9738b2ec2ea5cf4872406b465d677bfe2c
[Fiber] Stash ThenableState on the Dependencies Object for Use By DevTools (#30866) This lets us track what a Component might suspend on from DevTools. We could already collect this by replaying a component's Hooks but that would be expensive to collect from a whole tree. The thenables themselves might contain us...
[ { "path": "packages/react-reconciler/src/ReactFiber.js", "patch": "@@ -404,10 +404,16 @@ export function createWorkInProgress(current: Fiber, pendingProps: any): Fiber {\n workInProgress.dependencies =\n currentDependencies === null\n ? null\n- : {\n- lanes: currentDependencies.lan...
2024-09-03T20:04:24
rust-lang/rust
a24022ad4e98bfc5adc47cc114db57b68c8511d2
e00790eb2c790e2cac7d410e493fbb68ca00f2a7
Fix LLVM intrinsic signatures for AVX-VNNI
[ { "path": "library/stdarch/crates/core_arch/src/x86/avx512vnni.rs", "patch": "@@ -12,7 +12,7 @@ use stdarch_test::assert_instr;\n #[stable(feature = \"stdarch_x86_avx512\", since = \"1.89\")]\n #[cfg_attr(test, assert_instr(vpdpwssd))]\n pub fn _mm512_dpwssd_epi32(src: __m512i, a: __m512i, b: __m512i) -> __...
2026-03-01T19:02:24
electron/electron
3f71ed73552e94ef7c48fb4a685c6054fd4f0bcb
d7689bb9b5c062dd7c3a024e340ebff75bd63668
build: fix valid versions in issue version parsing (#43346)
[ { "path": ".github/workflows/issue-opened.yml", "patch": "@@ -76,7 +76,8 @@ jobs:\n const { ElectronVersions } = await import('${{ github.workspace }}/node_modules/@electron/fiddle-core/dist/index.js');\n const versions = await ElectronVersions.create(undefined, { ignoreC...
2024-08-19T09:04:30
nodejs/node
71196c431f6ae65a8fffb57a47b742ce93c86e4f
60dff4208fe330265e5ae217d3d66e99825fe45f
net: emit an error when custom lookup resolves to a non-string address PR-URL: https://github.com/nodejs/node/pull/57192 Fixes: https://github.com/nodejs/node/issues/57112 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> ...
[ { "path": "lib/net.js", "patch": "@@ -1416,7 +1416,7 @@ function lookupAndConnect(self, options) {\n // calls net.Socket.connect() on it (that's us). There are no event\n // listeners registered yet so defer the error event to the next tick.\n process.nextTick(connectErrorNT, self, e...
2025-03-01T20:43:41
facebook/react
e0a07e9738b2ec2ea5cf4872406b465d677bfe2c
04ec50efa941a7f07e8231a87e72d6d851948b8c
[DevTools] Support VirtualInstances in findAllCurrentHostInstances (#30853) This lets us highlight Server Components. However, there is a problem with this because if the actual nearest Fiber is filtered, there's no FiberInstance and so we might skip past it and maybe never find a child while walking the whole tr...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -3393,6 +3393,18 @@ export function attach(\n // I.e. we just restore them by undoing what we did above.\n fiberInstance.firstChild = remainingReconcilingChildren;\n remainingReconcilin...
2024-09-03T16:29:59
rust-lang/rust
21674fed54a8c2493323d0ae58a73cce99b885e3
7a221089b3fafcd105fbac2143724d181286c8d5
fix: Fix wrong descend range for add_missing_match_arms Example --- ```rust macro_rules! m { ($expr:expr) => {$expr}} enum Test { A, B, C, } fn foo(t: Test) { m!(match t { Test::A => (), $0}); } ``` **Before this PR** Assist not applicable **After this PR** ```rust macro_rules! m { ($e...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_missing_match_arms.rs", "patch": "@@ -44,8 +44,7 @@ pub(crate) fn add_missing_match_arms(acc: &mut Assists, ctx: &AssistContext<'_>)\n let arm_list_range = ctx.sema.original_range_opt(match_arm_list.syntax())?;\n \n if cursor_at_...
2026-03-01T16:21:19
electron/electron
b497700e363e1f406466050e0dd13d3fc108e96b
1c991ff765b068f584e5be3002154977b133eb23
test: fixup Node.js snapshot tests to run correctly (#43332)
[ { "path": "patches/node/ci_ensure_node_tests_set_electron_run_as_node.patch", "patch": "@@ -7,18 +7,53 @@ Some node tests / test fixtures spawn other tests that clobber env,\n which causes the `ELECTRON_RUN_AS_NODE` variable to be lost. This patch\n re-injects it.\n \n-diff --git a/test/common/assertSnapsho...
2024-08-16T09:17:42
nodejs/node
60dff4208fe330265e5ae217d3d66e99825fe45f
5ae1224cef39bbb09af11ca272b8cfe7a19b9b03
test: skip `test-config-json-schema` with quic `parallel/test-config-json-schema` compares to a generated fixture that assumes that Node.js was built with default configuration settings. Skip the test if non-default quic is enabled (`configure --with-quic`). Refs: https://github.com/nodejs/node/pull/57016 Refs: http...
[ { "path": "test/parallel/test-config-json-schema.js", "patch": "@@ -21,6 +21,10 @@ if (!common.hasIntl) {\n common.skip('missing Intl');\n }\n \n+if (process.config.variables.node_quic) {\n+ common.skip('this test assumes default configuration options');\n+}\n+\n const {\n generateConfigJsonSchema,\n }...
2025-02-27T17:42:48
vercel/next.js
2e327560519ef5f641bf211877b404da7b5edbae
32476071fe331948d89a35c391eb578aed8de979
Include server latency in debug info (#84580) The debug info of the promise created by the Flight client represents the latency between when the navigation starts and when it's passed to React. Most importantly, it should include the time it takes for the client to start receiving data from the server. Before this PR...
[ { "path": "packages/next/src/client/components/router-reducer/create-initial-router-state.test.tsx", "patch": "@@ -139,6 +139,7 @@ describe('createInitialRouterState', () => {\n cache: expectedCache,\n nextUrl: '/linking',\n previousNextUrl: null,\n+ debugInfo: null,\n }\n \n ...
2025-10-15T21:39:42
facebook/react
4f604941569d2e8947ce1460a0b2997e835f37b9
e56f4ae38d118168e0561f1b86ecbdef592138e4
[Flight] Ship DEV-only enableServerComponentLogs flag in Stable/Canary (#30847) To recap. This only affects DEV and RSC. It patches console on the server in DEV (similar to how React DevTools already does and what we did for the double logging). Then replays those logs with a `[Server]` badge on the client so you d...
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -134,7 +134,7 @@ export const alwaysThrottleRetries = true;\n \n export const passChildrenWhenCloningPersistedNodes = false;\n \n-export const enableServerComponentLogs = __EXPERIMENTAL__;\n+export const enableServerComponentLogs = true;\n \n /*...
2024-08-30T19:11:57
electron/electron
286384258be413c451b37c680b3237cbf1c625ea
f6bae51025a9451b972fb6ca038cd37652eabf33
fix: blank page when printing pdf (#43309)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2899,11 +2899,7 @@ void WebContents::OnGetDeviceNameToUse(\n if (!print_view_manager)\n return;\n \n- auto* focused_frame = web_contents()->GetFocusedFrame();\n- auto* rfh = focused_frame && focused_frame->HasSelection()\n- ...
2024-08-14T19:47:47
nodejs/node
ac5afbc83ae21d5f6f718dcfd47816981861dd98
40deed2ebdf696dd0066cd318670ae12b841499f
doc: add @geeksilva97 to collaborators Fixes: https://github.com/nodejs/node/issues/57032 PR-URL: https://github.com/nodejs/node/pull/57241 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "README.md", "patch": "@@ -335,6 +335,8 @@ For information about the governance of the Node.js project, see\n **Gerhard Stöbich** <<deb2001-github@yahoo.de>> (he/they)\n * [gabrielschulhof](https://github.com/gabrielschulhof) -\n **Gabriel Schulhof** <<gabrielschulhof@gmail.com>>\n+* [geeksilv...
2025-02-28T17:13:23
vercel/next.js
32476071fe331948d89a35c391eb578aed8de979
1da5efa1482e2eadce9719fb94d2f74148321973
Turbopack: fix spacing on EcmascriptModuleAssetType (#84915) ### What? typo
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -300,10 +300,10 @@ impl Display for EcmascriptModuleAssetType {\n EcmascriptModuleAssetType::Typescript { tsx, analyze_types } => {\n write!(f, \"typescript\")?;\n if *tsx {\n- ...
2025-10-15T20:19:58
facebook/react
8308d2f1fe90ec0b5a5cde147b97c6e78581710a
394e75d9a9af26dc00074f2b8c2978d8c2dfbbb9
fix[react-devtools/ReactDebugHooks]: support unstable prefixes in hooks and useContextWithBailout (#30837) Related - https://github.com/facebook/react/pull/30407. This is experimental-only and FB-only hook. Without these changes, inspecting an element that is using this hook will throw an error, because this hook...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -20,6 +20,7 @@ import type {\n Dependencies,\n Fiber,\n Dispatcher as DispatcherType,\n+ ContextDependencyWithSelect,\n } from 'react-reconciler/src/ReactInternalTypes';\n import type {TransitionStatus} from 'react-reconciler...
2024-08-30T09:34:52
electron/electron
62406708cd29540caef0e07a74f696f981d963f7
d004329f6f151a22b4009a51fa646dc0236ac1ac
docs: fix formatting in fuses tutorial (#43303)
[ { "path": "docs/tutorial/fuses.md", "patch": "@@ -13,34 +13,39 @@ Fuses are the solution to this problem, at a high level they are \"magic bits\" in\n ### `runAsNode`\n \n **Default:** Enabled\n+\n **@electron/fuses:** `FuseV1Options.RunAsNode`\n \n The runAsNode fuse toggles whether the `ELECTRON_RUN_AS_NO...
2024-08-13T19:27:44
nodejs/node
40deed2ebdf696dd0066cd318670ae12b841499f
72cfa4b11c279653750b243a6ed2c769ef9dc4a2
src: improve error handling in `node_messaging.cc` PR-URL: https://github.com/nodejs/node/pull/57211 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "src/node_messaging.cc", "patch": "@@ -1627,10 +1627,15 @@ static void MessageChannel(const FunctionCallbackInfo<Value>& args) {\n \n MessagePort::Entangle(port1, port2);\n \n- args.This()->Set(context, env->port1_string(), port1->object())\n- .Check();\n- args.This()->Set(context, env->p...
2025-02-26T00:24:25
golang/go
c39abe065886f62791f41240eef6ca03d452a17b
e3ed0fbe6a4c7c5e91a4a82c1bcbc96b9ac37016
runtime: fix TestSehUnwind The various TestSehUnwind tests recently started to fail due an unrelated refactor (in CL 698098) that made the stack frames to not match the expected pattern. This CL updates the tests to be more robust to such changes. Fixes #75467 Change-Id: I7950332bb6ca54e4bf693d13e2490b3d9d901dde Rev...
[ { "path": "src/runtime/runtime-seh_windows_test.go", "patch": "@@ -65,14 +65,20 @@ func TestSehLookupFunctionEntry(t *testing.T) {\n \t}\n }\n \n-func sehCallers() []uintptr {\n-\t// We don't need a real context,\n-\t// RtlVirtualUnwind just needs a context with\n-\t// valid a pc, sp and fp (aka bp).\n+//go...
2025-09-15T14:02:22
vercel/next.js
1da5efa1482e2eadce9719fb94d2f74148321973
de7393051378a4acb1f3fdc6fbde7ad82beb67c3
fix: process.env.TURBOPACK maybe undefined (#84885)
[ { "path": "packages/next-rspack/index.js", "patch": "@@ -4,7 +4,7 @@ module.exports = function withRspack(config) {\n // we have already been called. This can happen when using build workers.\n return config\n }\n- if (process.env.TURBOPACK === 'auto') {\n+ if (!process.env.TURBOPACK || process...
2025-10-15T20:16:43
facebook/react
394e75d9a9af26dc00074f2b8c2978d8c2dfbbb9
071dd00366b3accb649e3f5978454e993e0b11aa
[DevTools] Increase max payload for websocket in standalone app (#30848) <!-- 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 submitti...
[ { "path": "packages/react-devtools-core/src/standalone.js", "patch": "@@ -329,7 +329,7 @@ function startServer(\n const httpServer = useHttps\n ? require('https').createServer(httpsOptions)\n : require('http').createServer();\n- const server = new Server({server: httpServer});\n+ const server = ...
2024-08-30T09:34:27
nodejs/node
72cfa4b11c279653750b243a6ed2c769ef9dc4a2
b4c7ea0dc4558ad8c341cfbc3ab7d23522a02b3d
src: improve error handling in `tty_wrap.cc` PR-URL: https://github.com/nodejs/node/pull/57211 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "src/tty_wrap.cc", "patch": "@@ -100,8 +100,12 @@ void TTYWrap::GetWindowSize(const FunctionCallbackInfo<Value>& args) {\n \n if (err == 0) {\n Local<Array> a = args[0].As<Array>();\n- a->Set(env->context(), 0, Integer::New(env->isolate(), width)).Check();\n- a->Set(env->context(), 1, ...
2025-02-26T00:12:56
electron/electron
bba31189a06f59d5b828e25defe14571cb502157
0f55b452826ca82ca387d7b0df921ffa5d38395e
feat: accept-encoding zstd (#43150) * fix: accept-encoding zstd * Update shell/browser/net/system_network_context_manager.cc Co-authored-by: Sam Maddock <smaddock@slack-corp.com> * chore: make lint happy --------- Co-authored-by: Sam Maddock <smaddock@slack-corp.com>
[ { "path": "shell/browser/net/system_network_context_manager.cc", "patch": "@@ -195,6 +195,8 @@ SystemNetworkContextManager::CreateDefaultNetworkContextParams() {\n void SystemNetworkContextManager::ConfigureDefaultNetworkContextParams(\n network::mojom::NetworkContextParams* network_context_params) {\n ...
2024-08-12T14:00:04
golang/go
aa83aee7de1d69b207ab9669bb2b7dcdcbdf9383
b9e2977f1d62bba2df652a3b57b4fdd15a756601
net/http: clarify panic conditions in Handle, HandleFunc, AddInsecureBypassPattern Add explicit mention that these methods panic on both pattern conflict and invalid syntax. Fixes #75226 Change-Id: If7dbfc44e1ec4624ab156f0e5d7e66cee2c2fef3 GitHub-Last-Rev: acc9a9c3338373f5a9376ff2eb1decd30bbee04d GitHub-Pull-Request...
[ { "path": "src/net/http/csrf.go", "patch": "@@ -90,6 +90,10 @@ var sentinelHandler Handler = &noopHandler{}\n // would redirect to a pattern (e.g. after cleaning the path or adding a\n // trailing slash) are not.\n //\n+// AddInsecureBypassPattern panics if the pattern conflicts with one already\n+// regist...
2025-09-13T17:54:40
vercel/next.js
776625634df4260cf7c6f5459ffc74c98ba9f136
7e11a155cca95dbe1a8ef655c8389ec7ca266598
Remove deprecated experimental_ppr route-level configuration (#84871) ### What? Removes the deprecated `experimental_ppr` route-level configuration option from Next.js. ### Why? The PPR configuration feature has been deprecated in favor of the cache components feature flag. The `experimental_ppr` route-level option...
[ { "path": "crates/next-core/src/segment_config.rs", "patch": "@@ -89,7 +89,6 @@ pub struct NextSegmentConfig {\n pub fetch_cache: Option<NextSegmentFetchCache>,\n pub runtime: Option<NextRuntime>,\n pub preferred_region: Option<Vec<RcStr>>,\n- pub experimental_ppr: Option<bool>,\n pub mid...
2025-10-15T19:03:00
rust-lang/rust
fd8bb2167640600d59ac9199a4ddeb1a2edf7f4f
e492d022858076a414ad42139e05cb43e0d238b6
fix: `question_mark` suggestion caused error
[ { "path": "clippy_lints/src/question_mark.rs", "patch": "@@ -501,7 +501,8 @@ fn check_if_let_some_or_err_and_early_return<'tcx>(cx: &LateContext<'tcx>, expr:\n \n let mut applicability = Applicability::MachineApplicable;\n let receiver_str = snippet_with_applicability(cx, let_expr.span, \".....
2026-03-01T16:34:09
facebook/react
071dd00366b3accb649e3f5978454e993e0b11aa
61739a8a0fd23adf18336d96f9c307a1cd897354
[compiler] Errors in earlier functions dont stop subsequent compilation Errors in an earlier component/hook shouldn't stop later components from compiling. ghstack-source-id: 6e04a5bb2e2045303cbddad6d6d4bd38d5f7990b Pull Request resolved: https://github.com/facebook/react/pull/30844
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts", "patch": "@@ -310,8 +310,6 @@ export function compileProgram(\n pass.opts.eslintSuppressionRules ?? DEFAULT_ESLINT_SUPPRESSIONS,\n pass.opts.flowSuppressions,\n );\n- const lintError = suppressionsToCompilerError...
2024-08-30T05:40:41
nodejs/node
b4c7ea0dc4558ad8c341cfbc3ab7d23522a02b3d
52ecb96cf6b38cbc0efad850130db2ee806b628f
src: improve error handling in `tcp_wrap.cc` PR-URL: https://github.com/nodejs/node/pull/57211 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "src/tcp_wrap.cc", "patch": "@@ -390,8 +390,9 @@ MaybeLocal<Object> AddressToJS(Environment* env,\n \n int port;\n \n- if (info.IsEmpty())\n+ if (info.IsEmpty()) {\n info = Object::New(env->isolate());\n+ }\n \n switch (addr->sa_family) {\n case AF_INET6:\n@@ -413,32 +414,45 @@ MaybeL...
2025-02-26T00:11:31
golang/go
b9e2977f1d62bba2df652a3b57b4fdd15a756601
8105d0ccc273afa717ba536f4d42dac3920c017e
crypto/internal/cryptotest: use linux-amd64_avx512 builder for SHA-NI Updates #74772 Fixes #69592 Change-Id: I6a6a69647ab1785ed953f3ed2dfa04cd55576f2b Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64_avx512 Reviewed-on: https://go-review.googlesource.com/c/go/+/701315 Reviewed-by: Daniel McCarney <daniel@binaryp...
[ { "path": "src/crypto/internal/cryptotest/implementations.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"internal/goarch\"\n \t\"internal/goos\"\n \t\"internal/testenv\"\n+\t\"strings\"\n \t\"testing\"\n )\n \n@@ -38,22 +39,33 @@ func TestAllImplementations(t *testing.T, pkg string, f func(t *testing.T)) {...
2025-08-07T22:16:27
electron/electron
c9b7806418d145abf4098ec60b964bfd24b2369c
23bcca3ffcf31d6874fe3b0f69335a8e58755e43
chore: bump chromium to 129.0.6650.0 (main) (#43266) * chore: bump chromium in DEPS to 129.0.6645.0 * chore: update patches * chore: bump chromium in DEPS to 129.0.6646.0 * refactor: remove ppapi dependency PPAPI removal - https://issues.chromium.org/issues/40511450 PDF viewer migration - https://issues.c...
[ { "path": ".github/workflows/pipeline-segment-electron-gn-check.yml", "patch": "@@ -127,7 +127,8 @@ jobs:\n cd src\n gn check out/Default //electron:electron_lib\n gn check out/Default //electron:electron_app\n- gn check out/Default //electron/shell/common/api:mojo\n+ g...
2024-08-12T08:28:33
vercel/next.js
1112dce6b70827e160f5fe6b073117b5ef864bd0
c6a6c7365b24df5ace37f9d68e7f6c0730152416
[dev-overlay] Never dedupe errors with different names or messages (#84908)
[ { "path": "packages/next/src/next-devtools/dev-overlay/shared.ts", "patch": "@@ -324,6 +324,9 @@ export function useErrorOverlayReducer(\n const pendingEvents = events.filter((event) => {\n // Filter out duplicate errors\n return (\n+ // SpiderMonkey and JavaScriptCore don't include t...
2025-10-15T16:45:37
facebook/react
e33a7233a76e1164bd1a9c4b8115abb575b48c50
18bf7bf5002450ce7daa281e8be1c3216bd871ed
[DevTools] Track virtual instances on the tracked path for selections (#30802) This appends a (filtered) virtual instance path at the end of the fiber path. If a virtual instance is selected inside the fiber. The main part of the path is still just the fiber path since that's the semantically stateful part. Then ...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -2266,16 +2266,11 @@ export function attach(\n debug('recordUnmount()', fiber, null);\n }\n \n- if (trackedPathMatchFiber !== null) {\n+ if (trackedPathMatchInstance === fiberInstance) {\n // We're i...
2024-08-29T16:45:03
nodejs/node
48f381d309be4093175a037cfb232cd750f8e17e
0d92ce497b044f1ea80b850dacea7f309d0b046b
fs: only show deprecation warning when error code matches PR-URL: https://github.com/nodejs/node/pull/56549 Refs: https://github.com/nodejs/node/pull/55753 Reviewed-By: Jacob Smith <jacob@frende.me>
[ { "path": "lib/fs.js", "patch": "@@ -278,8 +278,8 @@ let showExistsDeprecation = true;\n function existsSync(path) {\n try {\n path = getValidatedPath(path);\n- } catch {\n- if (showExistsDeprecation) {\n+ } catch (err) {\n+ if (showExistsDeprecation && err?.code === 'ERR_INVALID_ARG_TYPE') {\...
2025-02-28T10:46:11
golang/go
8ace10dad2774a760b5028140a7d3f8140e6e1c0
3573227fe3fe8d141dbf06e257609a59871d5248
os: add (*Process).WithHandle Implement (*Process).WithHandle, add tests for all platforms. Fixes #70352 Change-Id: I7a8012fb4e1e1b4ce1e75a59403ff6e77504fc56 Reviewed-on: https://go-review.googlesource.com/c/go/+/699615 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewe...
[ { "path": "api/next/70352.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg os, method (*Process) WithHandle(func(uintptr)) error #70352\n+pkg os, var ErrNoHandle error #70352", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/os/70352.md", "patch...
2025-08-28T05:39:25
vercel/next.js
c6a6c7365b24df5ace37f9d68e7f6c0730152416
b7b153f6231ddc69f8eea8c0762463652c98008e
Turbopack: better errors for strip_prefix_len (#84882) To help debugging
[ { "path": "turbopack/crates/turbopack-core/src/resolve/alias_map.rs", "patch": "@@ -610,7 +610,9 @@ where\n \n if is_match {\n let mut remaining = self.request.clone();\n- remaining.strip_prefix_len(prefix.len());\n+ ...
2025-10-15T16:34:49
electron/electron
c35739d60df88b78383af0376cb094566bf5ed55
c4dfff98440c857992ad0847b5132f2cbb2085ec
refactor: use url::DomainIs() to check cookie domains (#43262) * test: add tests to exercise pre-exsiting cookie domain matching behavior * refactor: use url::DomainIs() to match cookie domains * docs: fix typo
[ { "path": "docs/api/cookies.md", "patch": "@@ -74,7 +74,7 @@ The following methods are available on instances of `Cookies`:\n `url`. Empty implies retrieving cookies of all URLs.\n * `name` string (optional) - Filters cookies by name.\n * `domain` string (optional) - Retrieves cookies whose domains ...
2024-08-09T23:35:18
facebook/react
795b3207ce5ea25c80749e367c61e5f56ac09856
537c74e16a394df16a4b368caa09ea5755f78dfb
fix[react-devtools/extensions]: fixed tabs API calls and displaying restricted access popup (#30825) Stacked on https://github.com/facebook/react/pull/30824. See [this commit](https://github.com/facebook/react/pull/30825/commits/c9830d64749cf8fd592ea30a1cd65842cf83f6df). Turns out we should be listing `tabs` in ou...
[ { "path": "packages/react-devtools-extensions/chrome/manifest.json", "patch": "@@ -42,7 +42,8 @@\n },\n \"permissions\": [\n \"storage\",\n- \"scripting\"\n+ \"scripting\",\n+ \"tabs\"\n ],\n \"host_permissions\": [\n \"<all_urls>\"", "additions": 2, "deletions": 1, "lan...
2024-08-29T10:31:43
nodejs/node
304743655d5236c2edc39094336ee2667600b684
fd453837ea3955a20ad8157482058e30ed781f15
doc: add streamResetBurst and streamResetRate Added missing documentation for the streamResetBurst and streamResetRate options in the http2.createSecureServer section. This ensures developers are aware of these configurable options. Fixes: https://github.com/nodejs/node/issues/57169 Refs: https://nodejs.org/docs/late...
[ { "path": "doc/api/http2.md", "patch": "@@ -3055,6 +3055,9 @@ changes:\n **Default:** `100`.\n * `settings` {HTTP/2 Settings Object} The initial settings to send to the\n remote peer upon connection.\n+ * `streamResetBurst` {number} and `streamResetRate` {number} Sets the rate\n+ limit for the...
2025-02-26T15:47:23
golang/go
3573227fe3fe8d141dbf06e257609a59871d5248
68c6a73380e82a0ea9a93c1a75ab8a38f28f3a3d
os: add and use errProcessReleased This error is already used in three places, so let's define it. Change-Id: I73565d94aebcf3d5a278201d96839d82db85a2d4 Reviewed-on: https://go-review.googlesource.com/c/go/+/702436 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: M...
[ { "path": "src/os/exec.go", "patch": "@@ -14,8 +14,12 @@ import (\n \t\"time\"\n )\n \n-// ErrProcessDone indicates a [Process] has finished.\n-var ErrProcessDone = errors.New(\"os: process already finished\")\n+var (\n+\t// ErrProcessDone indicates a [Process] has finished.\n+\tErrProcessDone = errors.New(...
2025-09-11T02:00:19
vercel/next.js
b7b153f6231ddc69f8eea8c0762463652c98008e
f80c92261ebbb0b376e45f0b15bd5657609a03d9
[Cache Components] Fix cacheSignal in dev render (#84846) This PR changes the timing used in `CacheSignal.cacheReady()` to work correctly when rendering, not just prerendering. When rendering, React schedules new work in `setImmediate` (as opposed to using a microtask when prerendering), and `CacheSignal.cacheReady()`...
[ { "path": "packages/next/src/server/app-render/cache-signal.ts", "patch": "@@ -12,7 +12,7 @@ export class CacheSignal {\n private earlyListeners: Array<() => void> = []\n private listeners: Array<() => void> = []\n private tickPending = false\n- private taskPending = false\n+ private pendingTimeoutC...
2025-10-15T16:32:43
electron/electron
c4dfff98440c857992ad0847b5132f2cbb2085ec
346244ef9e89d6f7d4a16e9c20af498609420c33
fix: accidental handle copying in a range loop (#43260) fix: accidental handle copying Xref: https://github.com/electron/electron/pull/37857
[ { "path": "shell/browser/api/message_port.cc", "patch": "@@ -9,6 +9,7 @@\n #include <utility>\n \n #include \"base/containers/contains.h\"\n+#include \"base/containers/to_vector.h\"\n #include \"base/strings/string_number_conversions.h\"\n #include \"base/task/single_thread_task_runner.h\"\n #include \"gin/...
2024-08-09T18:38:03
facebook/react
537c74e16a394df16a4b368caa09ea5755f78dfb
fc0df475c4417670272b819bad92590b310bcdaa
feat[react-devtools]: support Manifest v3 for Firefox extension (#30824) Firefox [finally supports `ExecutionWorld.MAIN`](https://bugzilla.mozilla.org/show_bug.cgi?id=1736575) in content scripts, which means we can migrate the browser extension to Manifest V3. This PR also removes a bunch of no longer required e...
[ { "path": "packages/react-devtools-extensions/firefox/manifest.json", "patch": "@@ -1,12 +1,12 @@\n {\n- \"manifest_version\": 2,\n+ \"manifest_version\": 3,\n \"name\": \"React Developer Tools\",\n \"description\": \"Adds React debugging tools to the Firefox Developer Tools.\",\n \"version\": \"5.3...
2024-08-29T10:28:35
nodejs/node
fd453837ea3955a20ad8157482058e30ed781f15
34ded4df1f665e32606d2c3cf47979f71c37be82
src: fix ThrowInvalidURL call in PathToFileURL Replace `nullptr` with `std::nullopt` when calling `ThrowInvalidURL` in `PathToFileURL`. This ensures the function receives the correct argument type and aligns with the expected behavior. PR-URL: https://github.com/nodejs/node/pull/57141 Reviewed-By: Yagiz Nizipli <yagi...
[ { "path": "src/node_url.cc", "patch": "@@ -161,7 +161,7 @@ void BindingData::PathToFileURL(const FunctionCallbackInfo<Value>& args) {\n ada::parse<ada::url_aggregator>(EncodePathChars(input_str, os), nullptr);\n \n if (!out) {\n- return ThrowInvalidURL(realm->env(), input.ToStringView(), nullptr)...
2025-02-26T14:34:50
golang/go
dabe2bb4fbf47e64729591e896f7231bda0c42a7
3ec0b25ab7a130709863cf0837190d2995e176a4
[dev.simd] cmd/compile: fix holes in mask peepholes It turns out that ".Masked" is implemented by VPANDQ *and* VPANDD. The shape of bitwise AND doesn't matter, the correctness of the rules is guaranteed by the way the mask is generated. This CL fix the holes in the peephole rules. Change-Id: I2d15c4d17afed6fdbb2f390...
[ { "path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules", "patch": "@@ -1768,6 +1768,10 @@\n (VPANDQ512 x (VPMOVMToVec32x16 k)) => (VMOVDQU32Masked512 x k)\n (VPANDQ512 x (VPMOVMToVec16x32 k)) => (VMOVDQU16Masked512 x k)\n (VPANDQ512 x (VPMOVMToVec8x64 k)) => (VMOVDQU8Masked512 x k)\n+(VPANDD512 x (VPMOVMT...
2025-09-14T20:17:55
rust-lang/rust
747aa5beec13a622ac570e9cab2ee0040f94a097
ad7acd5c0371592bba2e48f1f1110793440877d4
Fix: use `FnAbi::Rust` for tuple struct/enum constructors and align `is_rust()` with rustc
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/lower.rs", "patch": "@@ -2468,7 +2468,7 @@ fn fn_sig_for_struct_constructor(\n let inputs_and_output =\n Tys::new_from_iter(DbInterner::new_no_crate(db), params.chain(Some(ret.as_ref())));\n StoredEarlyBinder::bind(StoredPolyFnSig::new(Bin...
2026-03-01T11:09:21
electron/electron
f49f6ff68b5edef36ec503a3fe08569b116f74fd
0718c2b9eec4fac19cd799359cf546c165405b96
fix: check screen capture permissions in `desktopCapturer` (#43080) fix: check screen capture permissions in desktopCapturer
[ { "path": "shell/browser/api/electron_api_desktop_capturer.cc", "patch": "@@ -42,6 +42,10 @@\n #include \"ui/gfx/x/randr.h\"\n #endif\n \n+#if BUILDFLAG(IS_MAC)\n+#include \"ui/base/cocoa/permissions_utils.h\"\n+#endif\n+\n #if BUILDFLAG(IS_LINUX)\n // Private function in ui/base/x/x11_display_util.cc\n bas...
2024-08-09T08:08:49
nodejs/node
e03af77418f44b69ab55f1570781d8990d02f14f
6a19fde949ad876d240fda0e638cf1b1ee2cab0d
src: improve error handling in buffer and dotenv Replacing ToLocalChecked() PR-URL: https://github.com/nodejs/node/pull/57189 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Robert Nagy <ronagy@icloud.com>
[ { "path": "src/node_buffer.cc", "patch": "@@ -567,9 +567,14 @@ void SlowCopy(const FunctionCallbackInfo<Value>& args) {\n ArrayBufferViewContents<char> source(args[0]);\n SPREAD_BUFFER_ARG(args[1].As<Object>(), target);\n \n- const auto target_start = args[2]->Uint32Value(env->context()).ToChecked();\n...
2025-02-24T00:38:56
facebook/react
fc0df475c4417670272b819bad92590b310bcdaa
3a45ba241c028cd0af7bf17bb4c6487d0095a10f
[compiler] Inferred deps must match exact optionality of manual deps To prevent any difference in behavior, we check that the optionality of the inferred deps exactly matches the optionality of the manual dependencies. This required a fix, I was incorrectly inferring optionality of manual deps (they're only optional i...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/DropManualMemoization.ts", "patch": "@@ -488,7 +488,7 @@ export function dropManualMemoization(func: HIRFunction): void {\n function findOptionalPlaces(fn: HIRFunction): Set<IdentifierId> {\n const optionals = new Set<IdentifierId>();\...
2024-08-28T22:16:02
vercel/next.js
f80c92261ebbb0b376e45f0b15bd5657609a03d9
c34ea8f280d1fc6e7ab9c1665fd7f8efd40b8336
Turbopack: expose client static assets correctly (#84695) This is about whether `new URL("logo.png", import.meta.url)` and `import logo from "./logo.png"` return a client or a server asset: - a server asset is a file that will be read by the server during rendering, for example a Wasm or font file (if you think about...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1082,13 +1082,11 @@ impl Project {\n no_mangling: self.no_mangling(),\n scope_hoisting: self.next_config().turbo_scope_hoisting(self.next_mode()),\n debug_ids: self.next_config().turbopack_debug_ids(),\n+ ...
2025-10-15T16:06:50
golang/go
8320fe8f0e5283eb67429de30b4e24be6a85c7a7
080882a928c96f997a1cb67cef40d2cc6126ffcd
runtime: deduplicate syscall assembly for darwin The darwin port provides different syscall functions that only differ on how they handle the errors, and they are all written in assembly. This duplication can be removed by factoring out the error handling logic to arch-agnostic Go code and leaving the assembly functi...
[ { "path": "src/runtime/sys_darwin.go", "patch": "@@ -10,37 +10,56 @@ import (\n \t\"unsafe\"\n )\n \n+//go:nosplit\n+func libcError() uintptr {\n+\terrPtr, _ := syscall(abi.FuncPCABI0(libc_error_trampoline), 0, 0, 0)\n+\treturn errPtr\n+}\n+func libc_error_trampoline()\n+\n // The X versions of syscall expe...
2025-08-26T09:47:51
rust-lang/rust
5ade46246e89e7c4bc574d971e9b0a525f16d943
765fd2d8c77a570e7069d9f30bb6d3d8fe437f9e
Move `DiagArgMap` to `rustc_error_messages`
[ { "path": "compiler/rustc_error_messages/src/lib.rs", "patch": "@@ -13,6 +13,7 @@ pub use unic_langid::{LanguageIdentifier, langid};\n \n mod diagnostic_impls;\n pub use diagnostic_impls::DiagArgFromDisplay;\n+use rustc_data_structures::fx::FxIndexMap;\n \n pub fn register_functions<R, M>(bundle: &mut fluen...
2026-02-28T18:30:55
nodejs/node
6a19fde949ad876d240fda0e638cf1b1ee2cab0d
c05f4baf3246002abda5bc14efc6996261fa4c00
src: improve error handling in module_wrap Replacing ToLocalChecked() PR-URL: https://github.com/nodejs/node/pull/57188 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/module_wrap.cc", "patch": "@@ -241,8 +241,10 @@ void ModuleWrap::New(const FunctionCallbackInfo<Value>& args) {\n uint32_t len = export_names_arr->Length();\n LocalVector<String> export_names(realm->isolate(), len);\n for (uint32_t i = 0; i < len; i++) {\n- Local<Valu...
2025-02-23T23:27:19
electron/electron
0718c2b9eec4fac19cd799359cf546c165405b96
1a6563fb66455d3ec68efaeb62c11f3c25187c62
fix: system-context-menu with frameless BrowserWindows (#43243)
[ { "path": "shell/browser/native_window_views_win.cc", "patch": "@@ -288,6 +288,15 @@ bool NativeWindowViews::PreHandleMSG(UINT message,\n \n return false;\n }\n+ case WM_RBUTTONUP: {\n+ if (!has_frame()) {\n+ bool prevent_default = false;\n+ NotifyWindowSystemContextMenu(GET_...
2024-08-09T08:08:01
vercel/next.js
c34ea8f280d1fc6e7ab9c1665fd7f8efd40b8336
8cab15c0c947a71eb8606ba29da719a2e121fc88
fix: always use the safe stable stringify (#84909)
[ { "path": "packages/next/src/lib/is-error.ts", "patch": "@@ -1,4 +1,5 @@\n import { isPlainObject } from '../shared/lib/is-plain-object'\n+import safeStringify from 'next/dist/compiled/safe-stable-stringify'\n \n // We allow some additional attached properties for Next.js errors\n export interface NextError...
2025-10-15T16:02:07
facebook/react
7475d568da137b661ce23edc24446871d58c67ef
9180a37fba0c9ad642bfc6e1c2839f88f66485ab
[wip][compiler] Infer optional dependencies Updates PropagateScopeDeps and DeriveMinimalDeps to understand optional dependency paths (`a?.b`). There a few key pieces to this: In PropagateScopeDeps we jump through some hoops to work around the awkward structure of nested OptionalExpressions. This is much easier in HIR...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -224,6 +224,14 @@ const EnvironmentConfigSchema = z.object({\n \n enableReactiveScopesInHIR: z.boolean().default(true),\n \n+ /**\n+ * Enables inference of optional dependency chains. Without this flag\n+ *...
2024-08-28T17:52:36
golang/go
080882a928c96f997a1cb67cef40d2cc6126ffcd
ac803b5949f6dbc5bfa559afe506d35f9e1b3195
net: use context.AfterFunc in connect This saves a goroutine when ctx can be but is not canceled during the connect call. The redundant fd.Close() call is removed, because the caller closes the fd on error. Change-Id: I124d7e480294a48ef74d5650d8ef0489bdfc64d6 Reviewed-on: https://go-review.googlesource.com/c/go/+/69...
[ { "path": "src/net/fd_unix.go", "patch": "@@ -74,46 +74,32 @@ func (fd *netFD) connect(ctx context.Context, la, ra syscall.Sockaddr) (rsa sysc\n \tif err := fd.pfd.Init(fd.net, true); err != nil {\n \t\treturn nil, err\n \t}\n-\tif deadline, hasDeadline := ctx.Deadline(); hasDeadline {\n-\t\tfd.pfd.SetWrite...
2025-08-27T09:38:13
nodejs/node
d62d7ca7b5cdd4e86d9adc4e619b1112fd0964c8
f52a358217a5b3f23571c5659135f556df970764
src: improve error handling in spawn_sync Replacing more ToLocalChecked uses. PR-URL: https://github.com/nodejs/node/pull/57185 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "src/spawn_sync.cc", "patch": "@@ -22,6 +22,7 @@\n #include \"spawn_sync.h\"\n #include \"debug_utils-inl.h\"\n #include \"env-inl.h\"\n+#include \"node_errors.h\"\n #include \"node_external_reference.h\"\n #include \"node_internals.h\"\n #include \"string_bytes.h\"\n@@ -185,15 +186,17 @@ void Syn...
2025-02-23T20:44:43
facebook/react
7771d3a7972cc2483c45fde51b7ec2d926cba097
f2841c2a490b4b776b98568871b69693fedf985c
[compiler] Track refs through object expressions and property lookups Summary: This addresses the issue of the compiler being overly restrictive about refs escaping into object expressions. Rather than erroring whenever a ref flows into an object, we will now treat the object itself as a ref, and apply the same escape...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts", "patch": "@@ -11,12 +11,12 @@ import {\n IdentifierId,\n Place,\n SourceLocation,\n- isRefOrRefValue,\n isRefValueType,\n isUseRefType,\n } from '../HIR';\n import {\n eachInstructionValueOpe...
2024-08-27T17:11:50
electron/electron
70dda694e222a73fd11276908b03509783513e2d
aa19087bed8da3fdd3872e36b272b8673fa15bc7
build: fix build when `enable_pdf_viewer` and `enable_electron_extensions` disabled (#43206) build: fix build when enable_pdf_viewer and enable_electron_extensions disabled
[ { "path": "shell/browser/api/electron_api_session.cc", "patch": "@@ -48,6 +48,7 @@\n #include \"net/base/completion_repeating_callback.h\"\n #include \"net/base/load_flags.h\"\n #include \"net/base/network_anonymization_key.h\"\n+#include \"net/base/registry_controlled_domains/registry_controlled_domain.h\"...
2024-08-07T12:51:38
vercel/next.js
8cab15c0c947a71eb8606ba29da719a2e121fc88
c3c2e574dc07144f04c573eeae44655e49b62814
[Cache Components] Remove `unstable` prefix from `unstable_cacheLife` (#84877) `cacheLife` is now stable and does not require an unstable prefix
[ { "path": "crates/next-custom-transforms/src/transforms/react_server_components.rs", "patch": "@@ -652,7 +652,7 @@ impl ReactServerComponentValidator {\n \"revalidatePath\",\n \"revalidateTag\",\n // \"unstable_cache\", // useless in cl...
2025-10-15T15:14:04
golang/go
ac803b5949f6dbc5bfa559afe506d35f9e1b3195
889e71c2ac43f22dbd41c0b935acac2e778c8f87
cmd/go/internal/work: copy vet tool's stdout to our stdout The go command connects both the stdout and stderr files of its child commands (cmd/compile, cmd/vet, etc) to the go command's own stderr. If the child command is supposed to produce structure output on stderr, as is the case for go vet -json or go fix -diff, ...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -1184,6 +1184,7 @@ type vetConfig struct {\n \tPackageVetx map[string]string // map package path to vetx data from earlier vet run\n \tVetxOnly bool // only compute vetx data; don't report detected problems\n \tVetxOutput stri...
2025-09-11T15:02:03
nodejs/node
f52a358217a5b3f23571c5659135f556df970764
c864dea910c41cd3e4766aa54c98fb1d813194ba
fs: fix rmSync error code Return the correct error code, when a directory_not_empty error occurred. Fixes: https://github.com/nodejs/node/issues/57095 PR-URL: https://github.com/nodejs/node/pull/57103 Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -1705,7 +1705,8 @@ static void RmSync(const FunctionCallbackInfo<Value>& args) {\n return env->ThrowErrnoException(EPERM, \"rm\", message.c_str(), path_c_str);\n } else if (error == std::errc::directory_not_empty) {\n std::string message = \"Directory not...
2025-02-25T21:13:03
facebook/react
f2841c2a490b4b776b98568871b69693fedf985c
96aca5f4f3d7fbe0c13350f90031d8ec4c060ccb
[compiler] Fixture to demonstrate issue with returning object containing ref Summary: We currently can return a ref from a hook but not an object containing a ref. ghstack-source-id: 8b1de4991eb2731b7f758e685ba62d9f07d584b2 Pull Request resolved: https://github.com/facebook/react/pull/30820
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.return-ref-callback-structure.expect.md", "patch": "@@ -0,0 +1,45 @@\n+\n+## Input\n+\n+```javascript\n+// @flow @validateRefAccessDuringRender @validatePreserveExistingMemoizationGuarantees\n+\n+import {useRef} f...
2024-08-27T17:11:50
electron/electron
45891aa75b77061edc548dd142f4ccf8a5deae4d
6293bbced0e2282e2a4076fd5cc422a2a90f1ed5
build: fix patchup logic only running on one platform (#43139)
[ { "path": ".github/actions/checkout/action.yml", "patch": "@@ -75,7 +75,7 @@ runs:\n \"$GITHUB_SERVER_URL/$GITHUB_REPOSITORY\"\n \n ELECTRON_USE_THREE_WAY_MERGE_FOR_PATCHES=1 gclient sync --with_branch_heads --with_tags -vvvvv\n- if [ \"${{ inputs.is-release }}\" != \"true\" ]; then\n+ ...
2024-08-07T08:01:59
vercel/next.js
9864120483fcf26555b7c408cf1aad0ba7b9d1ec
4ee2f4ad8711401c51e51d0f941b1aeb803b537e
Turbopack: process task result as part of the task completion (#84638) ### What? * Set the task output when finishing the task * Remove setting task as initial dirty in the normal execution * Fix race condition when setting output and invalidating dependents
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -52,7 +52,7 @@ use crate::{\n AggregatedDataUpdate, AggregationUpdateJob, AggregationUpdateQueue,\n CleanupOldEdgesOperation, ConnectChildOperation, ExecuteContext, ExecuteContextImpl,\n Ope...
2025-10-15T07:07:26
nodejs/node
6cb0690fccd6ed902f785edd1ae5b55855035998
9fd90d9df78510d657760eb575afa9985a6e8e30
src: detect whether the string is one byte representation or not References: nodejs#56090 PR-URL: https://github.com/nodejs/node/pull/56147 Fixes: https://github.com/nodejs/node/issues/56090 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "doc/api/v8.md", "patch": "@@ -1304,6 +1304,45 @@ setTimeout(() => {\n }, 1000);\n ```\n \n+## `v8.isStringOneByteRepresentation(content)`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* `content` {string}\n+* Returns: {boolean}\n+\n+V8 only supports `Latin-1/ISO-8859-1` and `UTF16` as the underlyi...
2024-12-21T13:36:22
facebook/react
96aca5f4f3d7fbe0c13350f90031d8ec4c060ccb
f90a6bcc4c988f7524ce2be675b3257a530a51e9
Spawn new task if we hit stack overflow (#30419) If we see the "Maximum call stack size exceeded" error we know we've hit stack overflow. We can recover from this by spawning a new task and trying again. Effectively a zero-cost trampoline in the normal case. The new task will have a clean stack. If you have a lot o...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -8677,4 +8677,65 @@ describe('ReactDOMFizzServer', () => {\n '\\n in Bar (at **)' + '\\n in Foo (at **)',\n );\n });\n+\n+ it('can recover from very deep trees to avoid stack overflow', async () => {\n+ ...
2024-08-27T17:10:37
electron/electron
a4dcb0fb3229f037560f63337f860ae218f9bcaf
acd39bd077b28588e5b1488739f6f650b9b3c1b7
build: fixup patches in main (#43218) chore: fixup patches in main
[ { "path": "patches/chromium/fix_potential_draggable_region_crash_when_no_mainframeimpl.patch", "patch": "@@ -16,10 +16,10 @@ MainFrameImpl is not null.\n Upstreamed in https://chromium-review.googlesource.com/c/chromium/src/+/5756619\n \n diff --git a/third_party/blink/renderer/core/exported/web_view_impl.c...
2024-08-05T17:51:17
vercel/next.js
1bd1a33e04f94e673a9bb2f9fbce4f14ea8ed0c5
7e45ab1a47fccaf038247dcf91dbd5545685f0eb
Bump eslint-plugin-react to 7.37.0 (#84876) The version of `eslint-config-next`'s dependency `eslint-plugin-react` is `^7.37.0`, but the repo is `7.35.0`. This difference caused an ESLint error when developing `eslint-config-next`. x-ref: https://github.com/vercel/next.js/actions/runs/18512010193/job/52754871898?pr=8...
[ { "path": "package.json", "patch": "@@ -199,7 +199,7 @@\n \"eslint-plugin-jest\": \"27.6.3\",\n \"eslint-plugin-jsdoc\": \"48.0.4\",\n \"eslint-plugin-mdx\": \"3.1.5\",\n- \"eslint-plugin-react\": \"7.35.0\",\n+ \"eslint-plugin-react\": \"7.37.0\",\n \"eslint-plugin-react-hooks\": \"0....
2025-10-14T23:04:36
nodejs/node
85c0f7aef3da4a12bc1e8f9f9de6ce2d18f6d3de
e28700930d58fa1b8d0d50976ede57ee9432b60c
lib: fixup more incorrect ERR_INVALID_ARG_VALUE uses PR-URL: https://github.com/nodejs/node/pull/57177 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi...
[ { "path": "lib/internal/fs/recursive_watch.js", "patch": "@@ -68,7 +68,7 @@ class FSWatcher extends EventEmitter {\n if (encoding != null) {\n // This is required since on macOS and Windows it throws ERR_INVALID_ARG_VALUE\n if (typeof encoding !== 'string') {\n- throw new ERR_INVALID_...
2025-02-23T00:01:09
electron/electron
acd39bd077b28588e5b1488739f6f650b9b3c1b7
3d766e9ccb82dbec81c03b83171c3f149f71cde8
ci: auto label bug issues with platform (#43198)
[ { "path": ".github/workflows/issue-opened.yml", "patch": "@@ -86,6 +86,29 @@ jobs:\n }\n }\n \n+ const operatingSystems = select('heading:has(> text[value=\"What operating system(s) are you using?\"]) + paragraph > text', tree)?.value.trim().split(', ');\n+ co...
2024-08-05T13:52:49
golang/go
911455fe1893bcd90d30246117415dfbce658d88
f1fd13016ab51b93f5d39b0c46aa8c2b42e8f761
cmd/link: don't count tbss section in TestFlagD TestFlagD looks for a data-like section at the lowest address. On OpenBSD, the .tbss section matches the current condition, which has address 0, causing the test fail. Don't count TLS sections. Also, print the section name on error. Fixes #75444. Change-Id: Ic0aa1a2bb...
[ { "path": "src/cmd/link/elf_test.go", "patch": "@@ -627,30 +627,30 @@ func testFlagD(t *testing.T, dataAddr string, roundQuantum string, expectedAddr\n \tdefer ef.Close()\n \n \t// Find the first data-related section to verify segment placement\n-\tvar firstDataSectionAddr uint64\n-\tvar found bool = false\...
2025-09-12T16:36:38
rust-lang/rust
2c6ec51564e3051a4df44310b27fb51333408a72
c2c6f74fd2216a63c7d180d5dda4c825d503c2fa
Update `__rust_[rd]ealloc` to take `NonNull<u8>` instead of `*mut u8` Passing null to it is [already UB](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2024&gist=8dcd25a549c11de72adc94a668277779) anyway.
[ { "path": "library/alloc/src/alloc.rs", "patch": "@@ -22,11 +22,16 @@ unsafe extern \"Rust\" {\n #[rustc_deallocator]\n #[rustc_nounwind]\n #[rustc_std_internal_symbol]\n- fn __rust_dealloc(ptr: *mut u8, size: usize, align: Alignment);\n+ fn __rust_dealloc(ptr: NonNull<u8>, size: usize, al...
2026-03-01T07:04:31
nodejs/node
e28700930d58fa1b8d0d50976ede57ee9432b60c
22ac5976a837e4caab7c3c8f92b211fe2ba29076
lib: fixup incorrect argument order in assertEncoding PR-URL: https://github.com/nodejs/node/pull/57177 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luig...
[ { "path": "lib/internal/fs/utils.js", "patch": "@@ -153,7 +153,7 @@ function lazyLoadFs() {\n function assertEncoding(encoding) {\n if (encoding && !Buffer.isEncoding(encoding)) {\n const reason = 'is invalid encoding';\n- throw new ERR_INVALID_ARG_VALUE(encoding, 'encoding', reason);\n+ throw n...
2025-02-22T23:07:27
vercel/next.js
299fe7409eacaeeffaa6aa280114495bea7c1643
d540fbd3e604d1838722542acd9b518ac6688b73
[turbopack] Remove the implementation of `TaskInput` from `AutoSet` (#84867) TaskInputs should have deterministic serialization and that isn't really possible with `AutoSet` This was only used as part of the `CapturedIssues` api, so that is modified to wrap the autoset in a `cell` instead of an `Arc`. Originally the...
[ { "path": "crates/next-api/src/operation.rs", "patch": "@@ -38,7 +38,7 @@ async fn entrypoints_without_collectibles_operation(\n ) -> Result<Vc<Entrypoints>> {\n let _ = entrypoints.resolve_strongly_consistent().await?;\n let _ = entrypoints.take_collectibles::<Box<dyn Diagnostic>>();\n- let _ = ...
2025-10-14T19:41:05
electron/electron
3d766e9ccb82dbec81c03b83171c3f149f71cde8
687767139065860dcde89e0ceac65c79eb1b84b5
perf: don't build unused vectors in HidChooserContext (#43192) * refactor: remove unused code in HidChooserContext::DeviceRemoved() * refactor: remove unused code in HidChooserContext::OnHidManagerConnectionError() * refactor: use structured bindings for readability
[ { "path": "shell/browser/hid/hid_chooser_context.cc", "patch": "@@ -273,13 +273,8 @@ void HidChooserContext::DeviceRemoved(device::mojom::HidDeviceInfoPtr device) {\n if (CanStorePersistentEntry(*device))\n return;\n \n- std::vector<url::Origin> revoked_origins;\n- for (auto& map_entry : ephemeral_d...
2024-08-05T13:31:58
facebook/react
e44685e4f196f9e19c3729ab2b3772a40428ac1e
dcae56f8b72f625d8affe5729ca9991b31a492ac
[DevTools] Use Owner Stacks to Implement View Source of a Server Component (#30798) We don't have the source location of Server Components on the client because we don't want to eagerly do the throw trick for all Server Components just in case. Unfortunately Node.js doesn't expose V8's API to get a source location ...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/DevToolsFiberComponentStack.js", "patch": "@@ -108,6 +108,23 @@ export function getStackByFiberInDevAndProd(\n }\n }\n \n+export function getSourceLocationByFiber(\n+ workTagMap: WorkTagMap,\n+ fiber: Fiber,\n+ currentDispatcherRef: CurrentDis...
2024-08-27T00:50:43
golang/go
dc960d0bfeb6ce6abd0cfa2c096476d98e9ec7cd
7acb0d044695ca0fbedf94dca7abfdfd991bc69a
cmd/compile, reflect: further allow inlining of TypeFor Previous CLs optimized direct use of abi.Type, but reflect.Type is indirected, so was not benefiting. For TypeFor, we can use toRType directly without a nil check because the types are statically known. Normally, I'd think SSA would remove the nil check, but du...
[ { "path": "src/cmd/compile/internal/reflectdata/reflect.go", "patch": "@@ -717,6 +717,10 @@ func writeType(t *types.Type) *obj.LSym {\n \t}\n \ts.SetSiggen(true)\n \n+\tif !tbase.HasShape() {\n+\t\tTypeLinksym(t) // ensure lsym.Extra is set\n+\t}\n+\n \tif !NeedEmit(tbase) {\n \t\tif i := typecheck.BaseType...
2025-09-06T03:04:58
rust-lang/rust
f5d3b158b927f3d0221cedeaf1722fde2f8f6d6c
d6eefce00d307fbc7d939671e390abb5beed24e6
Don’t report missing fields in struct exprs with syntax errors. This prevents spurious errors when a field is intended to be present but a preceding syntax error caused it not to be parsed. For example, StructName { foo: 1 bar: 2 } will not successfully parse a field `bar`, and we will report the syntax error bu...
[ { "path": "compiler/rustc_hir_typeck/src/expr.rs", "patch": "@@ -2202,7 +2202,16 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n };\n self.typeck_results.borrow_mut().fru_field_types_mut().insert(expr.hir_id, fru_tys);\n }\n- rustc_hir::StructTailExpr::None | ru...
2026-03-01T02:11:11
vercel/next.js
17c99ca4e5356bc4ca8947757d77d0810acb338c
81b35a698cc4bb3ff85a886c52b098792dd09028
[turbopack] fix typo in docs (#84868) https://github.com/vercel/next.js/pull/84837 merged a bit too quickly
[ { "path": "docs/01-app/03-api-reference/08-turbopack.mdx", "patch": "@@ -134,7 +134,7 @@ This can lead to subtle rendering changes when adopting Turbopack, if applicatio\n \n ### Bundle Sizes\n \n-From our testing on production applications, we observed that Turbopack generally produces bundles that are sim...
2025-10-14T17:45:46
nodejs/node
992036ec32589f61ae94fd59885535a75507f2ed
8c2df73db6ec419b4736cfa7c734a58a7f28f22e
doc: fix typo in Windows building instructions PR-URL: https://github.com/nodejs/node/pull/57158 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
[ { "path": "BUILDING.md", "patch": "@@ -728,7 +728,7 @@ easily. These files will install the following\n To install Node.js prerequisites from Powershell Terminal:\n \n ```powershell\n-winget configure .\\configurations\\configuration.dsc.yaml\n+winget configure .\\.configurations\\configuration.dsc.yaml\n `...
2025-02-24T09:29:17
electron/electron
687767139065860dcde89e0ceac65c79eb1b84b5
e64302cc91af38e96aa65c17c021ad9d7f302e9d
fix: gin_helper::MicrotasksScope instantiation (#43185)
[ { "path": "shell/browser/api/electron_api_auto_updater.cc", "patch": "@@ -46,9 +46,9 @@ void AutoUpdater::OnError(const std::string& message) {\n gin::StringToV8(isolate, message),\n };\n \n- gin_helper::MicrotasksScope microtasks_scope(\n+ gin_helper::MicrotasksScope microtasks_scope{\n ...
2024-08-05T13:24:27
facebook/react
4f546740788ae95ced0338a9cbafc50124b47194
c9c170b63b086964272ea2632551b1f108c6fd56
[compiler] Infer phi types, extend mutable ranges to account for Store effects Redo of an earlier (pre-OSS) PR to infer types of phi nodes. There are a few pieces to this: 1. Update InferTypes to infer the type of `phi.id.type`, not the unused `phi.type`. 2. Update the algorithm to verify that all the phi types are a...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutableRanges.ts", "patch": "@@ -50,8 +50,38 @@ export function inferMutableRanges(ir: HIRFunction): void {\n // Re-infer mutable ranges for all values\n inferMutableLifetimes(ir, true);\n \n- // Re-infer mutable ranges for ali...
2024-08-23T00:26:48
rust-lang/rust
0bb020ace98e58ac2147a3fc43f8d9a610c39c24
1d113d2f3068f6cadf0fe799307d7a06d771d866
Make `const_lit_matches_ty` check literal suffixes for exact type match
[ { "path": "compiler/rustc_middle/src/ty/consts/lit.rs", "patch": "@@ -1,4 +1,4 @@\n-use rustc_ast::LitKind;\n+use rustc_ast::{LitFloatType, LitIntType, LitKind};\n use rustc_hir;\n use rustc_macros::HashStable;\n \n@@ -44,10 +44,17 @@ pub fn const_lit_matches_ty<'tcx>(\n {\n true\n ...
2026-02-22T10:45:25
nodejs/node
4466e0754010062344f32f7816e1b2f2944ecad9
4e1f0ccb4d309bf9a4374b894555d54d0317d578
doc: fix web.libera.chat link in pull-requests.md The old link wasn't prefilling the channel name for me, and this is the format suggested in the docs:<https://libera.chat/guides/webchat#kiwiirc> It works, too! PR-URL: https://github.com/nodejs/node/pull/57076 Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-...
[ { "path": "doc/contributing/pull-requests.md", "patch": "@@ -53,7 +53,7 @@ help, questions, and discussions.\n development of Node.js core specifically.\n \n Node.js also has an unofficial IRC channel:\n-[#Node.js](https://web.libera.chat/?channels=node.js).\n+[#Node.js](https://web.libera.chat/#node.js).\n...
2025-02-23T19:32:19
vercel/next.js
def2220ff5164a0b9cb5ab9e07e796f48f5c5531
f77473c01c90fa084ac8ce17a188e44d83e9076c
Add codemod for Middleware API to Proxy API (#84824) Stacked on https://github.com/vercel/next.js/pull/84764 ### Test Plan Tested on local fixtures as well.
[ { "path": "packages/next-codemod/transforms/__testfixtures__/middleware-to-proxy/next-config-basic.input.ts", "patch": "@@ -0,0 +1,12 @@\n+import type { NextConfig } from 'next'\n+\n+const nextConfig: NextConfig = {\n+ experimental: {\n+ middlewarePrefetch: 'strict',\n+ middlewareClientMaxBodySize: '...
2025-10-14T17:19:02
golang/go
7acb0d044695ca0fbedf94dca7abfdfd991bc69a
60c1ee91834d6c9701c5058830645da6eaa0cee9
runtime: fix syscall9 on darwin/arm64 The aarch64 ABI says that only the first 8 arguments should be passed as registers, subsequent arguments should be put on the stack. Syscall9 is not putting the 9th argument on the stack, and it should. The standard library hasn't hit this issue because it uses Syscall9 for fun...
[ { "path": "src/runtime/sys_darwin_arm64.s", "patch": "@@ -724,13 +724,9 @@ TEXT runtime·syscall9(SB),NOSPLIT,$0\n \tMOVD\t56(R0), R6\t// a7\n \tMOVD\t64(R0), R7\t// a8\n \tMOVD\t72(R0), R8\t// a9\n+\tMOVD\tR8, 0(RSP)\t// the 9th arg and onwards must be passed on the stack\n \tMOVD\t8(R0), R0\t// a1\n \n-\t/...
2025-09-10T14:34:22
electron/electron
78995b956effdebb33b2f4ceed59ec7cb5b03b99
f508f6b6b570481a2b61d8c4f8c1951f492e4309
fix: potential draggable regions crash in DevTools (#43179)
[ { "path": "patches/chromium/.patches", "patch": "@@ -130,3 +130,4 @@ fix_font_face_resolution_when_renderer_is_blocked.patch\n feat_enable_passing_exit_code_on_service_process_crash.patch\n chore_remove_reference_to_chrome_browser_themes.patch\n feat_enable_customizing_symbol_color_in_framecaptionbutton.pat...
2024-08-05T07:56:08
rust-lang/rust
d0a33abd4d65f59e7affdc85ef19f33a05e08304
271951ba187953d39b1c66b062d83f558aa23856
fixed VecDeque::splice() not filling the buffer correctly when resizing the buffer on start = end range
[ { "path": "library/alloc/src/collections/vec_deque/splice.rs", "patch": "@@ -138,8 +138,48 @@ impl<T, A: Allocator> Drain<'_, T, A> {\n /// self.deque must be valid.\n unsafe fn move_tail(&mut self, additional: usize) {\n let deque = unsafe { self.deque.as_mut() };\n- let tail_start =...
2026-02-06T21:55:17
facebook/react
ee7f6757c446c4e79ecc7e2bc22b8c9b712834b7
b57d282369b3b3232d8fed537f5aaf0156430d63
Fix: Synchronous popstate transitions (#30759) This is a refactor of the fix in #27505. When a transition update is scheduled by a popstate event, (i.e. a back/ forward navigation) we attempt to render it synchronously even though it's a transition, since it's likely the previous page's data is cached. In #275...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFiberAsync-test.js", "patch": "@@ -744,7 +744,7 @@ describe('ReactDOMFiberAsync', () => {\n // Because it suspended, it remains on the current path\n expect(div.textContent).toBe('/path/a');\n });\n- assertLog(['Suspend! [/path/b]']);\n+...
2024-08-23T16:30:08
golang/go
a4e25c3d657cf7c3f3a921cc99ea60ad5a337b82
dd8276657f2244193d399f01941ee1d76a79529d
net,internal/poll: skip TestAllocs when race is enabled on Windows The Windows implementation of several network protocols make use of sync.Pool, which randomly drops cached items when race is enabled. While here, zero out the control buffer to allow it to be garbage collected. Fixes #75341 Change-Id: Ie20e21adef2e...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -196,6 +196,8 @@ func freeWSAMsg(msg *windows.WSAMsg) {\n \t// Clear pointers to buffers so they can be released by garbage collector.\n \tmsg.Buffers.Len = 0\n \tmsg.Buffers.Buf = nil\n+\tmsg.Control.Len = 0\n+\tmsg.Control.Buf = nil\n \twsaMsgPool....
2025-09-12T08:13:15
vercel/next.js
f77473c01c90fa084ac8ce17a188e44d83e9076c
7ee397e9e862c2cc99db06c0be85e14c74e27ab0
warnOnce for Middleware deprecation (#84862) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### I...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -1203,7 +1203,7 @@ export default async function build(\n `Both \"${MIDDLEWARE_FILENAME}\" and \"${PROXY_FILENAME}\" files are detected. Please use \"${PROXY_FILENAME}\" instead.`\n )\n }\n- Log.warn(\n+ L...
2025-10-14T16:39:04
nodejs/node
4e1f0ccb4d309bf9a4374b894555d54d0317d578
7174ec9c760442c39961e0d9f1db648bd430ad9b
src: fix crash when lazy getter is invoked in a vm context V8 should invoke native functions in their creation context, preventing dynamic context by the caller. However, the lazy getter has no JavaScript function representation and has no creation context. It is not invoked in the original creation context. Fix the n...
[ { "path": "src/node_errors.h", "patch": "@@ -84,6 +84,7 @@ void OOMErrorHandler(const char* location, const v8::OOMDetails& details);\n V(ERR_INVALID_ARG_TYPE, TypeError) \\\n V(ERR_INVALID_FILE_URL_HOST, TypeError) \\\n V(...
2025-02-23T14:40:33
rust-lang/rust
fa94367a2ea010bf012eea6d09cbef48c610a963
6d483b6b7687ef83c0e0097bb4dab2d7f3c48477
Remember whether a struct literal had syntax errors. This adds a variant `NoneWithError` to AST and HIR representations of the “rest” or “tail”, which is currently always treated identically to the `None` variant.
[ { "path": "clippy_lints/src/no_effect.rs", "patch": "@@ -242,7 +242,7 @@ fn has_no_effect(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {\n !expr_ty_has_significant_drop(cx, expr)\n && fields.iter().all(|field| has_no_effect(cx, field.expr))\n && match &base {\n-...
2026-03-01T01:25:41
vercel/next.js
27821674a6d239b5159bdb285d4633c8435c3568
051351309f13215d80fb6aacab3bf6c7b0de5b03
improve next config schema validation errors (#84847)
[ { "path": "packages/next/src/server/config.ts", "patch": "@@ -22,7 +22,7 @@ import { loadWebpackHook } from './config-utils'\n import { imageConfigDefault } from '../shared/lib/image-config'\n import type { ImageConfig } from '../shared/lib/image-config'\n import { loadEnvConfig, updateInitialEnv } from '@n...
2025-10-14T15:45:11
nodejs/node
ba8fbf34f46dab885cf4bf3602e784c063be2ef3
90ab559f4df36dbb0b2be0f55b18ad192289645e
test: simplify test-http2-client-promisify-connect-error There is no need to try to create a TCP connection that fails due to a missing listening server. Also, the port used for the connection might be used by another process when the connection is made. PR-URL: https://github.com/nodejs/node/pull/57144 Reviewed-By: ...
[ { "path": "test/parallel/test-http2-client-promisify-connect-error.js", "patch": "@@ -8,14 +8,15 @@ const assert = require('assert');\n const http2 = require('http2');\n const util = require('util');\n \n-const server = http2.createServer();\n+const connect = util.promisify(http2.connect);\n \n-server.liste...
2025-02-22T09:25:11
facebook/react
36c04348d7c6179bac4e7f27af823a67289432f9
97e2ce6a003db070d1d14ca25ac4b30e1df4a8ce
[DevTools] Make Functions Clickable to Jump to Definition (#30769) Currently you can jump to definition of a function by right clicking through the context menu. However, it's pretty difficult to discover. This makes the functions clickable to jump to definition - like links. This uses the same styling as we do f...
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -697,8 +697,8 @@ describe('InspectedElement', () => {\n expect(inspectedElement.props).toMatchInlineSnapshot(`\n {\n \"anonymous_fn\": Dehydrated {\n- \"preview_short\": ƒ () {},\n- ...
2024-08-22T16:35:49
golang/go
73676e322396f6d49b4328456023233a2fe5693e
0e1b98993ea6574819813cfad89d7fd1d1c47552
cmd/go: run cgo and cgo compiles in their own actions This change splits package builds further into even more actions. Between the cache action (and cover action, if present) and the actual build action we insert three layers of actions: Check Cache Action | | | V...
[ { "path": "src/cmd/go/internal/work/action.go", "patch": "@@ -19,6 +19,7 @@ import (\n \t\"internal/platform\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"slices\"\n \t\"strings\"\n \t\"sync\"\n \t\"time\"\n@@ -578,6 +579,47 @@ func (ca *coverActor) Act(b *Builder, ctx context.Context, a *Action) error {\n \tret...
2025-08-08T21:35:43