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
0860b9cc1f4a7188b41204bddc57a127a8bbf6e9
538ac7ae4b918136c5bd7d15ada19439d15f8080
[compiler] Add definitions for Object entries/keys/values (#34047) Fixes remaining issue in #32261, where passing a previously useMemo()-d value to `Object.entries()` makes the compiler think the value is mutated and fail validatePreserveExistingMemo. While I was there I added Object.keys() and Object.values() too. -...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts", "patch": "@@ -114,6 +114,99 @@ const TYPED_GLOBALS: Array<[string, BuiltInType]> = [\n returnValueKind: ValueKind.Mutable,\n }),\n ],\n+ [\n+ 'entries',\n+ addFunction(DEFAULT_SHAPES, [],...
2025-08-01T19:59:49
electron/electron
0917ed5f6f7f862f044e1b3097ce1becc0107670
a67aad0f50c34fe9a55a9dd3fb4ab1dcbc7c6835
fix: snapped restoration after minimization (#48142)
[ { "path": "shell/browser/native_window_views.h", "patch": "@@ -323,6 +323,9 @@ class NativeWindowViews : public NativeWindow,\n // Whether the window is currently being moved.\n bool is_moving_ = false;\n \n+ // Whether or not the window was previously snapped e.g. before minimizing.\n+ bool was_snapp...
2025-08-22T18:37:45
vercel/next.js
fe39a3c440fa1463935403bdaabeaf9f509ea131
5c589abdf42d768654bc2a07a6a9614a0f617e80
fix: support multiple icon formats with same base name (icon.png + icon.svg) (#89504) ## What? Fixes a crash in Turbopack and incorrect behavior in Webpack when users have multiple icon files with the same base name but different extensions (e.g., `icon.png` and `icon.svg`) in their app directory. ## Why? This is a...
[ { "path": "crates/next-core/src/next_app/metadata/route.rs", "patch": "@@ -201,9 +201,13 @@ async fn static_route_source(mode: NextMode, path: FileSystemPath) -> Result<Vc<\n original_file_content_b64 = StringifyJs(&original_file_content_b64),\n };\n \n+ // Use full filename (stem + extension...
2026-02-13T12:55:27
golang/go
bba24719a4cad5cc8d771fc9cfff5a38019d554a
9ef26e96e3ae1e3a3d5e01a9b7fd1fa4dc5d6dd5
crypto/tls: don't copy auto-rotated session ticket keys in Config.Clone Once a tls.Config is used, it is not safe to mutate. We provide the Clone method in order to allow users to copy and modify a Config that is in use. If Config.SessionTicketKey is not populated, and if Config.SetSessionTicketKeys has not been call...
[ { "path": "src/crypto/tls/common.go", "patch": "@@ -980,6 +980,10 @@ const maxSessionTicketLifetime = 7 * 24 * time.Hour\n \n // Clone returns a shallow clone of c or nil if c is nil. It is safe to clone a [Config] that is\n // being used concurrently by a TLS client or server.\n+//\n+// If Config.SessionTi...
2026-01-06T22:36:01
rust-lang/rust
bb0bc8567ffa39c767650f6603a965001cba94c0
375a2bb7604505bc5e8caf49b90cf3f49301a1ae
fix: wrap `Option<>` for desugar_try_expr_let_else Example --- ```rust fn test() { let pat: bool = Some(true)$0?; } ``` **Before this PR** ```rust fn test() { let Some(pat): bool = Some(true) else { return None; }; } ``` **After this PR** ```rust fn test() { let Some(pat): Option<bool> = So...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/desugar_try_expr.rs", "patch": "@@ -116,7 +116,7 @@ pub(crate) fn desugar_try_expr(acc: &mut Assists, ctx: &AssistContext<'_>) -> Op\n let fill_expr = || crate::utils::expr_fill_default(ctx.config);\n let new_...
2026-03-24T09:53:31
facebook/react
538ac7ae4b918136c5bd7d15ada19439d15f8080
52612a7cbdd8e1fee9599478247f78725869ebad
[Flight] Fix debug info leaking to outer handler (#34081) The `waitForReference` call for debug info can trigger inside a different object's initializingHandler. In that case, we can get confused by which one is the root object. We have this special case to detect if the initializing handler's object is `null` and we...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -879,7 +879,7 @@ function initializeDebugChunk(\n waitForReference(\n debugChunk,\n {}, // noop, since we'll have already added an entry to debug info\n- '', // noop\n+ ...
2025-08-01T19:44:48
electron/electron
ceb6d28fd3af745c49a65ffc06bd0533a9607595
e12ab6708e0f4b06d806a1d290cd6c18800c2c85
fix: webContent.fromId should be number instead of string (#48059)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -882,7 +882,7 @@ export function create (options = {}): Electron.WebContents {\n return new (WebContents as any)(options);\n }\n \n-export function fromId (id: string) {\n+export function fromId (id: number) {\n return binding.fromId(id);\n }\n "...
2025-08-22T15:40:10
vercel/next.js
5c589abdf42d768654bc2a07a6a9614a0f617e80
9e4e6d6f2057d6823ee8debcfa227085b4fdb67a
docs: document cacheLife expire omission behavior and fix default preset value (#89913) ## Summary - Add note that omitting `expire` in `cacheLife` results in cache never expiring - Fix `default` preset table: `expire` was documented as "1 year" but actual code uses `INFINITE_CACHE` (never) - Add mention of expire omi...
[ { "path": "docs/01-app/03-api-reference/04-functions/cacheLife.mdx", "patch": "@@ -93,6 +93,8 @@ Cache profiles control caching behavior through three timing properties:\n \n During this time, the client-side router displays cached content immediately without any network request. After this period expires, ...
2026-02-13T12:52:38
facebook/react
52612a7cbdd8e1fee9599478247f78725869ebad
bdb4a96f628d3b426d3c79fbd598ec35c05835a3
[compiler] Emit more specific error when making identifiers with reserved words (#34080) This currently throws an invariant which may be misleading. I checked the ecma262 spec and used the same list of reserved words in our check. To err on the side of being conservative, we also error when strict mode reserved words ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts", "patch": "@@ -14,6 +14,7 @@ import type {HookKind} from './ObjectShape';\n import {Type, makeType} from './Types';\n import {z} from 'zod';\n import type {AliasingEffect} from '../Inference/AliasingEffects';\n+import {isReservedWord} ...
2025-08-01T19:10:34
golang/go
e2429619605951b137e25f6a51fbc39d9f0f1e9b
9ef1692c93bf96328bcaf7a5c8a46094748da7f3
simd/archsimd: 128- and 256-bit FMA operations do not require AVX-512 Currently, all FMA operations are marked as requiring AVX512, even on smaller vector widths. This is happening because the narrower FMA operations are marked as extension "FMA" in the XED. Since this extension doesn't start with "AVX", we filter the...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1959,23 +1959,11 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPERMI2Q256load,\n \t\tssa.OpAMD64VPERMI2PD512load,\n \t\tssa.OpAMD64VPERMI2Q512load,\n-\t\tssa.OpAMD64VFMADD213PS128load,\n-\t\tssa.OpAMD64VFM...
2026-01-13T19:18:14
electron/electron
e12ab6708e0f4b06d806a1d290cd6c18800c2c85
610102536857f5370c76aa1284e79bdba1a2fc93
chore: improve failed notification error messages on Windows (#48131)
[ { "path": "shell/browser/notifications/win/windows_toast_notification.cc", "patch": "@@ -13,6 +13,7 @@\n #include <shlobj.h>\n #include <wrl\\wrappers\\corewrappers.h>\n \n+#include \"base/containers/fixed_flat_map.h\"\n #include \"base/hash/hash.h\"\n #include \"base/logging.h\"\n #include \"base/strings/s...
2025-08-22T15:35:39
vercel/next.js
9e4e6d6f2057d6823ee8debcfa227085b4fdb67a
1fac9a1b7ec514a15b8b2a922efcdd3600e567e6
Turbopack: fix CSS dependency locations (#89761) For some locations LightningCSS is 1-indexed (but not all of them, the rustdoc describes it though) IssueSource is always 0-indexed Previously, it looked like this ``` Error: Turbopack build failed with 1 errors: ./bench/basic-app/app/[variants]/styles.css:7:12 Module ...
[ { "path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts", "patch": "@@ -1508,10 +1508,10 @@ describe('ReactRefreshLogBox app', () => {\n \"description\": \"Module not found: Can't resolve './boom.css'\",\n \"environmentLabel\": null,\n \"label\": \"Build Error\",\n- ...
2026-02-13T11:01:32
facebook/react
98773466ce6736a5ffb7e54c1f4b44645ac18a80
9784cb379e249a5495cde5ba3037521207144e91
[Fizz] Don't outline Boundaries that may contribute to the preamble (#34058) Suspense boundaries that may have contributed to the preamble should not be outlined due to size because these boundaries are only meant to be in fallback state if the boundary actually errors. This change excludes any boundary which has the ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -10695,4 +10695,40 @@ describe('ReactDOMFizzServer', () => {\n \n expect(getVisibleChildren(container)).toEqual(<div>Success!</div>);\n });\n+\n+ it('should always flush the boundaries contributing the preamble rega...
2025-07-31T01:06:47
golang/go
9ef1692c93bf96328bcaf7a5c8a46094748da7f3
e2fef50def98b87107ab963f657d43d7869b8463
simd/archsimd/_gen/simdgen: feature implications This simplifies our handling of XED features, adds a table of which features imply which other features, and adds this information to the documentation of the CPU features APIs. As part of this we fix an issue around the "AVXAES" feature. AVXAES is defined as the combi...
[ { "path": "src/simd/archsimd/_gen/simdgen/gen_simdTypes.go", "patch": "@@ -189,6 +189,7 @@ type X86Features struct {}\n var X86 X86Features\n \n {{range .}}\n+{{$f := .}}\n {{- if eq .Feature \"AVX512\"}}\n // {{.Feature}} returns whether the CPU supports the AVX512F+CD+BW+DQ+VL features.\n //\n@@ -199,11 +...
2026-01-13T14:34:53
rust-lang/rust
4e1fd93ab735a64c824e58fb76052b1b6194da18
375a2bb7604505bc5e8caf49b90cf3f49301a1ae
Fix not applicable on ambiguous ident pat for merge_match_arms Example --- ```rust enum X { A, B, C, } use X::*; fn main() { match A { $0A => todo!(), B => todo!(), C => todo!(), } } ``` **Before this PR** Assist not applicable **After this PR** ```rust enum X { A, ...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/merge_match_arms.rs", "patch": "@@ -160,8 +160,11 @@ fn get_arm_types<'db>(\n }\n }\n ast::Pat::IdentPat(ident_pat) => {\n- if let Some(name) = ident_pat.name() {\n+ ...
2026-01-06T09:46:00
vercel/next.js
43c9a4915a8297db488ffdedc7b560660dbff55d
55046e234fa815b53db29953e6d6e2ac60c05387
docs: improve next/image localPatterns error page (#89914) Align with https://nextjs.org/docs/messages/next-image-unconfigured-host Closes: https://linear.app/vercel/issue/DOC-5850/feedback-image-configuration-it-doesn-t-work-my-pattern-is-defined-as
[ { "path": "errors/next-image-unconfigured-localpatterns.mdx", "patch": "@@ -4,27 +4,76 @@ title: '`next/image` Un-configured localPatterns'\n \n ## Why This Error Occurred\n \n-One of your pages that leverages the `next/image` component, passed a `src` value that uses a URL that isn't defined in the `images...
2026-02-13T10:18:04
nodejs/node
8ea8d4ce838b848c366952db1c9605c9769807e3
3dba25fbd239f446ab1988ffbf6410de8fee1078
src: remove unconditional NAPI_EXPERIMENTAL in node.h PR-URL: https://github.com/nodejs/node/pull/60345 Fixes: https://github.com/nodejs/node/issues/60311 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
[ { "path": "node.gyp", "patch": "@@ -890,6 +890,9 @@\n 'NODE_ARCH=\"<(target_arch)\"',\n 'NODE_PLATFORM=\"<(OS)\"',\n 'NODE_WANT_INTERNALS=1',\n+ # Define NAPI_EXPERIMENTAL to enable Node-API experimental function symbols being exposed.\n+ 'NAPI_EXPERIMENTAL=1',\n+ ...
2025-10-30T10:50:44
facebook/react
4395689980a3e7d771675c99e4de42f40ea5bf0d
6891dcb87db831db17ab109730dea63706875dd7
[compiler] ref guards apply up to fallthrough of the test (#34024) Fixes #30782 When developers do an `if (ref.current == null)` guard for lazy ref initialization, the "safe" blocks should extend up to the if's fallthrough. Previously we only allowed writing to the ref in the if consequent, but this meant that you co...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccessInRender.ts", "patch": "@@ -27,6 +27,7 @@ import {\n eachTerminalOperand,\n } from '../HIR/visitors';\n import {Err, Ok, Result} from '../Utils/Result';\n+import {retainWhere} from '../Utils/utils';\n \n /**\n * Va...
2025-07-29T17:53:13
golang/go
e2fef50def98b87107ab963f657d43d7869b8463
7f6418bb4e44b1b11d428d402dd6935a2a1ea335
runtime: rename mallocTiny* to mallocgcTinySize* This makes it easier to identify which functions are used for memory allocation by looking for functions that start with mallocgc. The Size suffix is added so that the isSpecializedMalloc function in cmd/compile/internal/ssa can distinguish between the generated functio...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -480,7 +480,7 @@ func isSpecializedMalloc(aux Aux) bool {\n \tname := fn.String()\n \treturn strings.HasPrefix(name, \"runtime.mallocgcSmallNoScanSC\") ||\n \t\tstrings.HasPrefix(name, \"runtime.mallocgcSmallScanNoHeaderSC\") ||\n-\t\tstrings...
2026-01-12T19:37:39
vercel/next.js
dbb7791e8ff732f30f3ce8e599e2274d4848b4a5
5070ad0df4f7fa9b448516035cdea4738814706b
Turbopack hmr: fix missing factories (#89934) This fixes a bug introduced in d77eb04091 where installCompressedModuleFactories would skip installing factories for an entire group of module IDs if any ID in the group already had a factory registered. Test Plan: build https://github.com/vercel/workflow/tree/main/workbe...
[ { "path": "turbopack/crates/turbopack-ecmascript-runtime/js/src/shared/runtime/runtime-utils.ts", "patch": "@@ -564,26 +564,20 @@ function installCompressedModuleFactories(\n throw new Error('malformed chunk format, expected a factory function')\n }\n \n- // Check if ANY of the module IDs in th...
2026-02-13T03:18:12
nodejs/node
77a0a0fc6029cc9499559c2268095377f68b08ba
63f83408ee64c8295286a1de5e402b432ed2f303
inspector: fix crash when receiving non json message PR-URL: https://github.com/nodejs/node/pull/60388 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
[ { "path": "src/inspector_io.cc", "patch": "@@ -353,6 +353,9 @@ std::optional<std::string> InspectorIoDelegate::GetTargetSessionId(\n std::string_view view(message.data(), message.size());\n std::unique_ptr<protocol::DictionaryValue> value =\n protocol::DictionaryValue::cast(JsonUtil::parseJSON(vie...
2025-10-29T11:20:29
rust-lang/rust
bd16cd4fb54a1f54317d2cb9a7b623c32d081ce3
212b0d480f337082bbe1132d2b62be20e7e61f8a
CopyProp: fix outdated comment
[ { "path": "compiler/rustc_mir_transform/src/copy_prop.rs", "patch": "@@ -58,7 +58,8 @@ impl<'tcx> crate::MirPass<'tcx> for CopyProp {\n }\n }\n \n-/// Utility to help performing substitution of `*pattern` by `target`.\n+/// Utility to help performing substitution: for all key-value pairs in `copy_classe...
2026-03-24T07:12:17
facebook/react
6891dcb87db831db17ab109730dea63706875dd7
3f40eb73a8de2823ea5cab39496faef33aa3f2b1
[compiler] treat ref-like identifiers as refs by default (#34005) `@enableTreatRefLikeIdentifiersAsRefs` is now on by default. I made one small fix to the render helper logic as part of this, uncovered by including more tests. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). B...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -608,7 +608,7 @@ export const EnvironmentConfigSchema = z.object({\n *\n * Here the variables `ref` and `myRef` will be typed as Refs.\n */\n- enableTreatRefLikeIdentifiersAsRefs: z.boolean().default(fal...
2025-07-29T17:51:10
golang/go
7f6418bb4e44b1b11d428d402dd6935a2a1ea335
c16402d15b42cf494774796e606aba66c90d3d6b
all: fix misspellings in comments Change-Id: I121847e7f68c602dd8e9ecddfc41b547f8a86f10 Reviewed-on: https://go-review.googlesource.com/c/go/+/734361 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Junyang Shao <shaoju...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -7795,7 +7795,7 @@ func AddrAuto(a *obj.Addr, v *ssa.Value) {\n // Call returns a new CALL instruction for the SSA value v.\n // It uses PrepareCall to prepare the call.\n func (s *State) Call(v *ssa.Value) *obj.Prog {\n-\tpPosIsStmt := s.pp.P...
2026-01-07T05:46:43
vercel/next.js
02f2183d6a0ebefb4ba7346e76c133df1ee91d22
ea8651a7c4f9f5249dc2f8c82b16700f676eae9c
docs: adapterPath amends (#89930) - use experimental versioning - fix spacing for graphs - spacing in [!NOTE]
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/adapterPath.mdx", "patch": "@@ -1,13 +1,11 @@\n ---\n-title: experimental.adapterPath\n+title: adapterPath\n description: Configure a custom adapter for Next.js to hook into the build process with modifyConfig and onBuildComplete callbacks....
2026-02-13T00:14:00
nodejs/node
4e9e5a183c3f918247942f7d187174d0888fa10a
79d0ed77e5dedf244db480e16c248b815b2a2d9f
src: add enum handle for ToStringHelper + formatting Fixes: https://github.com/nodejs/node/issues/56666 PR-URL: https://github.com/nodejs/node/pull/56829 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/debug_utils-inl.h", "patch": "@@ -38,9 +38,11 @@ struct ToStringHelper {\n \n template <typename T,\n typename test_for_number = typename std::\n- enable_if<std::is_arithmetic<T>::value, bool>::type,\n+ enable_if_t<std::is_arithmetic_v<T> || std::is...
2025-10-28T19:42:25
electron/electron
610102536857f5370c76aa1284e79bdba1a2fc93
97b0280ad43289156f2cabca0806f6740210701e
fix: `net.isOnline` always true in utility processes (#48111) * fix: net.isOnline always true in utilityProcesses * Update shell/services/node/node_service.cc Co-authored-by: Robo <hop2deep@gmail.com> --------- Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "shell/services/node/node_service.cc", "patch": "@@ -12,6 +12,7 @@\n #include \"base/process/process.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"electron/mas.h\"\n+#include \"net/base/network_change_notifier.h\"\n #include \"services/network/public/cpp/wrapper_shared_url_...
2025-08-22T12:30:41
vercel/next.js
462b116ad3b4977e2336f26e20af3f72139e1391
190f5077ea36476a86e07385b04d2173b0fdf022
Add a better error message for when turbopack cannot be loaded (#89633) Add a more direct error message when next is running on a platform that turbopack doesn't support document supported turbopack platforms ## Testing To test i just set `NEXT_TEST_WASM=1` and ran a build ``` Error: Turbopack is not supported on ...
[ { "path": "docs/01-app/03-api-reference/08-turbopack.mdx", "patch": "@@ -16,6 +16,24 @@ We built Turbopack to push the performance of Next.js, including:\n - **Incremental Computation:** Turbopack parallelizes work across cores and **caches** results down to the function level. Once a piece of work is done,...
2026-02-12T23:23:58
facebook/react
1d7e942da76c794c3cbf52a8c214d90a69814a8f
79dc706498c4f8ef077167898492693197e1b975
[compiler] Allow mergeRefs pattern (and detect refs passed as ref prop) (#34004) Two related changes: * ValidateNoRefAccessInRender now allows the mergeRefs pattern, ie a function that aggregates multiple refs into a new ref. This is the main case where we have seen false positive no-ref-in-render errors. * Behind `@e...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/TypeInference/InferTypes.ts", "patch": "@@ -451,6 +451,18 @@ function* generateInstructionTypes(\n \n case 'JsxExpression':\n case 'JsxFragment': {\n+ if (env.config.enableTreatRefLikeIdentifiersAsRefs) {\n+ if (value.kind === ...
2025-07-29T17:06:11
golang/go
b7e6d8b923ad06538c800d635d3ede90d3d0b782
cbe153806e67a16e362a1cdbbf1741d4ce82e98a
os/exec_test: fix test on Plan 9 Error strings vary across OSes when trying to execute a file that does not exist. Since matching them is not the point of the test, ignore them. Fixes #76965 Change-Id: I6d220bc2d0289070f3441adb48983c13b2a3e597 Reviewed-on: https://go-review.googlesource.com/c/go/+/732940 LUCI-TryBot...
[ { "path": "src/os/exec/exec_test.go", "patch": "@@ -1845,23 +1845,13 @@ func TestStart_twice(t *testing.T) {\n \ttestenv.MustHaveExec(t)\n \n \tcmd := exec.Command(\"/bin/nonesuch\")\n-\tfor i, want := range []string{\n-\t\tcond(runtime.GOOS == \"windows\",\n-\t\t\t`exec: \"/bin/nonesuch\": executable file ...
2025-12-28T00:08:26
nodejs/node
1f6b681bf2a49b8d45453b53e866caa557367a27
cfbfc1b05080e7b46ae6c4ff89c2239d7c3eb7e0
src: fix timing of snapshot serialize callback Previously the addAfterUserSerailizeCallback() wasn't ready to be used for building the built-in snapshot. This patch initializes the callbacks at the time lib/internal/v8/start_snapshot.js is loaded, so that these callbacks get run correctly when building the built-in sn...
[ { "path": "lib/internal/main/mksnapshot.js", "patch": "@@ -21,7 +21,6 @@ const { emitExperimentalWarning } = require('internal/util');\n const { emitWarningSync } = require('internal/process/warning');\n \n const {\n- initializeCallbacks,\n namespace: {\n addDeserializeCallback,\n isBuildingSnaps...
2025-10-27T12:43:09
facebook/react
79dc706498c4f8ef077167898492693197e1b975
85bbe39ef8e24a192b5e9f2987b1babf8ce772e1
[compiler] Improve ref validation error message (#34003) Improves the error message for ValidateNoRefAccessInRender, using the new diagnostic type as well as providing a longer but succinct summary of what refs are for and why they're unsafe to access in render. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccessInRender.ts", "patch": "@@ -5,7 +5,11 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import {CompilerError, ErrorSeverity} from '../CompilerError';\n+import {\n+ CompilerDiagnostic,\n+ Co...
2025-07-29T17:03:28
electron/electron
cadba1108879ae9e23e47603d24067202a424574
8aeee3f714c0c1b1c1ff36d32d0a71a2ff58cd7d
build: fixup docs only condition (#48128)
[ { "path": ".github/workflows/build.yml", "patch": "@@ -86,7 +86,7 @@ jobs:\n \n # Docs Only Jobs\n docs-only:\n- needs: checkout-linux\n+ needs: [setup, checkout-linux]\n if: ${{ needs.setup.outputs.docs-only == 'true' }}\n uses: ./.github/workflows/pipeline-electron-docs-only.yml\n wi...
2025-08-20T16:58:54
vercel/next.js
b3774eaefbfcf88d357cb512dd4c614988df09cd
8266e03ac994419e53f42fb9ee0fe6c168b60c0c
Trace upload: include experimental flag states (#89845) This includes the set of experimental flag states in events sent to the trace upload receiver when `--experimental-trace-upload` is set. It only includes a subset of experimental flags (so things like the trace upload flag itself isn't meaninglessly sent). Since...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -914,7 +914,8 @@ export default async function build(\n bundler = Bundler.Turbopack,\n experimentalBuildMode: 'default' | 'compile' | 'generate' | 'generate-env',\n traceUploadUrl: string | undefined,\n- debugBuildPaths: { app: string[]; page...
2026-02-12T20:47:05
golang/go
cbe153806e67a16e362a1cdbbf1741d4ce82e98a
30d0b4026410da3486ba841bb7f13c1d9074e91d
net: fix socket duplication error handling on Windows Calls to dupSocket may fail, but the error is not properly handled because the surrounding code incorrectly checks for nil error instead of non-nil error. I'm not aware of any code paths that would trigger this error, and I haven't been able to create a test case ...
[ { "path": "src/net/fd_windows.go", "patch": "@@ -248,7 +248,7 @@ func (fd *netFD) dup() (*os.File, error) {\n \terr := fd.pfd.RawControl(func(fd uintptr) {\n \t\th, syserr = dupSocket(syscall.Handle(fd))\n \t})\n-\tif err != nil {\n+\tif err == nil {\n \t\terr = syserr\n \t}\n \tif err != nil {", "addit...
2026-01-08T14:50:15
nodejs/node
cfbfc1b05080e7b46ae6c4ff89c2239d7c3eb7e0
51a57f2b3629e733773f1b9ade70c8abcee5eb8c
src: add COUNT_GENERIC_USAGE utility for tests PR-URL: https://github.com/nodejs/node/pull/60434 Fixes: https://github.com/nodejs/node/issues/60423 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com>
[ { "path": "src/api/environment.cc", "patch": "@@ -6,6 +6,7 @@\n #include \"node.h\"\n #include \"node_builtins.h\"\n #include \"node_context_data.h\"\n+#include \"node_debug.h\"\n #include \"node_errors.h\"\n #include \"node_exit_code.h\"\n #include \"node_internals.h\"\n@@ -112,17 +113,21 @@ MaybeLocal<Val...
2025-10-27T12:42:30
vercel/next.js
8266e03ac994419e53f42fb9ee0fe6c168b60c0c
f9d5df3b9c5cac5f8e37da57fe83979e07100f1f
Fix memory leak in dev mode caused by fast-set-immediate (#89779) ## Summary Fixes dev-time memory retention in `fast-set-immediate` caused by module re-evaluation chaining patched globals. ## Root Cause In dev/HMR, `fast-set-immediate.external` can be re-evaluated multiple times. On each evaluation, it captured `g...
[ { "path": "packages/next/src/server/node-environment-extensions/fast-set-immediate.external.test.ts", "patch": "@@ -3,6 +3,7 @@ import { createPromiseWithResolvers } from '../../shared/lib/promise-with-resolv\n import {\n DANGEROUSLY_runPendingImmediatesAfterCurrentTask,\n expectNoPendingImmediates,\n+ ...
2026-02-12T20:18:01
facebook/react
85bbe39ef8e24a192b5e9f2987b1babf8ce772e1
820af2097103309fdc5675d2bde744103a439eff
[compiler] Fixes to enableTreatRefLikeIdentifiersAsRefs (#34000) We added the `@enableTreatRefLikeIdentifiersAsRefs` feature a while back but never enabled it. Since then we've continued to see examples that motivate this mode, so here we're fixing it up to prepare to enable by default. It now works as follows: * If ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/ObjectShape.ts", "patch": "@@ -1211,6 +1211,8 @@ addObject(BUILTIN_SHAPES, BuiltInRefValueId, [\n ['*', {kind: 'Object', shapeId: BuiltInRefValueId}],\n ]);\n \n+addObject(BUILTIN_SHAPES, ReanimatedSharedValueId, []);\n+\n addFunction(\n B...
2025-07-29T16:57:48
nodejs/node
51a57f2b3629e733773f1b9ade70c8abcee5eb8c
4fe325d93de6eb58fcc74aee0e74ebdd1ea4e5b0
perf_hooks: move non-standard performance properties to perf_hooks `performance.eventLoopUtilization` and `performance.timerify` are not part of the Web API. Expose these two functions directly on the `perf_hooks` module. PR-URL: https://github.com/nodejs/node/pull/60370 Fixes: https://github.com/nodejs/node/issues/6...
[ { "path": "doc/api/perf_hooks.md", "patch": "@@ -120,6 +120,10 @@ the Resource Timeline. If `name` is provided, removes only the named resource.\n added:\n - v14.10.0\n - v12.19.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/60370\n+ description: Added `perf_hoo...
2025-10-27T23:23:50
electron/electron
83a5ba1e2c37a99d72bd81dedf53cba2a96e513e
13d955a73ec8836e0a3aa43aa53680a4a0e663be
feat: add `fileBacked` and `purgeable` fields to `process.getSystemMemoryInfo()` for macOS (#47628) * fix: Optimize the value of memory.free in the return data of getSystemMemoryInfo(). * fix: Improve the value of memory in the return data of getSystemMemoryInfo(). * fix: complete API doc. * Update docs/api/process...
[ { "path": "docs/api/process.md", "patch": "@@ -211,6 +211,10 @@ Returns `Object`:\n system.\n * `free` Integer - The total amount of memory not being used by applications or disk\n cache.\n+* `fileBacked` Integer _macOS_ - The amount of memory that currently has been paged out to storage.\n+ Includes m...
2025-08-20T07:49:41
golang/go
30d0b4026410da3486ba841bb7f13c1d9074e91d
5741608de26f06488e771fd7b3b35ca2ca4c93a6
net: don't ignore getsockname errors in newFileFD newFileFD is called when creating a net FD from an existing socket handle. That socket might not be bound yet, in which case getsockname returns a useful error that is currently ignored and replaced with a potentially misleading EPROTONOSUPPORT error later on. Updates...
[ { "path": "src/net/file_posix.go", "patch": "@@ -23,7 +23,11 @@ func newFileFD(f *os.File) (*netFD, error) {\n \t\tpoll.CloseFunc(s)\n \t\treturn nil, os.NewSyscallError(\"getsockopt\", err)\n \t}\n-\tlsa, _ := syscall.Getsockname(s)\n+\tlsa, err := syscall.Getsockname(s)\n+\tif err != nil {\n+\t\tpoll.Clos...
2026-01-08T14:44:51
rust-lang/rust
fef8a7130e21dc45fdbf5e86f3d0b402dae2e69a
ac86fd103df1434db04ad223e5daa891a8a434ab
fix: `collapsible_if` FP when the inner if contains cfg
[ { "path": "clippy_lints/src/collapsible_if.rs", "patch": "@@ -2,7 +2,7 @@ use clippy_config::Conf;\n use clippy_utils::diagnostics::span_lint_hir_and_then;\n use clippy_utils::msrvs::Msrv;\n use clippy_utils::source::{HasSession, IntoSpan as _, SpanRangeExt, snippet, snippet_block_with_applicability};\n-use...
2026-03-24T04:48:31
facebook/react
6b22f31f1ac88cce1b38c67a5c97c7ab0e832823
b5c16371091c1abbf77ec944c755bd139abc7568
[compiler] Aggregate all errors reported from DropManualMemoization (#34002) Noticed this from my previous PR that this pass was throwing on the first error. This PR is a small refactor to aggregate every violation and report them all at once. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sa...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/DropManualMemoization.ts", "patch": "@@ -289,50 +289,84 @@ function extractManualMemoizationArgs(\n instr: TInstruction<CallExpression> | TInstruction<MethodCall>,\n kind: 'useCallback' | 'useMemo',\n sidemap: IdentifierSidemap,\n+...
2025-07-28T17:25:25
golang/go
5741608de26f06488e771fd7b3b35ca2ca4c93a6
df6c351aa4bbc8805406bfef979e62f59fc76da9
net: don't ignore errors in TestUnixUnlink TestUnixUnlink calls some functions and methods that can fail, but it ignores the returned errors. This test is flaky on Windows, and those errors should be checked to help diagnose the problem. Updates #75282 Updates #76582 Updates #77038 Change-Id: Ia868762a4c0b94a7255d57...
[ { "path": "src/net/unixsock_test.go", "patch": "@@ -375,6 +375,17 @@ func TestUnixUnlink(t *testing.T) {\n \t\t}\n \t\treturn l.(*UnixListener)\n \t}\n+\tfileListener := func(t *testing.T, l *UnixListener) (*os.File, Listener) {\n+\t\tf, err := l.File()\n+\t\tif err != nil {\n+\t\t\tt.Fatal(err)\n+\t\t}\n+\...
2026-01-08T09:25:44
vercel/next.js
f9d5df3b9c5cac5f8e37da57fe83979e07100f1f
1486592094760fd4c5b3632177b055402961f835
[Instant] Fix crash with search params (#89922) In dev validation, we're disassembling a payload from a dynamic render. If the request had search params, page segments in the router state will have them attached: `__PAGE__?{"q":"123"}`. In `findNavigationsToValidate`, we do the equivalent of constructing a flightRoute...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -4178,7 +4178,8 @@ async function validateInstantConfigs(\n try {\n init = await findNavigationsToValidate(\n ctx.componentMod.routeModule.userland.loaderTree,\n- ctx.getDynamicParamFromSegment\n+ ctx.getDynam...
2026-02-12T19:31:18
electron/electron
13d955a73ec8836e0a3aa43aa53680a4a0e663be
fdf29ce83870109d403f5c23ae529dbd0e8f4fee
fix: system accent color parsing hex order (#48085) fix: system accent color parsing
[ { "path": "shell/common/color_util.cc", "patch": "@@ -12,6 +12,8 @@\n \n #if BUILDFLAG(IS_WIN)\n #include <dwmapi.h>\n+\n+#include \"base/win/registry.h\"\n #endif\n \n namespace {\n@@ -68,12 +70,18 @@ std::string ToRGBAHex(SkColor color, bool include_hash) {\n \n #if BUILDFLAG(IS_WIN)\n std::optional<DWORD...
2025-08-19T08:01:41
nodejs/node
d9cf867a9dad11b5aca34b4dd59a061efa3667f0
eea19fa03cccbd3c7f52b3a95970bd09875b4e4d
lib: fix typo in createBlobReaderStream Corrects the misspelling of "proecss" to "process". PR-URL: https://github.com/nodejs/node/pull/60132 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/blob.js", "patch": "@@ -478,7 +478,7 @@ function createBlobReaderStream(reader) {\n // We keep reading until we either reach EOS, some error, or we\n // hit the flow rate of the stream (c.desiredSize).\n // We use set immediate here because we have to al...
2025-10-27T14:14:15
golang/go
fed3b0a298464457c58d1150bdb3942f22bd6220
55ab5bba17a5221a51df244c8a3aeb1898cbdf1a
cmd/dist: fix goroot typo in panic message Change-Id: I636a029eedaab0967b774648670710d1303a1f7c GitHub-Last-Rev: 519faedc5b8327696efeeb431ef66e9fd29f0db7 GitHub-Pull-Request: golang/go#77081 Reviewed-on: https://go-review.googlesource.com/c/go/+/734080 Reviewed-by: Ian Lance Taylor <iant@golang.org> LUCI-TryBot-Result...
[ { "path": "src/cmd/dist/imports.go", "patch": "@@ -259,6 +259,6 @@ func resolveVendor(imp, srcDir string) string {\n \t} else if strings.HasPrefix(srcDir, filepath.Join(goroot, \"src\")) {\n \t\treturn path.Join(\"vendor\", imp)\n \t} else {\n-\t\tpanic(fmt.Sprintf(\"srcDir %q not in GOOROT/src\", srcDir))\...
2026-01-05T22:59:29
electron/electron
fdf29ce83870109d403f5c23ae529dbd0e8f4fee
3770bb31a7aabd20457d73ad7610dc3b9b6d3d3d
fix: ensure snapshot is valid (#48101)
[ { "path": "BUILD.gn", "patch": "@@ -518,6 +518,10 @@ source_set(\"electron_lib\") {\n \"//v8:v8_libplatform\",\n ]\n \n+ if (v8_use_external_startup_data && use_v8_context_snapshot) {\n+ deps += [ \":mksnapshot_checksum_gen\" ]\n+ }\n+\n public_deps = [\n \"//base\",\n \"//base:i18n\",\...
2025-08-18T21:35:58
vercel/next.js
1486592094760fd4c5b3632177b055402961f835
002f5197c80da62ef0b796ffddb3cb158a18941b
Change UrlBehavior.static_suffix to ResolvedVc<Option<RcStr>> (#89921) ## Summary Changes `UrlBehavior.static_suffix` from `Option<RcStr>` to `ResolvedVc<Option<RcStr>>` so that `css_url_suffix` stays as a Vc longer instead of being eagerly resolved at the call site. This improves caching behavior by keeping the valu...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -475,7 +475,6 @@ pub async fn get_client_chunking_context(\n should_use_absolute_url_references,\n css_url_suffix,\n } = options;\n- let css_url_suffix = css_url_suffix.owned().await?;\n \n let next_mode = mode....
2026-02-12T17:52:36
nodejs/node
790489c5a96d8981e999a49eab297f46fd6d70ab
7bc76d98950a8d0532a008f61b6c2f5f9e58a8a9
test,crypto: fix conditional SHA3-* skip on BoringSSL PR-URL: https://github.com/nodejs/node/pull/60379 Reviewed-By: Shelley Vohr <shelley.vohr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "test/parallel/test-webcrypto-sign-verify-rsa.js", "patch": "@@ -241,13 +241,13 @@ async function testSaltLength(keyLength, hash, hLen) {\n ['SHA-256', 32],\n ['SHA-384', 48],\n ['SHA-512', 64],\n- ['SHA3-256', 32],\n- ['SHA3-384', 48],\n- ['SHA3-512', 64],\n+ ...
2025-10-25T15:13:30
golang/go
108b333d510c1f60877ac917375d7931791acfe6
2bbb2ace346a26e0b1f7e32f1cdc645db8170d1c
cmd/go: only use check cache action's dependencies to build vet config We manipulate the dependencies of the build action when adding the non-test variant of the package being tested as a dependency for the test, so the set of deps of the build package doesn't correctly represent the dependencies of the package that h...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -627,7 +627,7 @@ func (b *Builder) checkCacheForBuild(a, buildAction *Action, covMetaFileName str\n \t// If we are going to do a full build anyway,\n \t// we're going to regenerate the files in the build action anyway.\n \tif need == needVet {\n-\t\...
2026-01-08T17:45:34
electron/electron
3770bb31a7aabd20457d73ad7610dc3b9b6d3d3d
ed4a99ba5b0fcea170dd71dd840b19538a440be2
fix: avoid deprecated login item methods (#48090)
[ { "path": "shell/browser/browser_mac.mm", "patch": "@@ -426,19 +426,18 @@ LoginItemSettings GetLoginItemSettingsDeprecated() {\n #else\n // If the app was previously set as a LoginItem with the deprecated API,\n // we should report its LoginItemSettings via the old API.\n- LoginItemSettings settings_de...
2025-08-18T05:00:52
vercel/next.js
9b0277f02cab76f011790b9453123ef684979254
662773452238531de43482f7db102d5ba14c9cd7
Turbopack: Pass asset_suffix_path as Vc (#89899) ## Summary - Pass `asset_suffix_path` as `Vc<Option<RcStr>>` instead of eagerly resolving it to `Option<RcStr>` in the chunking context option structs - Add filesystem cache size growth assertions to e2e tests to detect unbounded cache growth regressions ## Why Previo...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1440,12 +1440,7 @@ impl Project {\n pub(super) async fn client_chunking_context(\n self: Vc<Self>,\n ) -> Result<Vc<Box<dyn ChunkingContext>>> {\n- let css_url_suffix = self\n- .next_config()\n- .asset_suf...
2026-02-12T16:45:50
nodejs/node
7bc76d98950a8d0532a008f61b6c2f5f9e58a8a9
9be412f93d08dac32c4c8a85d59fda06790ee0bf
win: upgrade Visual Studio workload from 2019 to 2022 PR-URL: https://github.com/nodejs/node/pull/60318 Fixes: https://github.com/nodejs/node/issues/59031 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ulises ...
[ { "path": "tools/msvs/install_tools/install_tools.bat", "patch": "@@ -61,6 +61,6 @@ cls\n -ArgumentList '-NoProfile -InputFormat None -ExecutionPolicy Bypass -Command ^\n [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; ^\n iex ((New-Object System.Net.WebClient).D...
2025-10-25T14:15:57
golang/go
2bbb2ace346a26e0b1f7e32f1cdc645db8170d1c
6b2505c79cb3838c6e27cf47ac09980fe51c83c2
runtime/trace: fix documentation comment Correct documentation comment for mul function Change-Id: I8b90f02bf0aaba9bb5813833d1b9dd1ebb7d71f4 GitHub-Last-Rev: e91af64af9bad9cd2574dc3dd7ed88123a288be8 GitHub-Pull-Request: golang/go#77082 Reviewed-on: https://go-review.googlesource.com/c/go/+/734100 Reviewed-by: Michael...
[ { "path": "src/runtime/trace/recorder.go", "patch": "@@ -112,7 +112,7 @@ func runtime_traceClockNow() uint64\n // frequency is nanoseconds per timestamp unit.\n type frequency float64\n \n-// mul multiplies an unprocessed to produce a time in nanoseconds.\n+// mul multiplies an unprocessed timestamp to prod...
2026-01-05T23:08:44
electron/electron
0e6c26096f857ad4e8cc4c5eb312096538213a76
7792ed1efa6bb8a71f328af378b8694ae17cc227
fix: `shell.openPath` should be non-blocking (#48079) fix: shell.openPath should be non-blocking
[ { "path": "shell/common/platform_util_linux.cc", "patch": "@@ -342,7 +342,7 @@ void ShowItemInFolder(const base::FilePath& full_path) {\n \n void OpenPath(const base::FilePath& full_path, OpenCallback callback) {\n // This is async, so we don't care about the return value.\n- XDGOpen(full_path.DirName(),...
2025-08-15T20:55:31
nodejs/node
2bda7cbfb62778bd793fbceaa9a5a907c3d344be
62263572376cefa52761a7eb39fad4fcbfdbf37c
test: increase debugger waitFor timeout on macOS PR-URL: https://github.com/nodejs/node/pull/60367 Refs: https://github.com/nodejs/node/actions/runs/18694915575/job/53309761263?pr=60343 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gma...
[ { "path": "test/common/debugger.js", "patch": "@@ -7,12 +7,10 @@ const BREAK_MESSAGE = new RegExp('(?:' + [\n 'exception', 'other', 'promiseRejection', 'step',\n ].join('|') + ') in', 'i');\n \n-// Some macOS machines require more time to receive the outputs from the client.\n let TIMEOUT = common.platfor...
2025-10-24T14:21:32
vercel/next.js
d41c50b82833a4c53a726e1e2044bb453db9e9f6
5415c3f32203587a1aac969428cb81d9ff0515f2
Turbopack: Store task error as pointer to the source error (#89293) Store task error as pointer to the source error <!-- 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 che...
[ { "path": "crates/next-napi-bindings/src/next_api/project.rs", "patch": "@@ -37,8 +37,8 @@ use tracing_subscriber::{Registry, layer::SubscriberExt, util::SubscriberInitExt\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n Effects, FxIndexSet, NonLocalValue, OperationValue, OperationVc, PrettyPri...
2026-02-12T05:37:38
golang/go
6b2505c79cb3838c6e27cf47ac09980fe51c83c2
4b89bcb8b7141c7e4ef1a7dbb4c3f17f589d89c0
cmd/go: remove user-content from doc strings in cgo ASTs. Thank you to RyotaK (https://ryotak.net) of GMO Flatt Security Inc. for reporting this issue. Updates golang/go#76697 Fixes CVE-2025-61732 Change-Id: I1121502f1bf1e91309eb4bd41cc3a09c39366d36 Reviewed-on: https://go-review.googlesource.com/c/go/+/734220 Revie...
[ { "path": "src/cmd/cgo/ast.go", "patch": "@@ -301,17 +301,12 @@ func (f *File) saveExport(x any, context astContext) {\n \t\t\terror_(c.Pos(), \"export comment has wrong name %q, want %q\", name, n.Name.Name)\n \t\t}\n \n-\t\tdoc := \"\"\n-\t\tfor _, c1 := range n.Doc.List {\n-\t\t\tif c1 != c {\n-\t\t\t\td...
2026-01-06T21:09:19
facebook/react
cc015840ef72d48de86778785894c7ca44f4f856
19baee813cb08fc5971a3b301814faa6cd530ec8
fix: `React.use` inside `React.lazy`-ed component on SSR (#33941)
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -6340,6 +6340,63 @@ describe('ReactDOMFizzServer', () => {\n expect(getVisibleChildren(container)).toEqual('Hi');\n });\n \n+ it('should correctly handle different promises in React.use() across lazy components', as...
2025-07-28T08:36:08
electron/electron
68e7b38c05fe4df862df3bf537f2ded5854ecab5
a051c7c2747719de9068e00db707853296a6aa07
build: use quick tunnels for ssh debugging (#47938) * build: use dynamic local tunnels for ssh debugging * weeee * that'll do * chore: pretty output * build: allow ssh input --------- Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com>
[ { "path": ".github/actions/ssh-debug/action.yml", "patch": "@@ -6,10 +6,10 @@ inputs:\n required: true\n default: 'false'\n timeout:\n- description: 'SSH session timeout in minutes'\n+ description: 'SSH session timeout in seconds'\n required: false\n type: number\n- default: 60\n+...
2025-08-14T11:41:07
nodejs/node
f819aec288eacd8f0750793045bcbc37e22b5572
1acd8df36ff61f1fd1f92bdb9a2d2a646ec8d071
deps: V8: cherry-pick ff34ae20c8e3 Original commit message: [objects] improve module linked status DCHECKs Improve DCHECKs that requires a module to be linked. This includes kLinked, kEvaluated, kEvaluatingAsync, kErrored and the missing kEvaluating. kEvaluating can be found when a cyclic module is b...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "...
2025-10-20T09:22:14
facebook/react
19baee813cb08fc5971a3b301814faa6cd530ec8
2aa5f9d4e3f961c6ec2c14f80403d35b7f2fe83e
[Runtime] Fix CI (#33999)
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ReactCompilerRule-test.ts", "patch": "@@ -247,9 +247,10 @@ const tests: CompilerTestCases = {\n name: 'Pipeline errors are reported',\n code: normalizeIndent`\n import useMyEffect from 'useMyEffect';\n+ import {AUTODEPS} from...
2025-07-25T19:04:35
golang/go
4b89bcb8b7141c7e4ef1a7dbb4c3f17f589d89c0
8ac4477d83672af8c3d39399685731ee6b81ce2f
lib/fips140: freeze v1.26.0 FIPS 140-3 module Fixes #76770 Change-Id: Ia617f01ea9be0d1759147b6cca0403c56a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/731840 Reviewed-by: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto...
[ { "path": "lib/fips140/fips140.sum", "patch": "@@ -10,4 +10,4 @@\n #\tgo test cmd/go/internal/fips140 -update\n #\n v1.0.0-c2097c7c.zip daf3614e0406f67ae6323c902db3f953a1effb199142362a039e7526dfb9368b\n-v1.1.0-rc1.zip ea94f8c3885294c9efe1bd8f9b6e86daeb25b6aff2aeb20707cd9a5101f6f54e\n+v1.26.0.zip 9b28f847fdf...
2025-12-19T22:14:36
electron/electron
53003d7af9e8e15d6b9883ab1928fe0c1d50a168
63d7f609cdafcc6602bf2b81d719e18c9a77cd7a
fix: `app.accessibilitySupportEnabled` (#48041) fix: app.accessibilitySupportEnabled on macOS
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -1159,7 +1159,8 @@ void App::DisableDomainBlockingFor3DAPIs(gin_helper::ErrorThrower thrower) {\n \n bool App::IsAccessibilitySupportEnabled() {\n auto* ax_state = content::BrowserAccessibilityState::GetInstance();\n- return ax_state->GetAcc...
2025-08-12T20:51:27
nodejs/node
1acd8df36ff61f1fd1f92bdb9a2d2a646ec8d071
de8386de4d16f7f481b7c89e2b5138fd949dc53d
deps: V8: backport fed47445bbdd Original commit message: Fix build on gcc This commit fixes two issues 1. ``` In file included from ../../src/compiler/turboshaft/assembler.h:37, from ../../src/wasm/turboshaft-graph-interface.h:13, from ../../src/wasm/fu...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.7',\n+ 'v8_embedder_string': '-node.8',\n \n ##### V8 defaults for Node.js #####\n "...
2025-10-07T21:28:34
vercel/next.js
51d97c8bdcb2ccdf30207eac1331665a1bc2756f
b6cf46a851e75001026592c6c0c14d84d558246f
test: allow query suffix in related media URL e2e assertions (#89872) ## Summary - apply the same deploy query-suffix tolerance (`(?:\?.*)?`) to related e2e background-image URL assertions - update SCSS URL tests (`url-global-partial`, `url-global-asset-prefix-1`, `url-global-asset-prefix-2`) and `url-imports` CSS bac...
[ { "path": "test/e2e/app-dir/scss/url-global-asset-prefix-1/url-global-asset-prefix-1.test.ts", "patch": "@@ -34,7 +34,7 @@ describe.skip('SCSS Support loader handling', () => {\n .elementByCss('.red-text')\n .getComputedCss('background-image')\n expect(background).toMatch(\n- ...
2026-02-12T01:28:47
rust-lang/rust
af6324a90f502d18cebcf5d10fe90ae613007a42
6f22f61305478df09f9a4523743f85d9f558c3d7
Fix typo in doc comment for `char::to_titlecase`
[ { "path": "library/core/src/char/methods.rs", "patch": "@@ -1212,7 +1212,7 @@ impl char {\n /// returned by [`Self::to_uppercase`]. Prefer this method when seeking to capitalize\n /// Only The First Letter of a word, but use [`Self::to_uppercase`] for ALL CAPS.\n ///\n- /// If this `char` doe...
2026-03-24T02:25:09
facebook/react
2aa5f9d4e3f961c6ec2c14f80403d35b7f2fe83e
8c587a2a411fd6bd9d82b17ff1030eb263c564a1
[compiler] fix false positive "mutate frozen" validation with refs (#33993) The test case here previously reported a "Cannot modify local variables after render completes" error (from ValidateNoFreezingKnownMutableFunctions). This happens because one of the functions passed to a hook clearly mutates a ref — except tha...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingRanges.ts", "patch": "@@ -249,6 +249,7 @@ export function inferMutationAliasingRanges(\n }\n for (const param of [...fn.context, ...fn.params]) {\n const place = param.kind === 'Identifier' ? param : param.pl...
2025-07-25T17:08:09
electron/electron
afb0ee418cd4bf813af040467bef15b5422c6ee3
55d8b71d7279332d27c1115105a3228903d34f1c
fix: re-entrancy issues in `webContents.loadURL()` (#48004) fix: re-entrancy issues in webContents.loadURL()
[ { "path": "filenames.auto.gni", "patch": "@@ -144,6 +144,7 @@ auto_filenames = {\n \"docs/api/structures/service-worker-info.md\",\n \"docs/api/structures/shared-dictionary-info.md\",\n \"docs/api/structures/shared-dictionary-usage-info.md\",\n+ \"docs/api/structures/shared-texture-handle.md\...
2025-08-11T15:20:35
golang/go
874d8b98eba8129559b97d2fdfa02ddeb88b95f9
d1e7f49e3d1eb039d9d2aed3ba923459bd42aa7c
cmd/go/internal/work: decrement concurrentProcesses when action finishes This fixes a bug where we only incremented concurrentProcesses but never decremented it, causing us to run out of tokens and give all compiles -c=1 after a point. Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64_c2s16-perf_vs_parent,gotip-l...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -248,6 +248,11 @@ func (b *Builder) Do(ctx context.Context, root *Action) {\n \n \twg.Wait()\n \n+\tif tokens != totalTokens || concurrentProcesses != 0 {\n+\t\tbase.Fatalf(\"internal error: tokens not restored at end of build: tokens: %d, totalToke...
2026-01-06T22:18:48
vercel/next.js
b6cf46a851e75001026592c6c0c14d84d558246f
317b7d26df367c242e107333ef322849666c0c3c
Allow sitemap.ts and sitemap/page.tsx to coexist in Turbopack (#89789) Solves #78609 Today, Turbopack maps `app/sitemap.ts` to an AppPage of `/sitemap/route`, and `app/sitemap/page.tsx` maps to `/sitemap/page`, which leads to a conflict. This treats sitemap.xml the same way as robots.txt and site.webmanifest, an...
[ { "path": "crates/next-core/src/next_app/metadata/mod.rs", "patch": "@@ -332,6 +332,8 @@ pub fn normalize_metadata_route(mut page: AppPage) -> Result<AppPage> {\n route += \".txt\"\n } else if route == \"/manifest\" {\n route += \".webmanifest\"\n+ } else if route.ends_with(\"/sitemap...
2026-02-12T00:30:29
nodejs/node
de8386de4d16f7f481b7c89e2b5138fd949dc53d
710105bab5b8a369258b343f444d63058d39b79e
deps: V8: cherry-pick f93055fbd5aa Original commit message: [runtime] Fastcase for empty getOwnPropertySymbols() Since symbols are not enumerable we can rule them out in case all properties are in the enum cache. Bug: 447154198 Change-Id: Ib2d58b67e5058d98323fcebaef3daba88c6304b5 Reviewed-on...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "...
2025-10-01T16:59:23
golang/go
d1e7f49e3d1eb039d9d2aed3ba923459bd42aa7c
f6ebd91129e13ef7f495550a4fc8fa74769f6a2d
internal/trace: fix recorder.Write return value for header-only buffers Fix issue #77083 Change-Id: I9189d1e3a6efea8478224164e820f50c818abcd5 GitHub-Last-Rev: bb24cbda95f0b5b10aeae9a5ee8cbe215ba6d4eb GitHub-Pull-Request: golang/go#77092 Reviewed-on: https://go-review.googlesource.com/c/go/+/734300 Reviewed-by: Michae...
[ { "path": "src/runtime/trace/recorder.go", "patch": "@@ -39,7 +39,7 @@ func (w *recorder) Write(b []byte) (n int, err error) {\n \t\tw.headerReceived = true\n \t}\n \tif len(b) == n {\n-\t\treturn 0, nil\n+\t\treturn n, nil\n \t}\n \tba, nb, err := readBatch(b[n:]) // Every write from the runtime is guarant...
2026-01-06T22:47:07
facebook/react
8c587a2a411fd6bd9d82b17ff1030eb263c564a1
12483a119bf21ab69f9837f65b6bed2ba55cb73e
[compiler] clarify text for setState-in-effect error (#33991) --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33991). * #33993 * __->__ #33991 * #33984
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoSetStateInEffects.ts", "patch": "@@ -97,16 +97,21 @@ export function validateNoSetStateInEffects(\n errors.pushDiagnostic(\n CompilerDiagnostic.create({\n category:\n- ...
2025-07-25T17:07:55
rust-lang/rust
3df450f5aeb6d5244ed658a6aa8f679019045b8c
f66622c7eca7fc48ccc4dac848ff911b09a4d566
Cherry-pick 1.94.1 release notes This also fixes the Cargo rendering bug noted in the pre-release thread.
[ { "path": "RELEASES.md", "patch": "@@ -1,3 +1,17 @@\n+Version 1.94.1 (2026-03-26)\n+===========================\n+\n+<a id=\"1.94.1\"></a>\n+\n+* [Fix `std::thread::spawn` on wasm32-wasip1-threads](https://github.com/rust-lang/rust/pull/153634)\n+* [Remove new methods added to `std::os::windows::fs::OpenOpt...
2026-03-24T02:05:53
vercel/next.js
317b7d26df367c242e107333ef322849666c0c3c
c5c469926f72b64562ca3a5b58bf3de302a6f384
Update documentation to explain behavior in a Catch-all route (#89742) <!-- 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: ...
[ { "path": "docs/01-app/03-api-reference/04-functions/use-selected-layout-segment.mdx", "patch": "@@ -35,6 +35,7 @@ export default function ExampleClientComponent() {\n >\n > - Since `useSelectedLayoutSegment` is a [Client Component](/docs/app/getting-started/server-and-client-components) hook, and Layouts a...
2026-02-12T00:27:52
nodejs/node
710105bab5b8a369258b343f444d63058d39b79e
46f72577a427e24f2d7d4fedf7c02c665dde2b9a
deps: support madvise(3C) across ALL illumos revisions In illumos, madvise(3C) now takes `void *` for its first argument post-illumos#14418, but uses `caddr_t` pre-illumos#14418. This fix will detect if the illumos mman.h file in use is pre-or-post-illumos#14418 so builds can work either way. PR-URL: https://github.c...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "...
2025-08-07T14:14:08
electron/electron
55d8b71d7279332d27c1115105a3228903d34f1c
b9ceaabb857e0ec55c81b464facea77ebdddad44
chore: bump chromium to 141.0.7346.0 (main) (#47983) * chore: bump chromium in DEPS to 141.0.7341.0 * chore: bump chromium in DEPS to 141.0.7342.0 * chore: update patches manually resolved conflict in `osr_shared_texture_remove_keyed_mutex_on_win_dxgi.patch` due to https://crrev.com/c/6681354 * 6819541: WebShare: ...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '140.0.7339.2',\n+ '141.0.7346.0',\n 'node_version':\n 'v22.18.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "docs/a...
2025-08-11T03:57:31
golang/go
d1d0fc7a97539206e33f04bac935f6450597137c
9b2e3b9a02bd8872bdbf5c6086674fa6b4bc8ef9
os/exec: avoid atomic.Bool for Cmd.startCalled An atomic.Bool isn't necessary here since, unless otherwise specified, the methods of an object are not concurrency-safe w.r.t. each other. Using an atomic causes the copylocks vet check to warn about copying of Cmd, which is not wrong, because one shouldn't be copying op...
[ { "path": "src/os/exec/exec.go", "patch": "@@ -357,7 +357,9 @@ type Cmd struct {\n \tcachedLookExtensions struct{ in, out string }\n \n \t// startCalled records that Start was attempted, regardless of outcome.\n-\tstartCalled atomic.Bool\n+\t// (Until go.dev/issue/77075 is resolved, we use atomic.SwapInt32,...
2026-01-06T19:48:31
facebook/react
12483a119bf21ab69f9837f65b6bed2ba55cb73e
b2c30493ce891d6e066667aa4a49c51837deaebc
[compiler] Fix for edge cases of mutation of potentially frozen values (#33984) Fixes two related cases of mutation of potentially frozen values. The first is method calls on frozen values. Previously, we modeled unknown function calls as potentially aliasing their receiver+args into the return value. If the receiver...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts", "patch": "@@ -943,7 +943,10 @@ export function printAliasingEffect(effect: AliasingEffect): string {\n return `Assign ${printPlaceForAliasEffect(effect.into)} = ${printPlaceForAliasEffect(effect.from)}`;\n }\n case ...
2025-07-25T17:07:24
vercel/next.js
c5c469926f72b64562ca3a5b58bf3de302a6f384
26306e7f16164a929060fd79115fec8bb485fb94
docs: Move browserToTerminal into logging (#88901) `browserToTerminal` stabilizes `browserDebugInfoInTerminal` - since it lives under logging, let's remove the page and redirect to logging w/ fragment
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/browserDebugInfoInTerminal.mdx", "patch": "@@ -1,34 +0,0 @@\n----\n-title: browserDebugInfoInTerminal\n-description: Forward browser console logs and errors to your terminal during development.\n-redirect: /docs/app/api-reference/config/nex...
2026-02-12T00:08:32
nodejs/node
6e5f3b9fe1ffb47fb231d9288349a23efcefbb06
7bc0f245b4fc60174f4d53761ca566a9608ba4e4
deps: define V8_PRESERVE_MOST as no-op on Windows It's causing linker errors with node.lib in node-gyp and potentially breaks other 3rd party tools PR-URL: https://github.com/nodejs/node/pull/56238 Refs: https://github.com/nodejs/node/pull/55784 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M ...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "...
2024-12-16T10:11:22
electron/electron
d6c0691a63c04ca3ffe88154ded595b763a69327
a201d6c541bc193f78ec25ee6bd9ecb7013435e8
fix: importing from electron/utility in ESM (#47998)
[ { "path": "build/webpack/webpack.config.base.js", "patch": "@@ -121,6 +121,7 @@ if ((globalThis.process || binding.process).argv.includes(\"--profile-electron-in\n 'electron/main$': electronAPIFile,\n 'electron/renderer$': electronAPIFile,\n 'electron/common$': electronAPIFile,...
2025-08-09T07:47:47
golang/go
f8ee0f84753b22254d217bf28ce8ecca7db7025c
b094749bad125db5b89e48248bbb9c7dc1292a95
cmd/go/testdata/vcstest/git: use git commands that work on older git versions On older versions of git (such as 2.25.1), `git branch -M master` fails after `git init` - use `git checkout -b master` instead, which works across multiple versions. Fixes tests on the rather outdated linux/mips* builders. Change-Id: Id86...
[ { "path": "src/cmd/go/testdata/vcstest/git/legacytest.txt", "patch": "@@ -6,7 +6,7 @@ env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME\n env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL\n \n git init\n-git branch -M master\n+git checkout -b master\n \n at 2018-07-17T12:41:39-04:00\n cp x_cf92c7b.go x.go", "additions": ...
2025-12-12T08:03:05
facebook/react
36c2bf5c3e7cd2f804c04d261b675c14d09dcf14
190758e6236938283b51dce7d3fd21af6801a470
[DevTools] Allow all file links in Chrome DevTools to open in external editor (#33985) Stacked on #33983. Allow React to be configured as the default handler of all links in Chrome DevTools. To do this you need to configure the Chrome DevTools setting for "Link Handling:" to be set to "React Developer Tools". By defa...
[ { "path": "packages/react-devtools-extensions/src/main/index.js", "patch": "@@ -18,7 +18,12 @@ import {\n LOCAL_STORAGE_TRACE_UPDATES_ENABLED_KEY,\n } from 'react-devtools-shared/src/constants';\n import {logEvent} from 'react-devtools-shared/src/Logger';\n-import {normalizeUrlIfValid} from 'react-devtool...
2025-07-25T14:27:09
vercel/next.js
26306e7f16164a929060fd79115fec8bb485fb94
7a014a7f89d0b1d4d4bec5924a10d721fdcd84a7
After() docs requests API (#89837) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving D...
[ { "path": "docs/01-app/03-api-reference/04-functions/after.mdx", "patch": "@@ -59,7 +59,11 @@ export default function Layout({ children }) {\n \n ### With request APIs\n \n-You can use request APIs such as [`cookies`](/docs/app/api-reference/functions/cookies) and [`headers`](/docs/app/api-reference/functio...
2026-02-11T23:29:16
nodejs/node
5c50445dfccb86e12c73da1f47933f37075ca4af
a59706f772ada0aefb1903bc183188c99b3388a7
test: fix small compile warning in test_network_requests_buffer.cc PR-URL: https://github.com/nodejs/node/pull/60281 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "test/cctest/inspector/test_network_requests_buffer.cc", "patch": "@@ -168,7 +168,7 @@ TEST(RequestsBuffer, EnforceLimit) {\n buffer.find(\"4\")->second.push_request_data_blob(\n protocol::Binary::fromSpan(kDummyData, 10));\n // \"3\" and \"4\" are kept.\n- EXPECT_EQ(buffer.tota...
2025-10-22T15:16:32
electron/electron
9dcdec5015bfae8d57140d0f4b25ed1cdd9f91ff
095e622a6a694a5e309cfaa0e1d2e5c0c7dd8964
feat: `paint` event move texture data to `handle`, add `colorSpace` (#47315) * feat: paint event move shared texture to handle, add color space * feat: add breaking change * fix: properties. * fix: remove utf8 bom
[ { "path": "docs/api/structures/offscreen-shared-texture.md", "patch": "@@ -4,21 +4,15 @@\n * `widgetType` string - The widget type of the texture. Can be `popup` or `frame`.\n * `pixelFormat` string - The pixel format of the texture. Can be `rgba` or `bgra`.\n * `codedSize` [Size](size.md) - The full ...
2025-08-08T08:13:56
golang/go
b28808d838682b2911698fcb934813b02f39fa69
d64add4d60b69973e5cae62f07983f91435de58b
cmd/go/internal/modindex: fix obvious bug using failed type assertion adonovan pointed out this bug in the review of CL 733320 and this seems to be the cause of all those list_empty_importpath flakes. It makes sense that something nondeterministic would be tied up with the module index because the state of the cache c...
[ { "path": "src/cmd/go/internal/modindex/scan.go", "patch": "@@ -112,10 +112,10 @@ func parseErrorToString(err error) string {\n \t\treturn \"\"\n \t}\n \tvar p parseError\n-\tif e, ok := err.(scanner.ErrorList); ok {\n-\t\tp.ErrorList = &e\n+\tif errlist, ok := err.(scanner.ErrorList); ok {\n+\t\tp.ErrorLis...
2025-12-30T20:41:41
vercel/next.js
098c591f918668b7f54ca74614bb24f83a505c52
2b0e3f1dd7df183ec9a88e23a1839a48428fa3ef
test: stabilize app-dir hash navigation RSC assertion (#89867) ## Summary - stabilize the hash navigation assertion in `navigation.test.ts` by checking for query-param-specific RSC requests instead of any RSC request - switch request header reads from `req.allHeaders()` to synchronous `req.headers()` in the request li...
[ { "path": "test/e2e/app-dir/navigation/navigation.test.ts", "patch": "@@ -150,13 +150,13 @@ describe('app dir - navigation', () => {\n \n describe('hash', () => {\n it('should scroll to the specified hash', async () => {\n- let hasRscRequest = false\n+ const rscRequestUrls = new Set<string>(...
2026-02-11T22:21:52
facebook/react
142fd27bf6e1b46c554d436509bdf9b70f7ef042
7ca2d4cd2e263f1923d958b16797d20d3efbc194
[DevTools] Add Option to Open Local Files directly in External Editor (#33983) The `useOpenResource` hook is now used to open links. Currently, the `<>` icon for the component stacks and the link in the bottom of the components stack. But it'll also be used for many new links like stacks. If this new option is configu...
[ { "path": "packages/react-devtools-core/src/standalone.js", "patch": "@@ -26,7 +26,7 @@ import {\n import {localStorageSetItem} from 'react-devtools-shared/src/storage';\n \n import type {FrontendBridge} from 'react-devtools-shared/src/bridge';\n-import type {ReactFunctionLocation} from 'shared/ReactTypes';...
2025-07-25T14:16:43
nodejs/node
a59706f772ada0aefb1903bc183188c99b3388a7
f46d501b7f4c6a8b838f472693596044d14a566f
doc, module: change async customization hooks to experimental There is ongoing work to replace async customization hooks by a synchronous variant. As a result bugs/design flaws or the async variant (thread leak, overhead) are not addressed. Adapt stability index to avoid wrong assumptions they might move to stable. R...
[ { "path": "doc/api/module.md", "patch": "@@ -608,8 +608,7 @@ changes:\n \n <!-- type=misc -->\n \n-> Stability: 1.2 - Release candidate (asynchronous version)\n-> Stability: 1.1 - Active development (synchronous version)\n+> Stability: 1.1 - Active development\n \n There are two types of module customizatio...
2025-10-22T14:43:22
golang/go
fd45d70799853ef5980a559e206353574108d8da
df4e08ac65e94041367785783ec1482e8bed2397
all: fix some minor grammatical issues in the comments Change-Id: I0459f05e7f6abd9738813c65d993114e931720d5 Reviewed-on: https://go-review.googlesource.com/c/go/+/731000 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Ch...
[ { "path": "src/archive/tar/reader_test.go", "patch": "@@ -787,7 +787,7 @@ type readBadSeeker struct{ io.ReadSeeker }\n \n func (rbs *readBadSeeker) Seek(int64, int) (int64, error) { return 0, fmt.Errorf(\"illegal seek\") }\n \n-// TestReadTruncation test the ending condition on various truncated files and\n...
2025-12-18T02:36:50
electron/electron
a0d983e4b53432b236499cf76638ead4dd3d2c46
f49a645c06da37490f6f2c0a4eea32b867dc05d5
feat: allow macOS tray to maintain position (#47838) * feat: allow macOS tray to maintain position * refactor: just use guid * test: fixup tests * docs: clarify UUID format
[ { "path": "docs/api/tray.md", "patch": "@@ -79,7 +79,15 @@ app.whenReady().then(() => {\n ### `new Tray(image, [guid])`\n \n * `image` ([NativeImage](native-image.md) | string)\n-* `guid` string (optional) _Windows_ - Assigns a GUID to the tray icon. If the executable is signed and the signature contains an...
2025-08-07T17:25:50
rust-lang/rust
90ea993083f841698a5dcccc5069c5e8375df50b
eb9d3caf0511a5fa9fa70251e2ac9fa33a9a4652
Rename various query cycle things. The existing names have bugged me for a while. Changes: - `CycleError` -> `Cycle`. Because we normally use "error" for a `Diag` with `Level::Error`, and this type is just a precursor to that. Also, many existing locals of this type are already named `cycle`. - `CycleError::cycl...
[ { "path": "compiler/rustc_middle/src/queries.rs", "patch": "@@ -131,10 +131,10 @@ use crate::{mir, thir};\n // `Providers` that the driver creates (using several `rustc_*` crates).\n //\n // The result type of each query must implement `Clone`. Additionally\n-// `ty::query::from_cycle_error::FromCycleError`...
2026-03-17T00:43:53
facebook/react
7ca2d4cd2e263f1923d958b16797d20d3efbc194
99be14c883c5c83c9a087d37e19d93d6afb839ed
Work around Chrome DevTools crash on `performance.measure` (#33997)
[ { "path": "packages/react-client/src/ReactFlightPerformanceTrack.js", "patch": "@@ -110,7 +110,7 @@ export function logComponentRender(\n }\n debugTask.run(\n // $FlowFixMe[method-unbinding]\n- performance.measure.bind(performance, entryName, {\n+ performance.measure.bind(p...
2025-07-25T10:32:30
golang/go
df4e08ac65e94041367785783ec1482e8bed2397
cd668d744f77da06ca9565f41c63c3a5251469ee
test/codegen: fix a tab in comparisons.go to ensure pattern works Fix a pattern in test/codegen/comparisons.go to use whitespace instead of a tab. The test needs a whitespace to properly fail if the regalloc change from CL686655 would be missing (in that case we would have a spill immediately after call to memequal, w...
[ { "path": "test/codegen/comparisons.go", "patch": "@@ -660,13 +660,13 @@ func equalVarString8(a string) bool {\n \treturn a[:8] == b\n }\n \n-func equalVarStringNoSpill(a,b string) bool {\n+func equalVarStringNoSpill(a, b string) bool {\n \ts := string(\"ZZZZZZZZZ\")\n \t// arm64:\".*memequal\"\n \tmemeq1 :...
2025-12-06T13:43:55
electron/electron
f49a645c06da37490f6f2c0a4eea32b867dc05d5
8ab5ac9069322fc6c5a454cd69dc4815426e7276
fix: compilation error when disabling extensions and pdf_viewer (#47964)
[ { "path": "shell/browser/plugins/plugin_utils.cc", "patch": "@@ -33,6 +33,7 @@ std::string PluginUtils::GetExtensionIdForMimeType(\n base::flat_map<std::string, std::string>\n PluginUtils::GetMimeTypeToExtensionIdMap(\n content::BrowserContext* browser_context) {\n+ base::flat_map<std::string, std::str...
2025-08-07T15:18:32