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
electron/electron
b39a1fb8777e1f1703a5bee30f5d4ee4e1e4d3a9
2156ccb577f892bf25dea22a6d250beddbd4a2f7
fix: `webContents.downloadURL()` did not support referer header (#47625) Signed-off-by: xufuhang <576484918@qq.com>
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2398,6 +2398,13 @@ void WebContents::DownloadURL(const GURL& url, gin::Arguments* args) {\n content::DownloadRequestUtils::CreateDownloadForWebContentsMainFrame(\n web_contents(), url, MISSING_TRAFFIC_ANNOTATION));\n ...
2025-07-23T08:37:24
nodejs/node
4bfa387f6dc8976833f45dd8e41b130b508ad88a
5cf3c3e24c7257a0c6192ed8ef71efec8ddac22b
lib: fix constructor in _errnoException stack tree Fixes the constructor name in the stack tree for _errnoException. PR-URL: https://github.com/nodejs/node/pull/60156 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "lib/util.js", "patch": "@@ -339,7 +339,7 @@ function _errnoException(...args) {\n Error.stackTraceLimit = 0;\n const e = new ErrnoException(...args);\n Error.stackTraceLimit = limit;\n- ErrorCaptureStackTrace(e, _exceptionWithHostPort);\n+ ErrorCaptureStackTrace(e, _errnoExcepti...
2025-10-13T14:25:09
vercel/next.js
a0b5d9ad8b314bc9c34b138a3935d571561bb6b6
3f80419318a7553794bc63b9618664a89f10164d
Fix reset-project script for E2E deploy tests (#89693) Our reset script was failing from invalid body shape: ```sh Error: Create project failed. Got status: 400, {"error":{"code":"bad_request","message":"Invalid request: should NOT have additional property `env`."}} ``` x-ref: https://github.com/vercel/next.js/acti...
[ { "path": "scripts/reset-project.mjs", "patch": "@@ -97,10 +97,11 @@ export async function resetProject({\n resourceConfig: {\n buildMachineType: 'enhanced',\n },\n- env: [\n+ environmentVariables: [\n {\n key: 'VERCEL_FORCE_NO_BUILD_CACHE_UPLOAD...
2026-02-09T08:28:05
facebook/react
0bfa404bacbad78af5b39c080ba67535f2e53044
81e1ee7476a68fdf13c63d3002e5ef1b699b6842
[compiler] More precise errors for invalid import/export/namespace statements (#33748) import, export, and TS namespace statements can only be used at the top-level of a module, which is enforced by parsers already. Here we add a backup validation of that. As of this PR, we now have only major statement type (class de...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -1397,6 +1397,41 @@ function lowerStatement(\n });\n return;\n }\n+ case 'ExportAllDeclaration':\n+ case 'ExportDefaultDeclaration':\n+ case 'ExportNamedDeclaration':\n+ case 'ImportDeclar...
2025-07-10T05:24:07
golang/go
3d77a0b15ea2a6d2f7b3e2ba483f148d7c6ee174
7ecb1f36acab7b48d77991d58d456a34074a2d0e
os/exec: second call to Cmd.Start is always an error Previously it would return an error only if the first call resulted in process creation, contra the intent of the comment at exec.Cmd: // A Cmd cannot be reused after calling its [Cmd.Start], [Cmd.Run], // [Cmd.Output], or [Cmd.CombinedOutput] methods. Also, clear...
[ { "path": "src/os/exec/exec.go", "patch": "@@ -102,6 +102,7 @@ import (\n \t\"runtime\"\n \t\"strconv\"\n \t\"strings\"\n+\t\"sync/atomic\"\n \t\"syscall\"\n \t\"time\"\n )\n@@ -354,6 +355,9 @@ type Cmd struct {\n \t// the work of resolving the extension, so Start doesn't need to do it again.\n \t// This is...
2025-12-09T15:06:23
electron/electron
2156ccb577f892bf25dea22a6d250beddbd4a2f7
9e2f7065a0173d98d217ef6662992bd61eaf4d16
ci: update llvmobjdump package as part of fix sync (#47858)
[ { "path": ".github/actions/fix-sync/action.yml", "patch": "@@ -19,11 +19,13 @@ inputs:\n runs:\n using: \"composite\"\n steps:\n- - name: Fix clang\n+ - name: Fix llvm toolchain\n shell: bash\n run : |\n rm -rf src/third_party/llvm-build\n python3 src/tools/clang/script...
2025-07-23T08:05:30
nodejs/node
822a8c3244ecabbb2065869214b6ec2c12a70a69
985e2fb3834d39db167592bbcefac994abee87af
perf_hooks: fix stack overflow error PR-URL: https://github.com/nodejs/node/pull/60084 Fixes: https://github.com/nodejs/node/issues/54768 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "lib/internal/per_context/primordials.js", "patch": "@@ -270,6 +270,8 @@ const {\n Array: ArrayConstructor,\n ArrayPrototypeForEach,\n ArrayPrototypeMap,\n+ ArrayPrototypePushApply,\n+ ArrayPrototypeSlice,\n FinalizationRegistry,\n FunctionPrototypeCall,\n Map,\n@@ -720,5 +722,26 @@ ...
2025-10-13T08:05:45
facebook/react
4a3ff8eed65f96cda7617150f92de3544d5ddf6a
ec4374c3872b320af60f322289c30cd3d7066bdf
[compiler] Errors for eval(), with statments, class declarations (#33746) * Error for `eval()` * More specific error message for `with (expr) { ... }` syntax * More specific error message for class declarations --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed wit...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -1355,13 +1355,45 @@ function lowerStatement(\n \n return;\n }\n+ case 'WithStatement': {\n+ builder.errors.push({\n+ reason: `JavaScript 'with' syntax is not supported`,\n+ descriptio...
2025-07-10T05:18:30
golang/go
7ecb1f36acab7b48d77991d58d456a34074a2d0e
70c22e0ad7d89504ab26fb157864f61a79cd4d47
simd/archsimd: add HasAVX2() guards to tests that need them This may not be complete, because some 256-bit float operations may be implemented with integer simd instead (in some cases there is no float op). (And some tests may have just been overlooked.) Fixes #76866. Change-Id: I90b1dfe039c322c484af916436fc6f6c50a...
[ { "path": "src/simd/archsimd/internal/simd_test/binary_test.go", "patch": "@@ -17,23 +17,29 @@ func TestAdd(t *testing.T) {\n \ttestFloat64x2Binary(t, archsimd.Float64x2.Add, addSlice[float64])\n \ttestFloat64x4Binary(t, archsimd.Float64x4.Add, addSlice[float64])\n \n-\ttestInt16x16Binary(t, archsimd.Int16x...
2025-12-19T20:50:57
electron/electron
51bfe07da974efe111ef73ccf7ecdf510f33d256
4699761649ee6eb125e01c72ed290f4ec941ad2d
build: extend Chromium options in bug report template (#47829) * build: extend Chromium options in bug report template As predicted by @dsanders11 and others, we got a bunch of bug reports with clearly incorrect values for "does this issue appear in Chromium?" because people didn't test or didn't know how to test. ...
[ { "path": ".github/ISSUE_TEMPLATE/bug_report.yml", "patch": "@@ -63,6 +63,7 @@ body:\n label: Does the issue also appear in Chromium / Google Chrome?\n description: If it does, please report the issue in the [Chromium issue tracker](https://issues.chromium.org/issues), not against Electron. Electron...
2025-07-21T19:26:02
nodejs/node
2216a3b1d58953e564817b88eb2fbff506c5a192
3ac88a7a66e64a1696fbeb5d7af97a7a61ab1868
deps: V8: cherry-pick 1e190bbb0396 Original commit message: [segmented-table] Disable segments pool if pages can be too large The segments pool can only be used if we have 16Kb allocation granularity. On OSs where the page size can be configured larger we have to disable it, since it is currently not...
[ { "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.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ...
2025-10-12T18:39:19
facebook/react
ec4374c3872b320af60f322289c30cd3d7066bdf
60b5271a9ad0e9eec2489b999ce774d39d09285b
[compiler] Show logged errors in playground (#33740) In playground it's helpful to show all errors, even those that don't completely abort compilation. For example, to help demonstrate that the compiler catches things like setState in effects. This detects these errors and ensures we show them.
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -44,6 +44,7 @@ import {\n PrintedCompilerPipelineValue,\n } from './Output';\n import {transformFromAstSync} from '@babel/core';\n+import {LoggerEvent} from 'babel-plugin-react-compiler/dist/Entrypoint';\n \n function pars...
2025-07-09T16:22:49
electron/electron
4699761649ee6eb125e01c72ed290f4ec941ad2d
26e1bda335878dac2afdafad772e6b431a01bb4b
build: improve `check-zip-manifest` (#47828) * build: improve check-zip-manifest * fix: unicode on Windows
[ { "path": "script/zip_manifests/check-zip-manifest.py", "patch": "@@ -2,24 +2,79 @@\n \n import zipfile\n import sys\n+import os\n \n-def main(zip_path, manifest_in):\n- with open(manifest_in, 'r', encoding='utf-8') as manifest, \\\n- zipfile.ZipFile(zip_path, 'r', allowZip64=True) as z:\n- files_i...
2025-07-21T19:20:27
golang/go
70c22e0ad7d89504ab26fb157864f61a79cd4d47
42cda7c1dfcc1ab109766f2016efe2331b3d0aab
simd/archsimd: delete DotProductQuadruple methods for now The DotProductQuadruple methods are currently defined on Int8 vectors. There are some problems for that. 1. We defined a DotProductQuadrupleSaturated method, but the dot product part does not need saturation, as it cannot overflow. It is the addition part of V...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1324,12 +1324,6 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPERMI2Q256,\n \t\tssa.OpAMD64VPERMI2PD512,\n \t\tssa.OpAMD64VPERMI2Q512,\n-\t\tssa.OpAMD64VPDPBUSD128,\n-\t\tssa.OpAMD64VPDPBUSD256,\n-\t\tssa....
2025-12-19T22:05:03
nodejs/node
1986ee4b659d08c6c05aaea612da23257954bbd5
d54e6aec9ee4a45aab148bbb6ba825f67c38ec6f
vm: hint module identifier in instantiate errors PR-URL: https://github.com/nodejs/node/pull/60199 Fixes: https://github.com/nodejs/node/issues/60157 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Ann...
[ { "path": "src/module_wrap.cc", "patch": "@@ -144,12 +144,12 @@ ModuleWrap::ModuleWrap(Realm* realm,\n Local<Object> context_object,\n Local<Value> synthetic_evaluation_step)\n : BaseObject(realm, object),\n+ url_(Utf8Value(realm->isolate(), url).ToStri...
2025-10-12T14:28:56
facebook/react
60b5271a9ad0e9eec2489b999ce774d39d09285b
033edca72199f5b0dac87e4662b6a4d32a9610ce
[Flight] Call finishHaltedTask on sync aborted tasks in stream abort listeners (#33743) This is the same as we do for currently rendering tasks. They get effectively sync aborted when the listener is invoked. We potentially miss out on some debug info in that case but that would only apply to any entries inside the s...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -1079,8 +1079,9 @@ function serializeReadableStream(\n signal.removeEventListener('abort', abortStream);\n const reason = signal.reason;\n if (enableHalt && request.type === PRERENDER) {\n- haltTask(streamTask, request...
2025-07-09T14:43:56
rust-lang/rust
304a197ba5d18bf837f822f8f9d7a7a3f3e3c897
e613b82e4eaed11edddfc90024a5e51c807ece42
Revert "fixup span in obligation cause" This reverts commit 2d411a0faad447b5bfc968b954fd3e9c10596325.
[ { "path": "compiler/rustc_trait_selection/src/solve.rs", "patch": "@@ -57,7 +57,7 @@ fn try_eagerly_normalize_alias<'a, 'tcx>(\n let obligation = Obligation::new(\n tcx,\n // we ignore the error anyway\n- ObligationCause::dummy_with_span(span),\n+ ObligationCause::dummy(),\...
2026-03-23T11:09:34
vercel/next.js
a4f8b179e125265af9b79e28c8bf5e7322e66fdd
1c73ca5a58e3ec8ab6f1b908f2819245a6147469
Include `AggregateError.errors` in terminal output (#88999) Co-authored-by: bencmbrook <7354176+bencmbrook@users.noreply.github.com> Co-authored-by: Cursor Agent <cursoragent@cursor.com>
[ { "path": "packages/next/src/server/patch-error-inspect.ts", "patch": "@@ -451,13 +451,16 @@ function sourceMapError(\n error: Error,\n inspectOptions: util.InspectOptions\n ): Error {\n+ // Setting an undefined `cause` would print `[cause]: undefined`\n+ const options = error.cause !== undefined ? { ...
2026-02-08T23:18:03
electron/electron
26e1bda335878dac2afdafad772e6b431a01bb4b
cf871bce4e380cff71036e877d5e42bd6c32e911
chore: bump chromium to 140.0.7301.0 (main) (#47747) * chore: bump chromium in DEPS to 140.0.7296.0 * chore: update patches * 6702959: Remove OwnedByWidgetPassKey usage from content analysis dialog tests | https://chromium-review.googlesource.com/c/chromium/src/+/6702959 * 6722750: Remove un-used `stream_id` argume...
[ { "path": "BUILD.gn", "patch": "@@ -4,9 +4,9 @@ import(\"//build/config/win/manifest.gni\")\n import(\"//components/os_crypt/sync/features.gni\")\n import(\"//components/spellcheck/spellcheck_build_features.gni\")\n import(\"//content/public/app/mac_helpers.gni\")\n+import(\"//content/public/common/features...
2025-07-21T16:32:53
facebook/react
e6dc25daea3d949fa5eae3bdffb8b6b79e30fc82
150f022444466266bc09302b8fd47c3e4ce4d791
[Flight] Always defer Promise values if they're not already resolved (#33742) If we have the ability to lazy load Promise values, i.e. if we have a debug channel, then we should always use it for Promises that aren't already resolved and instrumented. There's little downside to this since they're async anyway. This ...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2048,6 +2048,18 @@ function parseModelString(\n if (value.length > 2) {\n const debugChannel = response._debugChannel;\n if (debugChannel) {\n+ if (value[2] === '@') {\n+ /...
2025-07-09T13:08:27
golang/go
42cda7c1dfcc1ab109766f2016efe2331b3d0aab
baa0ae3aaacfcef6ae04beba78a2d2b06776e423
simd/archsimd: add Grouped for 256- and 512-bit SaturateTo(U)Int16Concat, and fix type They operate on 128-bit groups, so name them Grouped to be clear, and consistent with other grouped operations. Reword the documentation, mention the grouping only for grouped versions. Also, SaturateToUnt16Concat(Grouped) is a sig...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -739,12 +739,12 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPRORVQMasked128,\n \t\tssa.OpAMD64VPRORVQMasked256,\n \t\tssa.OpAMD64VPRORVQMasked512,\n-\t\tssa.OpAMD64VPACKSSDWMasked128,\n \t\tssa.OpAMD64VPA...
2025-12-19T20:21:15
rust-lang/rust
5f2790c3412994b7aaef5ccf350030cd6c4a6ede
bbe853615821442ef11d6cd42a30a73432b38d89
using rustc in the middle of an attrpath errors
[ { "path": "tests/ui/attributes/rustc-in-attr-path.rs", "patch": "@@ -0,0 +1,9 @@\n+mod rustc {\n+ pub use std::prelude::v1::test;\n+}\n+\n+#[crate::rustc::test]\n+//~^ ERROR: attributes starting with `rustc` are reserved for use by the `rustc` compiler\n+fn foo() {}\n+\n+fn main() {}", "additions": 9...
2026-03-07T09:16:12
vercel/next.js
7c9be45a48ea58a2ddbe37c2840142dd79cc7b3a
9ce7250725df2344f59d391b70f9110f7329f9d8
[Turbopack] Include CSS URL attributes, including Layer, Media and Supports (#89300) Note that this is my first contribution in Rust, so let me know if I missed anything idiomatic or if there is a particularly better way to do something. Also, I did not use AI to create this at all, although I did chat a bit to try t...
[ { "path": "test/e2e/app-dir/app-css/app/externalLayer/external-layer.css", "patch": "@@ -0,0 +1,11 @@\n+@import url('https://cdn.jsdelivr.net/npm/modern-css-reset/dist/reset.min.css')\n+layer(default);\n+/* Any external stylesheet should work. Using this css-reset because it is very small and backed by CDN ...
2026-02-08T17:55:32
electron/electron
cf871bce4e380cff71036e877d5e42bd6c32e911
39cca586f65d7d23c78aa5905a5132762ce171d5
build: fix ffmpeg generation on Windows non-x64 (#47768) * build: fix ffmpeg generation on Windows non-x64 * test: ffmpeg artifact
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -38,6 +38,12 @@ runs:\n run: |\n GN_APPENDED_ARGS=\"$GN_EXTRA_ARGS target_cpu=\\\"x64\\\" v8_snapshot_toolchain=\\\"//build/toolchain/mac:clang_x64\\\"\"\n echo \"GN_EXTRA_ARGS=$GN_APPENDED_ARGS\" >> $GITHUB_ENV\n+ ...
2025-07-21T15:33:42
facebook/react
3a43e72d665af98b62d9c3c54bd288597dd27e6e
8ba3501cd9c982676fab35f1c8092302060d728c
[Flight] Create a fast path parseStackTrace which skips generating a string stack (#33735) When we know that the object that we pass in is immediately parsed, then we know it couldn't have been reified into a unstructured stack yet. In this path we assume that we'll trigger `Error.prepareStackTrace`. Since we know th...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -94,6 +94,7 @@ import {\n getCurrentAsyncSequence,\n getAsyncSequenceFromPromise,\n parseStackTrace,\n+ parseStackTracePrivate,\n supportsComponentStorage,\n componentStorage,\n unbadgeConsole,\n@@ -316,7 +317,7 @@ functio...
2025-07-09T13:06:55
golang/go
25ed6c7f9b1985688cc9b09b2afdda54fc8932bd
4411edf9721cb4cdb0a5b81b9511ff7472581519
cmd/go/internal/doc: update pkgsite version Fixes #76827 For #36905 Change-Id: I3f855a75efc9272105f0a352c54600cd6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/731460 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Matloob <matloob@google....
[ { "path": "src/cmd/go/internal/doc/pkgsite.go", "patch": "@@ -71,7 +71,7 @@ func doPkgsite(urlPath, fragment string) error {\n \t\tenv = append(env, \"GOPROXY=\"+gomodcache+\",\"+goproxy)\n \t}\n \n-\tconst version = \"v0.0.0-20250714212547-01b046e81fe7\"\n+\tconst version = \"v0.0.0-20251215153041-4eb0af2c...
2025-12-19T18:00:33
nodejs/node
a1b73fe430d1110ecdf31eaf3fecc1bf9e58ddb8
a2f088d516efc7811e83e526f528c519fc634118
deps: V8: cherry-pick 2abc61361dd4 Original commit message: Fix scratch registers passed to mtvsrdd `ra` cannot be r0 as it will be interpreted as Operand(0) Change-Id: Idce58191f9d3578dc91dc4aa3872a0bf2939d8b3 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6936113 Commit-Queue:...
[ { "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-11T14:16:36
vercel/next.js
e20f127a1f30d7fb7caadad9101074a355a44fea
355d4484e5d7d923c8508695d9d14d11e812ebaf
Fix missing non-deferred turbopack build items (#89616) This expands test suite for deferred entries experimental handling and fixes missing handling for metadata routes and route handlers when building the non-deferred entries.
[ { "path": "packages/next/src/build/turbopack-build/impl.ts", "patch": "@@ -2,6 +2,11 @@\n import { saveCpuProfile } from '../../server/lib/cpu-profile'\n import path from 'path'\n import { validateTurboNextConfig } from '../../lib/turbopack-warning'\n+import { isMetadataRouteFile } from '../../lib/metadata/...
2026-02-07T05:24:51
golang/go
d00e96d3aeccb11c373d125418316f0b019f4fb0
cfc024daebb84b1864f538d60659691ccf3acf30
internal/cpu: repair VNNI feature check This is a pain to test. Also the original test was never executed, because it was wrong. It looks like processors that might lack this features include Intel 11th generation and AMD Zen 4. These might or might not have bit 2 set in the 7th cpuid "leaf" (SM4) which is what the ...
[ { "path": "src/internal/cpu/cpu_x86.go", "patch": "@@ -219,7 +219,7 @@ func doinit() {\n \tif eax7 >= 1 {\n \t\teax71, _, _, _ := cpuid(7, 1)\n \t\tif X86.HasAVX {\n-\t\t\tX86.HasAVXVNNI = isSet(4, eax71)\n+\t\t\tX86.HasAVXVNNI = isSet(eax71, cpuid_AVXVNNI)\n \t\t}\n \t}\n ", "additions": 1, "deleti...
2025-12-18T18:18:14
facebook/react
d35fef9e21100463b0bfecb975e9d9eca45c963f
a7a116577daf3b135c226ed9db8a8c2f9166c023
[compiler] Fix for consecutive DCE'd branches with phis (#33725) This is an optimized version of @asmjmp0's fix in https://github.com/facebook/react/pull/31940. When we merge consecutive blocks we need to take care to rewrite later phis whose operands will now be different blocks due to merging. Rather than iterate al...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/MergeConsecutiveBlocks.ts", "patch": "@@ -107,6 +107,17 @@ export function mergeConsecutiveBlocks(fn: HIRFunction): void {\n merged.merge(block.id, predecessorId);\n fn.body.blocks.delete(block.id);\n }\n+ for (const [, block] of fn...
2025-07-08T23:36:47
vercel/next.js
355d4484e5d7d923c8508695d9d14d11e812ebaf
7cd9c7071ea92d599b7415d0d1c195a17a2407f0
fix: deprecated util._extend (#89614) ### What? Fix deprecated warning: "Use Object.assign instead of deprecated util._extend" from http-proxy (which hasn't been updated for 5 years) ### Why? ### How? Fixes #74460 In favour of https://github.com/vercel/next.js/pull/81544 (which didn't use a patch, but manually upd...
[ { "path": "package.json", "patch": "@@ -158,7 +158,7 @@\n \"@types/fs-extra\": \"8.1.0\",\n \"@types/glob\": \"7.1.1\",\n \"@types/html-validator\": \"5.0.3\",\n- \"@types/http-proxy\": \"1.17.3\",\n+ \"@types/http-proxy\": \"1.17.17\",\n \"@types/jest\": \"29.5.5\",\n \"@types/nod...
2026-02-06T23:45:46
golang/go
b8c4cc63e77bd457dffa6ec83a3ff65382dac94b
8564fede8929df5bbf9f10d35ff9d3620683ca80
runtime: keep track of secret allocation size During a naive attempt to test the new runtime/secret package, I tried wrapping the entire handshake in a secret.Do call. This lead to a panic because some of the allocator logic had been previously untested. freeSpecial takes p and size, but they can be misleading. They ...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1213,7 +1213,7 @@ func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer {\n \tif goexperiment.RuntimeSecret && gp.secret > 0 {\n \t\t// Mark any object allocated while in secret mode as secret.\n \t\t// This ensures we zero it immediately when...
2025-12-16T13:50:57
electron/electron
39cca586f65d7d23c78aa5905a5132762ce171d5
2f4a070c39d3fa97e15ea9514a44d7800f8ec159
refactor: avoid deprecated `v8::Context::GetIsolate()` calls (pt 1) (#47760) * refactor: avoid redundant GetIsolate() calls in NodeBindings::CreateEnvironment() Xref: https://chromium-review.googlesource.com/c/v8/v8/+/6563615 * refactor: use v8::Isolate::GetCurrent() in Initialize() methods * refactor: add v8::Isol...
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -1856,8 +1856,8 @@ void Initialize(v8::Local<v8::Object> exports,\n v8::Local<v8::Value> unused,\n v8::Local<v8::Context> context,\n void* priv) {\n- v8::Isolate* isolate = context->GetIsolate();...
2025-07-21T14:34:38
vercel/next.js
522de8c34fbf8070ab4c0deb90b716f0ceb6f8e4
5ea38767d231c741f83cdadfbe317b9d84d9209b
Fix deployment id header when proxying (#89593) When proxying through multiple projects, this header would get overwritten by the proxy project: - the header would be the proxy's deployment id - `process.env.NEXT_DEPLOYMENT_ID` would be the origin's deployment id Needs https://github.com/vercel/vercel/pull/14903
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -30,6 +30,7 @@ import type {\n ManifestRewriteRoute,\n FunctionsConfigManifest,\n DynamicPrerenderManifestRoute,\n+ ManifestHeaderRoute,\n } from '..'\n \n import {\n@@ -1977,6 +1978,19 @@ export async function handleBuildCom...
2026-02-06T19:34:25
nodejs/node
367bcce6a6159fd90f97a508e3ec80ca938539f6
2e675c4fa36a5d5b9fcf4c46b1fc9238623e0440
src: fix usage of deprecated V8 API Namely `GetContinuationPreservedEmbedderData` and `SetContinuationPreservedEmbedderData` for their "V2" variants. Refs: https://github.com/v8/v8/commit/da41db36ec78d7c1f37fc7d0c7a7c580fda970fe PR-URL: https://github.com/nodejs/node/pull/60174 Reviewed-By: Anna Henningsen <anna@adda...
[ { "path": "src/async_context_frame.cc", "patch": "@@ -34,7 +34,7 @@ Scope::~Scope() {\n }\n \n Local<Value> current(Isolate* isolate) {\n- return isolate->GetContinuationPreservedEmbedderData();\n+ return isolate->GetContinuationPreservedEmbedderDataV2().As<Value>();\n }\n \n void set(Isolate* isolate, Lo...
2025-10-11T07:57:15
facebook/react
777264b4ef52797f63d0ed3e9e21b66b7ae6780e
befc1246b07a04b401bc6e914b7f336a442dca1a
[Flight] Fix stack getting object limited (#33733) Because the object limit is unfortunately depth first due to limitations of JSON stringify, we need to ensure that things we really don't want outlined are first in the enumeration order. We add the stack length to the object limit to ensure that the stack frames are...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -4072,10 +4072,6 @@ function emitIOInfoChunk(\n start: relativeStartTimestamp,\n end: relativeEndTimestamp,\n };\n- if (value !== undefined) {\n- // $FlowFixMe[cannot-write]\n- debugIOInfo.value = value;\n- }\n if (...
2025-07-08T16:54:29
golang/go
8564fede8929df5bbf9f10d35ff9d3620683ca80
eecdb61eebabc083f588a349d4ce5ac2defaf2ca
cmd/go: remove reference to no longer existing -i flag The flag was removed in CL 416094. Fixes #76850 Change-Id: Ia219b4d2d8391f08487b4ff1bbec43766a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/730721 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1954,7 +1954,7 @@\n //\n //\t-o file\n //\t Save a copy of the test binary to the named file.\n-//\t The test still runs (unless -c or -i is specified).\n+//\t The test still runs (unless -c is specified).\n //\t If file ends in a slash or names a...
2025-12-17T16:30:52
electron/electron
2f4a070c39d3fa97e15ea9514a44d7800f8ec159
2b098408a8f98304edc185efe02812dbd000a85e
fix: dialog file filters and macOS app bundles (#47825)
[ { "path": "shell/browser/ui/file_dialog_mac.mm", "patch": "@@ -122,6 +122,18 @@ void SetAllowedFileTypes(NSSavePanel* dialog, const Filters& filters) {\n if (ext == \"*\") {\n [content_types_set addObject:[UTType typeWithFilenameExtension:@\"*\"]];\n break;\n+ } else if (ext == \"...
2025-07-21T11:57:50
nodejs/node
4daeec11b93f3ccae57973970a84e82282844493
bfc81ca2284e7d596a140d6b93735a1914816561
lib: fix typo in QuicSessionStats Corrects the misspelling of "privateSynbol" to "privateSymbol". PR-URL: https://github.com/nodejs/node/pull/60155 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/quic/stats.js", "patch": "@@ -307,13 +307,13 @@ class QuicSessionStats {\n #disconnected = false;\n \n /**\n- * @param {symbol} privateSynbol\n+ * @param {symbol} privateSymbol\n * @param {BigUint64Array} buffer\n */\n- constructor(privateSynbol, buffer) {\n+ construc...
2025-10-10T04:16:56
facebook/react
befc1246b07a04b401bc6e914b7f336a442dca1a
bbea677b77ebf5d696623e2f634c69744eaf9d86
[Fizz] Render preamble eagerly (#33730) We unnecessarily render the preamble in a task. This updates the implementation to perform this render inline. Testing this is tricky because one of the only ways you could assert this was even happening is based on how things error if you abort while rendering the root. While...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -9544,6 +9544,102 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ it('will attempt to render the preamble inline to allow rendering before a later abort in the same task', async () => {\n+ const promis...
2025-07-08T15:20:12
vercel/next.js
a1c12562f0e07c3a1340745e06dd13064971f7c3
869b45ef0dd84a71296b1809c8bed2dce7bd1ad1
Turbopack: Pass globals to node.js workers as well (#89261) ## What Changes how Turbopack creates Web Workers and Worker Threads to use a unified factory function pattern. Workers now receive the same runtime globals (like `NEXT_DEPLOYMENT_ID` and `NEXT_CLIENT_ASSET_SUFFIX`) as the parent context, and asset loading...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -71,7 +71,7 @@ use crate::{\n util::{\n OptionEnvMap, defines, foreign_code_context_condition,\n free_var_references_with_vercel_system_env_warnings, internal_assets_conditions,\n- module_styles_rule_condition,\...
2026-02-06T17:02:54
golang/go
516699848b7c19b2b7f80de82c66012719f6835b
8c28ab936a1042fad8531583ff7737aa361e324a
runtime/secret: warn users about allocations, loosen guarantees The discussion at #76477 warranted some stronger documentation about what is expected from users of the secret package. In addition, #76764 presented a problem about when a user can expect their secrets to be deleted. Fix by loosening the guarantee to wh...
[ { "path": "src/runtime/secret/doc.go", "patch": "@@ -0,0 +1,15 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build goexperiment.runtimesecret\n+\n+// Package secret contains he...
2025-12-10T10:13:05
electron/electron
31b18c983060c17ede270f43986b0677004c2eaf
895bf9103e05bdd80f91fa08a5ccf93c2ed72caf
fix: abnormal behavior of windows background material (#47386) * fix: abnormal behavior of windows background material Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * chore: update patches * fix: setting background material after init --------- Co-authored-by: zoy <zoy-l@outlook.com> Co-authored-by: patch...
[ { "path": "patches/chromium/.patches", "patch": "@@ -102,7 +102,6 @@ fix_use_delegated_generic_capturer_when_available.patch\n expose_webblob_path_to_allow_embedders_to_get_file_paths.patch\n fix_move_autopipsettingshelper_behind_branding_buildflag.patch\n revert_remove_the_allowaggressivethrottlingwithwebs...
2025-07-17T12:50:12
nodejs/node
db0121bedd7c541214c28cacc9b8e67dbadc5e0a
f8a43f6f3457107d86c4e289dbe824464e6c1a5a
module: fix directory option in the enableCompileCache() API The option name should be `directory` to be consistent with the returned result. It should also allow environment variable overrides. This also adds documentation for the new options and improves it. PR-URL: https://github.com/nodejs/node/pull/59931 Review...
[ { "path": "doc/api/module.md", "patch": "@@ -385,20 +385,33 @@ changes:\n \n The module compile cache can be enabled either using the [`module.enableCompileCache()`][]\n method or the [`NODE_COMPILE_CACHE=dir`][] environment variable. After it is enabled,\n-whenever Node.js compiles a CommonJS or a ECMAScri...
2025-10-09T07:55:31
facebook/react
bbea677b77ebf5d696623e2f634c69744eaf9d86
f1ecf82bfb5fdfa5d1c3aedcf114415fc29bd2da
[Flight] Lazy load objects from the debug channel (#33728) When a debug channel is available, we now allow objects to be lazily requested though the debug channel and only then will the server send it. The client will actually eagerly ask for the next level of objects once it parses its payload. That way those object...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -120,10 +120,69 @@ async function ServerComponent({noCache}) {\n return await fetchThirdParty(noCache);\n }\n \n+let veryDeepObject = [\n+ {\n+ bar: {\n+ baz: {\n+ a: {},\n+ },\n+ },\n+ },\n+ {\n+ bar: {\n+ baz: {\n+ ...
2025-07-08T14:49:25
vercel/next.js
869b45ef0dd84a71296b1809c8bed2dce7bd1ad1
bba2a9cf268cca9bf3fb754eedfe0dfc79512e9d
Resolve local variable references in error code SWC plugin (#89596) The error code plugin now resolves local variable references in error constructors to their string literal initializers. Previously, `const msg = 'Error text'; throw new Error(msg)` would produce `"%s"` as the error message, preventing it from being t...
[ { "path": "crates/next-error-code-swc-plugin/src/lib.rs", "patch": "@@ -8,6 +8,23 @@ use swc_core::{\n \n pub struct TransformVisitor {\n errors: FxHashMap<String, String>,\n+ resolved_bindings: FxHashMap<Id, String>,\n+}\n+\n+struct BindingCollector {\n+ bindings: FxHashMap<Id, String>,\n+}\n+\n+...
2026-02-06T16:38:24
golang/go
8c28ab936a1042fad8531583ff7737aa361e324a
65b71c11d469029f755328c5e51742139f6b8686
cmd/cgo: don't emit C local if it is not used Fixes #76861 Change-Id: Icc8452e48ed736e8240f8afea18637c33b8e3ef8 Reviewed-on: https://go-review.googlesource.com/c/go/+/730600 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <drchase@google.com> Reviewed...
[ { "path": "src/cmd/cgo/internal/test/issue76861.go", "patch": "@@ -0,0 +1,12 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build cgo\n+\n+package cgotest\n+\n+// Issue 43639: N...
2025-12-17T00:00:36
electron/electron
895bf9103e05bdd80f91fa08a5ccf93c2ed72caf
bf51d345c86aded4b76dab5bf440f1cd06ab1564
fix: handle missing `NativeWindowMac` in `ElectronNSWindow` (#47751) fix: handle missing NativeWindowMac in ElectronNSWindow
[ { "path": "shell/browser/ui/cocoa/electron_ns_window.mm", "patch": "@@ -173,18 +173,16 @@ - (void)cleanup {\n }\n \n - (id)accessibilityFocusedUIElement {\n- views::Widget* widget = shell_->widget();\n- id superFocus = [super accessibilityFocusedUIElement];\n- if (!widget || shell_->IsFocused())\n- re...
2025-07-17T12:49:37
nodejs/node
f8a43f6f3457107d86c4e289dbe824464e6c1a5a
6dbf7086bb7deb1a2b99a7277226bb8f1f8136f2
test: deflake test-fs-promises-watch-iterator Add a delay before writing the files to ensure that the watcher receives the notifications. Fixes: https://github.com/nodejs/node/issues/60051 Refs: https://github.com/nodejs/node/issues/52601 PR-URL: https://github.com/nodejs/node/pull/60060 Reviewed-By: Anna Henningsen ...
[ { "path": "test/parallel/test-fs-promises-watch-iterator.js", "patch": "@@ -34,10 +34,12 @@ class WatchTestCase {\n }\n }\n async writeFiles() {\n+ // Do the write with a delay to ensure that the OS is ready to notify us.\n+ await setTimeout(common.platformTimeout(100));\n+\n for (const fi...
2025-10-09T05:33:33
facebook/react
f1ecf82bfb5fdfa5d1c3aedcf114415fc29bd2da
b44a99bf58d69d52b5288d9eadcc6d226d705e11
[Flight] Optimize Async Stack Collection (#33727) We need to optimize the collection of debug info for dev mode. This is an incredibly hot path since it instruments all I/O and Promises in the app. These optimizations focus primarily on the collection of stack traces. They are expensive to collect because we need to ...
[ { "path": "packages/react-server/src/ReactFlightAsyncSequence.js", "patch": "@@ -26,7 +26,7 @@ type PromiseWithDebugInfo = interface extends Promise<any> {\n export type IONode = {\n tag: 0,\n owner: null | ReactComponentInfo,\n- stack: ReactStackTrace, // callsite that spawned the I/O\n+ stack: null,...
2025-07-08T14:49:08
golang/go
65b71c11d469029f755328c5e51742139f6b8686
ea1aa765540e17043f817919febad262cf061ad8
crypto/internal/fips140only: test fips140=only mode Fixes #70514 Updates #70878 Change-Id: I6a6a46561d872c8f7e9ea333ff208064b0bd44c1 Reviewed-on: https://go-review.googlesource.com/c/go/+/728506 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Filippo Valsorda <fi...
[ { "path": "src/crypto/internal/fips140only/fips140only_test.go", "patch": "@@ -0,0 +1,408 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package fips140only_test\n+\n+import (\n+\t\"...
2024-12-28T21:32:59
electron/electron
31725b4a861feb2ddbd31016a46d18e5a305f7f0
ec748eb91526282c7f6ea7eba90bfb0b7222c6bd
fix: window `accentColor` should adhere to native window behavior (#47740) * fix: window accentColor should adhere to native window behavior * fix: address review feedback * chore: remove duplicate UpdateWindowAccentColor call in ctor
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -420,8 +420,6 @@ NativeWindowViews::NativeWindowViews(const gin_helper::Dictionary& options,\n last_window_state_ = ui::mojom::WindowShowState::kFullscreen;\n else\n last_window_state_ = ui::mojom::WindowShowState::kNormal;\n-\n- Upda...
2025-07-17T08:59:42
vercel/next.js
7429f7ce86accf790414553d4b8c066fbf41e6e6
1bf6c2f4b138dbf6b426d2b04b7f7e16a1b52f6d
refactor: extract route discovery into unified `discoverRoutes()` API (#88971) ## Summary Route collection, mapping, and processing logic was duplicated across six call sites (`build/index.ts`, `build/analyze/index.ts`, `cli/next-typegen.ts`, `server/lib/router-utils/setup-dev-bundler.ts`, `server/mcp/tools/get-route...
[ { "path": "packages/next/src/build/analyze/index.ts", "patch": "@@ -9,14 +9,8 @@ import { PHASE_ANALYZE } from '../../shared/lib/constants'\n import { turbopackAnalyze, type AnalyzeContext } from '../turbopack-analyze'\n import { durationToString } from '../duration-to-string'\n import { cp, writeFile, mkdi...
2026-02-06T15:29:35
nodejs/node
6dbf7086bb7deb1a2b99a7277226bb8f1f8136f2
535efea962f3187a8e730a7aa9d96e9a6874e4f2
test_runner: fix suite timeout PR-URL: https://github.com/nodejs/node/pull/59853 Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -1455,7 +1455,9 @@ class Suite extends Test {\n reportedType = 'suite';\n constructor(options) {\n super(options);\n- this.timeout = null;\n+ if (options.timeout == null) {\n+ this.timeout = null;\n+ }\n \n if (this.config....
2025-10-09T04:40:05
facebook/react
e4314a0a0f6ea1ab8f739c9119583d148c1be657
e43986f1f3e6e94f7eef86fb21c830959e0ade6c
[tests] Assert on component stack for Maximum Update error (#33686) Good to assert these include the component stack
[ { "path": "packages/react-dom/src/__tests__/ReactUpdates-test.js", "patch": "@@ -20,6 +20,19 @@ let waitFor;\n let assertLog;\n let assertConsoleErrorDev;\n \n+function normalizeCodeLocInfo(str) {\n+ return (\n+ str &&\n+ str.replace(/^ +(?:at|in) ([\\S]+)[^\\n]*/gm, function (m, name) {\n+ cons...
2025-07-07T17:58:03
electron/electron
ec748eb91526282c7f6ea7eba90bfb0b7222c6bd
5feb91e2f419507aa2f24583f0a89982328bb0b4
test: cleanup RenderFrame lifespan tests (#47746) * test: cleanup RenderFrame lifespan tests * test: disable navigator.serial tests on arm64 mac debug the hang test: disable navigator.bluetooth on arm64 mac Revert "test: disable navigator.bluetooth on arm64 mac" This reverts commit 4b53a8485a5ff391832c7da93d859f1...
[ { "path": "spec/api-web-frame-main-spec.ts", "patch": "@@ -314,6 +314,7 @@ describe('webFrameMain module', () => {\n beforeEach(async () => {\n w = new BrowserWindow({ show: false });\n });\n+ afterEach(closeAllWindows);\n \n // TODO(jkleinsc) fix this flaky test on linux\n ifit(pro...
2025-07-16T20:19:55
vercel/next.js
1bf6c2f4b138dbf6b426d2b04b7f7e16a1b52f6d
488d90d141c6f84db3aae5ef57546052c5d8c7f0
Fix flaky turbo cache pull with retries and graceful fallback (#89575) - Add retry logic (3 attempts with 5s delay) for transient network failures - Don't fail the job when cache restoration fails - let workflow build from source - Add error handling for dry run failures and JSON parsing This attempts to address tran...
[ { "path": "scripts/pull-turbo-cache.js", "patch": "@@ -3,69 +3,122 @@\n \n const { spawn } = require('child_process')\n \n-;(async function () {\n- const target = process.argv[process.argv.length - 1]\n-\n- let turboResult = ''\n- const turboCommand = `pnpm dlx turbo@${process.env.TURBO_VERSION || 'lates...
2026-02-06T15:06:40
nodejs/node
535efea962f3187a8e730a7aa9d96e9a6874e4f2
642a7c0d46b9a4beea4e33a0b0c2bce7593c5811
http2: do not crash on mismatched ping buffer length PR-URL: https://github.com/nodejs/node/pull/60135 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -1444,9 +1444,9 @@ class Http2Session extends EventEmitter {\n }\n if (payload) {\n validateBuffer(payload, 'payload');\n- }\n- if (payload && payload.length !== 8) {\n- throw new ERR_HTTP2_PING_LENGTH();\n+ if (payload.byteL...
2025-10-08T23:23:34
golang/go
ea1aa765540e17043f817919febad262cf061ad8
5046bdf8a612b35a2c1a9e168054c1d5c65e7dd7
go/doc: exclude examples with results Fixes #36185 Change-Id: I7634744e62e00023367ed48a4700b61a6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/729902 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by...
[ { "path": "src/go/doc/example.go", "patch": "@@ -74,6 +74,9 @@ func Examples(testFiles ...*ast.File) []*Example {\n \t\t\tif params := f.Type.Params; len(params.List) != 0 {\n \t\t\t\tcontinue // function has params; not a valid example\n \t\t\t}\n+\t\t\tif results := f.Type.Results; results != nil && len(r...
2025-12-14T20:02:33
electron/electron
5feb91e2f419507aa2f24583f0a89982328bb0b4
5128ebeddb76fbbf0a9e49af720fa2d37815e893
test: fix extensions console flake (#47750)
[ { "path": "spec/extensions-spec.ts", "patch": "@@ -18,7 +18,7 @@ const uuid = require('uuid');\n const fixtures = path.join(__dirname, 'fixtures');\n \n describe('chrome extensions', () => {\n- const emptyPage = '<script>console.log(\"loaded\")</script>';\n+ const emptyPage = '<html><body><h1>EMPTY PAGE</...
2025-07-16T16:27:20
vercel/next.js
488d90d141c6f84db3aae5ef57546052c5d8c7f0
a91b3609d0a1fa4f6c3d8603f9b5bad9b5aa33a9
[test] consolidate the browser log test (#89601) Filter out the extra logging from test env so we only assert on the snapshot of forwarded logs ``` Snapshot name: `Terminal Logging (Webpack) App Router - Hydration Errors should show hydration errors with owner stack trace 1` - Snapshot - 1 + Received + 9 @@ -39,7 ...
[ { "path": "test/development/browser-logs/browser-logs.test.ts", "patch": "@@ -303,8 +303,10 @@ describe(`Terminal Logging (${bundlerName})`, () => {\n await retry(() => {\n const logOutput = logs.join('\\n')\n // Find the hydration error log entry\n+ // Stop at: another [browser...
2026-02-06T13:48:26
nodejs/node
f0aa073907fc88f64ca95e4821eb7fdf49b133e2
1f95d399976de0c0d7928edcbfa362630019cd8a
test_runner: add junit file attribute support Add file attribute to JUnit testcase elements when file information is available in test event data. PR-URL: https://github.com/nodejs/node/pull/59432 Fixes: https://github.com/nodejs/node/issues/59422 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow ...
[ { "path": "lib/internal/test_runner/reporter/junit.js", "patch": "@@ -116,6 +116,9 @@ module.exports = async function* junitReporter(source) {\n } else {\n currentTest.tag = 'testcase';\n currentTest.attrs.classname = event.data.classname ?? 'test';\n+ if (event.data.fil...
2025-08-18T08:49:40
facebook/react
8a6c589be74a389e62a996e74f8777ccd2a237ac
7cafeff340f44fff840b332d3463533dc2d3734b
[Flight] Keep a separate ref count for debug chunks (#33717) Same as #33716 but without the separate close signal. We'll need the ref count for separate debug channel anyway but I'm not sure we'll need the separate close signal.
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -278,7 +278,7 @@ function patchConsole(consoleInst: typeof console, methodName: string) {\n request,\n parseStackTrace(new Error('react-stack-top-frame'), 1),\n );\n- request.pendingChunks++;\n+ ...
2025-07-07T15:42:20
golang/go
5046bdf8a612b35a2c1a9e168054c1d5c65e7dd7
3f6eabdf09cd660c7881b75c5dfaef09609ba7e6
crypto/tls: reject trailing messages after client/server hello For TLS 1.3, after procesesing the server/client hello, if there isn't a CCS message, reject the trailing messages which were appended to the hello messages. This prevents an on-path attacker from injecting plaintext messages into the handshake. Additiona...
[ { "path": "src/crypto/tls/conn.go", "patch": "@@ -224,6 +224,9 @@ func (hc *halfConn) changeCipherSpec() error {\n \treturn nil\n }\n \n+// setTrafficSecret sets the traffic secret for the given encryption level. setTrafficSecret\n+// should not be called directly, but rather through the Conn setWriteTraffi...
2025-11-24T22:03:10
vercel/next.js
a91b3609d0a1fa4f6c3d8603f9b5bad9b5aa33a9
9f4eccff862c2ad048fd96f18be61e373a8ede60
Ensure Errors with deep causal chains respect inspect depth (#89594) Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: bencmbrook <7354176+bencmbrook@users.noreply.github.com>
[ { "path": "packages/next/src/server/patch-error-inspect.ts", "patch": "@@ -501,10 +501,7 @@ export function patchErrorInspectNodeJS(\n try {\n return inspect(newError, {\n ...inspectOptions,\n- depth:\n- (inspectOptions.depth ??\n- // Default in Node....
2026-02-06T13:02:05
electron/electron
389927dce842f5f26b841f254f21043a4cb8f291
67afc10b75763fae5449b28c3513d5579476c193
fix: corner smoothing feature gate crash (#47759) * fix: corner smoothing feature gate crash * Fix ElectronCornerSmoothing::CSSValueFromComputedStyleInternal
[ { "path": "docs/api/corner-smoothing-css.md", "patch": "@@ -51,19 +51,17 @@ Use the `system-ui` keyword to match the smoothness to the OS design language.\n \n ### Controlling availibility\n \n-This CSS rule can be disabled by setting [the `cornerSmoothingCSS` web preference](./structures/web-preferences.md...
2025-07-16T15:39:17
nodejs/node
1f95d399976de0c0d7928edcbfa362630019cd8a
15278252bb8391ef78f6973d15e4834da7030de9
test: prepare junit file attribute normalization Add file attribute normalization in JUnit test output transform to support upcoming file attribute feature in JUnit XML reporter. PR-URL: https://github.com/nodejs/node/pull/59432 Fixes: https://github.com/nodejs/node/issues/59422 Reviewed-By: Moshe Atlow <moshe@atlow....
[ { "path": "test/fixtures/test-runner/output/junit_reporter.snapshot", "patch": "@@ -1,12 +1,12 @@\n <?xml version=\"1.0\" encoding=\"utf-8\"?>\n <testsuites>\n-\t<testcase name=\"sync pass todo\" time=\"*\" classname=\"test\">\n+\t<testcase name=\"sync pass todo\" time=\"*\" classname=\"test\" file=\"*\">\n...
2025-08-18T08:49:30
facebook/react
7cafeff340f44fff840b332d3463533dc2d3734b
0378b46e7e4c5c15ac57308e2894b6d78d5fb488
[Flight] Close Debug Channel when All Lazy References Have Been GC:ed (#33718) When we have a debug channel open that can ask for more objects. That doesn't close until all lazy objects have been explicitly asked for. If you GC an object before the lazy references inside of it before asking for or releasing the object...
[ { "path": "fixtures/flight/src/index.js", "patch": "@@ -16,18 +16,49 @@ function findSourceMapURL(fileName) {\n \n let updateRoot;\n async function callServer(id, args) {\n- const response = fetch('/', {\n- method: 'POST',\n- headers: {\n- Accept: 'text/x-component',\n- 'rsc-action': id,\n-...
2025-07-07T15:28:15
electron/electron
67afc10b75763fae5449b28c3513d5579476c193
f570e6967fe6bb0282d3d329e1037c535ae4a83a
fix: add macos memory query fallback patch to avoid crash (#47765)
[ { "path": "patches/chromium/.patches", "patch": "@@ -137,3 +137,4 @@ build_partial_revert_mac_fullscreen_top_chrome_mouse_events.patch\n revert_update_siso-chromium_image.patch\n build_set_mac_sdk_minimum_to_10.patch\n partitionalloc_use_fewer_vmas_by_default_on_linux_systems.patch\n+fix_add_macos_memory_qu...
2025-07-16T15:18:54
vercel/next.js
6dece1b365f32de374e96534025ca7aa10b1d3cc
b01037d8da5b76ba61327e2284c30195d6ac293b
Fix spelling in robots.mdx documentation (#89565) This pull request makes minor documentation improvements to the `robots.mdx` API reference, correcting a typo and clarifying the description of `robots.js` route handler behavior. - Documentation clarity and typo fixes: * Corrected "Route Handlers" to "Route Handler" ...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/01-metadata/robots.mdx", "patch": "@@ -19,7 +19,7 @@ Sitemap: https://acme.com/sitemap.xml\n \n Add a `robots.js` or `robots.ts` file that returns a [`Robots` object](#robots-object).\n \n-> **Good to know**: `robots.js` is a special Route Handlers...
2026-02-06T09:20:05
golang/go
3f6eabdf09cd660c7881b75c5dfaef09609ba7e6
a4b5b92055d24da007ae13c4586aa0a229fa337b
cmd/compile: use unsigned constant when folding loads for SIMD ops with constants When folding loads into a SIMD op with a constant, in the SSA rules we use makeValAndOff to create an AuxInt for the constant and the offset. For the SIMD ops of concern (for now), the constants are always unsigned. So pass the constant ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -2511,30 +2511,30 @@\n (VPANDNQMasked128 x l:(VMOVDQUload128 {sym} [off] ptr mem) mask) && canMergeLoad(v, l) && clobber(l) => (VPANDNQMasked128load {sym} [off] x ptr mask mem)\n (VPANDNQMasked256 x l:(VMOVDQUload256 {sym} [off] ptr...
2025-12-16T16:16:47
nodejs/node
b13f24c2dad1428d7a248835b09fd4a2a27276ff
d52cd045912b90672db8b542374ff3d9cc287701
build, src: fix include paths for vtune files PR-URL: https://github.com/nodejs/node/pull/59999 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/api/environment.cc", "patch": "@@ -18,7 +18,7 @@\n #include \"node_wasm_web_api.h\"\n #include \"uv.h\"\n #ifdef NODE_ENABLE_VTUNE_PROFILING\n-#include \"../deps/v8/src/third_party/vtune/v8-vtune.h\"\n+#include \"../deps/v8/third_party/vtune/v8-vtune.h\"\n #endif\n #if HAVE_INSPECTOR\n #inclu...
2025-10-07T19:04:32
electron/electron
f570e6967fe6bb0282d3d329e1037c535ae4a83a
09ab71de4325b1f2521b16fc43eddacc09af6096
docs: fix broken sentence in crashReporter.start() documentation (#47688)
[ { "path": "docs/api/crash-reporter.md", "patch": "@@ -63,7 +63,7 @@ The `crashReporter` module has the following methods:\n * `extra` Record\\<string, string\\> (optional) - Extra string key/value\n annotations that will be sent along with crash reports that are generated\n in the main process. On...
2025-07-16T13:05:45
facebook/react
453a19a107d02dbcde1f722361918db24426de64
5d87cd224452c68d09bef99656b6261e9772a210
[Flight] Collect Debug Info from Rejections in Aborted Render (#33708) This delays the abort by splitting the abort into a first step that just flags a task as abort and tracks the time that we aborted. This first step also invokes the `cacheSignal()` abort handler. Then in a macrotask do we finish flushing the abort...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js", "patch": "@@ -2876,7 +2876,9 @@ describe('ReactFlightDOM', () => {\n };\n });\n \n- controller.abort('boom');\n+ await serverAct(() => {\n+ controller.abort('boom');\n+ });\n resolveGreeting();\n ...
2025-07-05T21:01:41
vercel/next.js
9d9e13a2e04affd76bf40fc5e4ceadee1f02951a
a2ee2d5830c048baa456aaa699db22902aab345a
Fix a small doc typo (#89553) <!-- 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 Docume...
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -482,7 +482,7 @@ export interface ExperimentalConfig {\n turbopackMinify?: boolean\n \n /**\n- * Enable support for `with {type: \"module\"}` for ESM imports.\n+ * Enable support for `with {type: \"bytes\"}` for ESM imports.\n */...
2026-02-05T22:24:31
golang/go
9ba0948172cbb05308fb2a9db823a720f8ffb9ad
b7944a5f80b5aa7ad43730064cf4ebc8c473df47
cmd/link: don't create __x86.get_pc_thunk symbol if it already exists On 386, in some build modes we need to create the __x86.get_pc_thunk symbols, to support PC-relative addressing. In some situation the thunk symbols may already exist, e.g. loaded from a C object in internal linking mode. In this case, we should use...
[ { "path": "src/cmd/link/internal/x86/asm.go", "patch": "@@ -72,6 +72,9 @@ func gentext(ctxt *ld.Link, ldr *loader.Loader) {\n \t\t{\"di\", 7},\n \t} {\n \t\tthunkfunc := ldr.CreateSymForUpdate(\"__x86.get_pc_thunk.\"+r.name, 0)\n+\t\tif t := thunkfunc.Type(); t != 0 && t != sym.SXREF && t != sym.SDYNIMPORT ...
2025-12-15T18:45:28
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
electron/electron
09ab71de4325b1f2521b16fc43eddacc09af6096
21b325b0348098ec5bc4b267c37a9f4e14ee7bec
fix: deprecation warning crash when no Node.js environment available (#47700)
[ { "path": "shell/common/node_util.cc", "patch": "@@ -66,8 +66,13 @@ void EmitWarning(const std::string_view warning_msg,\n void EmitWarning(v8::Isolate* isolate,\n const std::string_view warning_msg,\n const std::string_view warning_type) {\n- node::ProcessEmitWarningGener...
2025-07-16T10:45:59
facebook/react
5d87cd224452c68d09bef99656b6261e9772a210
5f71eed2ebade22ffd374d291b2a21d94c35ffa7
React DevTools 6.1.4 -> 6.1.5 (#33702) Same as 6.1.4, but with 2 hotfixes: * fix: check if profiling for all profiling hooks ([hoxyq](https://github.com/hoxyq) in [#33701](https://github.com/facebook/react/pull/33701)) * fix: fallback to reading string stack trace when failed ([hoxyq](https://github.com/hoxyq) in [#33...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"6.1.4\",\n+ \"version\": \"6.1.5\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2025-07-04T15:31:00
vercel/next.js
a2ee2d5830c048baa456aaa699db22902aab345a
6aeef8eb8918f39178c9cca0346e5ceea9b99a7d
Turbpopack: fix is_persistent_caching_enabled (#89533) The next config setting was renamed, so this was always false. So far, this was only used for telemetry.
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -275,6 +275,9 @@ pub struct ProjectOptions {\n /// Debug build paths for selective builds.\n /// When set, only routes matching these paths will be included in the build.\n pub debug_build_paths: Option<DebugBuildPaths>,\n+\n+ /// Wheth...
2026-02-05T20:37:05
nodejs/node
23fa18444f718fb4236a3a987974cdb40aed8411
3db2f58693faa076d4064212a7f0769bf7db470d
src: fix small compile warning in quic/streams.cc Fixes: https://github.com/nodejs/node/issues/60110 PR-URL: https://github.com/nodejs/node/pull/60118 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Tobias N...
[ { "path": "src/quic/defs.h", "patch": "@@ -318,7 +318,7 @@ constexpr uint64_t kMaxSizeT = std::numeric_limits<size_t>::max();\n constexpr uint64_t kMaxSafeJsInteger = 9007199254740991;\n constexpr auto kSocketAddressInfoTimeout = 60 * NGTCP2_SECONDS;\n constexpr size_t kMaxVectorCount = 16;\n-constexpr size...
2025-10-06T13:37:17
golang/go
b7944a5f80b5aa7ad43730064cf4ebc8c473df47
6713f46426c70f601ac33471d16be7b0e1aae349
text/template: fix slice builtin for pointers to arrays The slice function now properly handles pointers to arrays by calling indirect() to dereference pointers, matching the behavior of the index function. Fixes #39596 Change-Id: Id4920edbfd8fd3df3a181b59a61733f88b0f104d Reviewed-on: https://go-review.googlesource....
[ { "path": "src/text/template/exec_test.go", "patch": "@@ -43,7 +43,8 @@ type T struct {\n \tSIEmpty []int\n \tSB []bool\n \t// Arrays\n-\tAI [3]int\n+\tAI [3]int\n+\tPAI *[3]int // pointer to array\n \t// Maps\n \tMSI map[string]int\n \tMSIone map[string]int // one element, for deterministic ou...
2025-12-05T20:50:24
facebook/react
5f71eed2ebade22ffd374d291b2a21d94c35ffa7
455424dbf3d46d7e9326a64409de063e8f768848
[devtools] fix: check if profiling for all profiling hooks (#33701) Follow-up to https://github.com/facebook/react/pull/33652. Don't know how the other were missed. Double-checked that Profiler works in dev mode. Now all hooks start with `!isProfiling` check and return, if true.
[ { "path": "packages/react-devtools-shared/src/backend/profilingHooks.js", "patch": "@@ -298,14 +298,16 @@ export function createProfilingHooks({\n }\n \n function markCommitStarted(lanes: Lanes): void {\n- if (isProfiling) {\n- recordReactMeasureStarted('commit', lanes);\n-\n- // TODO (time...
2025-07-04T15:21:51
vercel/next.js
2932b93253458c08762f082e057387274edf989d
2521b8adc73957cf7dfc358bea3c461b04bcfa16
docs: fix ISR guide link to res.revalidate (#89342) <!-- 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 ...
[ { "path": "docs/01-app/02-guides/incremental-static-regeneration.mdx", "patch": "@@ -285,7 +285,7 @@ For a more precise method of revalidation, invalidate cached pages on-demand wit\n \n For example, this Server Action would get called after adding a new post. Regardless of how you retrieve your data in you...
2026-02-05T18:58:26
nodejs/node
3db2f58693faa076d4064212a7f0769bf7db470d
4a7fbb64e6e513e0ff7afe5001581c833795743c
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
6713f46426c70f601ac33471d16be7b0e1aae349
388eb10f50f2b693fb68897dd0ddf627b512a885
archive/tar, compress/bzip2: base64 some troublesome testdata files This avoids complaints from scanners that look for and open tar and bz2 files, and complain if they look weird. In this case, they do look weird, because they are intentionally strange. This kind of thing shouldn't be necessary, but we already have th...
[ { "path": "src/archive/tar/reader_test.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"hash/crc32\"\n+\t\"internal/obscuretestdata\"\n \t\"io\"\n \t\"maps\"\n \t\"math\"\n@@ -25,10 +26,11 @@ import (\n \n func TestReader(t *testing.T) {\n \tvectors := []struct {\n-\t\tfile stri...
2025-12-12T22:18:13
electron/electron
cc9ca4bee2ad3035b2400e10d4ba4f64b8c4662b
17dba93587360ea398cd1a3b2bc6407c20e31a95
docs: add `Menu` module tutorials (#47268) * docs: add `Menu` module tutorials * link API docs to new tutorials * removed unreferenced fiddles * add wording for new types * fix import sort errors * delete accelerator.md * fixes
[ { "path": ".markdownlint-cli2.jsonc", "patch": "@@ -21,7 +21,9 @@\n \"ul\",\n \"unknown\",\n \"Tabs\",\n- \"TabItem\"\n+ \"TabItem\",\n+ \"DocCardList\",\n+ \"kbd\"\n ]\n },\n \"no-newline-in-links\": true", "additions": 3, "deletions...
2025-07-15T22:09:32
facebook/react
455424dbf3d46d7e9326a64409de063e8f768848
9fd4c09d6887ccd5d8a6fe69673cd89338172b5f
[devtools] fix: fallback to reading string stack trace when failed (#33700) Discovered while testing with Hermes.
[ { "path": "packages/react-devtools-shared/src/backend/utils/index.js", "patch": "@@ -381,7 +381,7 @@ function collectStackTrace(\n // $FlowFixMe[prop-missing]\n typeof callSite.getEnclosingColumnNumber === 'function'\n ? (callSite: any).getEnclosingColumnNumber()\n- : call...
2025-07-04T14:36:52
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
nodejs/node
db56020f50e0a44defe3230712d2078118b9f5c3
5b3c4b37f6479ab8976f178d596f5c07d555790d
doc: fix typo on child_process.md This note on `options.stdio` mentions that it's not recommended to pass `stdin` as a writable stream and `stdout/stderr` as readable, but then proceeds to say to always check that `stdin` is writable and `stdout/stderr` are readable. Going by the examples and the fact that `process.s...
[ { "path": "doc/api/child_process.md", "patch": "@@ -1078,8 +1078,8 @@ pipes between the parent and child. The value is one of the following:\n them incorrectly (e.g., passing a readable stream where a writable stream is\n expected) can lead to unexpected results or errors. This practice is discouraged...
2025-10-06T09:11:55
golang/go
388eb10f50f2b693fb68897dd0ddf627b512a885
1b291b70dff51732415da5b68debe323704d8e8d
cmd/go: show comparable in go doc interface output The go doc command now displays the comparable constraint when embedded in an interface, matching the existing behavior for the error type. Previously, when an interface embedded comparable, it was not shown in the documentation and incorrectly triggered the "Has une...
[ { "path": "src/cmd/go/internal/doc/doc_test.go", "patch": "@@ -629,6 +629,35 @@ var tests = []test{\n \t\t\t`Has unexported methods`,\n \t\t},\n \t},\n+\t// Interface with comparable constraint.\n+\t{\n+\t\t\"interface type with comparable\",\n+\t\t[]string{p, `ExportedComparableInterface`},\n+\t\t[]string{...
2025-12-05T08:25:33
electron/electron
17dba93587360ea398cd1a3b2bc6407c20e31a95
603cafad7e82aa33485fb31e179ae0f116e26c7b
fix: missing SQLite builtin support in Node.js (#47706) https://github.com/nodejs/node/pull/58122
[ { "path": "patches/node/build_add_gn_build_files.patch", "patch": "@@ -24,7 +24,7 @@ index 4560bac7b8e3c707ecea5a425f642efb9de9ed36..e9c2a4391f4058a21a259cacaac4fde5\n o['variables']['v8_enable_external_code_space'] = 1 if options.enable_pointer_compression else 0\n o['variables']['v8_enable_31bit_smi...
2025-07-15T13:39:16
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
facebook/react
9fd4c09d6887ccd5d8a6fe69673cd89338172b5f
d45db667d4509a5d82d4509e4aa51fdb266aa136
React DevTools 6.1.3 -> 6.1.4 (#33699) Changes from 6.1.3: * feat: static Components panel layout ([hoxyq](https://github.com/hoxyq) in [#33696](https://github.com/facebook/react/pull/33696)) * fix: support optionality of structured stack trace function name ([hoxyq](https://github.com/hoxyq) in [#33697](https://githu...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"6.1.3\",\n+ \"version\": \"6.1.4\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2025-07-04T11:55:53
vercel/next.js
2521b8adc73957cf7dfc358bea3c461b04bcfa16
469e513c5f2179ecd8292be7f0855f28acd6e7d8
[Instant] Instant validation in Dev (#89077) This PR implements the initial version of dev-time validation for `export const instant = ...` ```tsx export const instant = { prefetch: 'static' } ``` ```tsx export const instant = { prefetch: 'runtime', ... } ``` ```tsx export const instant = false ``` (the config is cur...
[ { "path": "errors/invalid-instant-configuration.mdx", "patch": "@@ -29,3 +29,11 @@ export const unstable_instant = {\n ],\n }\n ```\n+\n+#### Indicating that there is no instant UI\n+\n+This does not disable prefetching.\n+\n+```tsx filename=\"app/[slug]/page.tsx\"\n+export const unstable_instant = false\...
2026-02-05T18:14:19
golang/go
63fced531c0d702554fcfda41f9016701a6859c6
6455afbc6f93e7ddc5ffde38b563c4e1a6821d22
runtime/secret: restore goroutine behavior to proposal During review of CL 704615, a suggestion was made that spawning a goroutine inside a call to secret.Do result in a panic. I agreed with this at the time, but had missed that this had been extensively discussed on the proposal. Revert the behavior back to what was ...
[ { "path": "src/runtime/proc.go", "patch": "@@ -5286,10 +5286,6 @@ func malg(stacksize int32) *g {\n // The compiler turns a go statement into a call to this.\n func newproc(fn *funcval) {\n \tgp := getg()\n-\tif goexperiment.RuntimeSecret && gp.secret > 0 {\n-\t\tpanic(\"goroutine spawned while running in s...
2025-12-10T10:07:56
nodejs/node
0c1fb986a01c492c681bdb145ca5cba3df2dff3d
7c85aa5255eb4f4fbb1efd04e544f444220aa0c8
tools: add message on auto-fixing js lint issues in gh workflow PR-URL: https://github.com/nodejs/node/pull/59128 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmai...
[ { "path": ".github/workflows/linters.yml", "patch": "@@ -103,7 +103,31 @@ jobs:\n - name: Environment Information\n run: npx envinfo\n - name: Lint JavaScript files\n- run: NODE=$(command -v node) make lint-js\n+ run: |\n+ set +e\n+ NODE=$(command -v node)...
2025-10-05T17:57:01
facebook/react
3fc1bc6f28bec1742b5f07d23148f25927e21d41
ef8b6fa257aba6c4a07b5cdb152859704aa045bc
[devtools] fix: support optionality of structured stack trace function name (#33697) Follow-up to https://github.com/facebook/react/pull/33680. Turns out `.getFunctionName` not always returns string.
[ { "path": "packages/react-devtools-shared/src/backend/utils/index.js", "patch": "@@ -360,8 +360,9 @@ function collectStackTrace(\n const callSite = structuredStackTrace[i];\n const name = callSite.getFunctionName();\n if (\n- name.includes('react_stack_bottom_frame') ||\n- name.include...
2025-07-04T09:32:09
golang/go
6455afbc6f93e7ddc5ffde38b563c4e1a6821d22
8f45611e78095c05075b4cc49e44aabde064e134
runtime: dropg after emitting trace event in preemptPark Because we dropg before emitting a trace event in preemptPark, we end up failing to emit a status for the goroutine if this happens to be the first event for it in the generation. We only really see this with multiple subscribers in TestSubscribers. This is for...
[ { "path": "src/runtime/proc.go", "patch": "@@ -4385,7 +4385,6 @@ func preemptPark(gp *g) {\n \t// up. Hence, we set the scan bit to lock down further\n \t// transitions until we can dropg.\n \tcasGToPreemptScan(gp, _Grunning, _Gscan|_Gpreempted)\n-\tdropg()\n \n \t// Be careful about ownership as we trace t...
2025-12-11T19:23:19
nodejs/node
0e942cc8592df610055a6b4a07b9555730ff80cf
307eaca0f1b108d563cbe0db2623ab8bdb9c5bd7
doc: remove optional title prefixes PR-URL: https://github.com/nodejs/node/pull/60087 Refs: https://github.com/nodejs/doc-kit/issues/378 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addalea...
[ { "path": "doc/api/buffer.md", "patch": "@@ -1494,7 +1494,7 @@ console.log(Buffer.isEncoding(''));\n // Prints: false\n ```\n \n-### Class property: `Buffer.poolSize`\n+### `Buffer.poolSize`\n \n <!-- YAML\n added: v0.11.3\n@@ -5515,7 +5515,7 @@ introducing security vulnerabilities into an application.\n [`...
2025-10-05T16:23:01