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
golang/go
f3d572d96a25d1a0956ef828c0ff510ebf214d22
76345533f70e149511b1f50dbee598d0980cf867
cmd/go: fix race applying fixes in fix and vet -fix modes Previously, the cmd/fix tool, which is analogous to a compiler in a "go fix" or "go vet -fix" build, applied its fixes directly to source files during the build. However, this led to races since the edits may in some cases occur concurrently with other build st...
[ { "path": "src/cmd/go/internal/test/test.go", "patch": "@@ -1371,7 +1371,7 @@ func addTestVet(loaderstate *modload.State, b *work.Builder, p *load.Package, ru\n \t\treturn\n \t}\n \n-\tvet := b.VetAction(loaderstate, work.ModeBuild, work.ModeBuild, p)\n+\tvet := b.VetAction(loaderstate, work.ModeBuild, work...
2025-12-04T20:29:49
electron/electron
3536d4976a3e42f1b96210b77b12d2545cd4b08c
2ad762e0753d4df633a6d5792c2f971919b7ee26
fix: revert moving IsClosed() and IsClosable() into NativeWindow::Close() (#47482) Revert "refactor: move `IsClosed()` and `IsClosable()` tests into `NativeWindow::Close()` (#46888)" This reverts commit 3faddd5ae2ae03be8ba037c77989630576bb8167.
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -362,7 +362,8 @@ void BaseWindow::SetContentView(gin::Handle<View> view) {\n }\n \n void BaseWindow::CloseImmediately() {\n- window_->CloseImmediately();\n+ if (!window_->IsClosed())\n+ window_->CloseImmediately();\n }\n \n void Ba...
2025-06-16T23:41:19
nodejs/node
e4e86ea3ef8c6800d3bb52c461e6f98a491a4973
8ca5fec567a38119ffc21e9e9e1904b2c2cc1a7e
typings: update 'types' binding - Adds: - isGeneratorObject - isProxy - isSharedArrayBuffer - isSymbolObject - Removes: - isTypedArray - Fixes: - isDate - isNativeError - isRegExp - Improves: - isArgumentsObject - isExternal PR-URL: https://github.com/nodejs/node/pull/59692 Reviewed-By: Daeyeon Je...
[ { "path": "src/node_types.cc", "patch": "@@ -14,31 +14,31 @@ namespace node {\n namespace {\n \n #define VALUE_METHOD_MAP(V) \\\n- V(External) \\\n- V(Date) ...
2025-09-24T14:11:47
vercel/next.js
e5043d0e4d62c4fd718544b88d72d3b8488bdbac
ab4b3726ea7408614c0d763b32e2c5472ac5c76d
[ci] Clear Jest transform cache (#89247) <!-- 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 ### Impro...
[ { "path": ".github/workflows/build_reusable.yml", "patch": "@@ -317,9 +317,10 @@ jobs:\n timeout-minutes: ${{ inputs.timeout_minutes }}\n \n # This file messes up the tests because it influences the build root autodetection.\n+ # Jest has a global cache, so PRs that poison the cache can b...
2026-01-29T16:25:08
facebook/react
c498bfce8b9baa3dd21bd0d5124eb3a4549886f1
8e9a5fc6c1a6252ca1727ab8fe0d4ee13f2568ec
[devtools] Allow inspecting cause, name, message, stack of Errors in props (#33023)
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -906,8 +906,8 @@ describe('InspectedElement', () => {\n },\n \"usedRejectedPromise\": {\n \"reason\": Dehydrated {\n- \"preview_short\": Error,\n- \"preview_long\":...
2025-04-26T05:20:57
golang/go
76345533f70e149511b1f50dbee598d0980cf867
b133524c0f661b88fc31db0076a939e1466c8aad
runtime: expand Pinner documentation This change expands the Pinner documentation based on a few points of feedback. - We need a note that the Pinner has a finalizer. - We need a note that the Pinner is safe to reuse. I also added a note that the zero value is ready to use, and expanded upon the use-cases of a Pinner...
[ { "path": "src/runtime/pinner.go", "patch": "@@ -12,7 +12,25 @@ import (\n \n // A Pinner is a set of Go objects each pinned to a fixed location in memory. The\n // [Pinner.Pin] method pins one object, while [Pinner.Unpin] unpins all pinned\n-// objects. See their comments for more information.\n+// objects...
2025-12-03T23:07:26
nodejs/node
8ca5fec567a38119ffc21e9e9e1904b2c2cc1a7e
4f4d5b348c89aad13da3b435c4c11ee882601ec7
timers: fix binding fast call signatures PR-URL: https://github.com/nodejs/node/pull/59600 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/timers.cc", "patch": "@@ -53,9 +53,8 @@ void BindingData::SlowScheduleTimer(const FunctionCallbackInfo<Value>& args) {\n }\n }\n \n-void BindingData::FastScheduleTimer(Local<Object> unused,\n- Local<Object> receiver,\n- i...
2025-07-13T20:38:50
facebook/react
8e9a5fc6c1a6252ca1727ab8fe0d4ee13f2568ec
89e8875ec48c86b366bf62398112923cdf76016a
[Fizz] Enable the progressiveChunkSize option (#33027) Since the very beginning we have had the `progressiveChunkSize` option but we never actually took advantage of it because we didn't count the bytes that we emitted. This starts counting the bytes by taking a pass over the added chunks each time a segment completes...
[ { "path": "fixtures/ssr/src/components/Chrome.js", "patch": "@@ -4,6 +4,8 @@ import Theme, {ThemeToggleButton} from './Theme';\n \n import './Chrome.css';\n \n+import LargeContent from './LargeContent';\n+\n export default class Chrome extends Component {\n state = {theme: 'light'};\n render() {\n@@ -25...
2025-04-25T20:10:53
vercel/next.js
ab4b3726ea7408614c0d763b32e2c5472ac5c76d
f1a047fd80944ac722ab6e481e1ec077378d31fc
fix: coerce HEAD to GET for internal images (#84180) Fixes: https://github.com/vercel/next.js/issues/84129 TODO: - [x] e2e test (?) - [x] verify against repro steps in source issue --------- Co-authored-by: Steven <steven@ceriously.com> Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com>
[ { "path": "packages/next/src/server/image-optimizer.ts", "patch": "@@ -900,9 +900,12 @@ export async function fetchInternalImage(\n ) => Promise<void>\n ): Promise<ImageUpstream> {\n try {\n+ // Coerce HEAD to GET to avoid issues with the image optimizer\n+ const method = !_req.method || _req.meth...
2026-01-29T15:43:18
electron/electron
6779769d22dd751f9877bcef305f94d03306fa33
96fcc2f8c8f4a5577b4eb5312a12dad46501ef14
chore: bump chromium to 139.0.7219.0 (main) (#47348) * chore: bump chromium in DEPS to 139.0.7205.0 * 6543986: Mac: decouple deserializing and applying sandbox policy Refs https://chromium-review.googlesource.com/c/chromium/src/+/6543986 * 6580079: Reland 'Remove the third-party blocking feature' Refs https://chrom...
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -13,7 +13,7 @@ runs:\n git config --global core.fscache true\n git config --global core.preloadindex true\n fi\n- export BUILD_TOOLS_SHA=6e8526315ea3b4828882497e532b8340e64e053c\n+ export BUILD_TOOLS_SHA...
2025-06-16T17:46:06
golang/go
96e142ba2bfe5fe483f5364df91222c19ac13c49
fe4952f1165c43dcd195ab8b024f79ac5beced8a
runtime: skip TestArenaCollision if we run out of hints This seems failure mode seems to have become more common on Windows. I suspect the randomized heap base address has something to do with it, but I'm not 100% sure. What's definitely certain is that we're running out of hints, since we're seeing failures that mhe...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -551,8 +551,11 @@ func MapNextArenaHint() (start, end uintptr, ok bool) {\n \treturn\n }\n \n-func GetNextArenaHint() uintptr {\n-\treturn mheap_.arenaHints.addr\n+func NextArenaHint() (uintptr, bool) {\n+\tif mheap_.arenaHints == nil {\n+\t\treturn 0, fa...
2025-12-03T23:22:18
facebook/react
89e8875ec48c86b366bf62398112923cdf76016a
2d0a5e399f195bfc98fc5e1efa37aab9fa53e097
[compiler] Fallback for inferred effect dependencies (#32984) When effect dependencies cannot be inferred due to memoization-related bailouts or unexpected mutable ranges (which currently often have to do with writes to refs), fall back to traversing the effect lambda itself. This fallback uses the same logic as Prop...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/CollectHoistablePropertyLoads.ts", "patch": "@@ -19,6 +19,7 @@ import {\n BasicBlock,\n BlockId,\n DependencyPathEntry,\n+ FunctionExpression,\n GeneratedSource,\n getHookKind,\n HIRFunction,\n@@ -30,6 +31,7 @@ import {\n Proper...
2025-04-25T19:44:39
nodejs/node
4f4d5b348c89aad13da3b435c4c11ee882601ec7
5ac6ee7716d7694fe4afd75f579837660445f36b
wasi: fix WasiFunction fast call signature PR-URL: https://github.com/nodejs/node/pull/59600 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/node_wasi.cc", "patch": "@@ -266,7 +266,6 @@ inline void EinvalError() {}\n \n template <typename FT, FT F, typename R, typename... Args>\n R WASI::WasiFunction<FT, F, R, Args...>::FastCallback(\n- Local<Object> unused,\n Local<Object> receiver,\n Args... args,\n // NOLINTNEXTL...
2025-07-13T20:23:11
vercel/next.js
458933317a544c2e42a40eddfb2abe562b970fb9
980975f7933d70115f1fc5620fdaa7483d9a96d3
Turbopack: fix tracking modifications for transient and data (#89228) ### What? track modifications on the correct category
[ { "path": "turbopack/crates/turbo-tasks-macros/src/derive/task_storage_macro.rs", "patch": "@@ -2160,8 +2160,7 @@ fn generate_flag_trait_accessor_methods(field: &FieldInfo) -> TokenStream {\n \n // Flags use check_access_call() which handles transient vs non-transient\n let check_access = field.chec...
2026-01-29T11:19:42
electron/electron
6f915e85e208b25ce62c36b656314360733a6ef4
0259abe9201be0028406eebaf7db8aa9beaebc3a
refactor: have ShowSaveDialogSync() return a std::optional<base::FilePath> (#47428) * refactor: have ShowSaveDialogSync() return a std::optional<base::FilePath> * fixup! refactor: have ShowSaveDialogSync() return a std::optional<base::FilePath>
[ { "path": "shell/browser/api/electron_api_dialog.cc", "patch": "@@ -71,9 +71,8 @@ v8::Local<v8::Promise> ShowOpenDialog(\n \n void ShowSaveDialogSync(const file_dialog::DialogSettings& settings,\n gin::Arguments* args) {\n- base::FilePath path;\n- if (file_dialog::ShowSaveDialogSyn...
2025-06-12T10:25:40
golang/go
fe4952f1165c43dcd195ab8b024f79ac5beced8a
8947f092a8427674b7628003b873f57d3b6cdd83
runtime: relax threadsSlack in TestReadMetricsSched runtime.GC is called in the test and may spin up GOMAXPROCS (proportional to the initial count) new threads. We need to be robust to this, and it happens relatively frequently on some platforms. We didn't notice this earlier since the heap is so miniscule that runti...
[ { "path": "src/runtime/testdata/testprog/schedmetrics.go", "patch": "@@ -91,8 +91,10 @@ func SchedMetrics() {\n \t// threads through frequent scheduling, like mayMoreStackPreempt.\n \t// A slack of 5 is arbitrary but appears to be enough to cover\n \t// the leftovers plus any inflation from scheduling-heavy...
2025-12-03T23:13:36
facebook/react
2d0a5e399f195bfc98fc5e1efa37aab9fa53e097
0c28a09eefaa0e70a313644fd8e455c8ab7ba3eb
[compiler] Patch for reactive refs in inferred effect dependencies (#32991) Inferred effect dependencies and inlined jsx (both experimental features) rely on `InferReactivePlaces` to determine their dependencies. Since adding type inference for phi nodes (https://github.com/facebook/react/pull/30796), we have been i...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts", "patch": "@@ -1738,6 +1738,40 @@ export function isStableType(id: Identifier): boolean {\n );\n }\n \n+export function isStableTypeContainer(id: Identifier): boolean {\n+ const type_ = id.type;\n+ if (type_.kind !== 'Object') {\n+...
2025-04-25T19:42:40
nodejs/node
5ac6ee7716d7694fe4afd75f579837660445f36b
e9a0912848cf15be8a6b8d1887d7dc700cf9fdec
process: fix hrtime fast call signatures PR-URL: https://github.com/nodejs/node/pull/59600 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/node_process.h", "patch": "@@ -3,6 +3,7 @@\n \n #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS\n \n+#include \"node_debug.h\"\n #include \"node_snapshotable.h\"\n #include \"v8-fast-api-calls.h\"\n #include \"v8.h\"\n@@ -72,23 +73,23 @@ class BindingData : public SnapshotableObject {...
2025-07-13T20:10:18
electron/electron
38fe14041d5430d63680632a93d2aade6a762f14
996945d3e39e322568c3af775915d7960dd06065
fix: crash calling `Fetch.continueResponse` with `WebContentsView` (#47434) fix: crash calling Fetch.continueResponse with WebContentsView
[ { "path": "shell/browser/api/electron_api_debugger.cc", "patch": "@@ -81,7 +81,11 @@ void Debugger::DispatchProtocolMessage(DevToolsAgentHost* agent_host,\n \n void Debugger::RenderFrameHostChanged(content::RenderFrameHost* old_rfh,\n content::RenderFrameHost* new_rfh) ...
2025-06-11T13:43:47
golang/go
44cb82449e7f24530fe0fe0bf8261ba9e0e4e7d8
435e61c80141653c22e29d81447e4c6e4033f768
runtime/race: set missing argument frame for ppc64x atomic And/Or wrappers The ppc64x TSAN wrappers for atomic And/Or did not initialize R6 with the Go argument frame before calling racecallatomic. Since racecallatomic expects R6 to point to the argument list and dereferences it unconditionally, this led to a nil-poin...
[ { "path": "src/runtime/race_ppc64le.s", "patch": "@@ -329,11 +329,13 @@ TEXT\tsync∕atomic·AddUintptr(SB), NOSPLIT, $0-24\n TEXT\tsync∕atomic·AndInt32(SB), NOSPLIT, $0-20\n \tGO_ARGS\n \tMOVD\t$__tsan_go_atomic32_fetch_and(SB), R8\n+\tADD $32, R1, R6\n \tBR\tracecallatomic<>(SB)\n \n TEXT\tsync∕atomic·An...
2025-11-06T19:43:45
facebook/react
9938f83ca21f6e01e31b41ce8335a4516de276d1
2af218a7287e3ed5d41ff0ba6cb826850646f47c
[compiler] Emit CompileSkip before CompileSuccess event (#33012) Previously the CompileSuccess event would emit first before CompileSkip, so the lsp's codelens would incorrectly flag skipped components/hooks (via 'use no memo') as being optimized. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https:/...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts", "patch": "@@ -469,6 +469,23 @@ export function compileProgram(\n }\n }\n \n+ /**\n+ * Otherwise if 'use no forget/memo' is present, we still run the code through the compiler\n+ * for validation but we ...
2025-04-24T17:30:36
nodejs/node
e9a0912848cf15be8a6b8d1887d7dc700cf9fdec
f5e2ecc41b0d9fdd2067ea15dd9fa0cce4ac21f4
perf_hooks: fix histogram fast call signatures PR-URL: https://github.com/nodejs/node/pull/59600 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/histogram.cc", "patch": "@@ -2,6 +2,7 @@\n #include \"base_object-inl.h\"\n #include \"histogram-inl.h\"\n #include \"memory_tracker-inl.h\"\n+#include \"node_debug.h\"\n #include \"node_errors.h\"\n #include \"node_external_reference.h\"\n #include \"util.h\"\n@@ -11,10 +12,8 @@ namespace no...
2025-07-09T21:29:43
electron/electron
6f48e3ab12e5bd6ee697478eefc2835f8a9e9fb0
06bc59be88ddcfc6ca9c71dbd8c28dfe2bb28e72
ci: fix up branch CI audit workflow (#47404)
[ { "path": ".github/workflows/audit-branch-ci.yml", "patch": "@@ -17,6 +17,7 @@ jobs:\n steps:\n - run: npm install @actions/cache @electron/fiddle-core\n - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1\n+ id: audit-errors\n with:\n git...
2025-06-07T07:58:48
golang/go
435e61c80141653c22e29d81447e4c6e4033f768
54e5540014f7aa7c85a3a5988259ef40637d541a
runtime: reject any goroutine leak test failure that failed to execute This is far more general than the regexp, which was necessary only because runTestProg doesn't return the error. This change makes runTestProg a wrapper function around a function that *does* return the error. For #76526. Change-Id: Ib3daa75eb0fe...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -97,6 +97,13 @@ func runTestProg(t *testing.T, binary, name string, env ...string) string {\n func runBuiltTestProg(t *testing.T, exe, name string, env ...string) string {\n \tt.Helper()\n \n+\tout, _ := runBuiltTestProgErr(t, exe, name, env...)\n+\treturn...
2025-12-03T22:29:19
facebook/react
8b9629c8106b55965ac6e4f078110b484b358101
3a5335676f7df4318e8e399f8f69e880db724f78
[compiler] Fix copyright script (#33003) Don't try to open directories --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33003). * #33004 * __->__ #33003 * #33002 --------- Co-authored-by: Jordan Brow...
[ { "path": "compiler/scripts/copyright.js", "patch": "@@ -51,6 +51,9 @@ if (hasErrors) {\n }\n \n function processFile(file) {\n+ if (fs.lstatSync(file).isDirectory()) {\n+ return;\n+ }\n let source = fs.readFileSync(file, 'utf8');\n \n if (source.indexOf(META_COPYRIGHT_COMMENT_BLOCK) === 0) {", ...
2025-04-24T01:55:24
nodejs/node
f5e2ecc41b0d9fdd2067ea15dd9fa0cce4ac21f4
f46444d8b7333248da8adf143eee9feb3f00fe9e
2025-09-24, Version 22.20.0 'Jod' (LTS) Notable changes: crypto: * update root certificates to NSS 3.114 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/59571 deps: * fix OpenSSL security level at 1 (Richard Lau) https://github.com/nodejs/node/pull/59859 * upgrade openssl sources to openssl-3.5.2 (Node...
[ { "path": "CHANGELOG.md", "patch": "@@ -53,7 +53,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.0\">24.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.19.0\">22.19.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.20.0\">22.20.0...
2025-09-22T16:13:25
electron/electron
06bc59be88ddcfc6ca9c71dbd8c28dfe2bb28e72
0b84c682291b1490a80849409623c3627bcdcab7
fix: rework lifetime mgmt of `ClearDataTask`/`ClearDataOperation` (#47361) * fix: rework lifetime mgmt of ClearDataTask/ClearDataOperation * Update shell/browser/api/electron_api_session.cc Co-authored-by: Robo <hop2deep@gmail.com> * Update shell/browser/api/electron_api_session.cc Co-authored-by: Robo <hop2deep@g...
[ { "path": "shell/browser/api/electron_api_session.cc", "patch": "@@ -84,6 +84,7 @@\n #include \"shell/common/gin_converters/time_converter.h\"\n #include \"shell/common/gin_converters/usb_protected_classes_converter.h\"\n #include \"shell/common/gin_converters/value_converter.h\"\n+#include \"shell/common/g...
2025-06-07T06:00:30
facebook/react
b75af0467099b7fd0e668b500adb0888b7b21d10
f765082996f056c2abb354eb43cec3a3bf535264
[forgive] Don't crash if we couldn't compile (#33001) Compiler shouldn't crash Forgive if it can't compile (eg parse error due to being mid-typing). Co-authored-by: Jordan Brown <jmbrown@meta.com> --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack...
[ { "path": "compiler/packages/react-forgive/server/src/index.ts", "patch": "@@ -134,11 +134,17 @@ documents.onDidChangeContent(async event => {\n resetState();\n if (SUPPORTED_LANGUAGE_IDS.has(event.document.languageId)) {\n const text = event.document.getText();\n- await compile({\n- text,\n...
2025-04-24T01:32:11
golang/go
54e5540014f7aa7c85a3a5988259ef40637d541a
9616c332956589c86a8366dc42f324108e6b88a4
runtime: print output in case of segfault in goroutine leak tests For #76526. Change-Id: I017e5d4c06e5de23cccc59c4c347599fecdece03 Reviewed-on: https://go-review.googlesource.com/c/go/+/726524 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@...
[ { "path": "src/runtime/goroutineleakprofile_test.go", "patch": "@@ -487,9 +487,9 @@ func TestGoroutineLeakProfile(t *testing.T) {\n \ttestCases = append(testCases, patternTestCases...)\n \n \t// Test cases must not panic or cause fatal exceptions.\n-\tfailStates := regexp.MustCompile(`fatal|panic|DATA RACE`...
2025-12-03T22:21:07
vercel/next.js
980975f7933d70115f1fc5620fdaa7483d9a96d3
e86876d3792fdea786be64a5727105c94e0e877c
Turbopack: add support for turbopackOptional: true (#89227) ### What? * add support for turbopackOptional: true * fix runtime code for unresolvable dynamic imports * add documentation about magic comments
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -65,7 +65,7 @@ use turbopack_core::{\n output::{OutputAsset, OutputAssets, OutputAssetsWithReferenced},\n reference::all_assets_from_entries,\n reference_type::{CommonJsReferenceSubType, CssReferenceSubType, ReferenceType},\n- resolve::{ori...
2026-01-29T09:13:21
electron/electron
0b84c682291b1490a80849409623c3627bcdcab7
09a0926c5beb5be9fea800ebdf7067c1e23a94bc
ci: ignore network-related error annotations in audit (#47333) * ci: ignore network-related error annotation in audit * chore: add another error message
[ { "path": ".github/workflows/audit-branch-ci.yml", "patch": "@@ -57,13 +57,15 @@ jobs:\n repo: \"electron\",\n check_run_id: checkRun.id,\n })).data ?? [];\n- console.log(checkRun);\n- console.log(annotations);\n \n ...
2025-06-06T20:52:25
nodejs/node
d2ff9daf589af059cacd58972640c8dbc6c7ba88
24ded11b66af8a80e99f987f3e12acab74b8f920
sqlite: fix crash session extension callbacks with workers PR-URL: https://github.com/nodejs/node/pull/59848 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com>
[ { "path": "src/node_sqlite.cc", "patch": "@@ -1668,26 +1668,28 @@ void Backup(const FunctionCallbackInfo<Value>& args) {\n job->ScheduleBackup();\n }\n \n+struct ConflictCallbackContext {\n+ std::function<bool(std::string_view)> filterCallback;\n+ std::function<int(int)> conflictCallback;\n+};\n+\n // t...
2025-09-23T14:41:39
facebook/react
ebf7318e87cf2e10b6bd9a6bb0ad8bf6f6186f80
620c838fb64c87c92691ff0fe83b320a7f50f617
Hide/unhide the content of dehydrated suspense boundaries if they resuspend (#32900) Found this bug while working on Activity. There's a weird edge case when a dehydrated Suspense boundary is a direct child of another Suspense boundary which is hydrated but then it resuspends without forcing the inner one to hydrate/d...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1127,6 +1127,61 @@ export function clearSuspenseBoundaryFromContainer(\n retryIfBlockedOn(container);\n }\n \n+function hideOrUnhideSuspenseBoundary(\n+ suspenseInstance: SuspenseInstance,\n+ isHidden: boolean,\n+) ...
2025-04-22T23:29:12
golang/go
f84f8d86beb08631217e77d725a4b6528ed91dc2
a70addd3b31ccb685f48867e24c6c2b4dc364a11
cmd/compile: fix mis-infer bounds in slice len/cap calculations CL 704875 enhanced prove to infer bounds when index have a relationship with len(A) - K. However, the change incorrectly infer "K - len(A)" case, causing wrong bounds information. Fixing this by matching exactly "len(A) - K" case. Fixes #76709 Change-I...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2119,7 +2119,10 @@ func (ft *factsTable) detectSliceLenRelation(v *Value) {\n \t\tif bound := ow.Args[0]; (bound.Op == OpSliceLen || bound.Op == OpStringLen) && bound.Args[0] == slice {\n \t\t\tlenOffset = ow.Args[1]\n \t\t} else if bound := o...
2025-12-05T14:49:53
vercel/next.js
9b8086212c8d71c7c9ef09935362370e35fdd6bd
48e46764b82bc7ac9422ca6469f00e40b5ab3c8c
Fix @next/routing for i18n api and dynamic routes (#89197) This applies fixes/regression tests for reported issues in https://github.com/nextjs/adapters-wg/issues/1
[ { "path": "packages/next-routing/src/__tests__/i18n-resolve-routes.test.ts", "patch": "@@ -312,5 +312,51 @@ describe('resolveRoutes with i18n', () => {\n // Should not redirect for _next routes\n expect(result.redirect).toBeUndefined()\n })\n+\n+ it('should skip locale handling for api ro...
2026-01-29T02:24:29
electron/electron
09a0926c5beb5be9fea800ebdf7067c1e23a94bc
660623081321b4774cd8f7962d2b1654bba14917
fix: printing PDF via `webContents.print()` (#47377) fix: printing PDF via webContents.print()
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2951,12 +2951,15 @@ void OnGetDeviceNameToUse(base::WeakPtr<content::WebContents> web_contents,\n print_settings.Set(printing::kSettingDpiVertical, dpi.height());\n }\n \n- auto* print_view_manager =\n- PrintViewManagerEle...
2025-06-06T18:20:37
nodejs/node
0a72b2cd7b5ff8a53f501ffb916d5e9ce2ed2f71
3c0c1609df3c0f5fa5b0ea94d4a2cbae2da0086a
doc: fix typo in section on microtask order PR-URL: https://github.com/nodejs/node/pull/59932 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "doc/api/process.md", "patch": "@@ -3013,7 +3013,7 @@ is drained immediately after.\n \n So in CJS modules `process.nextTick()` callbacks are always run before `queueMicrotask()` ones.\n However since ESM modules are processed already as part of the microtask queue, there\n-`queueMicrotask()` call...
2025-09-23T10:33:13
facebook/react
efd890422db30a426bf395866ac3ec90573bbfd0
b303610c33ab903f6f0d9d1c6297b704781b3678
[compiler] Fix version name in publish script (#32979) Add ability to specify an optional tagVersion which is appended to the version name + tag, eg 19.1.0-rc.1 --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/r...
[ { "path": ".github/workflows/compiler_prereleases.yml", "patch": "@@ -16,6 +16,9 @@ on:\n version_name:\n required: true\n type: string\n+ tag_version:\n+ required: false\n+ type: number\n secrets:\n NPM_TOKEN:\n required: true\n@@ -55,4 +58,4 @@ jo...
2025-04-21T18:43:20
golang/go
a70addd3b31ccb685f48867e24c6c2b4dc364a11
93b49f773d1a4b706f5352dffb912c259c15dc4f
all: fix some comment issues Change-Id: I5dec35b1432705b3a52859c38e758220282226af Reviewed-on: https://go-review.googlesource.com/c/go/+/726700 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Dmitri Shuralyov <dmitshur@golang...
[ { "path": "src/crypto/md5/gen.go", "patch": "@@ -153,7 +153,7 @@ var data = Data{\n \t\t0x8d2a4c8a,\n \t},\n \tTable3: []uint32{\n-\t\t// round3\n+\t\t// round 3\n \t\t0xfffa3942,\n \t\t0x8771f681,\n \t\t0x6d9d6122,", "additions": 1, "deletions": 1, "language": "Go" }, { "path": "src/cry...
2025-12-04T03:39:53
vercel/next.js
42b0ce87f2d7d01d0e3cbf5d381730d7f42485a5
5ec4d7a4be741497578caf2ff423c2abff8475bc
Turbopack: warn when tracing the whole project (#89157) This should really be an error, but let's start with making it a warning the only missing piece will be somehow showing the line/col information of the offending reference, this is currently very hard to figure out <img width="1265" height="428" alt="Bild...
[ { "path": "crates/next-api/src/nft_json.rs", "patch": "@@ -1,9 +1,9 @@\n-use std::collections::{BTreeSet, VecDeque};\n+use std::collections::{BTreeSet, HashSet, VecDeque};\n \n use anyhow::{Result, bail};\n use serde_json::json;\n use tracing::{Instrument, Level, Span};\n-use turbo_rcstr::RcStr;\n+use turbo...
2026-01-28T21:05:01
facebook/react
bc6184dd993e6ea0efdee7553293676db774c3ca
ce578f9c59be73e6e32c633e6d251e8ec6dcad84
[devtools] Fix "View source" for sources with URLs that aren't normalized (#32951)
[ { "path": "packages/react-devtools-extensions/src/main/fetchFileWithCaching.js", "patch": "@@ -1,6 +1,6 @@\n /* global chrome */\n \n-import {normalizeUrl} from 'react-devtools-shared/src/utils';\n+import {normalizeUrlIfValid} from 'react-devtools-shared/src/utils';\n import {__DEBUG__} from 'react-devtools...
2025-04-17T19:56:05
electron/electron
660623081321b4774cd8f7962d2b1654bba14917
a42afaa8665b6d1b3a344918c60853184a97060e
fix: silent printing of PDFs with `webContents.print` (#47378) fix: silent printing
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -666,7 +666,7 @@ index 6809c4576c71bc1e1a6ad4e0a37707272a9a10f4..3aad10424a6a31dab2ca393d00149ec6\n PrintingFailed(int32 cookie, PrintFailureReason reason);\n \n diff --git a/components/printing/renderer/print_render_frame_helper.cc b/components/...
2025-06-06T18:19:08
golang/go
91267f0a709191d8f1e3f4fa805c9d88856f9957
a753a9ed54c7ead93e56e5b183b743877b7695a6
all: update vendored x/tools Pull in the following x/tools changes: - CL 726000: go/analysis/passes/modernize: omitzero: suppress on kubebuilder - CL 726621: internal/refactor/inline: built-ins may affect inference - CL 727041: go/analysis/passes/modernize: fix stringscut false positives - CL 727040: go/analysis/unit...
[ { "path": "src/cmd/go.mod", "patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.38.1-0.20251125153526-08e54827f670\n \tgolang.org/x/telemetry v0.0.0-20251128220624-abf20d0e57ec\n \tgolang.org/x/term v0.37.0\n-\tgolang.org/x/tools v0.39.1-0.20251130212600-1ad6f3d02713\n+\tgolang.org/x/tools v0.39.1...
2025-12-04T22:57:40
rust-lang/rust
6f084377888d0c22a791c65d363a9b34cc12280e
562dee4820c458d823175268e41601d4c060588a
improve inline assembly error messages by - using `DiagSymbolList` to get nicely formatted lists - mentioning the `modifier` when an invalid modifier is used. This is useful in case the span cannot be resolved (which I ran into).
[ { "path": "compiler/rustc_ast_lowering/src/asm.rs", "patch": "@@ -1,5 +1,4 @@\n use std::collections::hash_map::Entry;\n-use std::fmt::Write;\n \n use rustc_ast::*;\n use rustc_data_structures::fx::{FxHashMap, FxHashSet, FxIndexMap};\n@@ -124,13 +123,9 @@ impl<'hir, R: ResolverAstLoweringExt<'hir>> Lowering...
2026-03-22T21:12:20
vercel/next.js
5ec4d7a4be741497578caf2ff423c2abff8475bc
11e295089c5759891b82168c2cf7153731704519
[Cache Components] Prevent streaming fetch calls from hanging in dev (#89171) With Cache Components enabled in development, fetches without an explicit cache config were incorrectly routed through `createCachedPrerenderResponse` during the cache filling phase due to the `serverComponentsHmrCache` condition. This funct...
[ { "path": "packages/next/src/server/lib/patch-fetch.ts", "patch": "@@ -184,7 +184,8 @@ async function createCachedDynamicResponse(\n serverComponentsHmrCache: ServerComponentsHmrCache | undefined,\n revalidate: number,\n input: RequestInfo | URL,\n- handleUnlock: () => Promise<void> | void\n+ handle...
2026-01-28T20:53:56
facebook/react
b8bedc267f79db375f3147db4d766e09de599b68
4a36d3eab7d9bbbfae62699989aa95e5a0297c16
[compiler][autodeps/fire] Do not include fire functions in autodep arrays (#32532) Summary: We landed on not including fire functions in dep arrays. They aren't needed because all values returned from the useFire hook call will read from the same ref. The linter will error if you include a fired function in an explici...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts", "patch": "@@ -9,6 +9,7 @@ import {Effect, ValueKind, ValueReason} from './HIR';\n import {\n BUILTIN_SHAPES,\n BuiltInArrayId,\n+ BuiltInFireFunctionId,\n BuiltInFireId,\n BuiltInMapId,\n BuiltInMixedReadonlyId,\n@@ -67...
2025-04-17T17:03:19
electron/electron
a42afaa8665b6d1b3a344918c60853184a97060e
b1f0ab11c5c4511026a844f624bf93745896d3cc
chore: fix docs lint (#47389)
[ { "path": "docs/tutorial/native-code-and-electron-swift-macos.md", "patch": "@@ -1088,7 +1088,7 @@ NODE_API_MODULE(swift_addon, Init)\n You're so close! We now have working Objective-C, Swift, and thread-safe ways to expose methods and events to JavaScript. In this final step, let's create a JavaScript wrap...
2025-06-06T08:01:26
golang/go
1681c3b67fe5f95377fd33b98dc1f7007cf28acf
7b67b68a0da091be2d7dc3e69c4df9a1a080d0de
crypto: use rand.IsDefaultReader instead of comparing to boring.RandReader Several crypto functions accepting a rand parameter skip calling boringcrypto when the rand is not boring.RandReader. The new crypto/internal/rand package currently defines its own Reader that wraps boring.RandReader. That will unintentionally...
[ { "path": "src/crypto/ecdh/nist.go", "patch": "@@ -27,7 +27,7 @@ func (c *nistCurve) String() string {\n }\n \n func (c *nistCurve) GenerateKey(r io.Reader) (*PrivateKey, error) {\n-\tif boring.Enabled && r == boring.RandReader {\n+\tif boring.Enabled && rand.IsDefaultReader(r) {\n \t\tkey, bytes, err := bo...
2025-12-03T10:20:41
vercel/next.js
244fac6eece025f8cd97cd9c4d62bf9ee8304a8f
3769252dd42f2f64f424a5e918419b9c91b67de7
Decouple route and segment cache lifecycles (#88989) Based on: - https://github.com/vercel/next.js/pull/88834 --- Follows from the previous commits that decoupled route stale time from segment data. Now that routes have their own lifecycle, we can simplify the implementation: route stale times are always the static...
[ { "path": "packages/next/src/client/components/router-reducer/reducers/refresh-reducer.ts", "patch": "@@ -6,18 +6,19 @@ import {\n convertServerPatchToFullTree,\n navigateToKnownRoute,\n } from '../../segment-cache/navigation'\n-import { revalidateEntireCache } from '../../segment-cache/cache'\n+import ...
2026-01-28T15:55:39
facebook/react
2ddf8caa9d3abd22f54304bf7650e512efb93f18
95ff37f5f5ee7c756f844aea2947e961e7151ac9
[ci] Fix check_access again (#32935) I can see the value being output and set correctly but not sure why it's skipping the 2nd job. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32935). * #32936 * _...
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -13,15 +13,15 @@ jobs:\n check_access:\n runs-on: ubuntu-latest\n outputs:\n- is_member_or_collaborator: ${{ steps.check_access.outputs.is_member_or_collaborator }}\n+ is_member_or_collaborator: ${{ steps.check_is_me...
2025-04-16T22:00:25
rust-lang/rust
fa3e85a7e8dbe96f32b69cd978c3e345c76d2fa0
ac7f9ec7da74d37fd28667c86bf117a39ba5b02a
diagnostics: avoid ICE in confusable_method_name for associated functions Avoid unconditionally slicing `inputs()[1..]`, which assumes a `self` parameter. Use `is_method()` to conditionally skip the receiver, preventing out-of-bounds access and fixing suggestions for associated functions. Signed-off-by: Usman Akinyem...
[ { "path": "compiler/rustc_hir_typeck/src/method/suggest.rs", "patch": "@@ -2291,8 +2291,11 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n fn_sig,\n );\n let name = inherent_method.name();\n+ let inputs = fn_sig.inputs...
2026-03-22T19:54:23
golang/go
7b67b68a0da091be2d7dc3e69c4df9a1a080d0de
2b62144069a130cc469f33009c0c392cc6de8810
cmd/compile: use isUnsignedPowerOfTwo rather than isPowerOfTwo for unsigneds Fixes #76688 Change-Id: Icb8dab54a5ce7d83b656d50d5ea605d2a62b96f8 Reviewed-on: https://go-review.googlesource.com/c/go/+/726680 Auto-Submit: Jorropo <jorropo.pgm@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2885,9 +2885,9 @@ func simplifyBlock(sdom SparseTree, ft *factsTable, b *Block) {\n \t\t\txl := ft.limits[x.ID]\n \t\t\ty := v.Args[1]\n \t\t\tyl := ft.limits[y.ID]\n-\t\t\tif xl.umin == xl.umax && isPowerOfTwo(int64(xl.umin)) ||\n+\t\t\tif xl...
2025-12-04T03:17:58
nodejs/node
81af7b93c57f1dd5f363be05d276bca9046a8578
54c456702c7fe6b9b0ef026f864dc1bc9590c88e
http,https: handle IPv6 with proxies This simplifies the proxy configuration handling code, adds tests to make sure the proxy support works with IPv6 and throws correct errors for invalid proxy IPs. Drive-by: remove useless properties from ProxyConfig PR-URL: https://github.com/nodejs/node/pull/59894 Refs: https://g...
[ { "path": "lib/https.js", "patch": "@@ -68,7 +68,7 @@ let debug = require('internal/util/debuglog').debuglog('https', (fn) => {\n const net = require('net');\n const { URL, urlToHttpOptions, isURL } = require('internal/url');\n const { validateObject } = require('internal/validators');\n-const { isIP, isIPv...
2025-09-22T23:19:26
facebook/react
3c75bf21dd2fca130635c5b67b5361f4759a7d29
3e04b2a214cdc962dd5acde412c7107321ec7a56
[mcp] Fix bailout loc (#32931) Use the correct loc line numbers and not [Object:object] --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32931). * #32932 * __->__ #32931 * #32930 * #32929 * #32928
[ { "path": "compiler/packages/react-mcp-server/src/index.ts", "patch": "@@ -283,7 +283,7 @@ server.tool(\n if (typeof err.loc !== 'symbol') {\n return {\n type: 'text' as const,\n- text: `React Compiler bailed out: ${err.message}@${err.loc.start}:${err.loc.end...
2025-04-16T21:49:15
vercel/next.js
d5a88ba4eb50fa9fcc2c06a68da54783d615b017
ead95dfb04edd523fe8c2d20123c487e61257747
tweak LRU sentinel cache key (#89123) We originally prefixed the TTL sentinel with the null-byte separator to avoid collisions with real invocation IDs, but that makes `extractInvocationID` return "ttl" instead of undefined for TTL-mode keys. This switches to a reserved magic string sentinel so TTL-mode entries are c...
[ { "path": "packages/next/src/server/response-cache/index.ts", "patch": "@@ -63,10 +63,9 @@ const KEY_SEPARATOR = '\\0'\n \n /**\n * Sentinel value used for TTL-based cache entries (when invocationID is undefined).\n- * Uses KEY_SEPARATOR prefix to guarantee uniqueness since null bytes cannot appear\n- * in...
2026-01-27T20:26:59
rust-lang/rust
8befc9d082de5184353b04d7ca5ca2d31078538b
ac7f9ec7da74d37fd28667c86bf117a39ba5b02a
refactor RangeFromIter overflow-checks impl Crates with different overflow-checks settings accessing the same RangeFromIter resulted in incorrect values being yielded
[ { "path": "library/core/src/range/iter.rs", "patch": "@@ -298,9 +298,9 @@ range_incl_exact_iter_impl! {\n #[derive(Debug, Clone)]\n pub struct RangeFromIter<A> {\n start: A,\n- /// Whether the first element of the iterator has yielded.\n+ /// Whether the maximum value of the iterator has yielded.\...
2026-03-21T23:15:29
nodejs/node
55cd2e589ec6a82155dcc686988fbfafee973a5a
c81b1dff65e427cbbb89bcb1b4ac5e5a0cc34b51
dgram: restore buffer optimization in fixBufferList Restore the Buffer.isBuffer() check to avoid unnecessary Buffer.from() calls when the input is already a Buffer. This improves performance by 30-50% for buffer-heavy UDP operations. Includes benchmark test for fixBufferList function to verify the performance improve...
[ { "path": "benchmark/dgram/send-types.js", "patch": "@@ -0,0 +1,52 @@\n+'use strict';\n+\n+const common = require('../common.js');\n+const dgram = require('dgram');\n+const { Buffer } = require('buffer');\n+\n+const bench = common.createBenchmark(main, {\n+ type: ['string', 'buffer', 'mixed', 'typedarray']...
2025-09-21T17:50:41
vercel/next.js
48ce83fa71b7b2cd0ea59637afad42dc1a2322ea
b210e2e6f2c2029f2c4f0f2e3269d42ce47eb8d7
docs: fix code highlight in 07-fetching-data.mdx (#88727) PR https://github.com/vercel/next.js/pull/82862 added an extra blank line to the code snippet in https://nextjs.org/docs/app/getting-started/fetching-data#parallel-data-fetching. It should highlight the `Promise.all` line ![](https://github.com/user-attachme...
[ { "path": "docs/01-app/01-getting-started/07-fetching-data.mdx", "patch": "@@ -499,7 +499,7 @@ export default async function Page({ params }) {\n \n Start multiple requests by calling `fetch`, then await them with [`Promise.all`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objec...
2026-01-27T15:22:45
nodejs/node
c81b1dff65e427cbbb89bcb1b4ac5e5a0cc34b51
cb5c8ecc5ae0efe2122f6e9c8dd9fbb519d21430
vm: explain how to share promises between contexts w/ afterEvaluate PR-URL: https://github.com/nodejs/node/pull/59801 Fixes: https://github.com/nodejs/node/issues/59541 Refs: https://issues.chromium.org/issues/441679231 Refs: https://groups.google.com/g/v8-dev/c/YIeRg8CUNS8/m/rEQdFuNZAAAJ Refs: https://tc39.es/ecma262...
[ { "path": "doc/api/vm.md", "patch": "@@ -1946,6 +1946,68 @@ inside a `vm.Context`, functions passed to them will be added to global queues,\n which are shared by all contexts. Therefore, callbacks passed to those functions\n are not controllable through the timeout either.\n \n+### When `microtaskMode` is `...
2025-09-19T14:47:31
vercel/next.js
cbea93f43f67a91a207fd2fd08a08ef959039dab
ecc2ac976b6a8dbc7a59894421b3656f97e616a4
CC Guide: Fix filenames, reduce line breaks (#89065) Follow-up
[ { "path": "docs/01-app/02-guides/public-static-pages.mdx", "patch": "@@ -1,7 +1,7 @@\n ---\n title: Building public pages\n description: Learn how to build public, \"static\" pages that share data across users, such as landing pages, list pages (products, blogs, etc.), marketing and news sites.\n-nav_title:...
2026-01-27T14:04:39
rust-lang/rust
be8dee11410ade2cd2f2f0ced7b9885aeebaa4c1
e52f547ed4bc554e40ab63b264e8697b8e3c5e09
interpret/validity: remove unreachable error kind
[ { "path": "compiler/rustc_const_eval/src/interpret/validity.rs", "patch": "@@ -128,7 +128,6 @@ enum ExpectedKind {\n Reference,\n Box,\n RawPtr,\n- InitScalar,\n Bool,\n Char,\n Float,\n@@ -143,7 +142,6 @@ impl fmt::Display for ExpectedKind {\n ExpectedKind::Reference ...
2026-03-22T16:36:39
electron/electron
72340e79e8b0c5fa0201413650417f9b6fb31e00
7196a28d3a615f123b017b998d8db9ae48afac8d
docs: remove `electron-quick-start` from README (#47359) Refs https://github.com/electron/.permissions/pull/293 The repo was renamed to `minimal-repro` and is no longer intended to be used as a way to start new projects (see PR above). Since we really want bugs in `electron/electron` to be reported with a Fiddle...
[ { "path": "README.md", "patch": "@@ -44,29 +44,17 @@ Each Electron release provides binaries for macOS, Windows, and Linux.\n * Fedora 32 and newer\n * Debian 10 and newer\n \n-## Quick start & Electron Fiddle\n+## Electron Fiddle\n \n Use [`Electron Fiddle`](https://github.com/electron/fiddle)\n to bui...
2025-06-05T18:12:21
facebook/react
35ab8ffef7b755c899d9e19d61277a4fceb760d1
68013725ac5671ab06572bd361e168681782a727
[mcp] Add inspect script (#32928) Uses https://github.com/modelcontextprotocol/inspector to inspect and debug the mcp server. `yarn workspace react-mcp-server dev` will build the server in watch mode and launch the inspector. Default address is http://127.0.0.1:6274. --- [//]: # (BEGIN SAPLING FOOTER) Stack created w...
[ { "path": "compiler/packages/react-mcp-server/package.json", "patch": "@@ -8,6 +8,8 @@\n \"scripts\": {\n \"build\": \"rimraf dist && tsup\",\n \"test\": \"echo 'no tests'\",\n+ \"dev\": \"concurrently --kill-others -n build,inspect \\\"yarn run watch\\\" \\\"wait-on dist/index.js && yarn run i...
2025-04-16T21:48:38
nodejs/node
cb5c8ecc5ae0efe2122f6e9c8dd9fbb519d21430
1d8df51e4238a524253396108a8ab94298effb49
vm: "afterEvaluate", evaluate() return a promise from the outer context Consider the default context A with a microtask queue QA, and a context B with its own microtask queue QB. Context B is constructed with vm.createContext(..., {microtaskMode: "afterEvaluate"}). The evaluation in context B can be performed via vm....
[ { "path": "src/module_wrap.cc", "patch": "@@ -759,8 +759,48 @@ void ModuleWrap::Evaluate(const FunctionCallbackInfo<Value>& args) {\n MaybeLocal<Value> result;\n auto run = [&]() {\n MaybeLocal<Value> result = module->Evaluate(context);\n- if (!result.IsEmpty() && microtask_queue)\n+\n+ Local<...
2025-09-10T17:51:53
vercel/next.js
0d61f297d9f4aa8ce5d405ef5e68d733844ba676
790eb861ca93e314151651134e4b803eac3d3bae
Limit number of server action arguments to 1000 (#89068) This prevents stack overflow errors when malicious payloads include a large number of arguments.
[ { "path": "packages/next/errors.json", "patch": "@@ -983,5 +983,6 @@\n \"982\": \"`serializeResumeDataCache` should not be called in edge runtime.\",\n \"983\": \"Invariant: global-error module is required but not found in loader tree\",\n \"984\": \"LRUCache: calculateSize returned %s, but size must ...
2026-01-27T11:58:18
facebook/react
68013725ac5671ab06572bd361e168681782a727
bf39780a066626ebef67d4b3faf7eb163e35782a
[ci] Fix check_access fr (#32934) 💀
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -13,7 +13,7 @@ jobs:\n check_access:\n runs-on: ubuntu-latest\n outputs:\n- is_member_or_collaborator: ${{ steps.check_access.outputs.result }}\n+ is_member_or_collaborator: ${{ steps.check_access.outputs.is_member_o...
2025-04-16T21:39:24
nodejs/node
1d8df51e4238a524253396108a8ab94298effb49
aa6838c25203e997847531421b752c62e88f5763
test: testcase demonstrating issue 59541 Check that we lose the execution flow in the outer context, upon resolving a promise created in in the inner context. PR-URL: https://github.com/nodejs/node/pull/59801 Fixes: https://github.com/nodejs/node/issues/59541 Refs: https://issues.chromium.org/issues/441679231 Refs: h...
[ { "path": "test/parallel/test-vm-module-after-evaluate.js", "patch": "@@ -0,0 +1,34 @@\n+// Flags: --experimental-vm-modules\n+'use strict';\n+\n+// https://github.com/nodejs/node/issues/59541\n+//\n+// Promises created in a context using microtaskMode: \"aferEvaluate\" (meaning it\n+// has its own microtas...
2025-09-07T23:09:42
electron/electron
53fd879043c576fb68f6905678d3984246e8ea41
5f5e8d012d7bbcce794802f662679707e9557376
chore: bump chromium to 138.0.7190.0 (main) (#47107) * chore: bump chromium in DEPS to 138.0.7180.0 * 6546797: Add a metric for the overall success of the "safe storage" item retrieval. Refs https://chromium-review.googlesource.com/c/chromium/src/+/6546797 * 6548078: extensions: Fix TODO in ScriptInjectionTracker f...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7178.0',\n+ '138.0.7190.0',\n 'node_version':\n 'v22.16.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-06-03T15:19:20
vercel/next.js
edf903eb169442ed9e6b7693914bfdee7bf73dcc
59db275d982c054615b7e71988c31ae400967ac6
Improve no response route handler error (#89036) ## Improve route handler "no response" error message for debugging ### What? Improves the error message thrown when an app route handler doesn't return a `Response` object to include additional debugging information: - **The actual type received** - Shows whether it ...
[ { "path": "packages/next/errors.json", "patch": "@@ -982,5 +982,6 @@\n \"981\": \"resolvedPathname must be set in request metadata\",\n \"982\": \"`serializeResumeDataCache` should not be called in edge runtime.\",\n \"983\": \"Invariant: global-error module is required but not found in loader tree\",...
2026-01-27T09:03:51
golang/go
32a9804c7ba3f4a0e0bd26cc24b9204860a49ec8
509ddf38689c10643d89c464e8386f53364635e8
cmd/link: don't update offset of existing ELF section name Fixes #76656 Change-Id: If2e823ba1577700af00f5883e4ea5c139e4749c1 Reviewed-on: https://go-review.googlesource.com/c/go/+/726100 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Michael Stapelberg <stapelberg...
[ { "path": "src/cmd/link/elf_test.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"cmd/internal/hash\"\n \t\"cmd/link/internal/ld\"\n \t\"debug/elf\"\n+\t\"encoding/binary\"\n \t\"fmt\"\n \t\"internal/platform\"\n \t\"internal/testenv\"\n@@ -22,6 +23,7 @@ import (\n \t\"sync\"\n \t\"testing\"\n \t\"text/templ...
2025-12-03T01:01:57
facebook/react
bf39780a066626ebef67d4b3faf7eb163e35782a
b04254fdcee30871760301f34236ee0dfadf86ab
[ci] Fix check_access output (#32933) the joy of yml
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -18,7 +18,7 @@ jobs:\n - name: Check access\n id: check_access\n if: ${{ github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' }}\n- run: ...
2025-04-16T21:27:09
rust-lang/rust
8946711b25d0e7f76f0a517fe0636c74666ccdc9
562dee4820c458d823175268e41601d4c060588a
tidy-alphabetical: fix line number in error message
[ { "path": "src/tools/tidy/src/alphabetical.rs", "patch": "@@ -215,7 +215,11 @@ fn check_lines<'a>(path: &Path, content: &'a str, tidy_ctx: &TidyCtx, check: &mu\n // oh nyooo :(\n if sorted != section {\n if !tidy_ctx.is_bless_enabled() {\n- ...
2026-03-22T12:24:11
nodejs/node
2a0fcdbc883db4d09d99b651be23555b4cb22f69
36256230b4cab235f4e8248b4289839771661521
http2: fix allowHttp1+Upgrade, broken by shouldUpgradeCallback This is required to use HTTP/1 websockets on an HTTP/2 server, which is fairly common as websockets over HTTP/2 is much less widely supported. This was broken by the recent shouldUpgradeCallback HTTP/1 addition, which wasn't correctly added to the corresp...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -3374,6 +3374,9 @@ class Http2SecureServer extends TLSServer {\n this.headersTimeout = 60_000; // Minimum between 60 seconds or requestTimeout\n this.requestTimeout = 300_000; // 5 minutes\n this.connectionsCheckingInterval = 30_000; // ...
2025-09-20T18:18:23
electron/electron
5f5e8d012d7bbcce794802f662679707e9557376
508c60199643b0033c31ea706cf9a2979941236a
fix: add back fallback wasm-trap handling (#47186) * fix: add back fallback wasm-trap handling Refs https://chromium-review.googlesource.com/c/chromium/src/+/5372409 This change sets up wasm-trap handling for the case where content_shell has not enabled crash reporting but moves the responsibility to ElectronRendere...
[ { "path": "patches/chromium/.patches", "patch": "@@ -75,7 +75,6 @@ build_make_libcxx_abi_unstable_false_for_electron.patch\n make_gtk_getlibgtk_public.patch\n custom_protocols_plzserviceworker.patch\n feat_filter_out_non-shareable_windows_in_the_current_application_in.patch\n-disable_freezing_flags_after_in...
2025-06-03T13:31:23
vercel/next.js
7b2c80e24ab4609041bd9b2f31a2bc76e3ebca01
8003df97c9ab9eb04ec8c52d6941370d6670ec3d
Revert "Fix react-loadable-manifest chunk hash mismatch by preserving async loader mapping" (#89073) Reverts vercel/next.js#88775 This is breaking the v0 marketing site, reverting to unblock.
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -1566,6 +1566,8 @@ impl AppEndpoint {\n \n if emit_manifests == EmitManifests::Full {\n let dynamic_import_entries = collect_next_dynamic_chunks(\n+ *module_graphs.full,\n+ ...
2026-01-27T00:02:34
facebook/react
b04254fdcee30871760301f34236ee0dfadf86ab
539bbdbd86d9cd342aabde4cb08e398751789103
Don't try to hydrate a hidden Offscreen tree (#32862) I found a bug even before the Activity hydration stuff. If we're hydrating an Offscreen boundary in its "hidden" state it won't have any content to hydrate so will trigger hydration errors (which are then eaten by the Offscreen boundary itself). Leaving it not pre...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js", "patch": "@@ -3723,6 +3723,11 @@ describe('ReactDOMServerPartialHydration', () => {\n <Activity mode=\"hidden\">\n <HiddenChild />\n </Activity>\n+ <Suspense fallback={null}...
2025-04-15T21:43:42
golang/go
509ddf38689c10643d89c464e8386f53364635e8
7cab1b1b26e49512a1ae56916ee39a6cc10dab46
cmd/compile: ensure bloop only kept alive addressable nodes Fixes #76636 Change-Id: I881f88dbf62a901452c1d77e6ffca651451c7790 Reviewed-on: https://go-review.googlesource.com/c/go/+/725420 Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservi...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -73,6 +73,14 @@ func getNameFromNode(n ir.Node) *ir.Name {\n \treturn nil\n }\n \n+// getAddressableNameFromNode is like getNameFromNode but returns nil if the node is not addressable.\n+func getAddressableNameFromNode(n ir.Node) *ir.Name {\n...
2025-12-01T09:54:54
rust-lang/rust
9677d7a5872c5c98c73f04afa028e147b983c6f6
562dee4820c458d823175268e41601d4c060588a
debuginfo: emit DW_TAG_call_site entries
[ { "path": "compiler/rustc_codegen_llvm/src/debuginfo/mod.rs", "patch": "@@ -471,7 +471,7 @@ impl<'ll, 'tcx> DebugInfoCodegenMethods<'tcx> for CodegenCx<'ll, 'tcx> {\n // FIXME(eddyb) does this need to be separate from `loc.line` for some reason?\n let scope_line = loc.line;\n \n- let ...
2026-03-20T21:20:06
nodejs/node
4612c793cb9007a91cb3fd82afe518440473826e
897932c4848ae4eb4a27a399ac165fc5efe264a2
vm: expose hasTopLevelAwait on SourceTextModule Expose `hasTopLevelAwait` and `hasAsyncGraph` on `vm.SourceTextModule`. `hasAsyncGraph` requires the module to be instantiated first. PR-URL: https://github.com/nodejs/node/pull/59865 Fixes: https://github.com/nodejs/node/issues/59656 Reviewed-By: James M Snell <jasnel...
[ { "path": "doc/api/vm.md", "patch": "@@ -920,6 +920,36 @@ to disallow any changes to it.\n Corresponds to the `[[RequestedModules]]` field of [Cyclic Module Record][]s in\n the ECMAScript specification.\n \n+### `sourceTextModule.hasAsyncGraph()`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* Returns: {bool...
2025-09-19T09:12:17
electron/electron
508c60199643b0033c31ea706cf9a2979941236a
158176f0f3940c325eaa70473a1ef3c85335515d
fix: do not load source for `electron` module in ESM loader synchronous flow (#46810)
[ { "path": "patches/node/fix_do_not_resolve_electron_entrypoints.patch", "patch": "@@ -5,19 +5,6 @@ Subject: fix: do not resolve electron entrypoints\n \n This wastes fs cycles and can result in strange behavior if this path actually exists on disk\n \n-diff --git a/lib/internal/modules/esm/load.js b/lib/int...
2025-06-03T10:50:17
vercel/next.js
d224a56201d64a49e9d25237136fa7104d263a5c
e8ef2305b5a69a1711d5b84ed003591e4db761d3
Fix reset deploy project script (#89001) This script has been quietly failing on cron occasionally, this updates to ensure it shows as failing when the inner requests fail and also adds back-off logic for re-creating the project after deleting the previous. x-ref: https://github.com/vercel/next.js/actions/runs/213273...
[ { "path": "scripts/reset-project.mjs", "patch": "@@ -4,14 +4,62 @@ export const TEST_PROJECT_NAME = 'vtest314-e2e-tests'\n export const TEST_TEAM_NAME = process.env.VERCEL_TEST_TEAM\n export const TEST_TOKEN = process.env.VERCEL_TEST_TOKEN\n \n+/**\n+ * Retry a fetch request with exponential backoff\n+ * @p...
2026-01-26T23:18:41
facebook/react
7ff4d057b69683dd6c512c7940dbadd10788306f
08075929f2d5eea319418ea379773bb7276ff940
[DevTools] feat: show changed hooks names in the Profiler tab (#31398) <!-- 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 submitting a pul...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/Components.js", "patch": "@@ -19,7 +19,6 @@ import {\n } from 'react-devtools-shared/src/storage';\n import InspectedElementErrorBoundary from './InspectedElementErrorBoundary';\n import InspectedElement from './InspectedElement';\n-imp...
2025-04-15T10:10:00
golang/go
7cab1b1b26e49512a1ae56916ee39a6cc10dab46
1a64db3a4b3fc328f945d8271c0b98923526255d
doc: pre-announce removal of gotypesalias and asynctimerchan GODEBUG flags This announcement follows the policy outlined in #76163. For #76472. Change-Id: I4299e7f474e314810883dc4f50be6afba8c3e3e7 Reviewed-on: https://go-review.googlesource.com/c/go/+/726020 Auto-Submit: Robert Griesemer <gri@google.com> Reviewed-by...
[ { "path": "doc/godebug.md", "patch": "@@ -306,7 +306,7 @@ Go 1.23 changed the channels created by package time to be unbuffered\n and [`Timer.Reset`](/pkg/time/#Timer.Reset) method results much easier.\n The [`asynctimerchan` setting](/pkg/time/#NewTimer) disables this change.\n There are no runtime metrics...
2025-12-02T19:58:29
electron/electron
158176f0f3940c325eaa70473a1ef3c85335515d
d1e64c37a25b8bde07456417fac8e5742f8f32fd
fix: addChildView() crashes when adding a closed WebContentsView (#47099) fix: addChildView() crashes when add a closed WebContentsView
[ { "path": "shell/browser/api/electron_api_view.cc", "patch": "@@ -216,6 +216,12 @@ void View::AddChildViewAt(gin::Handle<View> child,\n if (!view_)\n return;\n \n+ if (!child->view()) {\n+ gin_helper::ErrorThrower(isolate()).ThrowError(\n+ \"Can't add a destroyed child view to a parent view...
2025-06-03T08:53:25
vercel/next.js
9e5759deedb143bfc37baaa30056558c439d6207
b690af094678622f03670348e627d6f9f53ff036
fix: ensure LRU cache items have minimum size of 1 to prevent unbounded growth (#89040) ### What? Prevent LRU cache unbounded growth by requiring `calculateSize` to return values > 0. ### Why? When `calculateSize` returned 0 (e.g., for `null` values in the filesystem route cache), items were never evicted because t...
[ { "path": "packages/next/errors.json", "patch": "@@ -981,5 +981,6 @@\n \"980\": \"Failed to load client middleware manifest\",\n \"981\": \"resolvedPathname must be set in request metadata\",\n \"982\": \"`serializeResumeDataCache` should not be called in edge runtime.\",\n- \"983\": \"Invariant: glo...
2026-01-26T21:00:19
nodejs/node
897932c4848ae4eb4a27a399ac165fc5efe264a2
c7b0dfbd7c564d5aa30f5521f07e2762487d41d1
diagnostics_channel: fix race condition with diagnostics_channel and GC PR-URL: https://github.com/nodejs/node/pull/59910 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
[ { "path": "lib/diagnostics_channel.js", "patch": "@@ -37,7 +37,9 @@ const { WeakReference } = require('internal/util');\n // Only GC can be used as a valid time to clean up the channels map.\n class WeakRefMap extends SafeMap {\n #finalizers = new SafeFinalizationRegistry((key) => {\n- this.delete(key)...
2025-09-19T07:28:39
rust-lang/rust
b31dc4ab495c0297c4f09324094e9c8e62d52977
ac7f9ec7da74d37fd28667c86bf117a39ba5b02a
diagnostics: avoid ICE for undeclared generic parameter in impl Avoid an ICE for: struct A; impl A<B> {} The compiler no longer panics and can proceed to emit existing diagnostics. Adds `tests/ui/missing/undeclared-generic-parameter.rs`. Signed-off-by: Usman Akinyemi <usmanakinyemi202@gmail.com>
[ { "path": "compiler/rustc_resolve/src/late/diagnostics.rs", "patch": "@@ -3381,7 +3381,7 @@ impl<'ast, 'ra, 'tcx> LateResolutionVisitor<'_, 'ast, 'ra, 'tcx> {\n && def_id.is_local()\n && let Some(local_def_id) = def_id.as_local()\n && let Some(struct_generics) = self.r.st...
2026-03-21T16:15:57
facebook/react
5e9b48778c83dd8b2c63966db3e23abefebe910c
c44e4a250557e53b120e40db8b01fb5fd93f1e35
[RN] Map Fabric priorities to reconciler priorities correctly (#32847) ## Summary This fixes how we map priorities between Fabric and the React reconciler. At the moment, we're only considering default and discrete priorities, when there's a larger range of priorities available. In Fabric, we'll test supporting addi...
[ { "path": "packages/react-native-renderer/src/ReactFiberConfigFabric.js", "patch": "@@ -18,6 +18,8 @@ import {\n NoEventPriority,\n DefaultEventPriority,\n DiscreteEventPriority,\n+ ContinuousEventPriority,\n+ IdleEventPriority,\n type EventPriority,\n } from 'react-reconciler/src/ReactEventPriori...
2025-04-10T16:35:15
golang/go
1a64db3a4b3fc328f945d8271c0b98923526255d
2e06fa6b68bf5fff7f2dd1ba55dba6fc1d206ebf
spec: remove restriction on channel element types for close built-in (bug fix) The spec states that if the argument type for close is a type parameter, it's type set must only contain channels and they must all have the same element type. This latter requirement (all must have the same element type) was never enforced...
[ { "path": "doc/go_spec.html", "patch": "@@ -7496,7 +7496,7 @@ <h3 id=\"Close\">Close</h3>\n <p>\n If the type of the argument to <code>close</code> is a\n <a href=\"#Type_parameter_declarations\">type parameter</a>,\n-all types in its type set must be channels with the same element type.\n+all types in its ...
2025-12-02T22:32:13
nodejs/node
c7b0dfbd7c564d5aa30f5521f07e2762487d41d1
57f61ad5986a2da0ff33156215c95db2a5764611
esm: make hasAsyncGraph non-enumerable Otherwise the debug() calls would attempt to display it and throws an error. PR-URL: https://github.com/nodejs/node/pull/59905 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "src/module_wrap.cc", "patch": "@@ -56,6 +56,7 @@ using v8::ObjectTemplate;\n using v8::PrimitiveArray;\n using v8::Promise;\n using v8::PromiseRejectEvent;\n+using v8::PropertyAttribute;\n using v8::PropertyCallbackInfo;\n using v8::ScriptCompiler;\n using v8::ScriptOrigin;\n@@ -1391,7 +1392,10 @...
2025-09-18T19:02:05
rust-lang/rust
deeb45a5debda9f607753d444bb8e3cd4c6b799e
b4f2c8a08e8752f016978b96d09d473bc7bc1a7b
style: fix rustfmt
[ { "path": "src/tools/unstable-book-gen/src/tests.rs", "patch": "@@ -54,10 +54,7 @@ fn parser_accepts_optional_trailing_metadata() {\n \n let features = parse_compiler_flags(options_rs, Path::new(\"options/unstable.rs\"));\n assert_eq!(features[\"deprecated_flag\"].description.as_deref(), Some(\"depr...
2026-03-21T15:57:31
electron/electron
82a59d989425dc9d58e561325e955b826d12044c
55006fe9a837bf11088704455c0706904937a37e
chore: bump node to v22.16.0 (main) (#47217) * chore: bump node in DEPS to v22.16.0 * crypto: remove BoringSSL dh-primes addition https://github.com/nodejs/node/pull/57023 * tools: enable linter in test/fixtures/test\-runner/output https://github.com/nodejs/node/pull/57698 * src: improve thread safety of TaskQueu...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '138.0.7178.0',\n 'node_version':\n- 'v22.15.1',\n+ 'v22.16.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2025-06-02T21:30:15
vercel/next.js
b690af094678622f03670348e627d6f9f53ff036
bb88ea523d4d44aa1a1e93cdda9bbfb413e47536
Reapply "[turbopack] Add bundling support for worker_threads" (#88725) (#88967) ## What? This PR reapplies #87746 which adds bundling support for Node.js `worker_threads` in Turbopack. ## Why? The original PR (#87746) was reverted in #88725 because it broke builds that use packages like `pino` with transports. Thes...
[ { "path": ".rustfmt.toml", "patch": "@@ -1,3 +1,4 @@\n+edition = \"2024\"\n max_width = 100\n \n comment_width = 100", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "crates/next-api/src/middleware.rs", "patch": "@@ -14,10 +14,7 @@ use turbo_tasks::{Completion, Re...
2026-01-26T20:42:15
facebook/react
336614679600af371b06371c0fbdd31fd9838231
365c031fd2354e94248ed9390f13fe2975b994f6
Fix `Failed to execute 'measure' on 'Performance'` error (#32823) When `startTime` still has its initial value of `-1.1` we must not call `logComponentMount`. This can occur when rendering a `'next/dynamic'` component with `{ssr: false}` in a client component, for example. Unfortunately, I didn't manage to reproduce t...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -3756,7 +3756,7 @@ function commitPassiveMountOnFiber(\n ) {\n // Log the reappear in the render phase.\n const startTime = ((finishedWork.actualStartTime: any): number);\n- if (endTi...
2025-04-07T14:13:34
golang/go
043b9de65825abef6d8946affda075a777dfb322
e432b4f3a1e067ac8fe7b8e0edbe60ca1f52475d
net: parse addresses without separators in ParseMac IEEE EUI guidelines states that "an EUI-48 can be represented in the IEEE RA hexadecimal (hex) form with the octets separated by hyphens, or as a pure base-16 numerical representation without hyphens" (https://standards.ieee.org/wp-content/uploads/import/documents/tu...
[ { "path": "src/net/mac.go", "patch": "@@ -36,8 +36,9 @@ func (a HardwareAddr) String() string {\n //\t0000.5e00.5301\n //\t0200.5e10.0000.0001\n //\t0000.0000.fe80.0000.0000.0000.0200.5e10.0000.0001\n+//\t00005e005301\n func ParseMAC(s string) (hw HardwareAddr, err error) {\n-\tif len(s) < 14 {\n+\tif len(s...
2025-11-25T07:38:09
rust-lang/rust
83a21a5e7129b62e4c1944affb906c0751a6cfaf
a22e9e0e026bd1d2da24041b40a4227a0b7d6616
fix: move tests to separate file and avoid tidy markers in strings
[ { "path": "src/tools/unstable-book-gen/src/main.rs", "patch": "@@ -664,96 +664,4 @@ fn main() {\n }\n \n #[cfg(test)]\n-mod tests {\n- use std::path::{Path, PathBuf};\n-\n- use super::{parse_compiler_flags, parse_one_entry, skip_ws_comments_and_attrs};\n-\n- #[test]\n- fn parses_unstable_options...
2026-03-19T01:59:48
electron/electron
dc5efca0f6b4cd8541b4404582d855f6808a7225
cf6c6627022b320f27bdc17ccbad93cc71608716
feat: [net] add "priority" option to net.request (#42628) document the default value of priority option Update the priority test to not use the httpbin.org as server Fixed the lint errors Fixed the build error
[ { "path": "docs/api/client-request.md", "patch": "@@ -60,6 +60,10 @@ following properties:\n `strict-origin-when-cross-origin`.\n * `cache` string (optional) - can be `default`, `no-store`, `reload`,\n `no-cache`, `force-cache` or `only-if-cached`.\n+ * `priority` string (optional) - can be `thro...
2025-05-30T19:28:13
facebook/react
365c031fd2354e94248ed9390f13fe2975b994f6
a9d63f3f9798355cd814237b5f5391d6adbfa750
Workaround against display: inline bug in Safari (#32822) Safari has a bug where if you put a block element inside an inline element and the inline element has a `view-transition-name` assigned it finds it as duplicate names. https://bugs.webkit.org/show_bug.cgi?id=290923 This adds a warning if we detect this scenar...
[ { "path": "fixtures/view-transition/src/components/Page.js", "patch": "@@ -113,7 +113,9 @@ export default function Page({url, navigate}) {\n \n const exclamation = (\n <ViewTransition name=\"exclamation\" onShare={onTransition}>\n- <span>!</span>\n+ <span>\n+ <div>!</div>\n+ </sp...
2025-04-07T14:08:07
vercel/next.js
b3f776364d444ce261e219c9f6d6d4a7daa1bec6
cb1dbfb83f9d6e75c00a7e97ce0fa7b0c4180743
Fix chunk loading when using `__turbopack_load_by_url__` with query (#88899) - if you `await __turbopack_load_by_url__ `, it waits for the exact chunk url you passed in to load - but when that chunk actually loads, it registers itself with `stripQuery(chunkurl)+CHUNK_SUFFIX` so there was mismatch if you load a chu...
[ { "path": "test/e2e/app-dir/segment-cache/deployment-skew/app/dynamic-page/page.jsx", "patch": "@@ -2,5 +2,10 @@ import { connection } from 'next/server'\n \n export default async function TargetPage() {\n await connection()\n- return <div id=\"build-id\">Build ID: {process.env.NEXT_PUBLIC_BUILD_ID}</div...
2026-01-26T14:30:56
nodejs/node
f551c312977d83e50b8f0eaba5242cd1ab49cd2a
ed71aeec0f64380bcd1ca1f6dd54b1906d7214f2
tools: fix `tools/make-v8.sh` for clang Update `tools/make-v8.sh` so that it can work with either `gcc` or `clang`. Adds: - clang settings when CC/CXX environment variables set to clang/clang++. - Turns off warnings as errors. Removes: - goma settings. - Machine specific settings (moved to Jenkins job configuration)...
[ { "path": "tools/make-v8.sh", "patch": "@@ -20,37 +20,19 @@ if [ \"$ARCH\" = \"s390x\" ] || [ \"$ARCH\" = \"ppc64le\" ]; then\n if [ \"$ARCH\" = \"ppc64le\" ]; then\n TARGET_ARCH=\"ppc64\"\n fi\n- # set paths manually for now to use locally installed gn\n- export BUILD_TOOLS=/home/iojs/build-tools...
2025-09-17T14:45:42