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
nodejs/node
7c4dc34c28a4ff95058c945c9db2c98fe73a9919
16472884aa39450b12ade247a733b1640e7fcb9a
tools: fix example in release proposal linter `changelog-maker` writes 10 character length short form SHA's. Explicitly set the `git log format` in the example to match. PR-URL: https://github.com/nodejs/node/pull/62074 Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed...
[ { "path": "tools/actions/lint-release-proposal-commit-list.mjs", "patch": "@@ -6,6 +6,7 @@\n // Example:\n // $ git log upstream/vXX.x...upstream/vX.X.X-proposal \\\n // --reverse --format='{\"prURL\":\"%(trailers:key=PR-URL,valueonly,separator=)\",\"title\":\"%s\",\"smallSha\":\"%h\"}' \\\n+// --ab...
2026-03-04T16:43:14
facebook/react
b731fe28cc492cb36c51c89866f5b63a3ffae2aa
88ee1f595572b1dcf8f45897cb115b4bbd1aefb8
Improve cyclic thenable detection in ReactFlightReplyServer (#35369) ## Summary This PR improves cyclic thenable detection in `ReactFlightReplyServer.js`. Fixes #35368. The previous fix only detected direct self-references (`inspectedValue === chunk`) and relied on the `cycleProtection` counter to eventually bail out...
[ { "path": "packages/react-server/src/ReactFlightReplyServer.js", "patch": "@@ -133,14 +133,20 @@ ReactPromise.prototype.then = function <T>(\n // Recursively check if the value is itself a ReactPromise and if so if it points\n // back to itself. This helps catch recursive thenables early err...
2025-12-17T11:22:26
electron/electron
c8dd0b99ee3705f0e6eaacd4003d7aa9d8152d37
55ebdfb26b238a5f517cb3332da0b158212d2f8b
fix: prevent traffic light buttons flashing on deminiaturize (#50183) * fix: prevent traffic light buttons flashing on deminiaturize When a window with a custom `trafficLightPosition` is minimized and restored, macOS re-layouts the title bar container during the deminiaturize animation, causing the traffic light butt...
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -172,6 +172,12 @@ class NativeWindowMac : public NativeWindow,\n void NotifyWindowDidFailToEnterFullScreen();\n void NotifyWindowWillLeaveFullScreen();\n \n+ // Hide/show traffic light buttons around miniaturize/deminiaturize to\n+ // prevent...
2026-03-11T17:02:51
vercel/next.js
a7cf5eee7a7e9b5889d877d3f6d222eb1409cc9d
468a40fa32bcd0d3683d8fa13ce4dbab892b65eb
test: scope css data-url typing to fixture (#91877) In the latest TypeScript version these imports now fail so updating the assertion to handle them x-ref: https://github.com/vercel/next.js/actions/runs/23508766037/job/68431989897#step:35:443
[ { "path": "test/e2e/css-data-url-global-pages/data-url-css.d.ts", "patch": "@@ -0,0 +1,2 @@\n+// Test-local typing for Turbopack's CSS data URL side-effect import.\n+declare module 'data:text/css,*' {}", "additions": 2, "deletions": 0, "language": "Unknown" } ]
2026-03-24T21:57:10
golang/go
c173b531342b05d14877a95a4186cc234edc9b9c
bfe4cc85e8f0187f3cdb7c80b9ff5a52be66e08b
cmd/dist: try to use jj commit info for devel version Fixes #78369 Change-Id: Icb8bb9822eac78934efc313f50221de56a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/759320 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Michael Matloob <ma...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -418,12 +418,7 @@ func findgoversion() string {\n \t\treturn chomp(readfile(path))\n \t}\n \n-\t// Show a nicer error message if this isn't a Git repo.\n-\tif !isGitRepo() {\n-\t\tfatalf(\"FAILED: not a Git repo; must put a VERSION file in $GOROOT\")\n-\t}\n-\...
2026-03-25T18:17:41
rust-lang/rust
34e410075de78c681c870580a0f3eb6452150d02
00ffc137db5ae977575fb47fd06f60d5c5139491
fix(bootstrap): also unset MFLAGS when fifo jobserver not present CI jobs were sometimes hanging because cargo would inherit the jobserver based the MFLAGS environment variable when it contained file descriptors. However, these FDs were not valid, since bootstrap.py does not pass them through from make. This leads ca...
[ { "path": "src/bootstrap/src/core/builder/cargo.rs", "patch": "@@ -566,6 +566,7 @@ impl Builder<'_> {\n \n if !has_modern_jobserver {\n cargo.env_remove(\"MAKEFLAGS\");\n+ cargo.env_remove(\"MFLAGS\");\n }\n \n cargo", "additions": 1, "deletions": 0, ...
2026-04-06T19:30:34
facebook/react
88ee1f595572b1dcf8f45897cb115b4bbd1aefb8
bcf97c7564cbe0c903a16a8d6ff52f124f2f06ff
Add reporting modes for react-hooks/exhaustive-effect-dependencies and temporarily enable (#35365) `react-hooks/exhaustive-effect-dependencies` from `ValidateExhaustiveDeps` reports errors for both missing and extra effect deps. We already have `react-hooks/exhaustive-deps` that errors on missing dependencies. In the ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -225,8 +225,15 @@ export const EnvironmentConfigSchema = z.object({\n \n /**\n * Validate that dependencies supplied to effect hooks are exhaustive.\n+ * Can be:\n+ * - 'off': No validation (default)\n+ ...
2025-12-15T23:59:27
nodejs/node
16472884aa39450b12ade247a733b1640e7fcb9a
ef0f0b086522243e4c7276a6bfa8575e0e1cd861
stream: fix TransformStream race on cancel with pending write Signed-off-by: marcopiraccini <marco.piraccini@gmail.com> PR-URL: https://github.com/nodejs/node/pull/62040 Fixes: https://github.com/nodejs/node/issues/62036 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.i...
[ { "path": "lib/internal/webstreams/transformstream.js", "patch": "@@ -72,7 +72,6 @@ const {\n const assert = require('internal/assert');\n \n const kSkipThrow = Symbol('kSkipThrow');\n-\n const getNonWritablePropertyDescriptor = (value) => {\n return {\n __proto__: null,\n@@ -524,7 +523,12 @@ function...
2026-03-04T16:02:27
electron/electron
55ebdfb26b238a5f517cb3332da0b158212d2f8b
d6e0c270d1766c35eedbccbb1a9071a5dd4000af
ci: add timeout to test step (#50186) Additionally, take a screenshot on timeout so that we can debug why there is a hang
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -214,6 +214,7 @@ jobs:\n \n - name: Run Electron Tests\n shell: bash\n+ timeout-minutes: 40\n env:\n MOCHA_REPORTER: mocha-multi-reporters\n MOCHA_MULTI_REPORTERS: mocha-junit-reporter, tap\n@...
2026-03-11T08:48:47
vercel/next.js
2e92c31f1a168e2d76cca15d2922e2501ff066aa
b163a8bf6642c7c849964d1238c13cc91d0c2252
Fix TS6 baseUrl deprecation for extended tsconfig (#91855) ## Summary - handle `compilerOptions.baseUrl` inherited via `extends` in TS6 config normalization - rewrite `paths` using the resolved base URL and remove `baseUrl` from parsed compiler options - keep existing behavior for direct `baseUrl` while avoiding TS510...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -219,6 +219,7 @@ import {\n writeRouteTypesManifest,\n writeValidatorFile,\n } from '../server/lib/router-utils/route-types-utils'\n+import { writeCacheLifeTypes } from '../server/lib/router-utils/cache-life-type-utils'\n import { Lockfile } fro...
2026-03-24T19:28:29
golang/go
cdfc8c771301c8c1f32e50e773d620a6b8767078
670038a5a53c19ab299179e62d72956a92248877
database/sql: avoid deadlock from reentrant RLock RWMutex.RLock blocks until any pending Lock operations are satisfied. This prohibits recursive read-locking. Replace various RWMutexes used to synchronize between reads and closes with a variant where the reader side takes priority. Reads can starve out Close, but wil...
[ { "path": "src/database/sql/closemu.go", "patch": "@@ -0,0 +1,111 @@\n+// Copyright 2026 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 sql\n+\n+import (\n+\t\"sync\"\n+\t\"sync/atomic\"\n+)\n+\n+/...
2026-03-15T02:54:47
facebook/react
bcf97c7564cbe0c903a16a8d6ff52f124f2f06ff
ba5b843692519a226347aecfb789d90fcb24b4bc
Devtools disable log dimming strict mode setting (#35207) <!-- 1. Fork [the repository](https://github.com/facebook/react) and create your branch from `main`. 2. Run `yarn` in the repository root. 3. If you've fixed a bug or added code that should be tested, add tests! 4. Ensure the test suite passes (`yarn test`)....
[ { "path": "packages/react-devtools-core/README.md", "patch": "@@ -32,7 +32,7 @@ if (process.env.NODE_ENV !== 'production') {\n #### `Settings`\n | Spec ...
2025-12-15T13:41:43
nodejs/node
23ba2054f3a356d600f7ff8041cbe57c5cd4c1a0
330e3ee67e84e0d4845ff29898f22908a6a6b727
doc: fix markdown for `expectFailure` values PR-URL: https://github.com/nodejs/node/pull/62100 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "doc/api/test.md", "patch": "@@ -287,11 +287,7 @@ it('should do the thing', { expectFailure: 'feature not implemented' }, () => {\n });\n ```\n \n-If the value of `expectFailure` is a\n-[<RegExp>](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp) |\n-[<Functi...
2026-03-04T14:26:01
golang/go
670038a5a53c19ab299179e62d72956a92248877
26d8a902002a2b41bc4c302044110f2eae8d597f
cmd/compile: preserve variadic signature on range-over-func When rewriting range-over-func loops, copy the variadic bit from the original function type into the synthesized body closure's type info. This keeps the generated closure signature aligned with the source function and avoids losing variadic-ness during rewri...
[ { "path": "src/cmd/compile/internal/rangefunc/rewrite.go", "patch": "@@ -1175,7 +1175,7 @@ func (r *rewriter) bodyFunc(body []syntax.Stmt, lhs []syntax.Expr, def bool, fty\n \t\tType: types2.NewSignatureType(nil, nil, nil,\n \t\t\ttypes2.NewTuple(params...),\n \t\t\ttypes2.NewTuple(results...),\n-\t\t\tfals...
2026-03-24T13:42:23
vercel/next.js
eb44c314dcedf3bb5911baa026988bf383aafd89
3241be2d9009b7cb7bc0a2478b2f43f9e20b995a
docs: platform portability and infrastructure documentation (#91237) ## Summary Adds comprehensive documentation addressing platform partner feedback about Next.js portability, infrastructure requirements, and CDN caching. All technical claims verified against the codebase. **New pages (5):** - **Rendering Philosoph...
[ { "path": "docs/01-app/01-getting-started/17-deploying.mdx", "patch": "@@ -87,4 +87,4 @@ Refer to each provider's documentation for information on supported Next.js feat\n - [Netlify](https://docs.netlify.com/frameworks/next-js/overview/#next-js-support-on-netlify)\n - [Vercel](https://vercel.com/docs/frame...
2026-03-23T19:09:42
electron/electron
d6e0c270d1766c35eedbccbb1a9071a5dd4000af
c4c6195341056b87547da310408a33c16e78ef79
chore: bump chromium to 147.0.7727.0 (main) (#50115) * chore: bump chromium in DEPS to 147.0.7724.0 * chore: bump chromium in DEPS to 147.0.7725.0 * chore: bump chromium in DEPS to 147.0.7727.0 * chore: update patches Refs https://chromium-review.googlesource.com/c/chromium/src/+/7633903 * fix: pass weak-ptr-bound...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '147.0.7719.0',\n+ '147.0.7727.0',\n 'node_version':\n 'v24.14.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2026-03-11T03:14:36
facebook/react
38a6f4e4a11f128a2f83047c5e64512f7678d450
b85cf6af3de99dce3674dadebcc1493b77a64606
[compiler] Only run validations with env.logErrors on outputMode: 'lint' (#35216) Summary: These validations are not essential for compilation, with this we only run that logic when outputMode is 'lint' Test Plan: Update fixtures and run tests
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -279,17 +279,20 @@ function runWithEnvironment(\n validateNoSetStateInRender(hir).unwrap();\n }\n \n- if (env.config.validateNoDerivedComputationsInEffects_exp) {\n+ if (\n+ env.config.val...
2025-12-12T00:36:36
golang/go
26d8a902002a2b41bc4c302044110f2eae8d597f
312541b783ceae00471573da83367cae26ca255b
crypto/x509: fix signature checking limit We added the "is this cert already in the chain" check (alreadyInChain) to considerCandidates before the signature limit. considerCandidates bails out when we exceed the signature check, but buildChains keeps calling considerCandidates until it exhausts all potential parents. ...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -720,23 +720,25 @@ func alreadyInChain(candidate *Certificate, chain []*Certificate) bool {\n // for failed checks due to different intermediates having the same Subject.\n const maxChainSignatureChecks = 100\n \n+var errSignatureLimit = errors.New(\"x509:...
2026-03-05T22:28:44
vercel/next.js
ee6a0d77150a3263b660f9a6d19d6831ad5a9433
0d0b4f62a1445b8c56641b032fd7cd08b583b2ad
docs: add catchError benefits over userspace error boundaries (#91745) ## Summary - Add bullet list explaining three key benefits of `unstable_catchError` over a plain React error boundary: built-in error recovery via `retry()`, framework-aware handling of `redirect()`/`notFound()`, and automatic error state clearing...
[ { "path": "docs/01-app/03-api-reference/04-functions/catchError.mdx", "patch": "@@ -10,6 +10,12 @@ related:\n \n The `unstable_catchError` function creates a component that wraps its children in an error boundary. It provides a programmatic alternative to the [`error.js`](/docs/app/api-reference/file-conven...
2026-03-23T13:06:39
nodejs/node
afc30b71a8f032ae02307d609d1e9a975a96748a
a78cca6deb507c0151f5a91c424b31d03ba7c904
lib: fix source map url parse in dynamic imports PR-URL: https://github.com/nodejs/node/pull/61990 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
[ { "path": "lib/internal/source_map/source_map_cache.js", "patch": "@@ -247,7 +247,10 @@ function dataFromUrl(sourceURL, sourceMappingURL) {\n }\n }\n \n- const mapURL = new URL(sourceMappingURL, sourceURL).href;\n+ const mapURL = URLParse(sourceMappingURL, sourceURL);\n+ if (mapURL === null) {\n+ ...
2026-03-03T20:35:35
rust-lang/rust
4bc2a5510871ef17eaf9b7d28714f0dee4f48316
14ab39c42f6e990d7b41b34e1d3220ab21b6b29a
Fix diagnostic::on_const label span
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs", "patch": "@@ -905,7 +905,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n diag.primary_message(message);\n }\n if let Some(label) = label {\n- ...
2026-04-06T17:01:10
electron/electron
f1705eccf8aed73df9c36c9ae8345cd5a7bac27f
44b12fbb7b6dbdcfa1fe6ecd1ac0df455e5f1bcf
fix: don't call `TaskDialogIndirect` with disabled parent windows (#50078)
[ { "path": "shell/browser/ui/message_box_win.cc", "patch": "@@ -158,7 +158,7 @@ DialogResult ShowTaskDialogWstr(gfx::AcceleratedWidget parent,\n config.hInstance = GetModuleHandle(nullptr);\n config.dwFlags = flags;\n \n- if (parent) {\n+ if (parent && ::IsWindowEnabled(parent)) {\n config.hwndPare...
2026-03-10T18:51:07
golang/go
312541b783ceae00471573da83367cae26ca255b
04dc12c1a17d3fa4ff49af84de5641099716e234
crypto/x509: hoist policy pruning out of loop We only need to do this once, not once per mapping. Thanks to Jakub Ciolek for reporting this issue. Fixes #78281 Fixes CVE-2026-32281 Change-Id: Ic26f5f14d2a5e42ca8c24b8ae47bc3c5cc601863 Reviewed-on: https://go-review.googlesource.com/c/go/+/758061 Reviewed-by: Damien ...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -1284,12 +1284,12 @@ func policiesValid(chain []*Certificate, opts VerifyOptions) bool {\n \t\t\t\t\t\t} else {\n \t\t\t\t\t\t\t// 6.1.4 (b) (3) (i) -- as updated by RFC 9618\n \t\t\t\t\t\t\tpg.deleteLeaf(mapping.IssuerDomainPolicy)\n-\n-\t\t\t\t\t\t\t// 6...
2026-03-23T19:09:47
vercel/next.js
c53f5863e3716166e4697682220c41c436c5900d
138092696c355fa38ec8409e7f2c6c67c97e4f6b
[test] Unflake app prefetch test (#91734) [Flakiness metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22%20%40test.type%3A%22nextjs%22%20%40test.status%3A%22fail%22%20%40test.name%3A%22app%20dir%20-%20prefetching%20should%20not%20unintenti...
[ { "path": "test/e2e/app-dir/app-prefetch/prefetching.test.ts", "patch": "@@ -366,9 +366,11 @@ describe('app dir - prefetching', () => {\n await browser.elementById('prefetch-via-link').click()\n \n // Assert that we're on the homepage (check for accordion since links are hidden)\n- expect(\n- ...
2026-03-23T10:27:50
facebook/react
b85cf6af3de99dce3674dadebcc1493b77a64606
b45bb335db5b3632329d6b41e5a790ff6f1a7ff7
[compiler] Fix VariableDeclarator source location (#35348) Putting up https://github.com/facebook/react/pull/35129 again Reverted in https://github.com/facebook/react/pull/35346 after breaking main before security patch This change impacts output formatting in a lot of snaps, so is very sensitive to additions in main...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -4026,6 +4026,7 @@ function lowerAssignment(\n pattern: {\n kind: 'ArrayPattern',\n items,\n+ loc: lvalue.node.loc ?? GeneratedSource,\n },\n },\n ...
2025-12-11T23:02:05
rust-lang/rust
82cd20b585504d2e034a9862b9ccb9e55a5611b1
906ca7ff5e1f01cdf59388574b4822365bffabea
Use debug! instead of info!
[ { "path": "compiler/rustc_hir/src/attrs/diagnostic.rs", "patch": "@@ -6,7 +6,7 @@ pub use rustc_ast::attr::data_structures::*;\n use rustc_macros::{Decodable, Encodable, HashStable_Generic, PrintAttribute};\n use rustc_span::{DesugaringKind, Span, Symbol, kw};\n use thin_vec::ThinVec;\n-use tracing::{debug,...
2026-04-06T16:50:01
nodejs/node
4eac93779a99f3184dec31bb6de826b93dc0bd83
2422ed8b5bc32fb26d3a951f6fdf812a723694d5
src: release context frame in AsyncWrap::EmitDestroy Release the async context frame in AsyncWrap::EmitDestroy to allow gc to collect it. This is in special relevant for reused resources like HTTPParser otherwise they might keep ALS stores alive. PR-URL: https://github.com/nodejs/node/pull/61995 Fixes: https://githu...
[ { "path": "src/async_wrap.cc", "patch": "@@ -25,6 +25,9 @@\n #include \"env-inl.h\"\n #include \"node_errors.h\"\n #include \"node_external_reference.h\"\n+#ifdef DEBUG\n+#include <node_process-inl.h>\n+#endif\n #include \"tracing/traced_value.h\"\n #include \"util-inl.h\"\n \n@@ -333,9 +336,12 @@ void Asyn...
2026-03-03T14:09:06
golang/go
04dc12c1a17d3fa4ff49af84de5641099716e234
fa238516b782bd1f233e85b719b7ab90889a5634
runtime: use uname version check for 64-bit time on 32-bit arch codepaths The previous fallback-on-ENOSYS logic causes issues on forks of Linux. Android: #77621 (CL 750040 added a workaround with a TODO, this fixes that TODO) Causes the OS to terminate the program when running on Android versions <=10 since the secco...
[ { "path": "src/internal/runtime/syscall/linux/defs_linux_386.go", "patch": "@@ -17,6 +17,7 @@ const (\n \tSYS_OPENAT = 295\n \tSYS_PREAD64 = 180\n \tSYS_READ = 3\n+\tSYS_UNAME = 122\n \n \tEFD_NONBLOCK = 0x800\n ", "additions": 1, "deletions": 0, "language": "Go" ...
2026-03-24T23:02:09
rust-lang/rust
d5f98fbb27f6f31a7d211353b016941fa45f699d
906ca7ff5e1f01cdf59388574b4822365bffabea
implement `StructuralPartialEq` for `MaybeDangling` This fixes a stable-to-stable regression where constants of type `ManuallyDrop<T>` would not be allowed to be used as a pattern due to `MaybeDangling<T>` in `ManuallyDrop<T>` not implementing `StructuralPartialEq`.
[ { "path": "library/core/src/mem/maybe_dangling.rs", "patch": "@@ -1,5 +1,6 @@\n #![unstable(feature = \"maybe_dangling\", issue = \"118166\")]\n \n+use crate::marker::StructuralPartialEq;\n use crate::{mem, ptr};\n \n /// Allows wrapped [references] and [boxes] to dangle.\n@@ -109,3 +110,5 @@ impl<P: ?Sized...
2026-04-06T15:01:55
electron/electron
44b12fbb7b6dbdcfa1fe6ecd1ac0df455e5f1bcf
3691451c7137297a00cae9df9b9d2ef2c3a609c9
fix: run webRequest handlers for URLs handled by ElectronURLLoaderFactory (#45915) * fix: continue to run ProxyingURLLoaderFactory for intercepted protocols * test: webRequest handlers when loading browser windows * fix: wrap special URL loaders factories with ProxyingURLLoaderFactory * test: webRequest handlers wh...
[ { "path": "shell/browser/electron_browser_context.cc", "patch": "@@ -43,9 +43,7 @@\n #include \"media/audio/audio_device_description.h\"\n #include \"services/network/public/cpp/features.h\"\n #include \"services/network/public/cpp/originating_process_id.h\"\n-#include \"services/network/public/cpp/url_load...
2026-03-10T16:27:00
nodejs/node
cb6ff03cc57507c2ee9daed49f4be0196c308292
ddecee7447ee75e11c0a6c9135978a53c281227b
stream: accept ArrayBuffer in CompressionStream and DecompressionStream PR-URL: https://github.com/nodejs/node/pull/61913 Fixes: https://github.com/nodejs/node/issues/43433 Reviewed-By: Mattias Buelens <mattias@buelens.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail...
[ { "path": "lib/internal/webstreams/adapters.js", "patch": "@@ -53,6 +53,10 @@ const {\n Buffer,\n } = require('buffer');\n \n+const {\n+ isArrayBuffer,\n+} = require('internal/util/types');\n+\n const {\n AbortError,\n ErrnoException,\n@@ -213,6 +217,9 @@ function newWritableStreamFromStreamWritable(...
2026-03-02T23:15:09
facebook/react
80cb7a99255fb030bf11cb8a8298d94f379563c7
894bc73cb493487c48d57f4508e6278db58e673a
Revert "[compiler] Fix VariableDeclarator source location (#35129)" (#35346) This broke main.
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -4026,7 +4026,6 @@ function lowerAssignment(\n pattern: {\n kind: 'ArrayPattern',\n items,\n- loc: lvalue.node.loc ?? GeneratedSource,\n },\n },\n ...
2025-12-11T20:27:07
vercel/next.js
138092696c355fa38ec8409e7f2c6c67c97e4f6b
cbb5879f09cedc6a62c4580dd8266f29da62db98
[Segment Bundling] [Scaffolding] Ensure inlining hint correctness (#91320) Inlining hints (which segments to bundle together) are computed once at build time by measuring gzip sizes, then persisted to `prefetch-hints.json`. There are several scenarios where these hints may not be available at render time. This commit ...
[ { "path": "packages/next/errors.json", "patch": "@@ -1140,5 +1140,9 @@\n \"1139\": \"`unstable_catchError` can only be used in Client Components.\",\n \"1140\": \"Route %s used \\\\`import('next/root-params').%s()\\\\` inside \\\\`\\\"use cache\\\"\\\\` nested within \\\\`unstable_cache\\\\`. Root param...
2026-03-23T02:42:48
golang/go
b8dea877130ee6b80df1c468952ec5d13de9c16a
068f27a8e06e58361bcc2d5e7d17deafab4b52bc
net/url: escape // at start of Path when OmitHost set When a URL has OmitHost set and a Path starting with //, escape the first / in the path to avoid emitting a URL with the host set from the Path. For example for u := url.URL{Scheme: "file", OmitHost: true, Path: "//host/path"} u.String is now "file:%2F/host/pat...
[ { "path": "src/net/url/url.go", "patch": "@@ -836,6 +836,13 @@ func (u *URL) String() string {\n \t\t\t}\n \t\t}\n \t\tpath := u.EscapedPath()\n+\t\tif u.OmitHost && u.Host == \"\" && u.User == nil && strings.HasPrefix(path, \"//\") {\n+\t\t\t// Escape the first / in a path starting with \"//\" and no autho...
2026-03-24T21:19:02
electron/electron
d4cbd6cd7d23b127623ca01eeca1078d4c86a5b9
2ba4872d2c8d470540066f6b0112c1c0a7afaec4
docs: fix ipc highlight lines (#50169) Co-authored-by: Dilukshan <65407969+dilukshann7@users.noreply.github.com>
[ { "path": "docs/tutorial/ipc.md", "patch": "@@ -50,7 +50,7 @@ sections.\n \n In the main process, set an IPC listener on the `set-title` channel with the `ipcMain.on` API:\n \n-```js {6-10,22} title='main.js (Main Process)'\n+```js {7-11,23} title='main.js (Main Process)'\n const { app, BrowserWindow, ipcMa...
2026-03-10T00:16:06
facebook/react
894bc73cb493487c48d57f4508e6278db58e673a
d3eb566291ee5507b3912fe3c0cd6886167fe398
[Flight] Patch Promise cycles and toString on Server Functions (#35345) Server Functions can be stringified (sometimes implicitly) when passed as data. This adds an override to hide the source code in that case - just in case someone puts sensitive information in there. Note that this still preserves the `name` field...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -894,6 +894,7 @@ function resolveModuleChunk<T>(\n const resolvedChunk: ResolvedModuleChunk<T> = (chunk: any);\n resolvedChunk.status = RESOLVED_MODULE;\n resolvedChunk.value = value;\n+ resolvedChunk.reason = null;\n if (__DE...
2025-12-11T20:24:24
nodejs/node
5554a288c66f0442495a258be6e91a9ff6aafa4e
d198813a6bf5af727552b816d36de7e84dbfa2c8
test: fix skipping behavior for `test-runner-run-files-undefined` PR-URL: https://github.com/nodejs/node/pull/62026 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "test/parallel/test-runner-run-files-undefined.mjs", "patch": "@@ -1,61 +1,31 @@\n-import * as common from '../common/index.mjs';\n+import '../common/index.mjs';\n import tmpdir from '../common/tmpdir.js';\n-import { describe, it, run, beforeEach } from 'node:test';\n-import { dot, spec, tap } fro...
2026-03-02T23:04:06
golang/go
068f27a8e06e58361bcc2d5e7d17deafab4b52bc
98aaa9b0ee54ba197432458a6f344c14aa12c106
cmd/go: add information about GODEBUGs to go help gopath And make it clear that standard library tests won't run properly with GO111MODULE=off. Fixes #73973 Fixes #69202 Change-Id: I8c71c739e1da80fbf2e13f84ecaf9c346a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/758720 Reviewed-by: Dmitri Shuralyov <d...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2877,6 +2877,13 @@\n // Code in GOPATH mode vendor directories is not subject to\n // GOPATH mode import path checking (see 'go help importpath').\n //\n+// In GOPATH mode, the default GODEBUG values built into a binary\n+// will be those used in Go 1.20, set...
2026-03-24T16:22:25
electron/electron
2ba4872d2c8d470540066f6b0112c1c0a7afaec4
c264402766fee48bbfa302a5728fbaa7102458bf
feat: `WebContents.getOrCreateDevToolsTargetId()` (#49733) * Feat: support getDevToolsId() on WebContents * Rename to `getOrCreateDevToolsTargetId` * build: use spawn instead of spawnSync for build (#49774) * Fix build * formatting --------- Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "docs/api/web-contents.md", "patch": "@@ -2235,6 +2235,16 @@ Returns `string` - The identifier of a WebContents stream. This identifier can b\n with `navigator.mediaDevices.getUserMedia` using a `chromeMediaSource` of `tab`.\n The identifier is restricted to the web contents that it is registered ...
2026-03-09T20:32:52
vercel/next.js
9fdd5bcd77983fe87b904f93aa32415dc2ea9b06
6d4a405f4ad9a4173f8b06e80e836b8a104f406c
docs: use ErrorInfo type consistently in catchError docs (#91744) ## Summary - Replace inline types with `ErrorInfo` in all TSX examples in `catchError.mdx` - Merge separate `import type { ErrorInfo }` into single import statement - Remove broken `highlight` attributes from "Recovering from errors" code blocks - Stop...
[ { "path": "docs/01-app/01-getting-started/10-error-handling.mdx", "patch": "@@ -287,13 +287,13 @@ import { unstable_catchError as catchError, type ErrorInfo } from 'next/error'\n \n function ErrorFallback(\n props: { title: string },\n- { error, unstable_retry: retry }: ErrorInfo\n+ { error, unstable_re...
2026-03-22T22:02:24
nodejs/node
d198813a6bf5af727552b816d36de7e84dbfa2c8
097e763e025558731beadab0ed62bb9ed76a56cf
doc: include url.resolve() in DEP0169 application deprecation Mark url.resolve() as deprecated Update also DEP0116 with cross-reference to DEP0169 PR-URL: https://github.com/nodejs/node/pull/62002 Fixes: https://github.com/nodejs/node/issues/61816 Refs: https://github.com/nodejs/node/pull/61780 Reviewed-By: René <con...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -2665,11 +2665,15 @@ future release.\n \n <!-- YAML\n changes:\n+ - version:\n+ - v24.0.0\n+ pr-url: https://github.com/nodejs/node/pull/55017\n+ description: DEP0169 covers also `url.format()` and `url.resolve()`.\n - version:\n - v19.0....
2026-03-02T23:03:53
golang/go
e3bda445164c764aa95c7df271dff2170fa1a7ce
cbc2d06c9ba8285bb60f1055b44d4d1e742ca734
debug/elf: handle program header count overflow ELF files only have a 16-bit count for program headers. To handle the very rare case of larger files, a large program header count is stored as 0xffff and the first section header info field holds the actual count. Fixes #78217 Change-Id: I35c7e15025a9677473cb43d09a41f...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -400,6 +400,72 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t\treturn nil, &FormatError{0, \"invalid ELF phentsize\", phentsize}\n \t}\n \n+\t// If the number of sections is greater than or equal to SHN_LORESERVE\n+\t// (0xff00), shnum has the value zero...
2026-03-23T11:38:52
facebook/react
d3eb566291ee5507b3912fe3c0cd6886167fe398
37bcdcde044131d49f11b2f62873a200a94ec756
[compiler] Fix VariableDeclarator source location (#35129) ### What Fixes source locations for VariableDeclarator in the generated AST. Fixes a number of the errors in the snapshot I added yesterday in the source loc validator PR https://github.com/facebook/react/pull/35109 I'm not entirely sure why, but a side effec...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -4026,6 +4026,7 @@ function lowerAssignment(\n pattern: {\n kind: 'ArrayPattern',\n items,\n+ loc: lvalue.node.loc ?? GeneratedSource,\n },\n },\n ...
2025-12-11T19:35:03
electron/electron
c264402766fee48bbfa302a5728fbaa7102458bf
2c6dd1156c45d16b48cbbdfaa15a276a88ddc0c7
fix: validate protocol scheme names in `setAsDefaultProtocolClient` (#50141) fix: validate protocol scheme names in setAsDefaultProtocolClient On Windows, `app.setAsDefaultProtocolClient(protocol)` directly concatenates the protocol string into the registry key path with no validation. A protocol name containing `\` ...
[ { "path": "shell/browser/browser.cc", "patch": "@@ -9,7 +9,9 @@\n #include <utility>\n \n #include \"base/files/file_util.h\"\n+#include \"base/logging.h\"\n #include \"base/path_service.h\"\n+#include \"base/strings/string_util.h\"\n #include \"base/task/single_thread_task_runner.h\"\n #include \"base/thre...
2026-03-09T18:16:34
vercel/next.js
432b3f96bbbb75358584fea9b2d3dc0271751efc
450ed6f8fc9f9a98dbadb530f639187bfe09c002
[test] Unflake `use-node-streams-env-precedence` test (#91733) CI is slow sometimes ([x-ref](https://github.com/vercel/next.js/actions/runs/23353631446/job/67939293839)), so we're removing the low custom test timeout to allow more time to build the test fixture. We're also moving the test from `test/e2e` to `test/pro...
[ { "path": "test/production/app-dir/use-node-streams-env-precedence/use-node-streams-env-precedence.test.ts", "patch": "@@ -1,23 +1,17 @@\n import { nextTestSetup } from 'e2e-utils'\n \n describe('use-node-streams env precedence', () => {\n- const { next, isNextDev, skipped } = nextTestSetup({\n+ const { n...
2026-03-20T20:15:40
rust-lang/rust
5e903eae2d5eee1a0c33e5cb2085f7e80b3794ef
4c79065b3d2fc1b7686a4d658249d7643323da18
fix: Resolve https://github.com/rust-lang/rust-analyzer/pull/21970#pullrequestreview-4061885516
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/reload.rs", "patch": "@@ -608,6 +608,7 @@ impl GlobalState {\n format!(\"{base}/**/*.rs\"),\n format!(\"{base}/**/Cargo.{{toml,lock}}\"),\n ...
2026-04-06T13:10:37
golang/go
c52d784d0834d13b53e297dbcf7ebf057ba4eb8f
eae0bfb1b0cb7ca88d777de2c5e4b498d677a890
test: repair expected-error regexp in simd.go The test is only run when GOEXPERIMENT=simd, and currently there are no trybots for that. This error was found after merging to dev.simd, where such trybots ARE run. To run this test: ``` GOEXPERIMENT=simd go test -run=Test/simd.go -v cmd/internal/testdir -target=darwin/...
[ { "path": "test/simd.go", "patch": "@@ -150,8 +150,8 @@ func ternTricky3(x, y, z archsimd.Int32x8) archsimd.Int32x8 {\n func vpternlogdPanic() {\n \tresultsMask := archsimd.Mask64x8{}\n \n-\tfor { // ERROR \"has features avx+avx2+avx512\"\n-\t\tresultsMask = archsimd.Mask64x8FromBits(0).Or( // ERROR \"has f...
2026-03-25T02:34:59
facebook/react
37bcdcde044131d49f11b2f62873a200a94ec756
5a970933c0aa5c5cfb9793cce49f3a282b191716
fix[devtools]: feature-check document with typeof instead of direct reference (#35343) Follow-up to https://github.com/facebook/react/pull/35296. We can get `ReferenceError` if this is unavailable. Using `typeof` check instead for safety.
[ { "path": "packages/react-devtools-shared/src/backend/views/Highlighter/index.js", "patch": "@@ -96,8 +96,11 @@ export default function setupHighlighter(\n applyingScroll = false;\n }\n \n- // $FlowFixMe[method-unbinding]\n- if (document && typeof document.addEventListener === 'function') {\n+ if (...
2025-12-11T12:15:00
electron/electron
2c6dd1156c45d16b48cbbdfaa15a276a88ddc0c7
eacec9a47e671a8959ec1d26178823cca3c2f508
fix: use requesting frame origin in permission helper and device choosers (#50052) * fix: use requesting frame origin instead of top-level URL for permissions `WebContentsPermissionHelper::RequestPermission` passes `web_contents_->GetLastCommittedURL()` as the origin to the permission manager instead of the actual re...
[ { "path": "shell/browser/hid/hid_chooser_controller.cc", "patch": "@@ -87,13 +87,9 @@ HidChooserController::HidChooserController(\n exclusion_filters_(std::move(exclusion_filters)),\n callback_(std::move(callback)),\n initiator_document_(render_frame_host->GetWeakDocumentPtr()),\n- or...
2026-03-09T16:20:22
nodejs/node
097e763e025558731beadab0ed62bb9ed76a56cf
78e56face1176bd4b90fd656a37847051d008766
src: use validate_ascii_with_errors instead of validate_ascii It has better performance PR-URL: https://github.com/nodejs/node/pull/61122 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Daniel Lemire <daniel@lemire.me> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@g...
[ { "path": "src/node_buffer.cc", "patch": "@@ -1252,7 +1252,8 @@ static void IsAscii(const FunctionCallbackInfo<Value>& args) {\n env, \"Cannot validate on a detached buffer\");\n }\n \n- args.GetReturnValue().Set(simdutf::validate_ascii(abv.data(), abv.length()));\n+ args.GetReturnValue().Set(\n...
2026-03-02T23:03:43
vercel/next.js
25646b928f900c12504b8a30ce5939207533aa54
cbf12d18457cbe62cbb8f57f4e485110b6630e42
[turbopack] Remove incorrect debug_assert in try_read_task_cell (#91699) ### What? Removes the `debug_assert_not_in_top_level_task` call from `try_read_task_cell` in `turbopack/crates/turbo-tasks/src/manager.rs`. ### Why? The assertion was wrong. `debug_assert_not_in_top_level_task` panics with the message: > "Eve...
[ { "path": "turbopack/crates/turbo-tasks-backend/tests/top_level_task_consistency.rs", "patch": "@@ -36,13 +36,13 @@ async fn test_eventual_read_in_top_level_task_fails() {\n }\n \n #[tokio::test(flavor = \"multi_thread\", worker_threads = 2)]\n-#[should_panic]\n-async fn test_cell_read_in_top_level_task_fai...
2026-03-20T18:14:00
rust-lang/rust
adaff7315de473b231c783b1cd256e2e3d35a3ed
057b24ee8174d784c93722eed07a465862d8564e
fixes rustdoc build script
[ { "path": "src/librustdoc/build.rs", "patch": "@@ -27,8 +27,7 @@ fn main() {\n \"static/fonts/FiraSans-MediumItalic.woff2\",\n \"static/fonts/FiraMono-Regular.woff2\",\n \"static/fonts/FiraMono-Medium.woff2\",\n- \"static/fonts/FiraSans-LICENSE.txt\",\n- \"static/fonts/...
2026-04-06T11:27:32
golang/go
e26d743e2b600e448bee8f9cafd57ba4a70df813
e5975324c03874b82b62c6c2a4388321edb78e74
cmd/link: print more information in TestExtLinkCmdlineDeterminism Print more information in TestExtLinkCmdlineDeterminism to debug test failure. For #78180 Change-Id: I7e95eceb957805588c5dbb272370476d2378ea7e Reviewed-on: https://go-review.googlesource.com/c/go/+/758823 Reviewed-by: Michael Pratt <mpratt@google.com>...
[ { "path": "src/cmd/link/link_test.go", "patch": "@@ -1468,10 +1468,11 @@ func main() {}\n \t// Link with -v -linkmode=external to see the flags we pass to the\n \t// external linker.\n \tldflags := \"-ldflags=-v -linkmode=external -tmpdir=\" + linktmp\n-\tvar out0 []byte\n+\tvar out0, fullOut0 []byte\n \tfo...
2026-03-24T20:53:12
facebook/react
5a970933c0aa5c5cfb9793cce49f3a282b191716
5d801243459cc18a768c9b291355943366730539
fix[devtools]: feature-check structure stack trace methods (#35293) `Error.prepareStackTrace` is non-standard feature and not all JavaScript runtimes implement the methods that we are using in React DevTools backend. This PR adds additional checks for the presence of the methods that we are using.
[ { "path": "packages/react-devtools-shared/src/backend/utils/parseStackTrace.js", "patch": "@@ -154,41 +154,73 @@ function collectStackTrace(\n // We mirror how V8 serializes stack frames and how we later parse them.\n for (let i = framesToSkip; i < structuredStackTrace.length; i++) {\n const callSit...
2025-12-10T19:21:54
nodejs/node
78e56face1176bd4b90fd656a37847051d008766
acb79bca7efde3d48f36f0aaa1a16cacbcec7ae1
tools: fix parsing of commit trailers in `lint-release-proposal` GHA PR-URL: https://github.com/nodejs/node/pull/62077 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Stewart X Addison <sxa@redhat.com>
[ { "path": ".github/workflows/lint-release-proposal.yml", "patch": "@@ -88,7 +88,7 @@ jobs:\n gh api \\\n -H \"Accept: application/vnd.github+json\" \\\n -H \"X-GitHub-Api-Version: 2022-11-28\" \\\n- --jq '.commits.[] | { smallSha: .sha[0:10] } + (.commit.message|...
2026-03-02T19:29:52
vercel/next.js
cbf12d18457cbe62cbb8f57f4e485110b6630e42
b6ff1f6079694da08af88cec5cac7381e22cea10
Turbopack: fix webpack loader runner layer (#91727) Otherwise you get a `Dependency tracking is disabled` / infinite loop when trying to use both turbopack.rules.loader and turbopackLoader at the same time
[ { "path": "test/development/app-dir/turbopack-import-assertions-use/app/page.tsx", "patch": "@@ -8,14 +8,18 @@ import replacedValue from '../data-with-placeholder.js' with { turbopackLoader:\n import rawTextViaModuleType from '../data2.txt' with { turbopackLoader: '../node_modules/test-raw-loader/index.js',...
2026-03-20T18:08:15
golang/go
e5975324c03874b82b62c6c2a4388321edb78e74
4a7132b4b070e65fe28d08a3989897d6a3d65f00
net/url: permit colons in the host subcomponent of non-http/https URLs Too many systems seem to rely on net/url accepting invalid URLs with colons in the host subcomponent. Rather than adding exceptions for each (PostgreSQL, MongoDB, Redis, etc.), limit the strict validation to http/https only. For #78077 Change-Id:...
[ { "path": "src/net/url/url.go", "patch": "@@ -606,25 +606,22 @@ func parseHost(scheme, host string) (string, error) {\n \t} else if i := strings.Index(host, \":\"); i != -1 {\n \t\tlastColon := strings.LastIndex(host, \":\")\n \t\tif lastColon != i {\n-\t\t\tif scheme == \"postgresql\" || scheme == \"postgr...
2026-03-24T21:49:27
rust-lang/rust
4c79065b3d2fc1b7686a4d658249d7643323da18
b432149ff9b955c1da5c3d91103c6c3d58f4643b
fix: Reload when documentation changes See https://github.com/rust-lang/rust-analyzer/pull/21968#discussion_r3038969774
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/reload.rs", "patch": "@@ -582,7 +582,8 @@ impl GlobalState {\n [\n (base.clone(), \"**/*.rs\"),\n (base.clone(), \"**/Cargo.{lock,toml}\"),\n- ...
2026-04-06T10:46:27
facebook/react
5d801243459cc18a768c9b291355943366730539
eade0d0fb78e327c5624f53753126687f05c0d16
fix[devtools]: still show overlay, if getClientRects is not implemented (#35294) Follow-up to https://github.com/facebook/react/pull/34653. React Native doesn't implement `getClientRect`, since this is applicable to CSS box, which is not a concept for Native (maybe yet). I am loosening the condition that gates `show...
[ { "path": "packages/react-devtools-shared/src/backend/views/Highlighter/index.js", "patch": "@@ -202,13 +202,12 @@ export default function setupHighlighter(\n typeof node.getClientRects === 'function'\n ? node.getClientRects()\n : [];\n- // If this is currently displ...
2025-12-10T19:21:28
nodejs/node
dd400b9f12f9a20d9d153f74e9e33648ecba891d
f8d5bad52f6df23dab94cdca5e33e491b00efbfe
module: run require.resolve through module.registerHooks() Previously, require.resolve() called Module._resolveFilename() directly, bypassing any resolve hooks registered via module.registerHooks(). This patch fixes that. PR-URL: https://github.com/nodejs/node/pull/62028 Reviewed-By: Geoffrey Booth <webadmin@geoffrey...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -1034,41 +1034,63 @@ function getExportsForCircularRequire(module) {\n return module.exports;\n }\n \n+\n /**\n- * Resolve a module request for CommonJS, invoking hooks from module.registerHooks()\n- * if necessary.\n+ * Wraps result of Module._...
2026-03-02T18:28:25
vercel/next.js
b6ff1f6079694da08af88cec5cac7381e22cea10
546250ec9db080d785046927e6dc7a473828cd7a
Fix adapter outputs for dynamic metadata routes (#91680) ## Summary This fixes adapter `onBuildComplete` outputs for dynamic metadata routes. ## Bug `handleBuildComplete` skipped metadata routes too aggressively via `isStaticMetadataFile(...)`, so dynamic metadata routes (for example `robots.txt` / `sitemap.xml` us...
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -1070,8 +1070,26 @@ export async function handleBuildComplete({\n }\n const normalizedPage = normalizeAppPath(page)\n \n- // Skip static metadata routes - they will be output as static files\n- ...
2026-03-20T17:05:27
golang/go
4a7132b4b070e65fe28d08a3989897d6a3d65f00
fb592a174727bd693f0e27d130aa60362ed5c6f0
cmd/go/testdata/vcstest: explicitly set invalid-version's branch to main Fixes #78323 Change-Id: Id527f3a162969309b7103e5f0e0cc6496a6a6964 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest-git2.24.0 Reviewed-on: https://go-review.googlesource.com/c/go/+/758820 Reviewed-by: Michael Matloob <matloob@google...
[ { "path": "src/cmd/go/testdata/vcstest/git/invalid-version.txt", "patch": "@@ -9,6 +9,7 @@ at 2017-09-15T03:28:32-00:00\n \n git init\n git commit --allow-empty -m 'initial commit'\n+git branch -m main\n git tag v0.1.0\n git tag v3.1.0\n ", "additions": 1, "deletions": 0, "language": "Plain Text...
2026-03-24T19:39:06
facebook/react
61331f3c9e9ea93d866273567d38e23ef4bc4c5b
55480b4d228986e502f4651f8e53a6f264a1858e
Fix ViewTransition crash in Mobile Safari (#35337) Speculative fix to https://github.com/facebook/react/issues/35336 written by Claude. I have verified that applying a similar patch locally to the repro from #35336 does fix the crash. I'm not familiar enough with the underlying APIs to tell whether the fix is correc...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1996,26 +1996,6 @@ export function hasInstanceAffectedParent(\n return oldRect.height !== newRect.height || oldRect.width !== newRect.width;\n }\n \n-function cancelAllViewTransitionAnimations(scope: Element) {\n- //...
2025-12-09T18:35:15
electron/electron
ccb2c77c1728a6a2ef0718add1fd1770b8dee9e3
603679cb189b51a046ac08c5d4d51d610b905a73
fix: `InspectorFrontendHost` override in embedded windows (#49794) fix: InspectorFrontendHost override in embedded windows
[ { "path": "lib/renderer/api/context-bridge.ts", "patch": "@@ -23,11 +23,14 @@ export default contextBridge;\n \n export const internalContextBridge = {\n contextIsolationEnabled: process.contextIsolated,\n+ tryOverrideGlobalValueFromIsolatedWorld: (keys: string[], value: any) => {\n+ return binding._o...
2026-03-09T09:53:02
golang/go
fb592a174727bd693f0e27d130aa60362ed5c6f0
3ebdf12d7c193e6d59a9908745a9664ce7944fd6
net/url: reattach package doc comment Fixes #78326 Change-Id: I70a411c33820f6498bec5f4e4a4ec7666a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/758880 Auto-Submit: Nicholas Husin <nsh@golang.org> Reviewed-by: Nicholas Husin <husin@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acco...
[ { "path": "src/net/url/url.go", "patch": "@@ -2,14 +2,13 @@\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:generate go run gen_encoding_table.go\n+\n // Package url parses URLs and implements query escaping.\n //\n // See RFC 3986. This ...
2026-03-24T20:31:16
nodejs/node
09c21d8bdbf23441dcfe53310d78fe9285d5e2ff
9027f29e6d5de49842905d0ed082ad5907e80d78
src: fix flags argument offset in JSUdpWrap Signed-off-by: Weixie Cui <cuiweixie@gmail.com> PR-URL: https://github.com/nodejs/node/pull/61948 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/js_udp_wrap.cc", "patch": "@@ -158,7 +158,7 @@ void JSUDPWrap::EmitReceived(const FunctionCallbackInfo<Value>& args) {\n int family = args[1].As<Int32>()->Value() == 4 ? AF_INET : AF_INET6;\n Utf8Value address(env->isolate(), args[2]);\n int port = args[3].As<Int32>()->Value();\n- int ...
2026-02-23T02:56:00
facebook/react
55480b4d228986e502f4651f8e53a6f264a1858e
3640f38a728f3a057649cf7aec65a6ce14c2eac0
[playground] Downgrade Next.js to a secure version (#35317) Was bumped to a canary in https://github.com/facebook/react/pull/34499/ which got never released as stable. Presumeably to use `Activity` which only made it into Activity in later Next.js releases. However, `Activity` never ended up being used due to incompa...
[ { "path": "compiler/apps/playground/.gitignore", "patch": "@@ -12,6 +12,7 @@\n # next.js\n /.next/\n /out/\n+/next-env.d.ts\n \n # production\n /build", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "compiler/apps/playground/components/Editor/ConfigEditor.tsx", "...
2025-12-08T19:06:57
vercel/next.js
04cc2f2ed2a2a65cf5ba78ea251be22a5f41e7c9
47230b12d4b18c599a5955d925028383d0bad5bf
docs: post release amends (#91715) Fixes based on feedback post release Fixes: https://github.com/vercel/next.js/pull/91715
[ { "path": "docs/01-app/01-getting-started/03-layouts-and-pages.mdx", "patch": "@@ -129,7 +129,7 @@ export default async function Page() {\n }\n ```\n \n-```jsx filename=\"app/blog/[slug]/page.js\" switcher\n+```jsx filename=\"app/blog/page.js\" switcher\n // Dummy imports\n import { getPosts } from '@/lib/p...
2026-03-20T14:47:19
electron/electron
603679cb189b51a046ac08c5d4d51d610b905a73
9b78d75b3035ca2d2ba5c22d5ee2c093e2392bae
fix: read nodeIntegrationInWorker from per-frame WebPreferences (#50122) Previously the renderer checked a process-wide command-line switch to decide whether to create a Node.js environment for dedicated workers. When a renderer process hosted multiple WebContents with different nodeIntegrationInWorker values (e.g. vi...
[ { "path": "patches/chromium/.patches", "patch": "@@ -147,3 +147,4 @@ refactor_allow_customizing_config_in_freedesktopsecretkeyprovider.patch\n fix_wayland_test_crash_on_teardown.patch\n fix_set_correct_app_id_on_linux.patch\n fix_pass_trigger_for_global_shortcuts_on_wayland.patch\n+feat_plumb_node_integrati...
2026-03-09T07:50:01
golang/go
3ebdf12d7c193e6d59a9908745a9664ce7944fd6
e20a1b603579fc36148530048c76de6938347019
runtime: zero-extend Windows error code in syscall_syscalln asmstdcall now returns the 32-bit Windows error code in the return register. cgocall captures this as a signed int32. On 64-bit systems, casting this directly to uintptr results in sign extension for error codes with the high bit set (e.g., 0x80092004 become...
[ { "path": "src/runtime/syscall_windows.go", "patch": "@@ -429,5 +429,5 @@ func syscall_syscalln(fn, n uintptr, args ...uintptr) (r1, r2, err uintptr) {\n \t// but it copies the return values into the new M's\n \t// so we can read them from there.\n \tc = &getg().m.winsyscall\n-\treturn c.R1, c.R2, uintptr(e...
2026-03-24T19:33:15
facebook/react
3640f38a728f3a057649cf7aec65a6ce14c2eac0
ec9cc003d232b5a3eed735311df152463a883b32
[compiler] Add enableVerboseNoSetStateInEffect to suggest options to user/agent (#35306) The current `validateNoSetStateInEffects` error has potential false positives because we cannot fully statically detect patterns where calling setState in an effect is actually valid. This flag `enableVerboseNoSetStateInEffect` ad...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -869,7 +869,9 @@ function getRuleForCategoryImpl(category: ErrorCategory): LintRule {\n severity: ErrorSeverity.Error,\n name: 'set-state-in-effect',\n description:\n- 'Validates aga...
2025-12-08T17:16:28
vercel/next.js
47230b12d4b18c599a5955d925028383d0bad5bf
df886d4a2d36b63717f8aa5eae1147811ad025f8
turbopack: move "compact database" tracing span to backend layer (#91693) ### What? Move the `"compact database"` tracing span from `turbo-persistence` (`db.rs`) to the backend layer (`turbo-tasks-backend/src/backend/mod.rs`), make it a root span, group it with the sibling `"persist"` span under a shared `"background...
[ { "path": "turbopack/crates/turbo-persistence/src/db.rs", "patch": "@@ -574,7 +574,7 @@ impl<S: ParallelScheduler, const FAMILIES: usize> TurboPersistence<S, FAMILIES>\n \n new_meta_files.sort_unstable_by_key(|(seq, _)| *seq);\n \n- let sync_span = tracing::info_span!(\"sync new files\").ente...
2026-03-20T14:03:22
nodejs/node
9027f29e6d5de49842905d0ed082ad5907e80d78
97c131229190b6dc1800366285eade47a7e7717a
build: fix GN for new merve dep PR-URL: https://github.com/nodejs/node/pull/61984 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "deps/merve/BUILD.gn", "patch": "@@ -0,0 +1,14 @@\n+##############################################################################\n+# #\n+# DO NOT EDIT THIS FILE! #\n+# ...
2026-03-02T09:53:18
electron/electron
9b78d75b3035ca2d2ba5c22d5ee2c093e2392bae
3a48fd5fbb723b068e7233c6694d32d7e05f09ad
fix: validate response header names and values before AddHeader (#50123) Matches the existing validation applied to request headers in electron_api_url_loader.cc.
[ { "path": "shell/browser/net/electron_url_loader_factory.cc", "patch": "@@ -24,6 +24,7 @@\n #include \"net/base/filename_util.h\"\n #include \"net/http/http_request_headers.h\"\n #include \"net/http/http_status_code.h\"\n+#include \"net/http/http_util.h\"\n #include \"net/url_request/redirect_util.h\"\n #in...
2026-03-08T22:40:48
golang/go
e20a1b603579fc36148530048c76de6938347019
3390ec59af33d3c9ab431ff88a245b710b7c9e40
cmd/compile: handle string literals in FIPS mode consistently There are different code paths for compiling a composite literal, e.g. small vs. large, fully static vs. partially static. Following CL 755600, we need to apply the condition for string literals in FIPS mode consistently in all places. Enhance the test to ...
[ { "path": "src/cmd/compile/internal/walk/complit.go", "patch": "@@ -85,9 +85,7 @@ const (\n func getdyn(n ir.Node, top bool) initGenType {\n \tswitch n.Op() {\n \tdefault:\n-\t\t// Handle constants in linker, except that linker cannot do\n-\t\t// the relocations necessary for string constants in FIPS packag...
2026-03-18T01:59:52
facebook/react
ec9cc003d232b5a3eed735311df152463a883b32
380778d296478d675846668f96b0ee3e8f7fe810
[compiler][poc] Reuse ValidateExhaustiveDeps for effect dep validation (#35285) Alternative approach to #35282 for validating effect deps in the compiler that builds on the machinery in ValidateExhaustiveDependencies. Key changes to that pass: * Refactor to track the dependencies of array expressions as temporaries s...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -601,7 +601,8 @@ function printErrorSummary(category: ErrorCategory, message: string): string {\n case ErrorCategory.Syntax:\n case ErrorCategory.UseMemo:\n case ErrorCategory.VoidUseMemo:\n- case Err...
2025-12-08T15:58:38
vercel/next.js
df886d4a2d36b63717f8aa5eae1147811ad025f8
8cbc03772bc187e0bb954c68fc9152bcdc1b2f7b
turbo-persistence: remove Unmergeable mmap advice (#91713) ### What? Remove the `MADV_UNMERGEABLE` (Unmergeable) mmap advice from `turbo-persistence`'s `advise_mmap_for_persistence` helper in `mmap_helper.rs`. ### Why? The WSL (Windows Subsystem for Linux) kernel does not support `MADV_UNMERGEABLE` and returns an e...
[ { "path": "turbopack/crates/turbo-persistence/src/mmap_helper.rs", "patch": "@@ -2,15 +2,11 @@\n ///\n /// - `DontFork`: prevents mmap regions from being copied into child processes on `fork()`, avoiding\n /// unnecessary memory duplication and potential SIGBUS.\n-/// - `Unmergeable`: opts pages out of KS...
2026-03-20T13:59:04
nodejs/node
0994958c8d6ea497e726c2896103cbebb2940b5c
101d58c63f937ab6b6cf18667a2c233c375fa486
doc: fix small logic error in DETECT_MODULE_SYNTAX PR-URL: https://github.com/nodejs/node/pull/62025 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luig...
[ { "path": "doc/api/esm.md", "patch": "@@ -1274,7 +1274,7 @@ _isImports_, _conditions_)\n > 2. If _source_ contains a top-level lexical declaration (`const`, `let`,\n > or `class`) of any of the CommonJS wrapper variables (`require`,\n > `exports`, `module`, `__filename`, or `__dirname`) then ...
2026-03-01T14:01:51
golang/go
3390ec59af33d3c9ab431ff88a245b710b7c9e40
55600733988b0d3bb708be22b5cbecd8edd83380
internal/abi, cmd/link: centralize type descriptor size calculation The linker hardcoded the calculation for some types, which caused me some annoyance in CL 711560 because I didn't know it needed to be updated (and it took me a long time to find the hardcoded value). Move this calculation over to the abi package, si...
[ { "path": "src/cmd/compile/internal/rttype/rttype.go", "patch": "@@ -88,6 +88,24 @@ func Init() {\n \tif got, want := int64(abi.ITabTypeOff(ptrSize)), ITab.OffsetOf(\"Type\"); got != want {\n \t\tbase.Fatalf(\"abi.ITabTypeOff() == %d, want %d\", got, want)\n \t}\n+\tfor _, test := range []struct {\n+\t\tkin...
2026-02-27T18:10:14
facebook/react
2cb08e65b39d1bd184803cc8e4d1081f9c801f69
ad5971febdf6cc3103fa51121d4015832f2af5f8
[compiler] Fix bug w functions depending on hoisted primitives (#35284) Fixes an edge case where a function expression would fail to take a dependency if it referenced a hoisted `const` inferred as a primitive value. We were incorrectly skipping primitve-typed operands when determing scopes for merging in InferReactiv...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/InferReactiveScopeVariables.ts", "patch": "@@ -389,14 +389,6 @@ export function findDisjointMutableValues(\n */\n operand.identifier.mutableRange.start > 0\n ) {\n- if (\n- ...
2025-12-05T19:29:06
electron/electron
fb13492c891178b1eb39c984c622891e1693fc5e
8bdae630366c41b6034bb8463b074ba04386bcf7
fix: correct parsing of second-instance additionalData (#50119) - POSIX: validate StringToSizeT result and token count when splitting the socket message into argv and additionalData; previously a malformed message could produce incorrect slicing. - Windows: base64-encode additionalData before embedding in the nu...
[ { "path": "patches/chromium/feat_add_data_parameter_to_processsingleton.patch", "patch": "@@ -65,7 +65,7 @@ index f076d0f783e2c0f6b5444002f756001adf2729bd..a03d99f929e2d354cdba969567d78156\n #if BUILDFLAG(IS_WIN)\n bool EscapeVirtualization(const base::FilePath& user_data_dir);\n diff --git a/chrome/bro...
2026-03-08T22:39:12
vercel/next.js
8cbc03772bc187e0bb954c68fc9152bcdc1b2f7b
6a8a31a7f42bb7d133aed5a6d854d069883aa57b
Fix server actions in standalone mode with `cacheComponents` (#91711) The `staticPathKey` condition added in #91231 inadvertently applies to server action requests on dynamic SSG routes when `cacheComponents` is enabled. Server action fetch requests from the client do not send the `RSC` header (`rsc: 1`). They only s...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -621,7 +621,14 @@ export async function handler(\n if (\n !staticPathKey &&\n (routeModule.isDev ||\n- (isSSG && pageIsDynamic && prerenderInfo?.fallbackRouteParams))\n+ (isSSG &&\n+ pageIsDynamic &&\n+ ...
2026-03-20T13:38:28
facebook/react
ad5971febdf6cc3103fa51121d4015832f2af5f8
378973b387b6a6f287e451dd0356099180684c3c
fix[devtools]: no-op unsupported backend bridge events (#35296) Follow-up to https://github.com/facebook/react/pull/34641. Similar to https://github.com/facebook/react/pull/35293, https://github.com/facebook/react/pull/35294. React DevTools backend can be used in non-DOM environments, so we have to feature-check some...
[ { "path": "packages/react-devtools-shared/src/backend/views/Highlighter/index.js", "patch": "@@ -9,6 +9,7 @@\n \n import Agent from 'react-devtools-shared/src/backend/agent';\n import {hideOverlay, showOverlay} from './Highlighter';\n+import {isReactNativeEnvironment} from 'react-devtools-shared/src/backend...
2025-12-05T16:41:58
golang/go
55600733988b0d3bb708be22b5cbecd8edd83380
3f057dcdbc86498e07a5744406fe92069221a92d
internal/runtime/maps: add GOEXPERIMENT=mapsplitgroup for KKKKVVVV slot order Map groups are currently: type group struct { ctrl uint64 slots [8]slot } type slot struct { key K elem E } If the element type is struct{}, the slot will be padded so that the address of the elem is unique rather than p...
[ { "path": "src/cmd/compile/internal/reflectdata/map.go", "patch": "@@ -13,6 +13,7 @@ import (\n \t\"cmd/internal/objabi\"\n \t\"cmd/internal/src\"\n \t\"internal/abi\"\n+\t\"internal/buildcfg\"\n )\n \n // MapGroupType makes the map slot group type given the type of the map.\n@@ -26,14 +27,6 @@ func MapGrou...
2025-09-10T05:22:17
rust-lang/rust
6be14042168ec1c1c8cfbcb6437aa3d44089a5c8
c2efcc4ae006a6b2761cb42572fc9cee0d1ce4af
attr parsing: make sure we pass the right target when errors could be emitted
[ { "path": "compiler/rustc_attr_parsing/src/interface.rs", "patch": "@@ -64,6 +64,7 @@ impl<'sess> AttributeParser<'sess, Early> {\n sym,\n target_span,\n target_node_id,\n+ Target::Crate, // Does not matter, we're not going to emit errors anyways\n ...
2026-04-06T07:31:34
vercel/next.js
6a8a31a7f42bb7d133aed5a6d854d069883aa57b
883d93c8935afb2b8124ab324a10fa36cbd7a88c
Fix layout segment optimization: move app-page imports to server-utility transition (#91701) ## Summary - Add `'turbopack-transition': 'next-server-utility'` to all server-side imports in the `app-page.ts` template so they are properly placed in the server utility layer, rather than relying on `SharedMerged` chunk ...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -874,52 +874,55 @@ impl AppProject {\n &self,\n endpoint: Vc<AppEndpoint>,\n rsc_entry: ResolvedVc<Box<dyn Module>>,\n- client_shared_entries: Vc<EvaluatableAssets>,\n- has_layout_segments: bool,\n+ client_shar...
2026-03-20T12:00:43
electron/electron
8bdae630366c41b6034bb8463b074ba04386bcf7
2a4909093ec672d8a997337851c6f8b53aeb52b0
fix: strictly validate sender for internal IPC reply channels (#50118) The sender-mismatch check in invokeInWebContents and invokeInWebFrameMain used a negative condition (`type === 'frame' && sender !== expected`), which only rejected mismatched frame senders and accepted anything else. Invert to a positive check so...
[ { "path": "lib/browser/ipc-main-internal-utils.ts", "patch": "@@ -19,8 +19,8 @@ export function invokeInWebContents<T> (sender: Electron.WebContents, command: s\n const requestId = ++nextId;\n const channel = `${command}_RESPONSE_${requestId}`;\n ipcMainInternal.on(channel, function handler (eve...
2026-03-08T22:39:04
facebook/react
f99241b2e6cec825dfbdbb878755f12e1f510ca9
66ae640b362d75555649701e91c5ae26363db45b
[compiler] Add enableUseKeyedState flag and improve setState-in-render errors (#35230) Adds a new `enableUseKeyedState` compiler flag that changes the error message for unconditional setState calls during render. When `enableUseKeyedState` is enabled, the error recommends using `useKeyedState(initialState, key)` to r...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -318,6 +318,12 @@ export const EnvironmentConfigSchema = z.object({\n */\n validateNoSetStateInRender: z.boolean().default(true),\n \n+ /**\n+ * When enabled, changes the behavior of validateNoSetStateInRe...
2025-12-04T23:29:10
golang/go
3f057dcdbc86498e07a5744406fe92069221a92d
fe8947a521ba1a404f01882048340a4a18e7e61a
cmd/go: document that workspace use paths are not resolved through symlinks The use directive in go.work files compares module directory paths literally without resolving symbolic links. A use directive that names a symlink to a directory is not interchangeable with one that names the symlink's target. Document this ...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1549,7 +1549,9 @@\n //\n // The use directive specifies a module to be included in the workspace's\n // set of main modules. The argument to the use directive is the directory\n-// containing the module's go.mod file.\n+// containing the module's go.mod file....
2026-03-23T20:48:42
nodejs/node
6964b539806e3b2103dd6b65572287b8a615f5d3
27261b9391d755de208814dfae3f8f0923dc07b4
doc: fix module.stripTypeScriptTypes indentation PR-URL: https://github.com/nodejs/node/pull/61992 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Harshitha K P <harshitha014@gmail.com> Reviewed-By: Colin ...
[ { "path": "doc/api/module.md", "patch": "@@ -259,12 +259,13 @@ changes:\n * `'strip'` Only strip type annotations without performing the transformation of TypeScript features.\n * `sourceUrl` {string} Specifies the source url used in the source map.\n * Returns: {string} The code with type annotation...
2026-02-25T21:29:41
vercel/next.js
883d93c8935afb2b8124ab324a10fa36cbd7a88c
542b2b029ca439815299067b47306a451587dff6
docs: fix broken Activity Patterns demo link in preserving UI state guide (#91698) ## What? Fixes a broken link in the Preserving UI State guide: https://nextjs.org/docs/app/guides/preserving-ui-state#examples The "Activity Patterns demo" link currently points to a non-working URL. ## Why? The demo link returns a ...
[ { "path": "docs/01-app/02-guides/preserving-ui-state.mdx", "patch": "@@ -496,7 +496,7 @@ The ref persists across hide/show cycles (refs aren't cleaned up), so `hasMounte\n \n ## Examples\n \n-The [Activity Patterns Demo](https://react-activity-patterns.vercel.app/) ([source](https://github.com/vercel-labs/r...
2026-03-20T09:00:54
facebook/react
66ae640b362d75555649701e91c5ae26363db45b
bf1afade8d95d2ef6e862d995ee74921ca8d47c7
[eprh] fix react-compiler rules missing `meta.docs.url` property (#35258) ## Summary To help people access the documentation easier, we can [add `meta.docs.url`](https://eslint.org/docs/latest/extend/custom-rules#:~:text=Specifies%20the%20URL) to the new react-compiler rules. This allows IDEs to make the rule name a ...
[ { "path": "packages/eslint-plugin-react-hooks/src/shared/ReactCompiler.ts", "patch": "@@ -151,6 +151,7 @@ function makeRule(rule: LintRule): Rule.RuleModule {\n docs: {\n description: rule.description,\n recommended: rule.preset === LintRulePreset.Recommended,\n+ url: `https://r...
2025-12-04T20:28:13
golang/go
fe8947a521ba1a404f01882048340a4a18e7e61a
b2b1a0a79473916a9a29f589cc7504f4bcf2b73a
cmd/go/internal/doc: remove flag listing from usage This makes the help for go doc more consistent with other go subcommands. Fixes #74139 Change-Id: Ia01bd85544d5ece84e6316141f29f24c6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/758721 Reviewed-by: Michael Matloob <matloob@google.com> LUCI-TryBot-R...
[ { "path": "src/cmd/go/internal/doc/doc.go", "patch": "@@ -179,8 +179,6 @@ func usage(flagSet *flag.FlagSet) {\n \tfmt.Fprintf(os.Stderr, \"\\tgo doc <pkg> <sym>[.<methodOrField>]\\n\")\n \tfmt.Fprintf(os.Stderr, \"For more information run\\n\")\n \tfmt.Fprintf(os.Stderr, \"\\tgo help doc\\n\\n\")\n-\tfmt.Fp...
2026-03-24T16:46:28
electron/electron
9f80b6461775c711135bc2be6cc034db315fca87
3e0e1e4e8452be4528310b0717bc26df79c3af45
chore: bump chromium to 147.0.7719.0 (main) (#50061) * chore: bump chromium in DEPS to 147.0.7716.0 * chore: bump chromium in DEPS to 147.0.7717.0 * chore: bump chromium in DEPS to 147.0.7719.0 * chore: update patches Refs https://chromium-review.googlesource.com/c/chromium/src/+/7618634 Refs https://chromium-revi...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '147.0.7714.0',\n+ '147.0.7719.0',\n 'node_version':\n 'v24.14.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2026-03-07T21:22:11
vercel/next.js
542b2b029ca439815299067b47306a451587dff6
9f181bd11af5f532c529a6f168fe40505f0a4d75
[test] Fix `edge-async-local-storage` deploy test timeout & race condition (#91643) The test was calling `createNext` inside each `it.each` test body, which meant deployment setup time counted against the 60-second per-test timeout introduced in #89929. In deploy mode, `createNext` deploys to Vercel which can exceed 6...
[ { "path": "test/e2e/edge-async-local-storage/index.test.ts", "patch": "@@ -1,105 +1,51 @@\n-import { createNext } from 'e2e-utils'\n-import { NextInstance } from 'e2e-utils'\n+import { nextTestSetup } from 'e2e-utils'\n import { fetchViaHTTP } from 'next-test-utils'\n \n describe('edge api can use async loc...
2026-03-20T08:37:42
facebook/react
bf1afade8d95d2ef6e862d995ee74921ca8d47c7
0526c799d4df2815aed73912bfbd26fc0102ffc3
[react-dom/server] Fix hanging on Deno (#35235)
[ { "path": "packages/react-dom/package.json", "patch": "@@ -61,7 +61,7 @@\n \"react-server\": \"./server.react-server.js\",\n \"workerd\": \"./server.edge.js\",\n \"bun\": \"./server.bun.js\",\n- \"deno\": \"./server.browser.js\",\n+ \"deno\": \"./server.node.js\",\n \"worke...
2025-12-04T05:50:27
golang/go
b2b1a0a79473916a9a29f589cc7504f4bcf2b73a
341b5e2c0261cc059b157f1c7a2a2c4d1f417f0d
net/http/internal/http2: use fake net for TestTransportBlockingRequestWrite This test has been intermittently flaky. Exact cause isn't clear, but switch it to use a fake network to eliminate local network flakiness as a cause. Fixes #78209 Fixes #78213 Fixes #78263 Change-Id: I481553107e8557fda0707069856bafcc6a6a696...
[ { "path": "src/net/http/internal/http2/transport_test.go", "patch": "@@ -4197,140 +4197,93 @@ func TestTransportBlockingRequestWrite(t *testing.T) {\n \tfiller := hex.EncodeToString([]byte(randString(2048)))\n \tfor _, test := range []struct {\n \t\tname string\n-\t\treq func(url string) (*http.Request, er...
2026-03-13T21:30:17
electron/electron
3e0e1e4e8452be4528310b0717bc26df79c3af45
86f2c7cced3262bde74bf919fdd38b7caef6d28b
test: fix flaky macOS dock tests (#50098) * test: fix flaky mac dock & autofill tests * fix: add null checks for the parent widget before calling IsVisible() * test: remove autofill test change (failing on Linux), keep crash fix * chore: autofill updates from code review
[ { "path": "shell/browser/ui/views/autofill_popup_view.cc", "patch": "@@ -67,9 +67,11 @@ AutofillPopupView::~AutofillPopupView() {\n }\n \n void AutofillPopupView::Show() {\n+ if (!popup_)\n+ return;\n bool visible = parent_widget_->IsVisible();\n visible = visible || view_proxy_;\n- if (!popup_ || ...
2026-03-06T21:35:16
facebook/react
7dc903cd29dac55efb4424853fd0442fef3a8700
36df5e8b42a97df4092f9584e4695bf4537853d5
Patch FlightReplyServer with fixes from ReactFlightClient (#35277) FlightReplyServer are for client->server and ReactFlightClient is for server->client. They're not 100% symmetrical. We did a number of refactors to ReactFlightClient in PRs like #29823 and #33664 to change the structure of the resolution. This PR brin...
[ { "path": "packages/react-server-dom-esm/src/server/ReactFlightDOMServerNode.js", "patch": "@@ -344,31 +344,42 @@ function decodeReplyFromBusboy<T>(\n // we queue any fields we receive until the previous file is done.\n queuedFields.push(name, value);\n } else {\n- resolveField(response...
2025-12-03T15:41:19
golang/go
341b5e2c0261cc059b157f1c7a2a2c4d1f417f0d
abd44cbe615ecea5e4bd8e6d1bb7be63d1f4b2d6
cmd/link: raise minimum windows version to 10 The minimum Windows version has been 10 for a few releases, but the PE headers weren't updated. Windows sometimes can use these in determining what kind of subsystem compatibility hacks to apply, which of course we don't want now, since Go targets Windows 10. This also cau...
[ { "path": "src/cmd/link/internal/ld/pe.go", "patch": "@@ -151,9 +151,139 @@ const (\n \tIMAGE_REL_BASED_DIR64 = 10\n )\n \n+// IMAGE_LOAD_CONFIG_DIRECTORY64.GuardFlags and IMAGE_LOAD_CONFIG_DIRECTORY32.GuardFlags\n+// values. These can be combined together.\n const (\n-\tPeMinimumTargetMajorVersion = 6\n-...
2026-03-18T23:28:04