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 |
|---|---|---|---|---|---|
vercel/next.js | 953b4c513990b4149faa27d687449ee72c68684f | 665977f2c7b124ba2f1f132d6ba4e3793a2aea49 | Fix potential race condition with request ID in dev mode (#84532)
In development mode, the request ID needs to be available before the
bootstrap script executes and triggers hydration. Previously, the
request ID was set inline with the flight data stream in a script tag
that was inserted after the bootstrap script, wh... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -2206,6 +2206,13 @@ async function renderToStream(\n page\n )\n \n+ // In development mode, set the request ID as a global variable, before the\n+ // bootstrap script is executed, which depends on it during hydration.\n+ c... | 2025-10-05T12:40:24 |
electron/electron | 14303a0a71cbd30d772e79209355db6f01dbd635 | 2b5342cb495e9cd9a7f6dfc96ba095211ed364ae | docs: grammar fix in isBeingCaptured docs (#42692) | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -1566,7 +1566,7 @@ If you would like the page to stay hidden, you should ensure that `stayHidden` i\n #### `contents.isBeingCaptured()`\n \n Returns `boolean` - Whether this page is being captured. It returns true when the capturer count\n-is large then 0.\... | 2024-07-01T19:01:27 |
rust-lang/rust | 882ae150e93f7c1aef17018a64540fa8b5bec943 | 25396cf54981afd1fa5a7406658b45033106a0d3 | Work around a false `err.emit();` type error in rust-analyzer | [
{
"path": "compiler/rustc_interface/src/util.rs",
"patch": "@@ -300,7 +300,7 @@ internal compiler error: query cycle handler thread panicked, aborting process\";\n diag.help(\n \"try lowering `-Z threads` or checking the operating system's resource limits\",\n ... | 2026-02-27T01:39:20 |
facebook/react | 93b12b824c3cf13be75a7fb0581187fa2fb1f52c | 4e482f490405c0c601d8712a0625fd17c04978e4 | [ci] Fix prerelease script npm authtoken
Try again to specify the npm token so the publish script can succeed.
ghstack-source-id: cd6e01b2ea9b320d02975849703269f17de45bd4
Pull Request resolved: https://github.com/facebook/react/pull/30503 | [
{
"path": ".github/workflows/runtime_prereleases.yml",
"patch": "@@ -16,6 +16,8 @@ on:\n \n env:\n TZ: /usr/share/zoneinfo/America/Los_Angeles\n+ GH_TOKEN: ${{ github.token }}\n+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}\n \n jobs:\n publish_prerelease:\n@@ -41,6 +43,3 @@ jobs:\n scripts/release/p... | 2024-07-29T17:37:53 |
nodejs/node | aa3523ec22c95dfb11ef93c8333ced41cd431f89 | ba4587c9fc5fae8334f3368be89405ca5735f3bb | test_runner: automatically wait for subtests to finish
This commit updates the test runner to automatically wait for
subtests to finish. This makes the experience more consistent
with suites and removes the need to await anything.
PR-URL: https://github.com/nodejs/node/pull/56664
Fixes: https://github.com/nodejs/node... | [
{
"path": "lib/internal/test_runner/harness.js",
"patch": "@@ -27,6 +27,8 @@ const {\n shouldColorizeTestFiles,\n } = require('internal/test_runner/utils');\n const { queueMicrotask } = require('internal/process/task_queues');\n+const { TIMEOUT_MAX } = require('internal/timers');\n+const { clearInterval, ... | 2025-01-19T22:46:37 |
vercel/next.js | c6d03456fd455189c4678286f9fe5875c342cbff | 70a3ddd3364c9dbafa530ab3f4df91de88474be1 | [ci]: remove test from segment cache manifest (#84507)
These are passing independently of any fixes | [
{
"path": "test/client-segment-cache-tests-manifest.json",
"patch": "@@ -3,21 +3,14 @@\n \"suites\": {\n \"test/e2e/app-dir/actions/app-action-node-middleware.test.ts\": {\n \"failed\": [\n- \"app-dir action handling fetch actions should handle redirects to routes that provide an invalid ... | 2025-10-04T00:59:55 |
electron/electron | e9a93a8c5ca723625ac5a95f5837a025e8e0a6a6 | efff369639b459b89b8e241063e8f764fbf37f84 | fix: setTopBrowserView focus issue with reordering (#42653)
* fix: reorder top browser view instead of adding/removing
* fix: update browserViews order
* test: add a test for setTopBrowserView | [
{
"path": "lib/browser/api/browser-window.ts",
"patch": "@@ -232,7 +232,12 @@ BrowserWindow.prototype.getBrowserViews = function () {\n \n BrowserWindow.prototype.setTopBrowserView = function (browserView: BrowserView) {\n if (browserView.ownerWindow !== this) { throw new Error('Given BrowserView is not a... | 2024-07-01T09:36:04 |
golang/go | 8377adafc548a0d9dab831477923d25ce4b10710 | a7d9d5a80ae799f54e323060df0dfbccc83d3759 | cmd/cgo: split loadDWARF into two parts
The first part runs gcc to get the debug information, and the second
part processes the debug information. The first part doesn't touch the
global and package level information that's computed so we can run it
earlier and concurrently in a later CL.
For #75167
Change-Id: I6a6a... | [
{
"path": "src/cmd/cgo/gcc.go",
"patch": "@@ -213,7 +213,8 @@ func (p *Package) Translate(f *File) {\n \t\t}\n \t\tneedType := p.guessKinds(f)\n \t\tif len(needType) > 0 {\n-\t\t\tp.loadDWARF(f, &ft, &conv, needType)\n+\t\t\td := p.loadDWARF(f, &ft, needType)\n+\t\t\tp.recordTypes(f, d, &conv)\n \t\t}\n \n ... | 2025-08-25T21:07:41 |
rust-lang/rust | 9092262255e1c79b473e91fb43e45eaaa005ec8d | b3869b94cd1ed4bfa2eb28f301535d5e9599c713 | fix: mem::conjure_zst panic message to use any::type_name instead of stringify! | [
{
"path": "library/core/src/mem/mod.rs",
"patch": "@@ -1488,12 +1488,13 @@ pub macro offset_of($Container:ty, $($fields:expr)+ $(,)?) {\n ///\n /// [inhabited]: https://doc.rust-lang.org/reference/glossary.html#inhabited\n #[unstable(feature = \"mem_conjure_zst\", issue = \"95383\")]\n+#[rustc_const_unstabl... | 2026-02-25T03:28:52 |
facebook/react | e215aa1160adc51b8f31788872c11468585d5cc8 | e0acd77aab503e63a5c7cdba605ee33a71f752e8 | [compiler] Fix FBT whitespace handling again (again (again))
ghstack-source-id: 00a86e41cfb8a6fb56b7fcd811740d1d9b89a611
Pull Request resolved: https://github.com/facebook/react/pull/30451 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -2113,10 +2113,10 @@ function lowerExpression(\n }\n props.push({kind: 'JsxAttribute', name: propName, place: value});\n }\n- if (\n- tag.kind === 'BuiltinTag' &&\n- (tag.name... | 2024-07-26T21:36:04 |
nodejs/node | 52d39441d07c8c0c99e84644f69406aa8578d7b1 | 99ffe3555a2156f68d014853d7f1ce9d128f2004 | deps: V8: cherry-pick f915fa4c9f41
Original commit message:
[osr] Ensure trying to osr does not skip loop interrupts
Fixed: 374013413
Change-Id: I52d7b4e165e0abd0bd517a81d2e8ef3f1f802bfb
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5946288
Commit-Queue: Darius Mercadier <dmerca... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ... | 2024-10-21T11:29:28 |
vercel/next.js | 6a0718dc05df76b52c81799f3b1bd6f89bf848d2 | cf9a7259b0bdc7317fa9588912b99045238c4eca | Turbopack: Use strongly consistent reads in `random_change` unit test (#84505)
I can't reproduce it locally, but I've noticed this test flake a few times in CI. Use strongly consistent reads to hopefully fix that. | [
{
"path": "turbopack/crates/turbo-tasks-backend/tests/random_change.rs",
"patch": "@@ -3,24 +3,30 @@\n #![allow(clippy::needless_return)] // tokio macro-generated code doesn't respect this\n \n use anyhow::{Result, bail};\n-use rand::Rng;\n-use turbo_tasks::{State, Vc};\n+use rand::{Rng, SeedableRng, rngs::... | 2025-10-03T22:51:08 |
electron/electron | 3ac57e17d5437be555d0d58eefef455292185b38 | 398dde9dfbdfcfd7757ead9a30785c01de9f0808 | build: fix clang format/lint (#42715)
* build: fix clang format path
* fix: use gclient sync instead of gclient runhooks
Refs https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/5659261
* fix: use gclient sync instead of gclient runhooks in GHA
---------
Co-authored-by: David Sanders... | [
{
"path": ".circleci/config/jobs/lint.yml",
"patch": "@@ -31,7 +31,7 @@ steps:\n mkdir -p src/buildtools\n curl -sL \"https://chromium.googlesource.com/chromium/src/+/${chromium_revision}/buildtools/DEPS?format=TEXT\" | base64 -d > src/buildtools/DEPS\n \n- gclient runhooks --spec=\"s... | 2024-06-28T20:30:07 |
golang/go | fe42628dae69c907bc579219a38fce6bc8f18c6c | 94b7d519bda29adad90766aaa5d2297708129a39 | internal/cpu: inline DebugOptions
internal/cpu.DebugOptions is only ever set in runtime.cpuinit on
unix-like platforms. DebugOptions itself is only used in
MustHaveDebugOptionsSupport, so inline the GOOS check there.
Change-Id: I6a35d6b8afcdadfc59585258002f53c20026116c
Reviewed-on: https://go-review.googlesource.com/... | [
{
"path": "src/internal/cpu/cpu.go",
"patch": "@@ -8,11 +8,6 @@ package cpu\n \n import _ \"unsafe\" // for linkname\n \n-// DebugOptions is set to true by the runtime if the OS supports reading\n-// GODEBUG early in runtime startup.\n-// This should not be changed after it is initialized.\n-var DebugOption... | 2025-08-28T14:50:12 |
facebook/react | a15e8d7cdc6289c8685588d2821cb7c904141e3e | 28b7f0bb714e09119dd8f102a590d41eb6335952 | [compiler][repro] Test fixture for fbt plural bug
ghstack-source-id: 222e7312c081faf36702a1c790a4e336b5bcc928
Pull Request resolved: https://github.com/facebook/react/pull/30432 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/bug-multiple-fbt-plural.expect.md",
"patch": "@@ -0,0 +1,110 @@\n+\n+## Input\n+\n+```javascript\n+import fbt from 'fbt';\n+\n+/**\n+ * Forget + fbt inconsistency. Evaluator errors with the following\n+ * Found di... | 2024-07-26T21:36:03 |
electron/electron | ec24b518086826cf4b9d019ad833f64ddf992f6d | c628de52d97dacd2e5e770d649b22c979d234884 | chore: bump node to v20.15.0 (main) (#42616)
* chore: bump node in DEPS to v20.15.0
* doc: Add OpenSSL errors to API docs
https://github.com/nodejs/node/pull/34213
* test: crypto-rsa-dsa testing for dynamic openssl
https://github.com/nodejs/node/pull/52781
* src: allow preventing debug signal handler st... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '127.0.6521.0',\n 'node_version':\n- 'v20.14.0',\n+ 'v20.15.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2024-06-27T11:34:39 |
nodejs/node | 99ffe3555a2156f68d014853d7f1ce9d128f2004 | 5d8011d91c6a473ffab6545e5bff0a244e77724a | deps: V8: cherry-pick 0d5d6e71bbb0
Original commit message:
Remove `--js-promise-withresolvers` runtime flag
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
Bug: 42204122
Change-Id: I017a0d1ae0f8225513206ffb7806a4250be75d4c
Reviewed-on: https://chromium-review.googlesource.com/c/v... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-09-20T17:17:30 |
golang/go | 94b7d519bda29adad90766aaa5d2297708129a39 | ba9e1ddccfe55e711ac3987f74109393dfb736af | net: update document on limitation of iprawsock on Windows
Fixed: #23209
Change-Id: I3bfe9f5192cbacf387386efda72f04eeec5ff3be
GitHub-Last-Rev: 660a62d139dda21fcaea1e95394ca38521c7f00a
GitHub-Pull-Request: golang/go#74857
Reviewed-on: https://go-review.googlesource.com/c/go/+/692895
LUCI-TryBot-Result: Go LUCI <golang... | [
{
"path": "src/net/iprawsock.go",
"patch": "@@ -25,6 +25,12 @@ import (\n // BUG(mikio): On JS and Plan 9, methods and functions related\n // to IPConn are not implemented.\n \n+// BUG: On Windows, raw IP sockets are restricted by the operating system.\n+// Sending TCP data, sending UDP data with invalid so... | 2025-08-12T12:36:54 |
rust-lang/rust | 2d411a0faad447b5bfc968b954fd3e9c10596325 | e8e3544a71f23606c85e8586e37bd98389bc1ebe | fixup span in obligation cause | [
{
"path": "compiler/rustc_trait_selection/src/solve.rs",
"patch": "@@ -57,7 +57,7 @@ fn try_eagerly_normalize_alias<'a, 'tcx>(\n let obligation = Obligation::new(\n tcx,\n // we ignore the error anyway\n- ObligationCause::dummy(),\n+ ObligationCause::dummy_with_span(span),\... | 2026-02-05T10:35:47 |
vercel/next.js | 95b167e77dba58078d4486aa18058299baa0cbf8 | 1c5a74063dce8225a7eaf92989b4a387e0ba82a9 | [segment cache]: fix interception route handling (#84497)
With `clientSegmentCache` enabled, if you are already on a route that
was intercepted/could have been intercepted, and then you navigated to
it again, the router would get stuck in a state where it was infinitely
suspended on data it would never receive.
When ... | [
{
"path": "packages/next/src/server/app-render/walk-tree-with-flight-router-state.tsx",
"patch": "@@ -16,10 +16,7 @@ import {\n } from './create-flight-router-state-from-loader-tree'\n import type { AppRenderContext } from './app-render'\n import { hasLoadingComponentInTree } from './has-loading-component-i... | 2025-10-03T22:11:02 |
facebook/react | 39acfdb3be2c8bd1bc664a07e003bd50955295d9 | 03072a7a113b3f9554676f85ba4e9f77fddf3787 | [ci] Fix ci prep script
During params parsing for this script, it previously would call out to
CircleCI for a build ID, but this is no longer needed.
ghstack-source-id: 9c70824498382827306a1b18b86e319745ab18fd
Pull Request resolved: https://github.com/facebook/react/pull/30499 | [
{
"path": "scripts/release/shared-commands/get-build-id-for-commit.js",
"patch": "@@ -1,75 +0,0 @@\n-'use strict';\n-\n-const fetch = require('node-fetch');\n-\n-const POLLING_INTERVAL = 10 * 1000; // 10 seconds\n-const RETRY_TIMEOUT = 4 * 60 * 1000; // 4 minutes\n-\n-function wait(ms) {\n- return new Prom... | 2024-07-29T16:55:35 |
electron/electron | c628de52d97dacd2e5e770d649b22c979d234884 | 2b31d8459dc4343b78efd082292f6b48e089a111 | fix: `defaultPath` should apply on all dialog types in Linux Portal (#42655)
fix: defaultPath should apply on all dialog types in Linux Portal dialogs | [
{
"path": "patches/chromium/feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch",
"patch": "@@ -8,6 +8,9 @@ This CL adds support for the following features to //shell_dialogs:\n * showHiddenFiles - Show hidden files in dialog.\n * showOverwriteConfirmation - Whether the user will be presente... | 2024-06-27T09:07:26 |
nodejs/node | d85d2f835042a9fc890e4ed4beac123f628a2835 | e8f55f7b7a9f5184f31b2b86fc8ea923e38229cd | deps: define V8_PRESERVE_MOST as no-op on Windows
It's causing linker errors with node.lib in node-gyp and potentially
breaks other 3rd party tools
PR-URL: https://github.com/nodejs/node/pull/56238
Refs: https://github.com/nodejs/node/pull/55784
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M ... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,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 "... | 2024-12-16T10:11:22 |
vercel/next.js | cef891788c90925a7d99041656cca924ef95a916 | 7f25da71fb14753052244c11a5a0bbdf897eb450 | simplify the way we check for turbopack config to ensure we support an empty turbopack object (#84494)
Previously we 'flattened' all the keys in the config to find unsupported leaf properties, but this meant that an empty object woudln't produce any keys.
instead just directly check for the `webpack` and `turbopack` ... | [
{
"path": "packages/next/src/lib/turbopack-warning.ts",
"patch": "@@ -42,9 +42,6 @@ const unsupportedTurbopackNextConfigOptions = [\n 'experimental.slowModuleDetection',\n ]\n \n-// The following will need to be supported by `next build --turbopack`\n-const unsupportedProductionSpecificTurbopackNextConfig... | 2025-10-03T18:13:53 |
golang/go | ba9e1ddccfe55e711ac3987f74109393dfb736af | 9f6936b8da81672cebcfa7ac3d6edddf9f1a5d65 | testing: allow specify temp dir by GOTMPDIR environment variable
Allow change the default temp directory returned by t.TempDir()
by environment variable GOTMPDIR.
Fixes #61585
Change-Id: Iba969bb02744e106cf15d80e0eda0245a55fc290
GitHub-Last-Rev: aeacea00952b11990b49a0fde6a0ce4fe910b777
GitHub-Pull-Request: golang/go... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2407,8 +2407,10 @@\n //\t\tThe name of checksum database to use and optionally its public key and\n //\t\tURL. See https://golang.org/ref/mod#authenticating.\n //\tGOTMPDIR\n-//\t\tThe directory where the go command will write\n-//\t\ttemporary source files, ... | 2025-08-12T14:06:53 |
facebook/react | 03072a7a113b3f9554676f85ba4e9f77fddf3787 | a6b5ed01ae98a18507cb92d8e932a8ca321602e6 | [ci] Fix prereleases reusable workflow
Turns out I had configured the reusable workflow with the wrong `on`
command.
Also removes the workflow_dispatch config from the nightly workflow as
that was not meant to be triggered manually.
ghstack-source-id: 426d07279d1a2b106918fbf662d4c64e169f1ef7
Pull Request resolved: h... | [
{
"path": ".github/workflows/runtime_prereleases.yml",
"patch": "@@ -1,18 +1,15 @@\n name: (Runtime) Publish Prereleases\n \n on:\n- workflow_dispatch:\n+ workflow_call:\n inputs:\n commit_sha:\n required: true\n default: ''\n type: string\n release_channel:\n ... | 2024-07-29T16:28:10 |
nodejs/node | e8f55f7b7a9f5184f31b2b86fc8ea923e38229cd | b3c1b63a5d1aa41a7791e09214b504217213f637 | deps: always define V8_NODISCARD as no-op
It's causing compiler errors with some classes on Xcode 11
and the attribute should have no runtime effect.
PR-URL: https://github.com/nodejs/node/pull/54077
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Joyee Cheun... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,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 "... | 2024-08-08T04:53:41 |
electron/electron | 2b31d8459dc4343b78efd082292f6b48e089a111 | 912706b23a785025ad92e96280480a6a2737155c | fix: param passed to `showSaveDialogSync` on Linux (#42652)
fix: pass correct param to sync functions on Linux | [
{
"path": "shell/browser/ui/file_dialog_linux.cc",
"patch": "@@ -208,9 +208,6 @@ class FileChooserDialog : public ui::SelectFileDialog::Listener {\n \n bool ShowOpenDialogSync(const DialogSettings& settings,\n std::vector<base::FilePath>* paths) {\n- v8::Isolate* isolate = electron:... | 2024-06-27T08:23:18 |
rust-lang/rust | 2fa37e7b3498a9cb46004fae5fd9d6d40835ad28 | bbdc754c53a66e5239001cd0cd376247f0b69f71 | aarch64: fix UB in non-power-of-two reads and writes | [
{
"path": "library/stdarch/crates/core_arch/src/macros.rs",
"patch": "@@ -237,12 +237,12 @@ macro_rules! deinterleaving_load {\n ($elem:ty, $lanes:literal, 2, $ptr:expr) => {{\n use $crate::core_arch::macros::deinterleave_mask;\n use $crate::core_arch::simd::Simd;\n- use $crate::{... | 2026-02-26T12:00:21 |
vercel/next.js | ce56f8aa918237fdf5fd391a8cbbc93782b6f727 | ba5a0ca79944b4c8a59d80d677bfedaf0fef33d6 | fix: Missing link in Lazy Loading docs (#84473)
Add missing space before "Importing Client Components" in Lazy Loading
/app docs.
This fixes the missing link in "On this page" sidebar:
<img width="1092" height="446" alt="image"
src="https://github.com/user-attachments/assets/0981467d-ad61-494d-80b2-c0a0e323dd0b"
/>
... | [
{
"path": "docs/01-app/02-guides/lazy-loading.mdx",
"patch": "@@ -24,6 +24,7 @@ By default, Server Components are automatically [code split](https://developer.m\n ## Examples\n \n <AppOnly>\n+\n ### Importing Client Components\n \n ```jsx filename=\"app/page.js\"",
"additions": 1,
"deletions": 0,
... | 2025-10-03T13:59:01 |
golang/go | 9f6936b8da81672cebcfa7ac3d6edddf9f1a5d65 | 89d41d254a758f9b5e554761c92508220f4342a5 | cmd/link: disallow linkname of runtime.addmoduledata
Although a comment on addmoduledata warns that it should not be
called from Go code, the linker still allow it to be accessed via
go:linkname. Using linkname on this function will cause a linker
crash when building with buildmode=plugin.
Fixes #75180
Change-Id: Ib... | [
{
"path": "src/cmd/link/internal/loader/loader.go",
"patch": "@@ -2440,6 +2440,7 @@ var blockedLinknames = map[string][]string{\n \t// Others\n \t\"net.newWindowsFile\": {\"net\"}, // pushed from os\n \t\"testing/synctest.testingSynctestTest\": {\"testing/synctest\"}, // pushe... | 2025-08-28T09:32:09 |
facebook/react | d17e9d1ce566276fc54a8ea27f4e9ea1fa434e62 | b9af819f8b0e7f14200cfffe04da835b56f2f75d | [Fizz] Prerender fallbacks before children (#30483)
When prerendering it can be convenient to abort the prerender while
rendering. However if any Suspense fallbacks have not yet rendered
before the abort happens the fallback itself will error and cause the
nearest parent Suspense boundary to render a fallback inste... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzStatic-test.js",
"patch": "@@ -335,4 +335,67 @@ describe('ReactDOMFizzStatic', () => {\n });\n expect(getVisibleChildren(container)).toEqual(undefined);\n });\n+\n+ // @gate experimental\n+ it('will prerender Suspense fallbacks before child... | 2024-07-26T21:06:47 |
nodejs/node | b3c1b63a5d1aa41a7791e09214b504217213f637 | d0361f0bba20407f2da3641cab8faeddd30eb9b7 | deps: fix FP16 bitcasts.h
PR-URL: https://github.com/nodejs/node/pull/53134
Refs: https://github.com/nodejs/node/issues/52809
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: https://github.com/nodejs/node/pul... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,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.4',\n+ 'v8_embedder_string': '-node.5',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-05-28T07:10:52 |
electron/electron | 607b9b8f11a7349c1e27d84470602658d7ff9bc2 | a8baa6f1ade18beeea36d064818cfa9de4ae1be4 | build: clean up upload-index-json error handling (#42657) | [
{
"path": "script/release/uploaders/upload-index-json.py",
"patch": "@@ -15,8 +15,7 @@\n \n BASE_URL = 'https://electron-metadumper.herokuapp.com/?version='\n \n-version = sys.argv[1]\n-authToken = os.getenv('META_DUMPER_AUTH_HEADER')\n+AUTH_TOKEN = os.getenv('META_DUMPER_AUTH_HEADER')\n \n def is_json(myjs... | 2024-06-26T16:25:58 |
rust-lang/rust | f0336511fa7bc27e05fbab5c851b8cf592844132 | f02672cb8bffef88934d31d9044257a4d11e5d1f | remove debug requirement from hooks | [
{
"path": "compiler/rustc_middle/src/hooks/mod.rs",
"patch": "@@ -35,8 +35,10 @@ macro_rules! declare_hooks {\n \n impl Default for Providers {\n fn default() -> Self {\n+ #[allow(unused)]\n Providers {\n- $($name: |_, $($arg,)*| default_... | 2026-01-27T15:09:52 |
vercel/next.js | 09bdc4523e30a140f2006ac3d3f5d351be72a1ff | f8816b06794bdb8139abf0b472c944a97262a063 | Turbopack: improve incremental build performance when deployment id changes (#84460)
### What?
* avoid dependencies due to tracing
* Avoid invalidating client chunking context when chunk_suffix_path changes
* BrowserChunkingContext::chunk_path only depends on a selected subset of fields
* select cross_origin field in... | [
{
"path": "crates/next-api/src/middleware.rs",
"patch": "@@ -157,14 +157,14 @@ impl MiddlewareEndpoint {\n parse_segment_config_from_source(*self.await?.source, ParseSegmentMode::Base).await?;\n let runtime = config.runtime.unwrap_or(NextRuntime::Edge);\n \n- let next_config = thi... | 2025-10-03T08:44:17 |
facebook/react | b9af819f8b0e7f14200cfffe04da835b56f2f75d | c00e895c190f42c6f476465f4be38a9c93c9a0d1 | [ci] Fix invalid username and email in synthetic commit
ghstack-source-id: 951d0ef445f945d2f0e12e4b6647543b3c4eee73
Pull Request resolved: https://github.com/facebook/react/pull/30486 | [
{
"path": ".github/workflows/runtime_commit_artifacts.yml",
"patch": "@@ -230,8 +230,8 @@ jobs:\n \n DiffTrain build for [${{ github.event.workflow_run.head_sha }}](https://github.com/facebook/react/commit/${{ github.event.workflow_run.head_sha }})\n branch: builds/facebook-www\n- ... | 2024-07-26T19:06:43 |
golang/go | 38204e087267a3408e36aa23d2b5ac36f22feef3 | 252c9011255872e21284480754400f9be7d48bf9 | testing/synctest: call out common issues with tests
While each point is explained their respective sections for Time,
Blocking, and Isolation, these appear to be the most common
issues worth calling out up front.
Fixes #75052
Change-Id: I916b559075ee4d1d23810a08459e037e21690193
Reviewed-on: https://go-review.googles... | [
{
"path": "src/testing/synctest/synctest.go",
"patch": "@@ -7,6 +7,14 @@\n // The [Test] function runs a function in an isolated \"bubble\".\n // Any goroutines started within the bubble are also part of the bubble.\n //\n+// Each test should be entirely self-contained:\n+// The following guidelines should ... | 2025-08-17T11:29:48 |
nodejs/node | 4f8fd566cc0af766f63f7bfbdd361258b22c5790 | 1142f78f1df5aa2f787a4f6d0dcf82daffd22bbf | deps: disable V8 concurrent sparkplug compilation
It introduces process hangs on some platforms because Node.js doesn't
tear down V8 correctly.
Disable it while we work on a solution.
Refs: https://github.com/nodejs/node/issues/47297
Refs: https://bugs.chromium.org/p/v8/issues/detail?id=13902
PR-URL: https://github.c... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "... | 2023-04-06T12:50:56 |
electron/electron | 3534923bd2fe933089f8672fbef88cda2bc4d9d8 | 66b8b7922961665481fb737e5af2f0cee9885939 | build: account for `subjectAndDescription` null in patch linting (#42636)
fix: account for subjectAndDescription null in patch linting | [
{
"path": "script/lint.js",
"patch": "@@ -252,8 +252,10 @@ const LINTERS = [{\n \n const allOk = filenames.length > 0 && filenames.map(f => {\n const patchText = fs.readFileSync(f, 'utf8');\n- const subjectAndDescription = /Subject: (.*?)\\n\\n([\\s\\S]*?)\\s*(?=diff)/ms.exec(patchText);\n- ... | 2024-06-25T05:32:43 |
vercel/next.js | 2d7852af99809b4041afe3ba82ad6246128e6bb4 | b28eb8e075a5436bd85e612d996332ecec062a86 | [ci]: fix app-static snapshots with clientSegmentCache (#84468)
More things that are only broken because we assert on `.next` files. Updates snapshots and removes the failing tests from the clientSegmentCache manifest. | [
{
"path": "test/client-segment-cache-tests-manifest.json",
"patch": "@@ -38,16 +38,6 @@\n \"app dir - prefetching should not unintentionally modify the requested prefetch by escaping the uri encoded query params\"\n ]\n },\n- \"test/e2e/app-dir/app-static/app-static-custom-handler.test.... | 2025-10-02T21:42:40 |
golang/go | 252c9011255872e21284480754400f9be7d48bf9 | 53515fb0a9e267d6040c1d8785fe51b1367e8d4d | os,syscall: pass file flags to CreateFile on Windows
Add support for FILE_FLAG_* constants in the flag argument of
os.OpenFile and syscall.Open on Windows.
Passing invalid flags will result in an error.
Updates #73676
Change-Id: Ie215a3dd14f0d74141533f0a07865a02a67a3846
Reviewed-on: https://go-review.googlesource.c... | [
{
"path": "doc/next/6-stdlib/99-minor/os/73676.md",
"patch": "@@ -0,0 +1,4 @@\n+On Windows, the [OpenFile] `flag` parameter can now contain any combination of\r\n+Windows-specific file flags, such as `FILE_FLAG_OVERLAPPED` and\r\n+`FILE_FLAG_SEQUENTIAL_SCAN`, for control of file or device caching behavior,\... | 2025-08-27T09:18:47 |
nodejs/node | 51c8fbb68665b75ccbb588e220cdddf09b2892c1 | 7f18407d0fd243bfe7115dafae02b7a034c64130 | inspector: fix GN build
PR-URL: https://github.com/nodejs/node/pull/56798
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/inspector/unofficial.gni",
"patch": "@@ -13,7 +13,7 @@ template(\"inspector_gn_build\") {\n }\n \n node_gen_dir = get_label_info(\"../..\", \"target_gen_dir\")\n- protocol_tool_path = \"../../tools/inspector_protocol\"\n+ protocol_tool_path = \"../../deps/inspector_protocol\"\n \n gyp... | 2025-01-30T06:44:39 |
electron/electron | 243be0a638f7ef848dbc448d8cac00f6857e1fa5 | 24d6c28b5ac0dff74eceb805b9a0144abe4f51a3 | docs: fix typo in ASAR integrity docs (#42538)
Fix typo in ASAR integrity docs | [
{
"path": "docs/tutorial/asar-integrity.md",
"patch": "@@ -125,7 +125,7 @@ in the form included below:\n ]\n ```\n \n-::: info\n+:::info\n \n For an implementation example, see [`src/resedit.ts`](https://github.com/electron/packager/blob/main/src/resedit.ts)\n in the Electron Packager code.",
"additions... | 2024-06-22T18:26:23 |
vercel/next.js | b28eb8e075a5436bd85e612d996332ecec062a86 | 5a4c295abd974b8655007cc599784099fe8988d1 | [ci]: fix build-output-prerender to support segment cache env (#84467)
These tests were only failing with segment cache because I added an env variable to test `clientSegmentCache` independently. This updates the snapshots. | [
{
"path": "test/client-segment-cache-tests-manifest.json",
"patch": "@@ -86,14 +86,6 @@\n \"failed\": [\n \"app dir - form prefetching should prefetch a loading state for the form's target\"\n ]\n- },\n- \"test/production/app-dir/build-output-prerender/build-output-prerender.test.t... | 2025-10-02T21:40:31 |
golang/go | 13bb48e6fbc35419a28747688426eb3684242fbc | ba1109feb515c2eb013399f53be5f17cfe1f189f | go/constant: fix complex != unknown comparison
By the contract of Compare, if one operand is Unknown, the result must be
false.
Fixes #75137
Change-Id: I56420fae808395f89769f5e5d448f9e1df9a622f
GitHub-Last-Rev: 858ba89a91bf966223975541af739ab0ab977075
GitHub-Pull-Request: golang/go#75140
Reviewed-on: https://go-revi... | [
{
"path": "src/go/constant/value.go",
"patch": "@@ -1083,7 +1083,10 @@ func match0(x, y Value) (_, _ Value) {\n \t\t\treturn rtof(x1), y\n \t\t}\n \tcase complexVal:\n-\t\treturn vtoc(x), y\n+\t\tswitch x1 := x.(type) {\n+\t\tcase int64Val, intVal, ratVal, floatVal:\n+\t\t\treturn vtoc(x1), y\n+\t\t}\n \t}\... | 2025-08-25T15:41:53 |
nodejs/node | 7f18407d0fd243bfe7115dafae02b7a034c64130 | 5557ce4aec8749bc079e092dea2696fe311535e3 | doc: fix typo in cjs example of `util.styleText`
`errorMessage` needs to be printed instead of
`successMessage` in console.error(). ESM example is
only fixed in previous PR.
Refs: https://github.com/nodejs/node/pull/56720
PR-URL: https://github.com/nodejs/node/pull/56769
Reviewed-By: Ulises Gascón <ulisesgascongonzal... | [
{
"path": "doc/api/util.md",
"patch": "@@ -1988,7 +1988,7 @@ const errorMessage = styleText(\n // Validate if process.stderr has TTY\n { stream: stderr },\n );\n-console.error(successMessage);\n+console.error(errorMessage);\n ```\n \n `util.inspect.colors` also provides text formats such as `italic`, an... | 2025-01-30T02:02:58 |
electron/electron | ba8ad4716b58bb84bca85282f4ccbbd19af828a5 | 37608933ae06e8d140317b191e2436dac3faf93a | feat: expose system preferences to utility process (#42203)
* chore: expose system preferences to utility process
* chore: add tests, doc changes and module-list update
* relative link
* use @
* fix test
* chore: disable linux test
* kick
* noop on windows utility process | [
{
"path": "docs/api/system-preferences.md",
"patch": "@@ -2,7 +2,7 @@\n \n > Get system preferences.\n \n-Process: [Main](../glossary.md#main-process)\n+Process: [Main](../glossary.md#main-process), [Utility](../glossary.md#utility-process)\n \n ```js\n const { systemPreferences } = require('electron')",
... | 2024-06-20T15:15:57 |
vercel/next.js | 5a4c295abd974b8655007cc599784099fe8988d1 | c781f40bd149c7714f05906be171a79dc507eaed | [Cache Components] Dim logs after prerender aborts (#84153)
When prerenders abort we reject hanging promises so resources can clean
up. This can lead to user code which logs errors from rejections
reporting many more errors than expected and these logs are for
semantically irrelevant errors.
To make it clearer that t... | [
{
"path": ".vscode/settings.json",
"patch": "@@ -62,7 +62,7 @@\n \"packages/next/src/server/app-render/dynamic-access-async-storage-instance.ts\",\n \"packages/next/src/server/app-render/work-async-storage-instance.ts\",\n \"packages/next/src/server/app-render/work-unit-async-storage-instance.ts... | 2025-10-02T21:22:44 |
golang/go | e47d88beae126387647348810b728ed12c8a0d61 | 6b837a64dbe6264035037d61c56ab94b55b2844d | os: return nil slice when ReadDir is used with a file on file_windows
ReadDir should return (nil, ENOTDIR) when the path points to a file
instead of a directory. That's the behavior on Unix systems, and it also
used to be the behavior on Windows. However, Windows currently returns
([]DirEntry{}, ENOTDIR).
We should c... | [
{
"path": "src/internal/syscall/windows/at_windows.go",
"patch": "@@ -11,6 +11,11 @@ import (\n \t\"unsafe\"\n )\n \n+// Openat flags supported by syscall.Open.\n+const (\n+\tO_DIRECTORY = 0x04000 // target must be a directory\n+)\n+\n // Openat flags not supported by syscall.Open.\n //\n // These are inven... | 2025-08-27T07:12:29 |
facebook/react | c5f3a6f42f7f42bf179c8072d90bef8842f2ce99 | 0023cff8716a2672467fd5cabfc7e7f3e12f669d | [circleci] Remove build_and_test workflow
Now that we've fully migrated the PR CI workflow (build_and_test) to GH,
we can fully delete the workflow altogether. This will break
https://react-builds.vercel.app/ unfortunately but I'll wait for
acdlite to come back from vacation and work with him to fix it.
The remaining... | [
{
"path": ".circleci/config.yml",
"patch": "@@ -48,40 +48,6 @@ parameters:\n default: ''\n \n jobs:\n- yarn_build:\n- docker: *docker\n- environment: *environment\n- parallelism: 40\n- steps:\n- - checkout\n- - setup_node_modules\n- - run: yarn build --ci=circleci\n- - p... | 2024-07-26T15:55:31 |
nodejs/node | 5557ce4aec8749bc079e092dea2696fe311535e3 | 82ac335bdd8dd0379a53ad5e18d26b87f6d1b748 | readline: fix unresolved promise on abortion
Fixes: https://github.com/nodejs/node/issues/53497
PR-URL: https://github.com/nodejs/node/pull/54030
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "lib/internal/readline/interface.js",
"patch": "@@ -33,10 +33,13 @@ const {\n SymbolDispose,\n } = primordials;\n \n-const { codes: {\n- ERR_INVALID_ARG_VALUE,\n- ERR_USE_AFTER_CLOSE,\n-} } = require('internal/errors');\n+const {\n+ AbortError,\n+ codes: {\n+ ERR_INVALID_ARG_VALUE,\n+ ... | 2024-07-25T02:01:26 |
electron/electron | 37608933ae06e8d140317b191e2436dac3faf93a | edb939ae8052d7b7f981c1fdd8ab25397bcdce7d | fix: fetch-dependent interfaces in Web Workers (#42579) | [
{
"path": "lib/worker/init.ts",
"patch": "@@ -17,6 +17,14 @@ const { makeRequireFunction } = __non_webpack_require__('internal/modules/helper\n global.module = new Module('electron/js2c/worker_init');\n global.require = makeRequireFunction(global.module);\n \n+// See WebWorkerObserver::WorkerScriptReadyForE... | 2024-06-20T15:01:50 |
vercel/next.js | f53da7131335f49a4edfa21611d161e79990a99b | 047e641442a6043294fecc65b857470e387db0ea | perf: Use a more aggressive retry loop for `recursiveDelete` (#84444)
**Update:** This also fixes a bug pointed out by Graphite where the deletion function could hang forever because the `t` variable used for tracking attempts wasn't properly incremented.
---
https://vercel.slack.com/archives/C04KC8A53T7/p1759360239... | [
{
"path": "packages/next/src/lib/recursive-delete.ts",
"patch": "@@ -4,7 +4,30 @@ import { join, isAbsolute, dirname } from 'path'\n import isError from './is-error'\n import { wait } from './wait'\n \n-const unlinkPath = async (p: string, isDir = false, t = 1): Promise<void> => {\n+// We use an exponential... | 2025-10-02T20:08:46 |
golang/go | 765905e3bd13dcb048388890dba2ea47f6e58711 | 2ee4b31242e426df757aa09450b744e0af8cb08d | debug/elf: don't panic if symtab too small
No test case because the problem can only happen for invalid data.
Let the fuzzer find cases like this.
For #47653
Fixes #75130
Change-Id: Ie6015564bb98334377383bbc16d79119dc4e36f9
Reviewed-on: https://go-review.googlesource.com/c/go/+/698855
Reviewed-by: Tobias Klauser <to... | [
{
"path": "src/debug/elf/file.go",
"patch": "@@ -692,6 +692,9 @@ func (f *File) getSymbols64(typ SectionType) ([]Symbol, []byte, error) {\n \tif len(data)%Sym64Size != 0 {\n \t\treturn nil, nil, errors.New(\"length of symbol section is not a multiple of Sym64Size\")\n \t}\n+\tif len(data) == 0 {\n+\t\tretur... | 2025-08-24T20:17:56 |
nodejs/node | f19ae1417a48bf0924b3182578b7a22ecf726f97 | 7a4e9e62daca3419eb35d780451c33c9a75109db | src: add check for Bignum in GroupOrderSize
I think it's missed, cause in this file we have example of checking
result of BignumPointer::new
Refs: https://github.com/nodejs/node/issues/56692
PR-URL: https://github.com/nodejs/node/pull/56702
Fixes: https://github.com/nodejs/node/issues/56692
Reviewed-By: James M Snell... | [
{
"path": "src/crypto/crypto_ec.cc",
"patch": "@@ -918,6 +918,7 @@ size_t GroupOrderSize(const EVPKeyPointer& key) {\n const EC_KEY* ec = key;\n CHECK_NOT_NULL(ec);\n auto order = BignumPointer::New();\n+ CHECK(order);\n CHECK(EC_GROUP_get_order(ECKeyPointer::GetGroup(ec), order.get(), nullptr));\n... | 2025-01-29T15:21:30 |
facebook/react | 2883d28b2d6b62f8a887364662dac35848053476 | 417e93ca193e3a5d5a09ecef38be0862f8e90126 | [ci] Unfork runtime_commit_artifacts
Promotes v2 to the primary workflow file so that we don't double write
to the protected branches.
Note: this may break DiffTrain temporarily, I will fix forward if so
ghstack-source-id: f6505a72f2edcf73aadf827d3a41e34d2a3227ba
Pull Request resolved: https://github.com/facebook/re... | [
{
"path": ".github/workflows/runtime_commit_artifacts.yml",
"patch": "@@ -1,8 +1,11 @@\n-name: (Runtime) Commit Artifacts for Meta WWW and fbsource\n+name: (Runtime) Commit Artifacts for Meta WWW and fbsource V2\n \n on:\n- push:\n- branches: [main, meta-www, meta-fbsource]\n+ workflow_run:\n+ workf... | 2024-07-26T15:24:11 |
electron/electron | 003c32331d008e9d0707b6e6a8084615aa50de20 | 18abeb3add82eac62c72c39db2b4b87080bc69fb | chore: add/fix interface comments for sections of methods (#42566) | [
{
"path": "shell/app/electron_main_delegate.h",
"patch": "@@ -30,10 +30,9 @@ class ElectronMainDelegate : public content::ContentMainDelegate {\n ElectronMainDelegate(const ElectronMainDelegate&) = delete;\n ElectronMainDelegate& operator=(const ElectronMainDelegate&) = delete;\n \n- base::StringPiece ... | 2024-06-20T08:49:07 |
vercel/next.js | 047e641442a6043294fecc65b857470e387db0ea | 90e580b2c8922d1bcc07e2f658b7845c37c359e5 | [segment cache]: fix trailingSlash handling with output: export (#84465)
When `output: export`, `experimental.clientSegmentCache`, and
`trailingSlash: true` were all enabled, clicking links would update the
URL but fail to render the page content. The issue was in how segment
cache URLs were being constructed for stat... | [
{
"path": "packages/next/src/client/components/segment-cache-impl/cache.ts",
"patch": "@@ -2203,7 +2203,7 @@ function addSegmentPathToUrlInOutputExportMode(\n // path. Instead, we append it to the end of the pathname.\n const staticUrl = new URL(url)\n const routeDir = staticUrl.pathname.endsWit... | 2025-10-02T18:25:11 |
golang/go | 2ee4b31242e426df757aa09450b744e0af8cb08d | b21867b1a2a8e276257e3cb81f4a1dc7e8f9e2cd | net/http: Ensure that CONNECT proxied requests respect MaxResponseHeaderBytes
Currently, CONNECT proxied requests use an unlimited Reader. As a
result, a malicious or misbehaving proxy server can send an unlimited
number of bytes to a client; causing the client to indefinitely receive bytes
until it runs out of memory... | [
{
"path": "src/net/http/transport.go",
"patch": "@@ -325,6 +325,13 @@ func (t *Transport) readBufferSize() int {\n \treturn 4 << 10\n }\n \n+func (t *Transport) maxHeaderResponseSize() int64 {\n+\tif t.MaxResponseHeaderBytes > 0 {\n+\t\treturn t.MaxResponseHeaderBytes\n+\t}\n+\treturn 10 << 20 // conservati... | 2025-08-25T13:07:25 |
nodejs/node | 0edeafd73dd1c02c88b36282c1308901148d9d0e | 671d058689b6151abdd78af5efda87ff79d2713e | inspector: fix StringUtil::CharacterCount for unicodes
`StringUtil::CharacterCount` should return the length of underlying
representation storage of a protocol string.
`StringUtil::CharacterCount` is only used in DictionaryValue
serialization. Only `Network.Headers` is an object type, represented
with DictionaryValue... | [
{
"path": "Makefile",
"patch": "@@ -1474,6 +1474,8 @@ LINT_CPP_FILES = $(filter-out $(LINT_CPP_EXCLUDE), $(wildcard \\\n \tsrc/*/*.h \\\n \ttest/addons/*/*.cc \\\n \ttest/addons/*/*.h \\\n+\ttest/cctest/*/*.cc \\\n+\ttest/cctest/*/*.h \\\n \ttest/cctest/*.cc \\\n \ttest/cctest/*.h \\\n \ttest/embedding/*.cc... | 2025-01-29T14:58:25 |
facebook/react | 7f217d1d88d3b628d97a714ce1573526080af47d | 27d5dba8846c86858f72cf4c5b823aa3b92fcb0e | [Fiber] use srcset to trigger load even on img mount (#30351)
In https://github.com/facebook/react/pull/23316 we fixed a bug where
onload events were missed if they happened too early. This update adds
support for srcset to retrigger the load event. Firefox unfortunately
does not trigger a load even when you assign... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -692,8 +692,19 @@ export function commitMount(\n }\n return;\n case 'img': {\n+ // The technique here is to assign the src or srcSet property to cause the browser\n+ // to issue a new load event... | 2024-07-25T22:46:45 |
electron/electron | dad6e130f500bbf478176211f3e1c012b082ea2b | 8e8ea3ee8b0f45e8b28db3bb9eb77dcae0b37b1e | build: remove fs-extra devdep (#42533)
* build: remove fs-extra dependency from script/gen-filenames.ts
* build: remove fs-extra dependency from script/spec-runner.js
* build: remove fs-extra dependency from script/gn-asar.js
* build: remove fs-extra dependency from spec/api-autoupdater-darwin-spec.ts
* bu... | [
{
"path": "package.json",
"patch": "@@ -19,7 +19,6 @@\n \"@types/chai-as-promised\": \"^7.1.3\",\n \"@types/dirty-chai\": \"^2.0.2\",\n \"@types/express\": \"^4.17.13\",\n- \"@types/fs-extra\": \"^9.0.1\",\n \"@types/minimist\": \"^1.2.0\",\n \"@types/mocha\": \"^7.0.2\",\n \"@typ... | 2024-06-19T14:10:16 |
golang/go | b21867b1a2a8e276257e3cb81f4a1dc7e8f9e2cd | d19e377f6ea3b84e94d309894419f2995e7b56bd | net/http: require exact match for CrossSiteProtection bypass patterns
Fixes #75054
Fixes CVE-2025-47910
Change-Id: I6a6a696440c45c450d2cd681f418b01aa0422a60
Reviewed-on: https://go-review.googlesource.com/c/go/+/699275
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-... | [
{
"path": "src/net/http/csrf.go",
"patch": "@@ -77,13 +77,21 @@ func (c *CrossOriginProtection) AddTrustedOrigin(origin string) error {\n \treturn nil\n }\n \n-var noopHandler = HandlerFunc(func(w ResponseWriter, r *Request) {})\n+type noopHandler struct{}\n+\n+func (noopHandler) ServeHTTP(ResponseWriter, *... | 2025-08-26T20:52:39 |
vercel/next.js | dbbda2fea3fe44003e946db9ddc845871aa36d0b | c9c628561131bac0ec3820292fb679b768683ebd | [Cache Components] Fix caching in `generateMetadata`/`generateViewport` (#84228)
When using `'use cache'` in `generateMetadata` or `generateViewport`,
the caching did not work correctly, because we didn't apply the same
special handling for the `params` and `searchParams` props that we do
for layout and page component... | [
{
"path": "packages/next/src/lib/client-and-server-references.ts",
"patch": "@@ -1,4 +1,7 @@\n-import { extractInfoFromServerReferenceId } from '../shared/lib/server-reference-info'\n+import {\n+ extractInfoFromServerReferenceId,\n+ type ServerReferenceInfo,\n+} from '../shared/lib/server-reference-info'\... | 2025-10-02T15:33:11 |
rust-lang/rust | 55225173f206c0b49f008066afd2cf4625bdacf1 | dcb8800b2d15ebecea4baf56a14f0b9f4c3bf9a7 | Fix `infinite_loop` wrong suggestion inside conditional branches | [
{
"path": "clippy_lints/src/loops/infinite_loop.rs",
"patch": "@@ -1,5 +1,5 @@\n use clippy_utils::diagnostics::span_lint_and_then;\n-use clippy_utils::{fn_def_id, is_from_proc_macro, is_lint_allowed};\n+use clippy_utils::{RequiresSemi, fn_def_id, is_from_proc_macro, is_lint_allowed, is_never_expr};\n use h... | 2026-02-23T03:54:00 |
facebook/react | fe225e3a1fc3aefc97d5bc535aeae8ebae0666fb | 0a76aecbfa3d493c6b97998d0444f6505f5e5365 | [ci] Add devtools regression workflow
More or less a straight copy from the circleci config. I spotted some
inefficiencies but will fix those later to make reviewing this easier.
ghstack-source-id: cb3456c602bf0bd3cb6ef5862ecac6b8d6e99e0b
Pull Request resolved: https://github.com/facebook/react/pull/30406 | [
{
"path": ".github/workflows/devtools_regression_tests.yml",
"patch": "@@ -0,0 +1,171 @@\n+name: (DevTools) Regression Tests\n+\n+on:\n+ schedule:\n+ - cron: 0 0 * * *\n+ workflow_dispatch:\n+ inputs:\n+ prerelease_commit_sha:\n+ required: false\n+\n+env:\n+ TZ: /usr/share/zoneinfo/Amer... | 2024-07-25T21:20:16 |
nodejs/node | f2001e3befef1bb0e469589ab03628d19b4134d8 | b185d12a7e3e58119e5c61be534ff7fff13d8917 | deps: update amaro to 0.3.1
PR-URL: https://github.com/nodejs/node/pull/56785
Fixes: https://github.com/nodejs/node/issues/56597
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "deps/amaro/dist/package.json",
"patch": "@@ -4,7 +4,7 @@\n \"강동윤 <kdy1997.dev@gmail.com>\"\n ],\n \"description\": \"wasm module for swc\",\n- \"version\": \"1.10.7\",\n+ \"version\": \"1.10.11\",\n \"license\": \"Apache-2.0\",\n \"repository\": {\n \"type\": \"git\",",
"add... | 2025-01-29T13:50:28 |
electron/electron | 8e8ea3ee8b0f45e8b28db3bb9eb77dcae0b37b1e | 6d2c72b14eb7798c47cee5a254aeba2615a2d291 | fix: MessagePort closing unexpectedly with non-cloneable objects (#42535)
* fix: MessagePort closing unexpectedly with non-cloneable objects
* fix: handle serialization failure in parentPort | [
{
"path": "shell/browser/api/message_port.cc",
"patch": "@@ -76,8 +76,11 @@ void MessagePort::PostMessage(gin::Arguments* args) {\n return;\n }\n \n- electron::SerializeV8Value(args->isolate(), message_value,\n- &transferable_message);\n+ if (!electron::SerializeV8Value(a... | 2024-06-19T09:27:07 |
golang/go | 49a2f3ed871c044eb093b16c09202b7dcd875878 | afc51ed007ad814fc11273f39055aeea71172557 | net: allow zero value destination address in WriteMsgUDPAddrPort
The existing address validity checks already cover both connected and
non-connected sockets. Pass a nil sockaddr just like WriteMsgUDP, when
the address is zero value.
TestWriteToUDP is extended to cover the netip APIs.
Fixes #74841
Change-Id: I2708e7... | [
{
"path": "src/net/ipsock_posix.go",
"patch": "@@ -260,9 +260,6 @@ func addrPortToSockaddrInet6(ap netip.AddrPort) (syscall.SockaddrInet6, error) {\n \t// to an IPv4-mapped IPv6 address.\n \t// The error message is kept consistent with ipToSockaddrInet6.\n \taddr := ap.Addr()\n-\tif !addr.IsValid() {\n-\t\t... | 2025-08-01T16:42:27 |
vercel/next.js | c9c628561131bac0ec3820292fb679b768683ebd | c4e1f61baf986b8fa8f381f191067a5d7491bb64 | [ci]: split clientSegmentCache test runners off from experimental (#84440)
We are preparing to enable `clientSegmentCache` by default on canary. To
prepare, this splits it into a separate CI runner and adds a failing
test manifest so we can incrementally migrate / fix failing tests before
stable release. | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -992,6 +992,73 @@ jobs:\n stepName: 'test-experimental-prod-${{ matrix.group }}'\n secrets: inherit\n \n+ test-client-segment-cache-integration:\n+ name: test clientSegmentCache integration\n+ needs: ['optimize-ci', 'changes', '... | 2025-10-02T15:27:26 |
facebook/react | c5fa460784c41a2e09e9ed1c4468f4f089e2a78b | e8df0cf9f7c7f641192f19841db9bf34b6a0abf7 | [compiler] Add tests for incorrect global mutation detection
If a function expression that mutates a global is passed as a prop,
we don't throw an error as we assume it's not called in render.
But if this function expression is captured in an object and passed down
as prop, we throw an error.
ghstack-source-id: 74ca... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.object-capture-global-mutation.expect.md",
"patch": "@@ -0,0 +1,33 @@\n+\n+## Input\n+\n+```javascript\n+function Foo() {\n+ const x = () => {\n+ window.href = 'foo';\n+ };\n+ const y = {x};\n+ return <Bar ... | 2024-07-25T13:06:30 |
rust-lang/rust | a5789d0a028b451f4bf85769f2acca86fb7e95e4 | 859951e3c7c9d0322c39bad49221937455bdffcd | Fix ICE in `try_to_raw_bytes` when array elements have mismatched scalar
sizes | [
{
"path": "compiler/rustc_middle/src/ty/consts/valtree.rs",
"patch": "@@ -136,19 +136,24 @@ impl<'tcx> Value<'tcx> {\n ty::Ref(_, inner_ty, _) => match inner_ty.kind() {\n // `&str` can be interpreted as raw bytes\n ty::Str => {}\n- // `&[u8]` can b... | 2026-02-18T10:33:49 |
nodejs/node | e46f2c10392f95ce2d700a7728c693866f0e2ca3 | a7f8b23642fffa6fb81322e38e6cbae806934fcb | tools: fix license-builder for inspector_protocol
Refs: https://github.com/nodejs/node/pull/56649
PR-URL: https://github.com/nodejs/node/pull/56814
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "tools/license-builder.sh",
"patch": "@@ -99,8 +99,8 @@ addlicense \"npm\" \"deps/npm\" \"$licenseText\"\n # Build tools\n licenseText=\"$(cat \"${rootdir}/tools/gyp/LICENSE\")\"\n addlicense \"GYP\" \"tools/gyp\" \"$licenseText\"\n-licenseText=\"$(cat \"${rootdir}/tools/inspector_protocol/LICENSE... | 2025-01-29T13:33:55 |
electron/electron | 980e884fa5298c54ee65edcab0bdaa8a3b96c5aa | 71338140a415441735376481e3fe6be3b5c27985 | build: remove klaw dependency (#42529)
* refactor: remove klaw dependency
Node 20 added recursive readdir() so klaw is not needed
* fixup! refactor: remove klaw dependency
findMatchingFiles returns a Promise<string[]> | [
{
"path": "package.json",
"patch": "@@ -20,7 +20,6 @@\n \"@types/dirty-chai\": \"^2.0.2\",\n \"@types/express\": \"^4.17.13\",\n \"@types/fs-extra\": \"^9.0.1\",\n- \"@types/klaw\": \"^3.0.1\",\n \"@types/minimist\": \"^1.2.0\",\n \"@types/mocha\": \"^7.0.2\",\n \"@types/node\": \... | 2024-06-18T22:54:26 |
golang/go | fa18c547cd891e526d2e01cfbc17961de45c31a5 | bfd130db02336a174dab781185be369f089373ba | syscall: sort Windows env block in StartProcess
Fixes #29530
Change-Id: Ia28c78274b9288bfa5de9ccb142a452d291a5b66
Reviewed-on: https://go-review.googlesource.com/c/go/+/694435
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-pr... | [
{
"path": "src/syscall/exec_windows.go",
"patch": "@@ -9,6 +9,7 @@ package syscall\n import (\n \t\"internal/bytealg\"\n \t\"runtime\"\n+\t\"slices\"\n \t\"sync\"\n \t\"unicode/utf16\"\n \t\"unsafe\"\n@@ -113,6 +114,49 @@ func makeCmdLine(args []string) string {\n \treturn string(b)\n }\n \n+func envSorted(... | 2025-08-08T19:44:42 |
facebook/react | e8df0cf9f7c7f641192f19841db9bf34b6a0abf7 | 66968535c6e997405a1b1e6e491a48e25843d95f | Switch to binding the console with badging instead of calling it directly (#30461)
This is a major nit but this avoids an extra stack frame when we're
replaying logs.
Normally the `printToConsole` frame doesn't show up because it'd be
ignore listed.
<img width="421" alt="Screenshot 2024-07-25 at 11 49 39 AM"
... | [
{
"path": "packages/react-client/src/ReactClientConsoleConfigBrowser.js",
"patch": "@@ -20,21 +20,22 @@ const badgeStyle =\n const resetStyle = '';\n const pad = ' ';\n \n-export function printToConsole(\n+const bind = Function.prototype.bind;\n+\n+export function bindToConsole(\n methodName: string,\n ... | 2024-07-25T16:32:16 |
vercel/next.js | 9ba29b4125bf368f92d36b34a5a34aa8dce0a8ce | 2330e144ff88fe557b24a9320770ad808041d99f | Revert "Revert "Revert "Revert "Add a --webpack flag and default --turbopack to true (#84216)"""" (#84394)
Reverts vercel/next.js#84389
Attempt number 3, #84374 fixed propagation of bundler environment variables to vercel cli operations, to ensure the test configuration is respected.
[Deployment Tests Run 1](https:... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -502,6 +502,7 @@ jobs:\n \n export NEXT_TEST_MODE=start\n export NEXT_TEST_WASM=true\n+ export IS_WEBPACK_TEST=1\n node run-tests.js \\\n test/production/pages-dir/production/test/index.test.ts \\\n ... | 2025-10-02T00:04:17 |
nodejs/node | f4fba08d7b66e72b8a2a732197478f6cacbcd5d7 | adf8e97401bb3f1bb0b9a7e7c20f163deac301a2 | util: enforce shouldColorize in styleText array arg
PR-URL: https://github.com/nodejs/node/pull/56722
Fixes: https://github.com/nodejs/node/issues/56717
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com> | [
{
"path": "lib/util.js",
"patch": "@@ -119,6 +119,7 @@ function styleText(format, text, { validateStream = true, stream = process.stdou\n validateString(text, 'text');\n validateBoolean(validateStream, 'options.validateStream');\n \n+ let skipColorize;\n if (validateStream) {\n if (\n !isRe... | 2025-01-29T09:43:57 |
electron/electron | 86cf60c3f1e7c992b7bf4269fc1eb2919890625d | e217b063a5c7306a719fe630941c67829263655c | chore: improve error message on failed SMApp register/unregister (#42526) | [
{
"path": "shell/common/platform_util_mac.mm",
"patch": "@@ -111,7 +111,7 @@\n return \"The specified path doesn't exist or the helper tool at the \"\n \"specified path isn't valid\";\n default:\n- return \"Failed to register the login item\";\n+ return base::SysNS... | 2024-06-18T08:51:37 |
golang/go | bfd130db02336a174dab781185be369f089373ba | dae9e456ae6992b3c19a8c5039090ee9ca4d9b7d | internal/poll: don't use stack-allocated WSAMsg parameters
WSAMsg parameters should be passed to Windows as heap pointers instead
of stack pointers. This is because Windows might access the memory
after the syscall returned in case of a non-blocking operation (which
is the common case), and if the WSAMsg is on the sta... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -144,19 +144,47 @@ func (o *operation) ClearBufs() {\n \to.bufs = o.bufs[:0]\n }\n \n-func newWSAMsg(p []byte, oob []byte, flags int) windows.WSAMsg {\n-\treturn windows.WSAMsg{\n-\t\tBuffers: &syscall.WSABuf{\n-\t\t\tLen: uint32(len(p)),\n-\t\t\tBuf... | 2025-08-25T07:57:49 |
facebook/react | e5d22459ffd094ffd71c3e8857b62b3c6754c58d | 4b62400765b6412dd074526687ef447550b687d1 | [Flight] Include environment name both in the virtual URL and findSourceMapURL (#30452)
This way you can use the environment to know where to look for the
source map in case you have multiple server environments.
This becomes part of the public protocol since it's part of what you'll
parse out of the `rsc://React... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -232,7 +232,10 @@ Chunk.prototype.then = function <T>(\n }\n };\n \n-export type FindSourceMapURLCallback = (fileName: string) => null | string;\n+export type FindSourceMapURLCallback = (\n+ fileName: string,\n+ environmentName: st... | 2024-07-25T15:14:24 |
vercel/next.js | 7a49afcf8af542fed04946ce5632c27304bc3f8b | c201b3d38781af4567510ecc0a9986f2630439f2 | Turbopack: don't fail for parse errors in tracing (#84408)
Turns string decode and parse errors into warnings for extensionless files when in tracing mode.
A `require(dynamic)` inside of node_modules can easily end up pulling in extensionless files such as binary files, or `LICENSE`, which would fail the build. | [
{
"path": "crates/next-core/src/segment_config.rs",
"patch": "@@ -395,6 +395,7 @@ pub async fn parse_segment_config_from_source(\n EcmascriptModuleAssetType::Ecmascript\n },\n EcmascriptInputTransforms::empty(),\n+ false,\n )\n .await?;\n ",
"additions": 1,
... | 2025-10-01T21:20:55 |
nodejs/node | adf8e97401bb3f1bb0b9a7e7c20f163deac301a2 | e346323109b49fa6b9a4705f4e3816fc3a30c151 | test: mark `test-esm-loader-hooks-inspect-wait` flaky
`test-esm-loader-hooks-inspect-wait` is occasionally crashing on more
platforms than Linux. Mark the test as flaky on those platforms as well.
PR-URL: https://github.com/nodejs/node/pull/56803
Refs: https://github.com/nodejs/node/issues/54346
Reviewed-By: Colin Ih... | [
{
"path": "test/parallel/parallel.status",
"patch": "@@ -69,12 +69,20 @@ test-domain-no-error-handler-abort-on-uncaught-8: PASS, FLAKY\n test-domain-no-error-handler-abort-on-uncaught-9: PASS, FLAKY\n test-domain-throw-error-then-throw-from-uncaught-exception-handler: PASS, FLAKY\n test-domain-with-abort-on... | 2025-01-29T09:14:45 |
electron/electron | e217b063a5c7306a719fe630941c67829263655c | ae88e64c889945b3a521e69032c39781dd6b15fb | build: fix nan/node tests on GHA (#42548) | [
{
"path": ".github/workflows/pipeline-segment-node-nan-test.yml",
"patch": "@@ -53,7 +53,7 @@ jobs:\n uses: ./src/electron/.github/actions/install-build-tools\n - name: Init Build Tools\n run: |\n- e init --root=$(pwd) --out=Default ${{ inputs.gn-build-type }} --import ${{ inputs.gn-b... | 2024-06-18T08:49:39 |
golang/go | ea55ca360005c607fa54304d95c6821a6ce20e7c | 9ae2f1fb574e879402bc5bbac1d2b5d84acce6cb | runtime: skip doInit of plugins in runtime.main
Plugins may be loaded in the user's init code.
If loading fails, md.bad is true, and doInit should not be executed.
If loading succeeds, the plugin must run modulesinit and typelinksinit
before doInit. Here is not protected by pluginsMu, and in concurrent
scenarios it is... | [
{
"path": "src/cmd/cgo/internal/testplugin/plugin_test.go",
"patch": "@@ -422,3 +422,11 @@ func TestIssue67976(t *testing.T) {\n \tglobalSkip(t)\n \tgoCmd(t, \"build\", \"-buildmode=plugin\", \"-o\", \"issue67976.so\", \"./issue67976/plugin.go\")\n }\n+\n+func TestIssue75102(t *testing.T) {\n+\tglobalSkip(t... | 2025-08-20T13:33:42 |
facebook/react | e4b4aac2a01b53f8151ca85148873096368a7de2 | 76002254b7e3270da199eec1e6f9a0577b988a36 | Fix existing usage of names/type in build command (#30450)
https://github.com/facebook/react/pull/30422 broke existing build
shortcuts.
Revert the usage of `names` (`_`) and `type` args.
`yarn build-for-devtools` / `yarn build-for-devtools-dev` / `yarn
build-for-devtools-prod` should all work again.
Moved t... | [
{
"path": "scripts/rollup/build-all-release-channels.js",
"patch": "@@ -80,16 +80,12 @@ const argv = yargs.wrap(yargs.terminalWidth()).options({\n type: 'choices',\n choices: ['circleci', 'github'],\n },\n- bundle: {\n- describe: 'Build the given bundle type.',\n+ type: {\n+ describe: `Bui... | 2024-07-25T11:44:57 |
vercel/next.js | bee4f0ee3f087dfe3b4a075b6607d8ca1e05e9c8 | afaf42b95c4425a9c95cb69136ef67b9ba412929 | Bump to swc v44 (#84420)
<!-- 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 Documentati... | [
{
"path": "Cargo.lock",
"patch": "@@ -597,9 +597,9 @@ dependencies = [\n \n [[package]]\n name = \"binding_macros\"\n-version = \"40.0.0\"\n+version = \"42.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"60c146e22990eb01e6675c558e17cffbe44bf6061ab4f3c2f14c6f9fd9bade... | 2025-10-01T19:59:11 |
electron/electron | a0a13ad623d2f0beae8b2574a22cf012100e6b6b | b35adaee2d521af5e34a6fea7897ac53c3752799 | build: fix macOS tests on GHA (#42524)
* build: use --frozen-lockfile
* build: don't include src/electron in src artifacts
* Use mac intel runner for mac-x64 tests
* test: debug mac tests not exiting
* skip navigator.serial tests on GHA
* TCC magic
* Fix release notes tests needing ELECTRON_GITHUB_TO... | [
{
"path": ".github/actions/checkout/action.yml",
"patch": "@@ -16,7 +16,7 @@ runs:\n shell: bash\n run: |\n cd src/electron\n- node script/yarn install\n+ node script/yarn install --frozen-lockfile\n - name: Get Depot Tools\n shell: bash\n run: |",
"additions": 1,
"... | 2024-06-17T23:33:44 |
nodejs/node | e6f1ddf33fc9a04f4ea88cf58819459b7634c278 | f2d274753a2aeb6f185aaea11abb0b051a3ceea1 | build: add build option suppress_all_error_on_warn
Add an option to suppress cases where warnings are on by
default
Signed-off-by: Michael Dawson <midawson@redhat.com>
PR-URL: https://github.com/nodejs/node/pull/56647
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "common.gypi",
"patch": "@@ -27,6 +27,7 @@\n \n 'clang%': 0,\n 'error_on_warn%': 'false',\n+ 'suppress_all_error_on_warn%': 'false',\n \n 'openssl_product': '<(STATIC_LIB_PREFIX)openssl<(STATIC_LIB_SUFFIX)',\n 'openssl_no_asm%': 0,",
"additions": 1,
"deletions": 0,
"... | 2025-01-17T19:54:00 |
golang/go | bbd5342a62baa2fa6b42d444b05717c2563d0764 | ed7f804775725149088a71108efd0b20ef9f206f | net: fix cgoResSearch
CL 457439 mistakenly redeclared size inside the for loop, causing
cgoResSearch to always fail and fall back to goLookupCNAME.
Change-Id: I3e142d34287388284a8998ac13761b1e0c2911a5
Reviewed-on: https://go-review.googlesource.com/c/go/+/696895
Reviewed-by: Damien Neil <dneil@google.com>
Auto-Submit... | [
{
"path": "src/net/cgo_unix.go",
"patch": "@@ -351,7 +351,7 @@ func cgoResSearch(hostname string, rtype, class int) ([]dnsmessage.Resource, err\n \n \tvar size int\n \tfor {\n-\t\tsize := _C_res_nsearch(state, (*_C_char)(unsafe.Pointer(s)), class, rtype, buf, bufSize)\n+\t\tsize = _C_res_nsearch(state, (*_C... | 2025-08-18T08:55:40 |
vercel/next.js | b00043645367450df1bdc9bc4bb94e19916e52e1 | 79706a33e85986fef33a60c1701373f60008746b | Docs/project structure polish (#84386)
PR title - docs: polish Project Structure page (grammar, consistency,
clarity)
PR description -
1) Fixes an Oxford comma in the routing files description for
consistency.
2) Normalizes heading capitalization to sentence case.
3) Corrects “Files conventions” → “File conventions”.... | [
{
"path": "docs/01-app/01-getting-started/02-project-structure.mdx",
"patch": "@@ -52,7 +52,7 @@ Top-level files are used to configure your application, manage dependencies, run\n \n ### Routing Files\n \n-Add `page` to expose a route, `layout` for shared UI such as header, nav, or footer, `loading` for ske... | 2025-10-01T19:28:20 |
facebook/react | 76002254b7e3270da199eec1e6f9a0577b988a36 | 933b737f64808559272c822b80699f4db84773a4 | Fix resolving of references to deduped props in lazy elements (#30441)
When a model references a deduped object of a blocked element that has
subsequently been turned into a lazy element, we need to wait for the
lazy element's chunk to resolve before resolving the reference.
Without the fix, the new test failed w... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -827,7 +827,7 @@ function getChunk(response: Response, id: number): SomeChunk<any> {\n }\n \n function waitForReference<T>(\n- referencedChunk: PendingChunk<T> | BlockedChunk<T>,\n+ referencedChunk: SomeChunk<T>,\n parentObject: Ob... | 2024-07-24T23:34:41 |
electron/electron | b35adaee2d521af5e34a6fea7897ac53c3752799 | 1a4d58a9fba2f721a1e6dff3d76ca0d4cfa66286 | build: fix clang format location helper (#42527) | [
{
"path": "script/lib/util.py",
"patch": "@@ -4,6 +4,7 @@\n import errno\n import json\n import os\n+import platform\n import shutil\n import subprocess\n import sys\n@@ -184,13 +185,16 @@ def get_electron_exec():\n \n def get_buildtools_executable(name):\n buildtools = os.path.realpath(os.path.join(ELECT... | 2024-06-17T17:47:59 |
golang/go | ed7f804775725149088a71108efd0b20ef9f206f | a21249436b6e1fd47356361d53dc053bbc074f90 | os: set full name for Roots created with Root.OpenRoot
Set the Name for a Root created within a Root to be the
concatenation of the parent's path and the name used to open the child.
This matches the behavior for files opened within a Root
with Root.Open.
Fixes #73868
Change-Id: Idf4021602ac25556721b7ef6924dec652c7... | [
{
"path": "src/os/root_test.go",
"patch": "@@ -1919,3 +1919,36 @@ func TestRootWriteReadFile(t *testing.T) {\n \t\tt.Fatalf(\"root.ReadFile(%q) = %q, %v; want %q, nil\", name, got, err, want)\n \t}\n }\n+\n+func TestRootName(t *testing.T) {\n+\tdir := t.TempDir()\n+\troot, err := os.OpenRoot(dir)\n+\tif err... | 2025-08-22T17:47:01 |
vercel/next.js | 8e93b202e0ef7d3215f1a6b9a7b253bc611ebed0 | 962c2c37c2da4666358afb09322cc39ae39aee8f | Development: Skip route matching when there is an existing match (#84227)
## What?
Adds a fast path when there is an existing match already from matching
earlier in the request lifecycle. This works for the majority of cases
except for Parallel Routes as it will end up finding the wrong bundle
path. That is fundament... | [
{
"path": "packages/next/src/server/base-server.ts",
"patch": "@@ -2558,11 +2558,30 @@ export default abstract class Server<\n i18n: this.i18nProvider?.fromRequest(req, pathname),\n }\n \n+ const existingMatch = getRequestMeta(ctx.req, 'match')\n+\n+ let fastPath = true\n+ // when a speci... | 2025-10-01T18:02:28 |
facebook/react | 91e4f0712ec6da30b01054cab439d985798a9ebb | c0b76a68318687bf5260d623c7b70a8156be21d9 | [compiler] Repro for outlining bug in funcexprs
I discovered this compiler crash while trying to do an internal sync of
the compiler. Any kind of outlining appears to crash the babel plugin
when the component is a function expression.
ghstack-source-id: 4f717674af91d4d4b730e64cbd7a144b9faab13e
Pull Request resolved: ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.bug-outlining-in-func-expr.expect.md",
"patch": "@@ -0,0 +1,24 @@\n+\n+## Input\n+\n+```javascript\n+const Component2 = props => {\n+ return (\n+ <ul>\n+ {props.items.map(item => (\n+ <li key={item... | 2024-07-24T19:57:03 |
golang/go | f2db0dca0b0399c08319d22cbcbfa83be2bb781a | d86ec924993bfb824dfb6f618a46ea205fdbf261 | net/http/httptest: redirect example.com requests to server
The default server cert used by NewServer already includes example.com
in its DNSNames, and by default, the client's RootCA configuration
means it won't trust a response from the real example.com.
Fixes #31054
Change-Id: I0686977e5ffe2c2f22f3fc09a47ee8ecc447... | [
{
"path": "doc/next/6-stdlib/99-minor/net/http/httptest/31054.md",
"patch": "@@ -0,0 +1,2 @@\n+The HTTP client returned by [Server.Client] will now redirect requests for\n+`example.com` and any subdomains to the server being tested.",
"additions": 2,
"deletions": 0,
"language": "Markdown"
},
... | 2025-04-19T12:50:35 |
facebook/react | ab2135c708b4da306c4c6c9958ce704bc14af460 | e902c45caf7ca67810d3e53748a549bdcc36063b | [BE] enable prettier for flow fixtures (#30426)
Since switching to `hermes-parser`, we can parse all flow syntax and no
longer need to exclude these fixtures from prettier. | [
{
"path": ".prettierignore",
"patch": "@@ -18,7 +18,6 @@ packages/react-devtools-timeline/static\n # react compiler\n compiler/**/dist\n compiler/**/__tests__/fixtures/**/*.expect.md\n-compiler/**/__tests__/fixtures/**/*.flow.js\n compiler/**/.next\n \n # contains invalid graphql`...` which results in a pro... | 2024-07-24T14:59:40 |
vercel/next.js | 962c2c37c2da4666358afb09322cc39ae39aee8f | f230aa3b611ca0ba169792c7859eba9965b2c0da | fix: next rspack binding NextExternalsPlugin (#84303)
1. Added functionality to change the package name in the rspack release
CI.
2. Fixed a bug in the get_resolve method of the NextExternalsPlugin.
3. Prepared the @next/rspack-core for the 1.0.0 version release. | [
{
"path": ".github/workflows/release-next-rspack.yml",
"patch": "@@ -8,6 +8,11 @@ on:\n required: false\n default: false\n type: boolean\n+ npm-name:\n+ description: 'NPM package name to publish'\n+ required: false\n+ default: '@next/rspack-core'\n+ t... | 2025-10-01T17:31:16 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.