repo
stringclasses
11 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
59.2k
files
listlengths
1
300
timestamp
timestamp[s]date
2016-04-11 04:39:55
2026-04-09 07:34:40
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
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
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
golang/go
f4cec7917cc53c8c7ef2ea456b4bf0474c41189a
ca13fe02c48db993a34d441d87180cf665d5b288
cmd: fix unused errors reported by ineffassign Updates golang/go#35136 Change-Id: I36d26089d29933e363d9fa50f3174530b698450e Reviewed-on: https://go-review.googlesource.com/c/go/+/731040 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Florian Lehner <lehner.floria...
[ { "path": "src/cmd/internal/bootstrap_test/overlaydir_test.go", "patch": "@@ -43,6 +43,9 @@ func overlayDir(dstRoot, srcRoot string) error {\n \t\tdstPath := filepath.Join(dstRoot, suffix)\n \n \t\tinfo, err := entry.Info()\n+\t\tif err != nil {\n+\t\t\treturn err\n+\t\t}\n \t\tperm := info.Mode() & os.Mode...
2025-12-18T05:05:26
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
01faaa30eaef04d1da951a29e9f86fdfbed036b1
c569d5e4baf049a5c7f1b61b420109b9294ae6c3
fix: window content protection on older Windows versions (#47856)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -1282,12 +1282,7 @@ void NativeWindowViews::SetOpacity(const double opacity) {\n #if BUILDFLAG(IS_WIN)\n const double boundedOpacity = std::clamp(opacity, 0.0, 1.0);\n HWND hwnd = GetAcceleratedWidget();\n- if (!layered_) {\n- LONG ex_st...
2025-07-24T19:05:28
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
7971fcdf537054608b2443a32f0fbb6dd4eba12a
0f620776d739f3de2c459c42d7ae2338ece35e67
test/codegen: tidy tests for bits Use Go idiomatic function names, use a common prefix, attempt to maintain some consistency, avoid naming functions based upon machine specific instructions and combine a duplicate test that likely exists due to this confusion. Change-Id: I996e9efd7497821edef94c1997d4a310d9d79a71 Revi...
[ { "path": "test/codegen/bits.go", "patch": "@@ -8,11 +8,11 @@ package codegen\n \n import \"math/bits\"\n \n-/************************************\n- * 64-bit instructions\n- ************************************/\n+//\n+// 64 bit instructions\n+//\n \n-func bitcheck64_constleft(a uint64) (n int) {\n+func bi...
2025-12-23T12:43:15
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
electron/electron
670da27305e5fc6433d8898f7c4dfa27b8ca5c23
5f901174c54fb3b3a3cd0e71bb9d66e6a067227e
ci: add ability to debug SSH sessions in CI (#47819)
[ { "path": ".github/actions/ssh-debug/action.yml", "patch": "@@ -0,0 +1,20 @@\n+name: Debug via SSH\n+description: Setup a SSH server with a tunnel to access it to debug via SSH.\n+inputs:\n+ tunnel:\n+ description: 'Enable SSH tunneling via cloudflared'\n+ required: true\n+ default: 'false'\n+ ti...
2025-07-23T14:57:06
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
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
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
golang/go
0f620776d739f3de2c459c42d7ae2338ece35e67
a5fe8c07ae7ae96049f692c43008ad2f770924c7
simd/archsimd: fix "go generate" command Correct the generate command for test helpers. There is no longer a genfiles.go. Also correct the generated file headers to match the current generator layout. Change-Id: Ifb9a8c394477359020ff44290dbaabe7a2d59aca Reviewed-on: https://go-review.googlesource.com/c/go/+/732280 LU...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1,4 +1,4 @@\n-// Code generated by x/arch/internal/simdgen using 'go run . -xedPath $XED_PATH -o godefs -goroot $GOROOT go.yaml types.yaml categories.yaml'; DO NOT EDIT.\n+// Code generated by 'simdgen -o godefs -goroot $GOROOT -xedPath $X...
2025-12-23T16:31:36
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
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
golang/go
a23d1a4ebe5ca1f4964ad51a92d99edf5a95d530
866e461b9689d03dbbf2df19b86cace21270865b
bytes: improve consistency in split test messages This change improves consistency in the error messages used by TestSplit and TestSplitAfter in bytes_test.go Change-Id: Idc4e77a516037ce17cbb1bdffe3ac00bcde5de42 GitHub-Last-Rev: 8c4a35186851004251e8eee71c88ca1c822851c1 GitHub-Pull-Request: golang/go#76970 Reviewed-on...
[ { "path": "src/bytes/bytes_test.go", "patch": "@@ -961,7 +961,7 @@ func TestSplit(t *testing.T) {\n \t\tif tt.n < 0 {\n \t\t\tb := sliceOfString(Split([]byte(tt.s), []byte(tt.sep)))\n \t\t\tif !slices.Equal(result, b) {\n-\t\t\t\tt.Errorf(\"Split disagrees withSplitN(%q, %q, %d) = %v; want %v\", tt.s, tt.se...
2025-12-23T18:11:53
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
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
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
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
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
golang/go
08dc8393d7d04f250b317cad5183415962ea56d5
43ebed88cc661e37bf01d5336b5de13fba6e51c7
time: skip test that will fail with GO111MODULE=off The test is designed to ensure that behavior introduced in Go 1.23 to garbage collect async timed channels is working correctly. If GO111MODULE=off is set (or GODEBUG=asynctimerchan=1) Go reverts to the Go 1.20 behavior of not garbage collecting these channels, which...
[ { "path": "src/time/export_test.go", "patch": "@@ -40,6 +40,7 @@ var (\n \tTzset = tzset\n \tTzsetName = tzsetName\n \tTzsetOffset = tzsetOffset\n+\tAsynctimerChan = asynctimerchan\n )\n \n func LoadFromEmbeddedTZData(zone string) (string, error) {", "add...
2025-12-23T06:07:32
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
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
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
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
golang/go
81283ad33985958c63e43ada6c168da49e62de0f
3e0e1667f694e989371e021dd8f269dae5a78e9f
runtime: fix nGsyscallNoP accounting CL 726964 has two bugs. One is fairly obvious. Where there was previous a decrement of nGsyscallNoP in exitsyscallTryGetP, it added a call to addGSyscallNoP. Oops. The other is more subtle. In needm we set isExtraInC to false very early. This will cause exitsyscall (via cgocallba...
[ { "path": "src/runtime/metrics_cgo_test.go", "patch": "@@ -12,7 +12,7 @@ import (\n \t\"testing\"\n )\n \n-func TestNotInGoMetricCallback(t *testing.T) {\n+func TestNotInGoMetric(t *testing.T) {\n \tswitch runtime.GOOS {\n \tcase \"windows\", \"plan9\":\n \t\tt.Skip(\"unsupported on Windows and Plan9\")\n@@...
2025-12-23T17:16:17
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
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
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
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
golang/go
3faf988f217f59630509c057f48549f59a02c25e
2485a0bc2cf87837d5e610eed584d8d7ab5831d0
errors: add a test verifying join does not flatten errors For #76961 Change-Id: Ib81f3202074bf83a5b204b32706445f051f837a8 Reviewed-on: https://go-review.googlesource.com/c/go/+/732360 Auto-Submit: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> ...
[ { "path": "src/errors/join_test.go", "patch": "@@ -25,6 +25,7 @@ func TestJoinReturnsNil(t *testing.T) {\n func TestJoin(t *testing.T) {\n \terr1 := errors.New(\"err1\")\n \terr2 := errors.New(\"err2\")\n+\tmerr := multiErr{errors.New(\"err3\")}\n \tfor _, test := range []struct {\n \t\terrs []error\n \t\tw...
2025-12-23T17:42:37
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
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
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
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
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
8254d66eab23bf334d619d888dc98630c1c5c5fd
1b3db48db7afc3fe17440af28cdeac67a0d048f1
cmd/asm/internal/asm: abort end to end test if assembly failed If errors are encountered during assembly, do not attempt to perform verification. In this case the output is unlikely to be correct and all verification fails, which means the real issue gets lost in the noise. Change-Id: I62c1bf09fa025b0df4c06f0bfa424fb...
[ { "path": "src/cmd/asm/internal/asm/endtoend_test.go", "patch": "@@ -199,6 +199,11 @@ Diff:\n \t}\n \tobj.Flushplist(ctxt, pList, nil)\n \n+\tif !ok {\n+\t\t// If we've encountered errors, the output is unlikely to be sane.\n+\t\tt.FailNow()\n+\t}\n+\n \tfor p := top; p != nil; p = p.Link {\n \t\tif p.As ==...
2025-12-21T03:39:20
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
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
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
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
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
golang/go
1b3db48db7afc3fe17440af28cdeac67a0d048f1
b6b8b2fe6ef8ceb727c7a157750cdd4e61393489
Revert "errors: optimize errors.Join for single unwrappable errors" This reverts CL 635115. Reason for revert: The new behavior does not match the function documentation. Fixes #76961 Change-Id: If2450aa4efba28c7a12887a5b306c231a836e740 Reviewed-on: https://go-review.googlesource.com/c/go/+/731981 Reviewed-by: Dmit...
[ { "path": "src/errors/join.go", "patch": "@@ -27,16 +27,6 @@ func Join(errs ...error) error {\n \tif n == 0 {\n \t\treturn nil\n \t}\n-\tif n == 1 {\n-\t\tfor _, err := range errs {\n-\t\t\tif _, ok := err.(interface {\n-\t\t\t\tUnwrap() []error\n-\t\t\t}); ok {\n-\t\t\t\treturn err\n-\t\t\t}\n-\t\t}\n-\t}\...
2025-12-23T00:35:42
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
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
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
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
golang/go
b6b8b2fe6ef8ceb727c7a157750cdd4e61393489
2cd0371a0a61e0dec6034239b1a92a20968c8522
cmd/compile: handle propagating an out-of-range jump table index For an out-of-range jump table index, the constant facts should not be propagated to the destinations. Fixes #76950 Change-Id: Iff29814cb466c7aaa432cec212e5387665c45afc Reviewed-on: https://go-review.googlesource.com/c/go/+/731860 Auto-Submit: Cuong Ma...
[ { "path": "src/cmd/compile/internal/ssa/sccp.go", "patch": "@@ -507,6 +507,10 @@ func (t *worklist) propagate(block *Block) {\n \t\t\t\tbranchIdx = 1 - condLattice.val.AuxInt\n \t\t\t} else {\n \t\t\t\tbranchIdx = condLattice.val.AuxInt\n+\t\t\t\tif branchIdx < 0 || branchIdx >= int64(len(block.Succs)) {\n+...
2025-12-22T11:49:17
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
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
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
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
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
golang/go
2cd0371a0a61e0dec6034239b1a92a20968c8522
91435be1531727f3220a8fdebb7e4894f39edb41
debug/pe: avoid panic in File.ImportedSymbols This change skips symbols where dt.OriginalFirstThunk is less than ds.VirtualAddress. The variable types are uint32, and (dt.OriginalFirstThunk-ds.VirtualAddress) becomes very large number when dt.OriginalFirstThunk < ds.VirtualAddress. Fixes #73548. Fixes #76721. Fixes ...
[ { "path": "src/debug/pe/file.go", "patch": "@@ -379,7 +379,11 @@ func (f *File) ImportedSymbols() ([]string, error) {\n \t}\n \n \t// seek to the virtual address specified in the import data directory\n-\td = d[idd.VirtualAddress-ds.VirtualAddress:]\n+\tseek := idd.VirtualAddress - ds.VirtualAddress\n+\tif ...
2025-06-24T05:18:28
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
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
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
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
91435be1531727f3220a8fdebb7e4894f39edb41
c1efada1d20a0f4af6ffc2be17706713af11b3b0
runtime: revert entry point on freebsd/arm64 CL 706175 unified some arm64 entry points. However, the entry point for freebsd/arm64 is incorrect and builds now fail. This change reverts the freebsd/arm64 entry point and adds additional context for the future. Fixes #76958 Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8...
[ { "path": "src/runtime/rt0_freebsd_arm64.s", "patch": "@@ -4,9 +4,12 @@\n \n #include \"textflag.h\"\n \n-// On FreeBSD argc/argv are passed in R0, not RSP\n+// FreeBSD passes a pointer to the argument block in R0, not RSP,\n+// so _rt0_arm64 cannot be used.\n TEXT _rt0_arm64_freebsd(SB),NOSPLIT,$0\n-\tJMP\...
2025-12-22T21:25:08
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
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
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
dcf83f7c2db2de64ec370df73294cedb658bd896
94fce500bcd314ea19c5c89c6385be6e62397c09
Disable ScrollTimeline in Safari (#33499) Stacked on #33501. This disables the use of ScrollTimeline when detected in Safari in the recommended SwipeRecognizer approach. I'm instead using a polyfill using touch events on iOS. Safari seems set to [release ScrollTimeline soon](https://webkit.org/blog/16993/news-from-w...
[ { "path": "fixtures/view-transition/src/components/SwipeRecognizer.js", "patch": "@@ -6,6 +6,14 @@ import React, {\n } from 'react';\n \n import ScrollTimelinePolyfill from 'animation-timelines/scroll-timeline';\n+import TouchPanTimeline from 'animation-timelines/touch-pan-timeline';\n+\n+const ua = typeof ...
2025-07-02T21:01:49
vercel/next.js
469e513c5f2179ecd8292be7f0855f28acd6e7d8
2842212c29afc5fd296ab2317f61131d7c57ddf6
Require explicit `cacheLife` on outer `"use cache"` when nesting short-lived caches (#89481) This PR adds error handling for nested `"use cache"` where the inner cache has a very short lifetime (zero `revalidate` or `expire` under 5 minutes) but the outer cache doesn't have an explicit `cacheLife()` call. Short-lived...
[ { "path": "docs/01-app/01-getting-started/06-cache-components.mdx", "patch": "@@ -310,6 +310,8 @@ export default async function Page() {\n }\n ```\n \n+> **Good to know:** A cache is considered \"short-lived\" when it uses the `seconds` profile, `revalidate: 0`, or `expire` under 5 minutes. Short-lived cach...
2026-02-05T15:39:08
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
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
golang/go
c1efada1d20a0f4af6ffc2be17706713af11b3b0
3d77a0b15ea2a6d2f7b3e2ba483f148d7c6ee174
simd/archsimd: correct documentation for pairwise operations For Add/SubPairs(Saturated?), the documented result element order is wrong. Corrected. Also, for 256-bit vectors, this is a grouped operation. So name it with the Grouped suffix to be clear. Change-Id: Idfd0975cb4a332b2e28c898613861205d26f75b0 Reviewed-on:...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -250,12 +250,12 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPADDQ256,\n \t\tssa.OpAMD64VPADDQ512,\n \t\tssa.OpAMD64VHADDPS128,\n-\t\tssa.OpAMD64VHADDPS256,\n \t\tssa.OpAMD64VHADDPD128,\n-\t\tssa.OpAMD64VH...
2025-12-22T19:52:57
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
facebook/react
508f7aa78ff53d058ee1151505efd5c4a4aefa01
e104795f635e2bb423fe9264b1cfdfff15f551e5
[Fiber] Switch back to using performance.measure for trigger logs (#33659) Stacked on #33658. Unfortunately `console.timeStamp` has the same bug that `performance.measure` used to have where equal start/end times stack in call order instead of reverse call-order. We rely on that in general so we should really switch ...
[ { "path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js", "patch": "@@ -101,28 +101,22 @@ function logComponentTrigger(\n trigger: string,\n ) {\n if (supportsUserTiming) {\n+ reusableComponentOptions.start = startTime;\n+ reusableComponentOptions.end = endTime;\n+ reusableCompon...
2025-07-02T20:10:52
vercel/next.js
5c1b54115b746c769e72a7a2bd689ca7ffe1cc14
f91113d7b3dc586b815ae3d163c79c619031bc18
Clarify type checking error message (#89525) Previously: ``` pnpm next build ▲ Next.js 16.2.0-canary.28 (Turbopack) Creating an optimized production build ... ✓ Compiled successfully in 5.7s Running TypeScript ... Failed to compile. ./app/page.tsx:3:5 Type error: Type 'string' is not assignable to type 'number'...
[ { "path": "packages/next/src/lib/verify-typescript-setup.ts", "patch": "@@ -241,7 +241,7 @@ export async function verifyTypeScriptSetup({\n } catch (err) {\n // These are special errors that should not show a stack trace:\n if (err instanceof CompileError) {\n- console.error(red('Failed to co...
2026-02-05T13:21:06
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
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
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
nodejs/node
2869c1255b99ffad2232f9ce5a2b3f05779fb37e
05aa3a1c70b55d51ecca2cb2692b65c66ebc4d28
src: correct the error handling in StatementExecutionHelper Error handling logic was flawed in StatementExecutionHelper methods. PR-URL: https://github.com/nodejs/node/pull/60040 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com>
[ { "path": "src/node_sqlite.cc", "patch": "@@ -26,6 +26,7 @@ using v8::ConstructorBehavior;\n using v8::Context;\n using v8::DictionaryTemplate;\n using v8::DontDelete;\n+using v8::EscapableHandleScope;\n using v8::Exception;\n using v8::Function;\n using v8::FunctionCallback;\n@@ -2209,12 +2210,13 @@ Maybe<...
2025-09-27T21:58:11
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
rust-lang/rust
aed54f219eccbd4f3cb3ecd89acdc0d9eeb2bceb
bfc05d6b072585dfd0c792ec1b8728c08a3511fe
tests/ui/async-await/gat-is-send-across-await.rs: New regression test The test began passing in `nightly-2025-10-16`. Probably by c50aebba787 because it fixed two "does not live long enough" errors. The test fails to compile with `nightly-2025-10-15` with such an error: $ rustc +nightly-2025-10-15 --edition 2018 ...
[ { "path": "tests/ui/async-await/gat-is-send-across-await.rs", "patch": "@@ -0,0 +1,23 @@\n+//! Regression test for <https://github.com/rust-lang/rust/issues/111852>.\n+\n+//@ edition:2018\n+//@ check-pass\n+\n+#![allow(unused)]\n+\n+trait G: Send {\n+ type Gat<'l>: Send\n+ where\n+ Self: 'l;\n+...
2026-03-21T15:00:51
vercel/next.js
812996cc60f2753905c3b1e9a1e15c0c8d71b5bc
12f8545000b5234d6561ef3b65fb9caa888c7362
[CC] Rename "unstable_prefetch" to "unstable_instant" (#89448) Mostly mechanical rename. Also changes the error page to `errors/invalid-instant-configuration`. I'm not really worried about dangling links here because this is a new API and we don't expect anyone to be using it yet.
[ { "path": "errors/invalid-instant-configuration.mdx", "patch": "@@ -1,26 +1,26 @@\n ---\n-title: Invalid Prefetch Configuration\n+title: Invalid Instant Configuration\n ---\n \n ## Why This Message Occurred\n \n-You provided an invalid configuration for `export const unstable_prefetch` in a Layout or Page f...
2026-02-04T21:03:38
nodejs/node
0a870841500551502aae43a81f68e2cd75bfbc67
7dd49d7da4ef1b4e732f149e7cc9e0398771285d
test: update cppgc-object addon config Set `win_delay_load_hook` to `false` to avoid linker error. PR-URL: https://github.com/nodejs/node/pull/59805 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ih...
[ { "path": "test/addons/cppgc-object/binding.gyp", "patch": "@@ -3,6 +3,7 @@\n {\n 'target_name': 'binding',\n 'sources': [ 'binding.cc' ],\n+ 'win_delay_load_hook': 'false',\n 'includes': ['../common.gypi'],\n }\n ]", "additions": 1, "deletions": 0 } ]
2025-09-26T12:10:18
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
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
99c8038e3309863f385ed983fd72081c813c1941
49e0a8a8c0ca200a71e224fc9fabd4313e110afa
Include owner stack for forwarded errors if available (#89493) For forwarded logs, we can also attach the owner stack if it's available, then we can see the proper errors trace shown in the terminal. In this way agent can directly detect where the error is happening from reading terminal log, and fix it | After | Be...
[ { "path": "packages/next/src/next-devtools/userspace/app/errors/stitched-error.ts", "patch": "@@ -17,7 +17,13 @@ export function coerceError(value: unknown): Error {\n export function setOwnerStackIfAvailable(error: Error): void {\n // React 18 and prod does not have `captureOwnerStack`\n if ('captureOw...
2026-02-04T18:05:28
nodejs/node
37a3df3556121917df9769daaba9407bd27dd1d0
308de27255235ef11d21b9ccd3b35709c89db280
src: fix calls to v8::Object::wrap PR-URL: https://github.com/nodejs/node/pull/59805 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "src/cppgc_helpers-inl.h", "patch": "@@ -15,7 +15,8 @@ void CppgcMixin::Wrap(T* ptr, Realm* realm, v8::Local<v8::Object> obj) {\n v8::Isolate* isolate = realm->isolate();\n ptr->traced_reference_ = v8::TracedReference<v8::Object>(isolate, obj);\n // Note that ptr must be of concrete type T i...
2025-08-12T05:43:59
facebook/react
91d097b2c588a0977a7a10ed12512dc8a34e3a5b
7216c0f002222cdee3075410f7432d64724640cc
fix: rename bottom stack frame (#33680) `react-stack-bottom-frame` -> `react_stack_bottom_frame`. This survives `@babel/plugin-transform-function-name`, but now frames will be displayed as `at Object.react_stack_bottom_frame (...)` in V8. Checks that were relying on exact function name match were updated to use eithe...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2947,7 +2947,7 @@ function buildFakeTask(\n }\n \n const createFakeJSXCallStack = {\n- 'react-stack-bottom-frame': function (\n+ react_stack_bottom_frame: function (\n response: Response,\n stack: ReactStackTrace,\n envi...
2025-07-01T17:06:26
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
rust-lang/rust
125cefc89ae8e55d8b1a2635ab4d5c653490f9d9
2d3dfece0346f805c6d4fa86c2e8a20ca3eef6ca
freebsd sync: fix _umtx_time flags check to use bitwise operation. The `_umtx_time` flags check in `read_umtx_time` used equality (`flags == abs_time`) instead of bitwise AND (`flags & abs_time != 0`) to detect `UMTX_ABSTIME`. While functionally equivalent for current valid inputs (0 or `UMTX_ABSTIME` alone), the equa...
[ { "path": "src/tools/miri/src/shims/unix/freebsd/sync.rs", "patch": "@@ -216,7 +216,12 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {\n \n let flags_place = this.project_field(ut, FieldIdx::from_u32(1))?;\n let flags = this.read_scalar(&flags_place)?.to_u32()?;\n- l...
2026-03-21T06:45:55
vercel/next.js
9e63d487945c77e1d9054827670ee44cd3de629b
1ac8cb06e37b3ece6d6efbbb2ca8f29105fe1f34
docs: Fix syntax in proxy example code (#89395) Fixes syntax for the code sample found on https://nextjs.org/docs/pages/guides/multi-zones#routing-requests-using-proxy --------- Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "docs/01-app/02-guides/multi-zones.mdx", "patch": "@@ -104,9 +104,9 @@ Routing requests through [`rewrites`](/docs/app/api-reference/config/next-config\n \n ```js filename=\"proxy.js\"\n export async function proxy(request) {\n- const { pathname, search } = req.nextUrl;\n+ const { pathname, sear...
2026-02-04T15:56:53
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
facebook/react
7216c0f002222cdee3075410f7432d64724640cc
6a3d16ca74acd28632dabccc142d42ce411a811b
[Flight] Don't assume _debugStack and _owner is defined for prod elements (#33675) We generally treat these types of fields as optional on ReactDebugInfo and should on ReactElement too. That way we can consume prod payloads from third parties.
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -928,8 +928,8 @@ function createElement(\n type: mixed,\n key: mixed,\n props: mixed,\n- owner: null | ReactComponentInfo, // DEV-only\n- stack: null | ReactStackTrace, // DEV-only\n+ owner: ?ReactComponentInfo, // DEV-only\n+...
2025-06-30T20:15:19
nodejs/node
cf5cb81556917478c392160436ba59aa497f085f
b3238442d8129570ccbf4577092f58f912a0760a
deps: support madvise(3C) across ALL illumos revisions In illumos, madvise(3C) now takes `void *` for its first argument post-illumos#14418, but uses `caddr_t` pre-illumos#14418. This fix will detect if the illumos mman.h file in use is pre-or-post-illumos#14418 so builds can work either way. PR-URL: https://github.c...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "...
2025-08-07T14:14:08
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
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
44ab1be4d078fb61fbeb3743810a828bb8731f07
5fbb9aa954c45ed0811201e9e727f14a8affa627
Support MPA navigations in `instant()` (#89469) Based on: - https://github.com/vercel/next.js/pull/89465 --- The `instant()` testing API allows e2e tests to assert on prefetched UI before dynamic data streams in. This extends it to handle full page navigations: page reloads, plain anchor clicks, and browser back/fo...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -37,6 +37,7 @@ import {\n RSC_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_INSTANT_PREFETCH_HEADER,\n+ NEXT_INSTANT_TEST_COOKIE,\n NEXT_IS_PRERENDER_HEADER,\n NEXT_DID_POSTPONE_HEADER,\n RSC_CONTENT_TYPE_HEADER,\n@@ -350,1...
2026-02-04T13:17:31
facebook/react
3cfcdfb30720a5b8de0e981c8fdabec1abb61588
9c2a8dd5f87266308a8a8e55fb7f029ba530d36a
[Flight] Resolve Deep Cycles (#33664) Stacked on #33666. If we ever get a future reference to a cycle and that reference gets eagerly parsed before the target has loaded then we can end up with a cycle that never gets resolved. That's because our cycle resolution only works if the cyclic future reference is created s...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -165,16 +165,16 @@ const HALTED = 'halted'; // DEV-only. Means it never resolves even if connection\n \n type PendingChunk<T> = {\n status: 'pending',\n- value: null | Array<(T) => mixed>,\n- reason: null | Array<(mixed) => mixed>,...
2025-06-29T14:56:16
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
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
vercel/next.js
178a4c719f193e1f3a4c4131e2862909fadb9716
43136958b40d05c7d45efe8d65bbe516a58df607
fix: use signal-based exit codes to prevent inspector blocking exit (#89351) ## What? Use signal-based exit codes when shutting down the Next.js server to prevent the process from waiting for the debugger to disconnect. ## Why? When Node.js devtools are attached (via `--inspect` flag or the Next.js DevTools "Attach...
[ { "path": "packages/next/src/server/lib/start-server.ts", "patch": "@@ -382,7 +382,7 @@ export async function startServer(\n try {\n let cleanupStarted = false\n let closeUpgraded: (() => void) | null = null\n- const cleanup = () => {\n+ const cleanup = (signal: 'SIGINT' ...
2026-02-04T11:07:41