repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
electron/electron | 7cdf1a01b800f6270c1fce1b7b45522e0e0ed79b | a720c8daf6a294871be6b8818150d57979f88b40 | docs: fix win.setContentView() arg type (#44478)
fix: setContentView type | [
{
"path": "docs/api/base-window.md",
"patch": "@@ -506,7 +506,7 @@ labeled as such.\n \n #### `win.setContentView(view)`\n \n-* `view` [`View`](view.md)\n+* `view` [View](view.md)\n \n Sets the content view of the window.\n ",
"additions": 1,
"deletions": 1,
"language": "Markdown"
}
] | 2024-10-30T19:56:10 |
rust-lang/rust | 1ecc9d7e04e9bb6a3bd16384d4f5e4a098d37e24 | 13d91b7ccecdd98449b7cc9b0572a59de1eeb0bd | Fix ICE in `match_same_arms`
The wrong `TypeckResults` was used in the fallback equality function
passed by the `match_same_arms` and `filter_map` lints. Previously,
those fallback functions had no way of using the proper `TypeckResults`.
Those (one per expression being compared) are now passed to the
registered fallb... | [
{
"path": "clippy_lints/src/matches/match_same_arms.rs",
"patch": "@@ -12,7 +12,7 @@ use rustc_hir::def_id::DefId;\n use rustc_hir::{Arm, Expr, HirId, HirIdMap, HirIdMapEntry, HirIdSet, Pat, PatExpr, PatExprKind, PatKind, RangeEnd};\n use rustc_lint::builtin::NON_EXHAUSTIVE_OMITTED_PATTERNS;\n use rustc_lin... | 2026-03-07T19:01:38 |
golang/go | 5368e7742971c8dbcb75a405eb2319e71fb1d0c7 | c53cb642deea152e28281133bc0053f5ec0ce358 | net/http: run TestRequestWriteTransport with fake time to avoid flakes
This test verifies whether or not we use the chunked encoding when
sending a request with a body like io.NopCloser(strings.NewReader("")).
This depends on whether the transport can read a single byte from the
request body within 200ms, which is fla... | [
{
"path": "src/net/http/requestwrite_test.go",
"patch": "@@ -15,6 +15,7 @@ import (\n \t\"strings\"\n \t\"testing\"\n \t\"testing/iotest\"\n+\t\"testing/synctest\"\n \t\"time\"\n )\n \n@@ -667,6 +668,13 @@ func TestRequestWrite(t *testing.T) {\n func TestRequestWriteTransport(t *testing.T) {\n \tt.Parallel(... | 2025-10-09T22:25:30 |
vercel/next.js | 2f86fbab810d3dd6ceb95bc5dea5b96525fe03b9 | e989fcb8b5e756162b1b4704f61205b9a3af4237 | [runtime prefetching]: fix runtime prefetching when deployed (#85595)
Runtime prefetching relies on the presence of headers to determine
caching behavior: `x-nextjs-postponed` indicates if the response was
partial (so it knows if it should trigger a dynamic request to retrieve
the missing data), and `x-nextjs-stale-ti... | [
{
"path": "packages/next/src/client/components/segment-cache/cache.ts",
"patch": "@@ -1654,7 +1654,7 @@ export async function fetchSegmentPrefetchesUsingDynamicRequest(\n const isResponsePartial =\n fetchStrategy === FetchStrategy.PPRRuntime\n ? // A runtime prefetch may have holes.\n- ... | 2025-11-05T02:44:59 |
facebook/react | f6dcce5199a3b9480a47d9feda8e00d8d9a0905d | dff50825c6ca4c04c79fd7fe2d2d345ea5e29f87 | [compiler][ez] Add entrypoints to ssa fixtures
Adds evaluator support for a few compiler test fixtures
ghstack-source-id: 202654992a9876cea59885b54a338c908e369ddb
Pull Request resolved: https://github.com/facebook/react/pull/30948 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/alias-capture-in-method-receiver-and-mutate.expect.md",
"patch": "@@ -57,4 +57,4 @@ export const FIXTURE_ENTRYPOINT = {\n ```\n \n ### Eval output\n-(kind: ok) [[{\"a\":0,\"b\":\"value1\",\"c\":true}],\"[[ cyclic ... | 2024-09-12T20:59:39 |
electron/electron | de04fc3b902405491939045161743f22e9fbb712 | 7ff7160135e52f419f05cfbaf0b6be5cb36f4221 | fix: update shell.openExternal to correctly focus on external window (#44408)
* fix: Use openURL:configuration:completionHandler instead of openUrl
* test: add a test
* fix: add dispatch_async to replace GetUIThreadTaskRunner
* refactor: remove unused import
* fix: update to use BindPostTaskToCurrentDefaul... | [
{
"path": "shell/common/platform_util_mac.mm",
"patch": "@@ -19,6 +19,7 @@\n #include \"base/logging.h\"\n #include \"base/mac/scoped_aedesc.h\"\n #include \"base/strings/sys_string_conversions.h\"\n+#include \"base/task/sequenced_task_runner.h\"\n #include \"base/task/thread_pool.h\"\n #include \"content/p... | 2024-10-29T22:10:10 |
golang/go | c53cb642deea152e28281133bc0053f5ec0ce358 | 954fdcc51a678a2b84edb29ef4c3743b318a6fd8 | internal/buildcfg: enable greenteagc experiment for loong64
The loong64 compiler bug has been resolved, so we can now
unconditionally enable the experiment on the architecture.
Updates #73581
Fixes #75776
Change-Id: I390f8a125d43ca64798ea5b6a408aaf7220fadbf
Reviewed-on: https://go-review.googlesource.com/c/go/+/7104... | [
{
"path": "src/internal/buildcfg/exp.go",
"patch": "@@ -78,18 +78,13 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {\n \t// things like .debug_addr (needed for DWARF 5).\n \tdwarf5Supported := (goos != \"darwin\" && goos != \"ios\" && goos != \"aix\")\n \n-\t// The compiler... | 2025-10-09T08:05:35 |
facebook/react | 473522093d3dd95582729d01cd5c0d15dcc9cd3b | bb6b86ed596399ddd8bf642404a9e68ae430a6ea | [Fizz] Add resumeAndPrerender to Static Rendering (#30950)
This is only in the same experimental exports as `resume`. Useful with
Postpone/Halt.
We already have `prerender()` to create a partial tree with postponed
state. We also have `resume()` to dynamically resume such a tree.
This lets you do a new prerend... | [
{
"path": "packages/react-dom/npm/static.browser.js",
"patch": "@@ -9,3 +9,4 @@ if (process.env.NODE_ENV === 'production') {\n \n exports.version = s.version;\n exports.prerender = s.prerender;\n+exports.resumeAndPrerender = s.resumeAndPrerender;",
"additions": 1,
"deletions": 0,
"language": "Ja... | 2024-09-12T14:51:01 |
nodejs/node | e272637d5e72b509c0f682c756c7edd92cdf1f7d | a6bc06fa06bad1e27a9c9e2c9a03fc1255f1375d | 2025-05-06, Version 24.0.0 (Current)
Semver-Major Commits:
assert,util:
* (SEMVER-MAJOR) Revert "assert,util: revert recursive breaking change (Ruben Bridgewater) https://github.com/nodejs/node/pull/57622
buffer:
* (SEMVER-MAJOR) move SlowBuffer to EOL (James M Snell) https://github.com/nodejs/node/pull/58008
*... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -2,6 +2,7 @@\n \n Select a Node.js version below to view the changelog history:\n \n+* [Node.js 24](doc/changelogs/CHANGELOG_V24.md) **Current**\n * [Node.js 23](doc/changelogs/CHANGELOG_V23.md) **Current**\n * [Node.js 22](doc/changelogs/CHANGELOG_V22.md) **Long Term ... | 2025-03-24T19:29:01 |
vercel/next.js | a13487fe770478923b93d823282367e55ea80cd0 | 18c9f02bed49f683b25be1b7344328837a98d423 | Turbopack: trace worker_threads worker entry (#85734)
Closes PACK-5688
Closes https://github.com/vercel/next.js/issues/84766
1. Trace `new require("worker_threads").Worker` calls
2. ignore syntax errors in all traced files
This does lead to a build error currently with cargo run --bin turbopack-nft -- --show-issue... | [
{
"path": "turbopack/crates/turbopack-core/src/reference_type.rs",
"patch": "@@ -290,6 +290,7 @@ pub enum WorkerReferenceSubType {\n WebWorker,\n SharedWorker,\n ServiceWorker,\n+ NodeWorker,\n Custom(u8),\n Undefined,\n }",
"additions": 1,
"deletions": 0,
"language": "Rus... | 2025-11-04T22:42:33 |
electron/electron | 7ff7160135e52f419f05cfbaf0b6be5cb36f4221 | 9fc94a162bed056daea0324ca878f33061484cb0 | docs: fix `win.getContentView(`) return type (#44430)
docs: fix win.getContentView() return type | [
{
"path": "docs/api/base-window.md",
"patch": "@@ -506,13 +506,13 @@ labeled as such.\n \n #### `win.setContentView(view)`\n \n-* `view` [View](view.md)\n+* `view` [`View`](view.md)\n \n Sets the content view of the window.\n \n #### `win.getContentView()`\n \n-Returns [View](view.md) - The content view of ... | 2024-10-29T20:41:44 |
facebook/react | bb6b86ed596399ddd8bf642404a9e68ae430a6ea | d6cb4e771341ff82489c00f4907990cb8a75696b | refactor[react-devtools]: initialize renderer interface early (#30946)
The current state is that `rendererInterface`, which contains all the
backend logic, like generating component stack or attaching errors to
fibers, or traversing the Fiber tree, ..., is only mounted after the
Frontend is created.
For browser ... | [
{
"path": "packages/react-devtools-extensions/src/background/dynamicallyInjectContentScripts.js",
"patch": "@@ -25,14 +25,6 @@ const contentScriptsToInject = [\n runAt: 'document_start',\n world: chrome.scripting.ExecutionWorld.MAIN,\n },\n- {\n- id: '@react-devtools/renderer',\n- js: ['bui... | 2024-09-12T12:59:29 |
golang/go | 954fdcc51a678a2b84edb29ef4c3743b318a6fd8 | 19a30ea3f250f8d6258f3e08aa3561f1193fdd38 | cmd/compile: declare no output register for loong64 LoweredAtomic{And,Or}32 ops
The ICE seen on loong64 while compiling the `(*gcWork).tryStealSpan`
function was due to an `LoweredAtomicAnd32` op (inlined from the
`(pMask).clear` implementation) being incorrectly assigned an output
register while it shouldn't have. Be... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go",
"patch": "@@ -143,6 +143,7 @@ func init() {\n \t\tgp2load = regInfo{inputs: []regMask{gpspsbg, gpg}, outputs: []regMask{gp}}\n \t\tgpstore = regInfo{inputs: []regMask{gpspsbg, gpg}}\n \t\tgpstore2 = regInfo{inputs: []regMask{gpspsbg, gpg, gpg... | 2025-10-09T07:52:02 |
nodejs/node | 6102159fa10eb153ed5de6a2f945f120be32cebd | 5f48fddd3a61502efc40bb218211ed71e17792e5 | test: fix watch tests not including completion messages
PR-URL: https://github.com/nodejs/node/pull/58183
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name> | [
{
"path": "test/sequential/test-watch-mode.mjs",
"patch": "@@ -810,14 +810,14 @@ process.on('message', (message) => {\n assert.strictEqual(stderr, '');\n assert.deepStrictEqual(stdout, [\n 'no --watch args present',\n- `Completed running ${inspect(file)}`,\n+ `Completed running ${ins... | 2025-05-06T02:59:41 |
electron/electron | 9fc94a162bed056daea0324ca878f33061484cb0 | 53458da01ef239a16fb9de80ccc04fc07a040ffa | build: fix python util verbose mode logic (#44431)
build: fix verbose mode logic | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -63,7 +63,7 @@ runs:\n run: |\n cd src\n electron/script/copy-debug-symbols.py --target-cpu=\"${{ inputs.target-arch }}\" --out-dir=out/Default/debug --compress\n- electron/script/strip-binaries.py --target-cpu=... | 2024-10-29T15:35:57 |
rust-lang/rust | c0cb69904ed34d43daa6e007849fc24e98b053cb | 80282b130679a654eaa22f028a908c51be53d436 | .mailmap: fix broken line with multiple emails
Split binarycat's entry into multiple lines, one for each extra email | [
{
"path": ".mailmap",
"patch": "@@ -83,7 +83,8 @@ Ben Sago <ogham@users.noreply.github.com> <ogham@bsago.me>\n Ben Striegel <ben.striegel@gmail.com>\n Benjamin Jackman <ben@jackman.biz>\n Benoît Cortier <benoit.cortier@fried-world.eu>\n-binarycat <binarycat@envs.net> lolbinarycat <dogedoge61+github@gmail.co... | 2026-03-07T00:58:19 |
facebook/react | 3dfd5d9efb8fb56c4f602915c0e38a84b0e956db | 63cefa2957bbf8c599643d8252f6b8221b399349 | refactor[RendererInterface]: expose onErrorOrWarning and getComponentStack (#30931)
Make `onErrorOrWarning` and `getComponentStack` part of
`rendererInterface`. By doing this, they will be available from the
global hook `rendererInterfaces` Map. This makes them available to be
used by Hook, which soon will be the o... | [
{
"path": "packages/react-devtools-shared/src/backend/console.js",
"patch": "@@ -7,7 +7,11 @@\n * @flow\n */\n \n-import type {ConsolePatchSettings} from './types';\n+import type {\n+ ConsolePatchSettings,\n+ OnErrorOrWarning,\n+ GetComponentStack,\n+} from './types';\n \n import {\n formatConsoleArg... | 2024-09-10T14:59:40 |
golang/go | 80f3bb5516bb12233a15167bc8ba9d39cca5b535 | 9db7e30bb42eed9912f5e7e9e3959f3b38879d5b | reflect: remove timeout in TestChanOfGC
This test has an arbitrary 5 second timeout, and this seems to fire on
Darwin with mayMoreStackMove enabled (which is slow). Just rely on the
regular test timeout instead of this arbitrary shorter timeout to
eliminate the possibility that the test is just too slow.
On my Linux ... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -6198,19 +6198,6 @@ func TestChanOfDir(t *testing.T) {\n }\n \n func TestChanOfGC(t *testing.T) {\n-\tdone := make(chan bool, 1)\n-\tgo func() {\n-\t\tselect {\n-\t\tcase <-done:\n-\t\tcase <-time.After(5 * time.Second):\n-\t\t\tpanic(\"deadlock in TestChanO... | 2025-10-09T21:13:59 |
nodejs/node | f275121b72916d0c0a8b017b7677ddd6e2573e46 | 4acb85403950320773352ab127bee9fc85818153 | doc: fix misaligned options in vm.compileFunction()
Current alignment mislead doc reader into thinking
`importModuleDynamically` is a separate positional param right next to
`options`, which is incorrect and need to be fixed.
This misalignment is introduced in a PR merged in Feb 2024.
I belive this doc fix applies t... | [
{
"path": "doc/api/vm.md",
"patch": "@@ -1044,13 +1044,13 @@ changes:\n * `contextExtensions` {Object\\[]} An array containing a collection of context\n extensions (objects wrapping the current scope) to be applied while\n compiling. **Default:** `[]`.\n-* `importModuleDynamically`\n- {Function|v... | 2025-05-05T18:50:50 |
electron/electron | 53458da01ef239a16fb9de80ccc04fc07a040ffa | dffe00b232010811f37f07d509c0f3a00d9f119e | docs: Fix `powerMonitor` docs for type generation of `speed-limit-change` (#44391)
Fix `powerMonitor` docs for type generation of `speed-limit-change` | [
{
"path": "docs/api/power-monitor.md",
"patch": "@@ -42,6 +42,8 @@ See https://developer.apple.com/library/archive/documentation/Performance/Concep\n \n ### Event: 'speed-limit-change' _macOS_ _Windows_\n \n+Returns:\n+\n * `limit` number - The operating system's advertised speed limit for CPUs, in percent.... | 2024-10-29T15:16:29 |
facebook/react | 63cefa2957bbf8c599643d8252f6b8221b399349 | d160aa0fbb1bd2d00ea8c771c551c9cb5b47f1e9 | [DevTools] Implement getComponentStack and onErrorOrWarning for replayed Flight logs (#30930)
This adds owner stacks to replayed Server Component logs in environments
that don't support native console.createTask.
<img width="521" alt="Screenshot 2024-09-09 at 8 55 21 PM"
src="https://github.com/user-attachments/a... | [
{
"path": "packages/react-devtools-shared/src/backend/flight/DevToolsComponentInfoStack.js",
"patch": "@@ -0,0 +1,55 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this sour... | 2024-09-10T14:37:29 |
golang/go | 9db7e30bb42eed9912f5e7e9e3959f3b38879d5b | 8d810286b3121b601480426159c04d178fa29166 | net/url: allow IP-literals with IPv4-mapped IPv6 addresses
The security fix we applied in CL709857 was overly broad. It applied
rules from RFC 2732, which disallowed IPv4-mapped IPv6 addresses, but
these were later allowed in RFC 3986, which is the canonical URI syntax
RFC.
Revert the portion of CL709857 which restri... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -689,13 +689,13 @@ func parseHost(host string) (string, error) {\n \n \t\t// Per RFC 3986, only a host identified by a valid\n \t\t// IPv6 address can be enclosed by square brackets.\n-\t\t// This excludes any IPv4 or IPv4-mapped addresses.\n+\t\t// This excludes... | 2025-10-09T00:13:12 |
nodejs/node | 4acb85403950320773352ab127bee9fc85818153 | c46b2b9da30628585900b53052aec509cb59036e | watch: fix watch args not being properly filtered
currently when --watch is used, the argv arguments that
the target script receives are filtered so that they don't
include watch related arguments, however the current
filtering logic is incorrect and it causes some watch values
to incorrectly pass the filtering, the c... | [
{
"path": "lib/internal/main/watch_mode.js",
"patch": "@@ -43,11 +43,26 @@ const argsWithoutWatchOptions = [];\n \n for (let i = 0; i < process.execArgv.length; i++) {\n const arg = process.execArgv[i];\n- if (StringPrototypeStartsWith(arg, '--watch')) {\n- i++;\n- const nextArg = process.execArgv[... | 2025-05-05T15:08:04 |
electron/electron | dffe00b232010811f37f07d509c0f3a00d9f119e | 39b24aed923a98559181ae6e0a64cda7c2cd91e7 | fix: -Wunsafe-buffer-usage warnings with argc, argv (#44366)
* refactor: move uv_setup_args() calls to startup
* refactor: call base::CommandLine::Init() before ContentMain()
* feat: add ElectronCommandLine::AsUtf8()
* refactor: call base::CommandLine::Init() before NodeMain()
* refactor: use ElectronComma... | [
{
"path": "BUILD.gn",
"patch": "@@ -865,6 +865,7 @@ if (is_mac) {\n \":electron_framework_resources\",\n \":electron_swiftshader_library\",\n \":electron_xibs\",\n+ \"//third_party/electron_node:node_lib\",\n ]\n if (!is_mas_build) {\n deps += [ \":electron_crashpad_help... | 2024-10-29T12:23:08 |
facebook/react | d160aa0fbb1bd2d00ea8c771c551c9cb5b47f1e9 | 6066b8e8e6f07721f4e092920d3e98787122f0fb | [DevTools] Use Unicode Atom Symbol instead of Atom Emoji (#30832)
This reverts #19603.
Before:
<img width="724" alt="Screenshot 2024-08-28 at 12 07 29 AM"
src="https://github.com/user-attachments/assets/0613088f-c013-4f1c-92c3-fbdae8c1f109">
After:
<img width="771" alt="Screenshot 2024-08-28 at 12 08 13 AM"
... | [
{
"path": "packages/react-devtools-extensions/src/main/index.js",
"patch": "@@ -185,7 +185,7 @@ function createComponentsPanel() {\n }\n \n chrome.devtools.panels.create(\n- __IS_CHROME__ || __IS_EDGE__ ? '⚛️ Components' : 'Components',\n+ __IS_CHROME__ || __IS_EDGE__ ? 'Components ⚛' : 'Component... | 2024-09-10T04:09:42 |
golang/go | 0e466a8d1d89e15e953c7d35bcd9e02d3c89f62b | 4837fbe4145cd47b43eed66fee9eed9c2b988316 | cmd/compile: modify float-to-[u]int so that amd64 and arm64 match
Eventual goal is that all the architectures agree, and are
sensible. The test will be build-tagged to exclude
not-yet-handled platforms.
This change also bisects the conversion change in case of bugs.
(`bisect -compile=convert ...`)
Change-Id: I98528... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -20,6 +20,7 @@ type DebugFlags struct {\n \tAppend int `help:\"print information about append compilation\"`\n \tCheckptr int `help:\"instrument unsafe pointer conversions\\n0: instrumentation disabled\\n1: co... | 2025-07-21T17:30:08 |
nodejs/node | c46b2b9da30628585900b53052aec509cb59036e | f75a1265a8eef5c2058be1fde6eefa4ca0b5990f | tools: exclude deps/v8/tools from CodeQL scans
This will remove three of the four "A parse error occurred" issues
during JavaScript CodeQL scans. (The fourth occurrence is in our code
base, although it might be a false positive. Someone can figure that one
out sooner or later, but we certainly can bypass scanning V8 t... | [
{
"path": ".github/codeql-config.yml",
"patch": "@@ -3,3 +3,4 @@ name: CodeQL config\n paths-ignore:\n - test\n - deps/v8/test\n+ - deps/v8/tools",
"additions": 1,
"deletions": 0,
"language": "YAML"
}
] | 2025-05-05T05:11:53 |
rust-lang/rust | 901cb4cf4006888dc69d95666886960c31e2c75a | b9123ccd6fec1ebc09fce90d3f909998b1e6845d | fix: implement ir_print debug for next-solver predicate types
seven IrPrint::print_debug implementations in the next-solver were
placeholder stubs that returned "TODO: <typename>" instead of meaningful
output. these are called via the Display impl (and Debug for PatternKind)
of these types, so any solver trace log con... | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/next_solver/ir_print.rs",
"patch": "@@ -1,7 +1,5 @@\n //! Things related to IR printing in the next-trait-solver.\n \n-use std::any::type_name_of_val;\n-\n use rustc_type_ir::{self as ty, ir_print::IrPrint};\n \n use super::SolverDefId;\n@@ -82,7 +80,10 @... | 2026-03-07T16:09:48 |
vercel/next.js | 18c9f02bed49f683b25be1b7344328837a98d423 | a7f9272f289af95a3fd6e473fb09d1ed7519de83 | chore: update rspack binding to 1.6.0 (#85717)
1. Fixed the incremental update bug in buildChunkGraph.
2. Fixed a bug in Rspack's built-in CssChunkingPlugin.
For detailed release information, please see https://github.com/web-infra-dev/rspack/releases. | [
{
"path": "rspack/Cargo.lock",
"patch": "@@ -129,9 +129,9 @@ checksum = \"d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16\"\n \n [[package]]\n name = \"ast_node\"\n-version = \"3.0.3\"\n+version = \"4.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"... | 2025-11-04T21:09:10 |
facebook/react | fa3cf509a9a1fcfa33dac6a2936391e06bb06316 | f4b3a1fea2485c414985d341d6445660da471a98 | [DevTools] Add Map for Server Component Logs (#30905)
Stacked on #30899.
This adds another map to store Server Components logs. When they're
replayed with an owner we can associate them with a DevToolsInstance.
The replaying should happen before they can mount in Fiber so they'll
always have all logs when they m... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -100,6 +100,9 @@ import {\n SERVER_CONTEXT_SYMBOL_STRING,\n } from '../shared/ReactSymbols';\n import {enableStyleXFeatures} from 'react-devtools-feature-flags';\n+\n+import {componentInfoToComponentLogsMap} from '../sh... | 2024-09-09T19:12:28 |
electron/electron | b3c2e83243b3c24da97b6b695e1ef19e1b473992 | cc3359f12619afb5fea7b86782e40b70cceef038 | refactor: prefer `inline constexpr string_view` for string constants (#44405)
* refactor: BaseWindow::OnExecuteAppCommand() now takes a std::string_view
* refactor: NativeWindow::NotifyWindowExecuteAppCommand() takes a std::string_view
* refactor: AppCommandToString() returns a std::string_view, is now constexpr... | [
{
"path": "BUILD.gn",
"patch": "@@ -920,7 +920,6 @@ if (is_mac) {\n \"shell/app/electron_main_mac.cc\",\n \"shell/app/uv_stdio_fix.cc\",\n \"shell/app/uv_stdio_fix.h\",\n- \"shell/common/electron_constants.cc\",\n ]\n include_dirs = [ \".\" ]\n info_plist = \... | 2024-10-29T09:30:12 |
golang/go | 4837fbe4145cd47b43eed66fee9eed9c2b988316 | ee163197a879cf19aa9758bc544c717445284311 | net/http/httptest: check whether response bodies are allowed
Fixes #75471
Change-Id: Ie8fc5fae4b2a9285501198d8379bbffe51ee63f7
Reviewed-on: https://go-review.googlesource.com/c/go/+/709335
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-sc... | [
{
"path": "src/net/http/httptest/recorder.go",
"patch": "@@ -105,6 +105,10 @@ func (rw *ResponseRecorder) writeHeader(b []byte, str string) {\n // Write implements http.ResponseWriter. The data in buf is written to\n // rw.Body, if not nil.\n func (rw *ResponseRecorder) Write(buf []byte) (int, error) {\n+\t... | 2025-10-05T22:09:03 |
rust-lang/rust | c4a8355c968464922175bdf3da00a01d93e2ddb1 | 3c00f7da5b016c0563805b6196c7fe65be4ae476 | Change TODO in compiler to FIXME | [
{
"path": "scripts/test_rustc_tests.sh",
"patch": "@@ -175,7 +175,7 @@ rm -r tests/run-make/panic-abort-eh_frame # .eh_frame emitted with panic=abort\n \n # bugs in the test suite\n # ======================\n-rm tests/ui/process/nofile-limit.rs # TODO some AArch64 linking issue\n+rm tests/ui/process/nofile-... | 2026-02-27T03:48:05 |
nodejs/node | 5ac126bbe655ae390b17e279dad7b4ed0440006f | 4db978b111bf8164e000ea54ac744e1bf056b59a | doc: fix typo in benchmark script path
PR-URL: https://github.com/nodejs/node/pull/58129
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Daeyeon Jeong <daeyeon... | [
{
"path": "doc/contributing/writing-and-running-benchmarks.md",
"patch": "@@ -101,7 +101,7 @@ benchmarks. This increases the likelihood of each benchmark achieving peak perfo\n according to the hardware. Therefore, run:\n \n ```console\n-$ ./benchmarks/cpu.sh fast\n+$ ./benchmark/cpu.sh fast\n ```\n \n ### ... | 2025-05-04T20:04:55 |
vercel/next.js | a6315f2ee72f7b6c9267e47b1792417b17aff110 | 7ed2b90651de6503ffda88b3d48ebe0431f8c8c5 | fix: eslint-config-next types was exporting to dist/src (#85768)
`eslint-config-next` types were being emitted to `dist/src` instead of
`dist/` during build.
| Before | After |
|--------|--------|
| <img width="422" height="452" alt="CleanShot 2025-11-04 at 15 50
38@2x"
src="https://github.com/user-attachments/assets... | [
{
"path": "packages/eslint-config-next/package.json",
"patch": "@@ -39,7 +39,7 @@\n \"scripts\": {\n \"dev\": \"pnpm build\",\n \"build\": \"swc -d dist src && pnpm types\",\n- \"types\": \"tsc --skipLibCheck --declaration --emitDeclarationOnly --esModuleInterop --outDir dist\",\n+ \"types\"... | 2025-11-04T19:06:25 |
facebook/react | e07235b980df30c0ec865500a3e747dd67ce80db | e210d08180a63f42079b91acaa7f6af15eef6d32 | [DevTools] Refactor Error / Warning Count Tracking (#30899)
We can simplify this tracking by not having a separate pending set of
logs and the logs tracked per instance and instead we just track the
logs per Fiber. This avoids the need to move it back into the pending
set after unmounts in case a Fiber is reparente... | [
{
"path": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -1817,13 +1817,8 @@ describe('Store', () => {\n jest.runOnlyPendingTimers();\n }\n \n- // Gross abstraction around pending passive warning/error delay.\n- function flushPendingPassiveErrorAndWarningC... | 2024-09-09T19:10:04 |
electron/electron | 739688214b8629fe6be8eea6423b160b99607442 | 5d0d15a0b365267d3a88fe43e6719903c6d3e82d | fix: keep gdk_pixbuf a dynamic dependency (#44423) | [
{
"path": "shell/browser/ui/electron_gdk_pixbuf.sigs",
"patch": "@@ -1,3 +1,4 @@\n-GdkPixbuf* gdk_pixbuf_new(GdkColorspace colorspace, gboolean has_alpha, int bits_per_sample, int width, int height)\n+GdkPixbuf* gdk_pixbuf_new_from_bytes(GBytes* data, GdkColorspace colorspace, gboolean has_alpha, int bits_p... | 2024-10-29T00:44:20 |
golang/go | ee163197a879cf19aa9758bc544c717445284311 | de9da0de30377532370a09a311851afc0616c185 | path/filepath: return cleaned path from Rel
As the doc says, Rel should return a cleaned path.
Fixes #75763
Change-Id: Ic0f5a3b1da3cc4cf3c31fdb1a88ebcc4ea6f9169
Reviewed-on: https://go-review.googlesource.com/c/go/+/709675
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci... | [
{
"path": "src/path/filepath/path.go",
"patch": "@@ -248,7 +248,7 @@ func Rel(basepath, targpath string) (string, error) {\n \t\t\tbuf[n] = Separator\n \t\t\tcopy(buf[n+1:], targ[t0:])\n \t\t}\n-\t\treturn string(buf), nil\n+\t\treturn Clean(string(buf)), nil\n \t}\n \treturn targ[t0:], nil\n }",
"addit... | 2025-10-06T23:13:14 |
facebook/react | a8fc4b1ef8149a0f2b55942683bf96409e3f313f | 99cba2b041cd13d7ade48a5c97b473e8a188df35 | [compiler][playground] Fix displayed naming of outlined functions
ghstack-source-id: 20c8e9eeba1620b061e41119dfb1a0e15c36645e
Pull Request resolved: https://github.com/facebook/react/pull/30907 | [
{
"path": "compiler/apps/playground/components/Editor/EditorImpl.tsx",
"patch": "@@ -235,7 +235,7 @@ function compile(source: string): [CompilerOutput, 'flow' | 'typescript'] {\n name: result.name,\n value: {\n type: 'FunctionDeclaration',\n- id,\n+... | 2024-09-08T00:50:19 |
nodejs/node | 4db978b111bf8164e000ea54ac744e1bf056b59a | 995ad2b05303ab75e89a58ffcd69f987c2c459d6 | benchmark: fix typo in method name for error-stack
PR-URL: https://github.com/nodejs/node/pull/58128
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> | [
{
"path": "benchmark/es/error-stack.js",
"patch": "@@ -10,7 +10,7 @@ const bench = common.createBenchmark(main, {\n 'without-sourcemap',\n 'sourcemap',\n 'node-modules-without-sourcemap',\n- 'node-module-sourcemap'],\n+ 'node-modules-sourcemap'],\n n: [1e5],\n });\n ",
"additions": 1... | 2025-05-04T19:55:30 |
vercel/next.js | 7ed2b90651de6503ffda88b3d48ebe0431f8c8c5 | 531293634a1b256164efc60a4c713a0fe1e0e498 | Fix documentation typo in refresh function (#85696)
### What?
Fix documentation typo in `refresh` function. | [
{
"path": "packages/next/src/server/web/spec-extension/revalidate.ts",
"patch": "@@ -55,7 +55,7 @@ export function updateTag(tag: string) {\n /**\n * This function allows you to refresh client cache from server actions.\n * It's useful as dynamic data can be cached on the client which won't\n- * be refres... | 2025-11-04T18:58:46 |
rust-lang/rust | 50db919f5d5e9ae336afb8a293ac18d494434653 | 69370dc4a8862b8401615a2a7b950704ba66c495 | Change TODO in compiler to FIXME | [
{
"path": "compiler/rustc_codegen_cranelift/scripts/test_rustc_tests.sh",
"patch": "@@ -175,7 +175,7 @@ rm -r tests/run-make/panic-abort-eh_frame # .eh_frame emitted with panic=abort\n \n # bugs in the test suite\n # ======================\n-rm tests/ui/process/nofile-limit.rs # TODO some AArch64 linking is... | 2026-02-27T03:48:05 |
electron/electron | 348801b20eb7094f87ffb92b84903d010afca56c | 57920e7747f09627f99ed5c27457339aa7c3fe57 | fix: crash on netlog connection error (#44406)
* fix: crash on netlog connection error
* refactor: remove default PromiseBase constructor
* Revert "refactor: remove default PromiseBase constructor"
This reverts commit 9292324a0d5f9e63ba8f73f63dfff1d48eb2f38f.
* remove dcheck | [
{
"path": "shell/browser/api/electron_api_net_log.cc",
"patch": "@@ -166,6 +166,7 @@ void NetLog::StartNetLogAfterCreateFile(net::NetLogCaptureMode capture_mode,\n std::move(*pending_start_promise_)\n .RejectWithErrorMessage(\n base::File::ErrorToString(output_file.error_details()));... | 2024-10-28T09:24:54 |
golang/go | de9da0de30377532370a09a311851afc0616c185 | ae094a1397d03aafde380cdb79e0d6a5731c8dbc | cmd/compile/internal/devirtualize: improve concrete type analysis
This change improves the concrete type analysis in the devirtualizer,
it not longer relies on ir.Reassigned, it now statically tries to
determine the concrete type of an interface, even when assigned
multiple times, following type assertions and iface c... | [
{
"path": "src/cmd/compile/internal/devirtualize/devirtualize.go",
"patch": "@@ -18,9 +18,11 @@ import (\n \t\"cmd/compile/internal/types\"\n )\n \n+const go126ImprovedConcreteTypeAnalysis = true\n+\n // StaticCall devirtualizes the given call if possible when the concrete callee\n // is available staticall... | 2025-10-07T17:57:59 |
facebook/react | d76a5651f46619fde486b4119953a8f9dd240612 | 727b3615287074ddaa28069bfbd2dfee8cf73575 | [DevTools] Handle reordered contexts in Profiler (#30887)
While looking at the Context tracking implementation for other reasons I
noticed this bug.
Originally it wasn't allowed to have conditional `useContext(context)`
(although we did because it's technically possible). With `use(context)`
it is officially all... | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilingCache-test.js",
"patch": "@@ -1209,6 +1209,106 @@ describe('ProfilingCache', () => {\n }\n });\n \n+ // @reactVersion >= 19.0\n+ it('should detect context changes or lack of changes with conditional use()', () => {\n+ const ContextA... | 2024-09-07T01:45:52 |
rust-lang/rust | bea3803300c5d3d4b55d26385fd8612a51afc9bb | 0ffb4adaeb225ccd49ef7c829e6ea2aa4b516f74 | Insert missing `ensure_ok` calls.
Two places where `ensure_ok` can be used but currently isn't. (These
queries are marked with `return_result_from_ensure_ok`, which means that
`ensure_ok` returns `Result<(), ErrorGuaranteed>`.) This is potentially
a perf win, because `ensure_ok` query calls can be faster. | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/move_errors.rs",
"patch": "@@ -294,7 +294,7 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n \n // Avoid bogus move errors because of an incoherent `Copy` impl.\n self.infcx.type_implements_trait(copy_def_id, [ty], self.infcx.para... | 2026-03-04T01:12:58 |
nodejs/node | ddec63d7417f6e1170b0b077bb72df606bf12d11 | c2d81569d546dd0cfdd6c2cd15913950eee3632b | src: add more debug logs and comments in NodePlatform
PR-URL: https://github.com/nodejs/node/pull/58047
Refs: https://github.com/nodejs/node/pull/47452
Refs: https://github.com/nodejs/node/issues/54918
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> | [
{
"path": "src/debug_utils.h",
"patch": "@@ -55,6 +55,8 @@ void NODE_EXTERN_PRIVATE FWrite(FILE* file, const std::string& str);\n V(MKSNAPSHOT) \\\n V(SNAPSHOT_SERDES) \\\n V(PERMIS... | 2025-05-02T14:11:06 |
vercel/next.js | d0177fa07db68b1ebb412af4b4fbe3609924428e | 2c56a6937112e6a0e0cf689234acecfaed8448c2 | Tracing: Fix memory leak in span map (#85529)
## What?
Fixes a small retainer object that is inserted on each request and not
cleaned up.
While at it also swapped array -> Set for the type checks to leverage
`has` instead of `includes`. | [
{
"path": "packages/next/src/server/lib/trace/constants.ts",
"patch": "@@ -125,7 +125,7 @@ type SpanTypes =\n | `${MiddlewareSpan}`\n \n // This list is used to filter out spans that are not relevant to the user\n-export const NextVanillaSpanAllowlist = [\n+export const NextVanillaSpanAllowlist = new Set(... | 2025-11-04T16:17:20 |
electron/electron | 83d704009687956fb4b69cb13ab03664d7950118 | c42fb09fc925bbe82d0c99b6890af7dd1e0daf62 | fix: -Wunsafe-buffer-usage warning in didRegisterForRemoteNotificationsWithDeviceToken (#44348)
* chore: move as_byte_span() to new shell/common/mac_util.h
this way it can be used by multiple mm files
* fix: -Wunsafe-buffer-usage warnings in UNNotificationResponseToNSDictionary
* refactor: use base::HexEncode... | [
{
"path": "filenames.gni",
"patch": "@@ -205,6 +205,8 @@ filenames = {\n \"shell/common/mac/main_application_bundle.mm\",\n \"shell/common/mac/codesign_util.cc\",\n \"shell/common/mac/codesign_util.h\",\n+ \"shell/common/mac_util.h\",\n+ \"shell/common/mac_util.mm\",\n \"shell/common/n... | 2024-10-23T19:18:22 |
facebook/react | 727b3615287074ddaa28069bfbd2dfee8cf73575 | bd788b4180e4ad201100b9defb849cb8f1483f9c | Fix useMemoCache with setState in render
Fixes the bug that @alexmckenley and @mofeiZ found where setState-in-render can reset useMemoCache and cause an infinite loop. The bug was that renderWithHooksAgain() was not resetting hook state when rerendering (so useMemo values were preserved) but was resetting the updateQu... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -770,6 +770,12 @@ export function replaySuspendedComponentWithHooks<Props, SecondArg>(\n ignorePreviousDependencies =\n current !== null && current.type !== workInProgress.type;\n }\n+ // renderWithHooks only resets the ... | 2024-09-06T21:10:56 |
rust-lang/rust | 0ffb4adaeb225ccd49ef7c829e6ea2aa4b516f74 | 69370dc4a8862b8401615a2a7b950704ba66c495 | Tweak control flow in `query_*` functions.
`query_get_at`, `query_ensure`, and `query_ensure_error_guarantee` are
very similar functions, but they all use different control flow styles
which obscures the similarities. This commit rewrites them to all use
a `match`. | [
{
"path": "compiler/rustc_middle/src/query/inner.rs",
"patch": "@@ -59,8 +59,11 @@ pub(crate) fn query_ensure<'tcx, C>(\n ) where\n C: QueryCache,\n {\n- if try_get_cached(tcx, &query.cache, &key).is_none() {\n- (query.execute_query_fn)(tcx, DUMMY_SP, key, QueryMode::Ensure { ensure_mode });\n... | 2026-03-03T09:11:52 |
golang/go | d945600d060e7a0b7c5e72ac606a017d105a17f3 | d4830c61301a32ad9373bc30c5fd6196c3567f61 | cmd/gofmt: change -d to exit 1 if diffs exist
When using the -d flag, set the exit code to 1 if there is a diff.
Fixes #46289
Change-Id: I802e8ccd1798ed7f4448696bec4bc82835ec71a2
GitHub-Last-Rev: db2207fba9a8f7a2f50138ec1f086ac6a74e1b10
GitHub-Pull-Request: golang/go#75649
Reviewed-on: https://go-review.googlesource... | [
{
"path": "src/cmd/gofmt/gofmt.go",
"patch": "@@ -41,6 +41,9 @@ var (\n \n \t// debugging\n \tcpuprofile = flag.String(\"cpuprofile\", \"\", \"write cpu profile to this file\")\n+\n+\t// errors\n+\terrFormattingDiffers = fmt.Errorf(\"formatting differs from gofmt's\")\n )\n \n // Keep these in sync with go/... | 2025-10-06T12:47:34 |
nodejs/node | abfb7cc5bcb1397d8823e8fafbb62045031ca56e | f552c86fecd6c2ba9e832ea129b731dd63abdbe2 | doc: fix typo of file `zlib.md`
PR-URL: https://github.com/nodejs/node/pull/58093
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/zlib.md",
"patch": "@@ -12,7 +12,7 @@ Gzip, Deflate/Inflate, Brotli, and Zstd.\n To access it:\n \n ```mjs\n-import os from 'node:zlib';\n+import zlib from 'node:zlib';\n ```\n \n ```cjs",
"additions": 1,
"deletions": 1,
"language": "Markdown"
}
] | 2025-05-03T12:08:20 |
vercel/next.js | 3883a8d9591fe6fb163311b4df0ad7ebb8cab4f7 | 5df646547b1e9a65ad610b0b01f6fdf425ea55ec | Turbopack: disable tree shaking for tracing (#85722)
We had tree shaking enabled for NFT.
That is incorrect however, as even unused imports (if you don't use any of the imported bindings, and the file is marked as `sideEffects: false`) are still needed at runtime, since Node.js will execute everything anyway.
- I mad... | [
{
"path": "test/production/standalone-mode/tracing-side-effects-false/app/layout.js",
"patch": "@@ -0,0 +1,8 @@\n+export default function Root({ children }) {\n+ return (\n+ <html>\n+ <head></head>\n+ <body>{children}</body>\n+ </html>\n+ )\n+}",
"additions": 8,
"deletions": 0,
... | 2025-11-04T09:24:06 |
electron/electron | c42fb09fc925bbe82d0c99b6890af7dd1e0daf62 | fd500477acca903fd5470801d8a9edf20f2a5654 | test: fixup flaky tests (#44349)
* test: fixup flaky test
* test: disable flaky protocol speed test on macOS
* test: fixup flaky test in api-browser-window-spec.ts | [
{
"path": "spec/api-browser-window-spec.ts",
"patch": "@@ -17,7 +17,7 @@ import * as nodeUrl from 'node:url';\n \n import { emittedUntil, emittedNTimes } from './lib/events-helpers';\n import { HexColors, hasCapturableScreen, ScreenCapture } from './lib/screen-helpers';\n-import { ifit, ifdescribe, defer, l... | 2024-10-23T19:14:50 |
facebook/react | a06cd9e1d141f598a68377495f4c0fe9ee44e569 | d72e477814209d79173a1b69da3172d891786fec | [DevTools] Refactor Forcing Fallback / Error of Suspense / Error Boundaries (#30870)
First, this basically reverts
https://github.com/facebook/react/pull/30517/commits/1f3892ef8cc181218587ddc6accd994890c92ef5
to use a Map/Set to track what is forced to suspend/error again instead
of flags on the Instance. The diffe... | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -2975,16 +2975,12 @@ describe('InspectedElement', () => {\n // Inspect <ErrorBoundary /> and see that we cannot toggle error state\n // on error boundary itself\n let inspectedElement = await in... | 2024-09-05T19:48:17 |
rust-lang/rust | b9ee655517d90c3be3101bdb24445d06ad1197b1 | ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d | Fix LegacyKeyValueFormat report from docker build: miscellaneous | [
{
"path": "src/ci/docker/host-x86_64/dist-android/Dockerfile",
"patch": "@@ -16,15 +16,14 @@ ENV TARGETS=$TARGETS,i686-linux-android\n ENV TARGETS=$TARGETS,aarch64-linux-android\n ENV TARGETS=$TARGETS,x86_64-linux-android\n \n-ENV RUST_CONFIGURE_ARGS \\\n- --enable-extended \\\n+ENV RUST_CONFIGURE_ARGS... | 2026-03-07T09:40:02 |
golang/go | d4830c61301a32ad9373bc30c5fd6196c3567f61 | e1ca1de1234aa0f6be85c97db5492a94b099a305 | cmd/internal/obj: fix Link.Diag printf errors
go1.26's vet printf checker can associate the printf-wrapper
property with local vars and struct fields if they are assigned
from a printf-like func literal (CL 706635). This leads to better
detection of mistakes.
Change-Id: I604be1e200aa1aba75e09d4f36ab68c1dba3b8a3
Revie... | [
{
"path": "src/cmd/internal/obj/arm/asm5.go",
"patch": "@@ -579,7 +579,7 @@ func span5(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t}\n \n \t\tif int64(pc) > p.Pc {\n-\t\t\tctxt.Diag(\"PC padding invalid: want %#d, has %#d: %v\", p.Pc, pc, p)\n+\t\t\tctxt.Diag(\"PC padding invalid: want ... | 2025-10-08T16:19:14 |
nodejs/node | a2d157ef239c747aba3bc282d9a7b792b054c713 | 248b1f48a8a47c68aeea5521a1e033c28eb7cae8 | test: fix test-fs-write for V8 13.6
The `--expose_externalize_string` flag adds a new global.
PR-URL: https://github.com/nodejs/node/pull/58070
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Rafae... | [
{
"path": "test/parallel/test-fs-write.js",
"patch": "@@ -37,17 +37,20 @@ const constants = fs.constants;\n \n const {\n createExternalizableString,\n+ createExternalizableTwoByteString,\n externalizeString,\n isOneByteString,\n } = globalThis;\n \n assert.notStrictEqual(createExternalizableString, u... | 2025-04-09T16:00:54 |
vercel/next.js | 2f8dec2314e43ca190b454ac73c31d54daa3177e | 3f854dc3eaeedbda8e1ce439e3834985e97250d5 | docs(next.config): this docs should remove ".mts" is not supported. (#85716)
Fix #85715
---------
Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
Co-authored-by: Jiwon Choi <devjiwonchoi@gmail.com> | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/index.mdx",
"patch": "@@ -37,7 +37,7 @@ const nextConfig = {\n export default nextConfig\n ```\n \n-> **Good to know**: `next.config` with the `.cjs`, `.cts`, or `.mts` extensions are currently **not** supported.\n+> **Good to know**: `next... | 2025-11-03T22:31:44 |
facebook/react | d72e477814209d79173a1b69da3172d891786fec | 4c58fce7777f2760f4a93091ca4fca0e3fc2f48c | [compiler runtime] repro: infinite render with useMemoCache + render phase updates (#30849)
Repro for an infinite render bug we found when testing internally. See
equivalent codesandbox repro
[here](https://codesandbox.io/p/sandbox/epic-euclid-mr7lm3).
When render phase updates cause a re-render, useMemoCache arr... | [
{
"path": "packages/react-reconciler/src/__tests__/useMemoCache-test.js",
"patch": "@@ -13,8 +13,10 @@ let ReactNoop;\n let Scheduler;\n let act;\n let assertLog;\n+let useMemo;\n let useState;\n let useMemoCache;\n+let waitForThrow;\n let MemoCacheSentinel;\n let ErrorBoundary;\n \n@@ -27,8 +29,10 @@ descr... | 2024-09-05T17:30:34 |
rust-lang/rust | dceeb20bbc73085a7dfdfd9eeec5918eeb92d60e | ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d | Fix LegacyKeyValueFormat report from docker build: various | [
{
"path": "src/ci/docker/host-x86_64/dist-various-1/Dockerfile",
"patch": "@@ -152,16 +152,14 @@ ENV CFLAGS_armv5te_unknown_linux_musleabi=\"-march=armv5te -marm -mfloat-abi=soft\n CC_riscv64gc_unknown_none_elf=riscv64-unknown-elf-gcc \\\n CFLAGS_riscv64gc_unknown_none_elf=-march=rv64gc -mabi=lp64\n... | 2026-03-07T09:26:23 |
electron/electron | e3e94d45eecf24d976adb1905fdef40544de806c | fff6ea438ac99cfec9818e961faf5c8a87787f91 | fix: silence -Wunsafe-buffer-usage warning in GetPreferredLanguages() (#44333)
fix: use UNSAFE_BUFFERS macro in GetPreferredLanguages() | [
{
"path": "shell/common/language_util_linux.cc",
"patch": "@@ -22,7 +22,10 @@ std::vector<std::string> GetPreferredLanguages() {\n DCHECK(languages); // A valid pointer is guaranteed.\n DCHECK(*languages); // At least one entry, \"C\", is guaranteed.\n \n- for (; *languages; ++languages) {\n+ // SA... | 2024-10-21T23:20:00 |
vercel/next.js | 3f854dc3eaeedbda8e1ce439e3834985e97250d5 | 7cfb1488e047f15fe59b8e1b216d6662aef29873 | [codemod] fix: next-lint-to-eslint-cli did not handle `'next'` plugin (#85749)
Codemod `next-lint-to-eslint-cli` did not handle `extends: ['next']` in
legacy ESLint config.
x-ref:
https://github.com/vercel/next.js/issues/85244#issuecomment-3482558412
Fixes #85244 | [
{
"path": "packages/next-codemod/transforms/__testfixtures__/next-lint-to-eslint-cli/legacy-config/.eslintrc.json",
"patch": "@@ -3,6 +3,8 @@\n \"root\": true,\n \"extends\": [\n \"next/core-web-vitals\",\n+ \"next\",\n+ \"next/typescript\",\n \"turbo\",\n \"prettier\",\n \"plugin:... | 2025-11-03T22:18:27 |
golang/go | bb1ca7ae81ea8ca49a2773ace8ccff8fbc7f4dfd | 162392773085d4cc12072200853a0424117983c0 | cmd/go, testing: add TB.ArtifactDir and -artifacts flag
Add TB.ArtifactDir, which returns a directory for a test to store
output files in. Add a -artifacts testflag which enables persistent
storage of artifacts in the output directory (-outputdir, or the
current directory by default).
Fixes #71287
Change-Id: I5f6515... | [
{
"path": "api/next/71287.txt",
"patch": "@@ -0,0 +1,4 @@\n+pkg testing, method (*B) ArtifactDir() string #71287\n+pkg testing, method (*F) ArtifactDir() string #71287\n+pkg testing, method (*T) ArtifactDir() string #71287\n+pkg testing, type TB interface, ArtifactDir() string #71287",
"additions": 4,
... | 2025-08-15T22:24:05 |
nodejs/node | 7963548186f545df0d6a3df2d11d6e9a2adfc50a | de8e7bd7725c1bd1a0caaeaa7c5c846e3831588d | build: fix V8 TLS config for shared lib builds
PR-URL: https://github.com/nodejs/node/pull/58070
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> | [
{
"path": "tools/v8_gypfiles/v8.gyp",
"patch": "@@ -53,6 +53,11 @@\n 'BUILDING_V8_SHARED', # Make V8_EXPORT visible.\n ],\n }],\n+ ['node_shared==\"true\"', {\n+ 'defines': [\n+ 'V8_TLS_USED_IN_LIBRARY', # Enable V8_TLS_LIBRARY_MODE.\n+ ],\n+ }],\n ... | 2025-04-03T18:18:42 |
facebook/react | 4c58fce7777f2760f4a93091ca4fca0e3fc2f48c | 01ae2ddaa94386b2250230004f1051218ada2de1 | [DevTools] Avoid getFiberIDUnsafe in debug() Helper (#30878)
Avoids looking up id from fiber and instead pass the instance to the
debug() helper. | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -1098,7 +1098,10 @@ export function attach(\n // even if objects are different\n const message = formatConsoleArgumentsToSingleString(...args);\n if (__DEBUG__) {\n- debug('onErrorOrWarning', fiber, null,... | 2024-09-05T00:25:35 |
rust-lang/rust | fcfd96e821339803350bef5ae702c72d85768e75 | ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d | Fix LegacyKeyValueFormat report from docker build: pr | [
{
"path": "src/ci/docker/host-x86_64/pr-check-1/Dockerfile",
"patch": "@@ -39,7 +39,7 @@ COPY host-x86_64/pr-check-1/validate-toolstate.sh /scripts/\n # Check library crates on all tier 1 targets.\n # We disable optimized compiler built-ins because that requires a C toolchain for the target.\n # We also ski... | 2026-03-07T09:14:23 |
electron/electron | fff6ea438ac99cfec9818e961faf5c8a87787f91 | 3e77faf2f75f1cade24f3a9e7f8388d7a2c32013 | fix: software compositing infinite loop (#44318)
Co-authored-by: Keeley Hammond <vertedinde@electronjs.org> | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -132,4 +132,5 @@ build_expose_webplugininfo_interface_to_electron.patch\n osr_shared_texture_remove_keyed_mutex_on_win_dxgi.patch\n feat_allow_usage_of_sccontentsharingpicker_on_supported_platforms.patch\n chore_partial_revert_of.patch\n+fix_software_compo... | 2024-10-21T22:56:03 |
vercel/next.js | 5f9e5f0e70651542cddb027a5ad00aa241a7d788 | 63b9e8bdf85ef7f01039b89a42cd9de573472edc | Don't invalidate hot reloader excessively during dev server boot (#85732)
Suspecting that this fixes (or reduces) the "Watchpack Error (watcher):
Error: EMFILE:" issues e.g.
https://github.com/vercel/next.js/actions/runs/19028750529/job/54337767548?pr=85637
I noticed that all the Watchpack errors in CI happened in te... | [
{
"path": "packages/next/src/server/lib/router-utils/setup-dev-bundler.ts",
"patch": "@@ -371,6 +371,7 @@ async function startWatcher(\n const routeTypesFilePath = path.join(distDir, 'types', 'routes.d.ts')\n const validatorFilePath = path.join(distDir, 'types', 'validator.ts')\n \n+ let initialW... | 2025-11-03T18:51:14 |
golang/go | a1661e776f57602b4d4470389a0246f9784fd722 | cb81270113968408d7cc41c0b1530adb51dd8496 | Revert "crypto/internal/fips140/subtle: add assembly implementation of xorBytes for mips64x"
This reverts commit 49d6777d87a0abb3eda032da95eff024156835f7.
Reason for revert: doesn't handle unaligned accesses correctly
Fixes #74998
Change-Id: Ia272245a6a2a91b305d411207430bad660ee355b
Reviewed-on: https://go-review.g... | [
{
"path": "src/crypto/internal/fips140/subtle/xor_asm.go",
"patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build (amd64 || arm64 || mips64 || mips64le || ppc64 || ppc64le || riscv64) && !purego\n+//go:build (amd6... | 2025-10-07T17:15:43 |
facebook/react | 01ae2ddaa94386b2250230004f1051218ada2de1 | f820f5a8b6c8b106ba3756f3e60a5a4017eb5080 | [DevTools] Include some Filtered Fiber Instances (#30865)
When we filter Fiber Instances where have no way to recover our position
in the Fiber tree. The extreme form of this is if you filter out all the
Fibers and keep only Server Components.
This affects operations that are performed against fibers such as
col... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -146,6 +146,7 @@ import {formatOwnerStack} from '../shared/DevToolsOwnerStack';\n // Kinds\n const FIBER_INSTANCE = 0;\n const VIRTUAL_INSTANCE = 1;\n+const FILTERED_FIBER_INSTANCE = 2;\n \n // Flags\n const FORCE_SUSPENS... | 2024-09-04T23:35:28 |
rust-lang/rust | 63a02ac1b37772aaeced31c6def24fbeb5ab209b | ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d | Fix LegacyKeyValueFormat report from docker build: i686 | [
{
"path": "src/ci/docker/host-x86_64/dist-i586-gnu-i586-i686-musl/Dockerfile",
"patch": "@@ -57,10 +57,9 @@ RUN ln -s /usr/lib32/libgcc_s.so.1 /musl-i686/lib/\n COPY scripts/sccache.sh /scripts/\n RUN sh /scripts/sccache.sh\n \n-ENV RUST_CONFIGURE_ARGS \\\n- --musl-root-i586=/musl-i586 \\\n+ENV RUST_CO... | 2026-03-07T08:37:38 |
electron/electron | 3e77faf2f75f1cade24f3a9e7f8388d7a2c32013 | cc9d85d3caf8f4dd99d29b310d99029ef50d488b | fix: crash when generating shortcut text for super accelerator (#44341) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -132,3 +132,4 @@ build_expose_webplugininfo_interface_to_electron.patch\n osr_shared_texture_remove_keyed_mutex_on_win_dxgi.patch\n feat_allow_usage_of_sccontentsharingpicker_on_supported_platforms.patch\n chore_partial_revert_of.patch\n+ui_add_missing_sho... | 2024-10-21T18:26:38 |
vercel/next.js | 63b9e8bdf85ef7f01039b89a42cd9de573472edc | 1db925ad86b8c74d699781bde251de42dc728944 | [test] Allow CLI integration test to be retryable (#85586)
Fixes https://github.com/vercel/next.js/actions/runs/18937795131/job/54068900147#step:34:1879
`--experimental-https` test creates a cert relying on no cert existing in the default path. When it passes, it doesn't cleanup. Retrying that test file due to an u... | [
{
"path": "test/integration/cli/test/index.test.js",
"patch": "@@ -15,6 +15,7 @@ import path, { join } from 'path'\n import pkg from 'next/package'\n import http from 'http'\n import stripAnsi from 'strip-ansi'\n+import { rmSync } from 'fs'\n \n const dirBasic = join(__dirname, '../basic')\n const dirDuplic... | 2025-11-03T16:44:52 |
rust-lang/rust | 82034115efa523a2fa470078901db92d2d4d246f | ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d | Fix LegacyKeyValueFormat report from docker build: mips | [
{
"path": "src/ci/docker/host-x86_64/dist-mips-linux/Dockerfile",
"patch": "@@ -26,5 +26,5 @@ ENV \\\n \n ENV HOSTS=mips-unknown-linux-gnu\n \n-ENV RUST_CONFIGURE_ARGS --enable-extended --disable-docs\n-ENV SCRIPT python3 ../x.py dist --host $HOSTS --target $HOSTS\n+ENV RUST_CONFIGURE_ARGS=\"--enable-extend... | 2026-03-07T08:45:29 |
facebook/react | 8d68da3f7396064614f34b84881fe8833b6039ac | e0a07e9738b2ec2ea5cf4872406b465d677bfe2c | [Fiber] Stash ThenableState on the Dependencies Object for Use By DevTools (#30866)
This lets us track what a Component might suspend on from DevTools. We
could already collect this by replaying a component's Hooks but that
would be expensive to collect from a whole tree.
The thenables themselves might contain us... | [
{
"path": "packages/react-reconciler/src/ReactFiber.js",
"patch": "@@ -404,10 +404,16 @@ export function createWorkInProgress(current: Fiber, pendingProps: any): Fiber {\n workInProgress.dependencies =\n currentDependencies === null\n ? null\n- : {\n- lanes: currentDependencies.lan... | 2024-09-03T20:04:24 |
electron/electron | cc9d85d3caf8f4dd99d29b310d99029ef50d488b | d3d02ef1115ca5e38c2195017c3b3b5242a3cf80 | build: fixup reclient use for prod builds (#44340) | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -159,21 +159,19 @@ runs:\n run: |\n cd src\n gn gen out/ffmpeg --args=\"import(\\\"//electron/build/args/ffmpeg.gn\\\") use_remoteexec=true $GN_EXTRA_ARGS\"\n- autoninja -C out/ffmpeg electron:electron_ffmpeg_zi... | 2024-10-21T18:07:02 |
golang/go | f7a68d3804efabd271f0338391858bc1e7e57422 | 463165699d874ef0ac7965fc5788fe1693eaae9a | archive/tar: set a limit on the size of GNU sparse file 1.0 regions
Sparse files in tar archives contain only the non-zero components
of the file. There are several different encodings for sparse
files. When reading GNU tar pax 1.0 sparse files, archive/tar did
not set a limit on the size of the sparse region data. A ... | [
{
"path": "src/archive/tar/common.go",
"patch": "@@ -39,6 +39,7 @@ var (\n \terrMissData = errors.New(\"archive/tar: sparse file references non-existent data\")\n \terrUnrefData = errors.New(\"archive/tar: sparse file contains unreferenced data\")\n \terrWriteHole = errors.New(\"archive/t... | 2025-09-11T20:32:10 |
nodejs/node | d58f474b2d033547d1dfb5148c5183bb783edae4 | 0f98039268ee76cf0bf9d4337b096f952136937f | deps: V8: backport 954187bb1b87
Original commit message:
[api] add Isolate::Deinitialize() and Isolate::Free()
This allows embedders to mirror the isolate disposal routine
with an initialization routine that uses Isolate::Allocate().
```
v8::Isolate* isolate = v8::Isolate::Allocate();
// Use... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ... | 2025-04-24T12:58:25 |
vercel/next.js | a293884745ea0bd930056299e8f10cd05c24d8cd | b350da474b152281ec2da6e2f515634dfaed9aff | Turbopack: Upgrade image crate (#85084)
## What?
Upgrade the image crate which includes some bugfixes for bmp files. | [
{
"path": "Cargo.lock",
"patch": "@@ -300,9 +300,9 @@ checksum = \"23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b\"\n \n [[package]]\n name = \"arrayvec\"\n-version = \"0.7.4\"\n+version = \"0.7.6\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"96d30a0... | 2025-11-03T09:44:24 |
rust-lang/rust | 58652d5a4312b2d2549d2f631bc301df8e4d7aae | ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d | Fix LegacyKeyValueFormat report from docker build: ohos | [
{
"path": "src/ci/docker/host-x86_64/dist-ohos-aarch64/Dockerfile",
"patch": "@@ -40,14 +40,13 @@ ENV \\\n AR_aarch64_unknown_linux_ohos=/opt/ohos-sdk/native/llvm/bin/llvm-ar \\\n CXX_aarch64_unknown_linux_ohos=/usr/local/bin/aarch64-unknown-linux-ohos-clang++.sh\n \n-ENV RUST_CONFIGURE_ARGS \\\n- ... | 2026-03-07T08:42:15 |
facebook/react | e0a07e9738b2ec2ea5cf4872406b465d677bfe2c | 04ec50efa941a7f07e8231a87e72d6d851948b8c | [DevTools] Support VirtualInstances in findAllCurrentHostInstances (#30853)
This lets us highlight Server Components.
However, there is a problem with this because if the actual nearest
Fiber is filtered, there's no FiberInstance and so we might skip past it
and maybe never find a child while walking the whole tr... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -3393,6 +3393,18 @@ export function attach(\n // I.e. we just restore them by undoing what we did above.\n fiberInstance.firstChild = remainingReconcilingChildren;\n remainingReconcilin... | 2024-09-03T16:29:59 |
golang/go | 463165699d874ef0ac7965fc5788fe1693eaae9a | 5ede095649db7783726c28390812bca9ce2c684a | net/mail: avoid quadratic behavior in mail address parsing
RFC 5322 domain-literal parsing built the dtext value one character
at a time with string concatenation, resulting in excessive
resource consumption when parsing very large domain-literal values.
Replace with a subslice.
Benchmark not included in this CL bec... | [
{
"path": "src/net/mail/message.go",
"patch": "@@ -724,7 +724,8 @@ func (p *addrParser) consumeDomainLiteral() (string, error) {\n \t}\n \n \t// Parse the dtext\n-\tvar dtext string\n+\tdtext := p.s\n+\tdtextLen := 0\n \tfor {\n \t\tif p.empty() {\n \t\t\treturn \"\", errors.New(\"mail: unclosed domain-lite... | 2025-09-25T21:41:53 |
facebook/react | 4f604941569d2e8947ce1460a0b2997e835f37b9 | e56f4ae38d118168e0561f1b86ecbdef592138e4 | [Flight] Ship DEV-only enableServerComponentLogs flag in Stable/Canary (#30847)
To recap. This only affects DEV and RSC. It patches console on the
server in DEV (similar to how React DevTools already does and what we
did for the double logging). Then replays those logs with a `[Server]`
badge on the client so you d... | [
{
"path": "packages/shared/ReactFeatureFlags.js",
"patch": "@@ -134,7 +134,7 @@ export const alwaysThrottleRetries = true;\n \n export const passChildrenWhenCloningPersistedNodes = false;\n \n-export const enableServerComponentLogs = __EXPERIMENTAL__;\n+export const enableServerComponentLogs = true;\n \n /*... | 2024-08-30T19:11:57 |
vercel/next.js | b350da474b152281ec2da6e2f515634dfaed9aff | c2f1062bd305eb3ffaf4b4a9dc5ab5eae786fae1 | docs: fix generateImageMetadata example to use normal params object (#85658)
### What?
Fixes an inconsistency in the v16 upgrade documentation for
`generateImageMetadata`.
### Why?
In the “Upgrading to Version 16” guide, the example incorrectly awaited
the `params` object inside `generateImageMetadata`, implying th... | [
{
"path": "docs/01-app/02-guides/upgrading/version-16.mdx",
"patch": "@@ -322,12 +322,11 @@ export default function Image({ params, id }) {\n }\n ```\n \n-Starting with **Next.js 16**, to align with the [Async Request APIs](#async-request-apis-breaking-change) change, these are also asynchronous.\n+Starting... | 2025-11-03T09:28:31 |
nodejs/node | 57699fffb8a387a3edeafd3418a369907b6b8246 | 4d7da6cca1c1a894032b11b19fc707d605f44400 | 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": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "... | 2023-04-06T12:50:56 |
facebook/react | 8308d2f1fe90ec0b5a5cde147b97c6e78581710a | 394e75d9a9af26dc00074f2b8c2978d8c2dfbbb9 | fix[react-devtools/ReactDebugHooks]: support unstable prefixes in hooks and useContextWithBailout (#30837)
Related - https://github.com/facebook/react/pull/30407.
This is experimental-only and FB-only hook. Without these changes,
inspecting an element that is using this hook will throw an error,
because this hook... | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -20,6 +20,7 @@ import type {\n Dependencies,\n Fiber,\n Dispatcher as DispatcherType,\n+ ContextDependencyWithSelect,\n } from 'react-reconciler/src/ReactInternalTypes';\n import type {TransitionStatus} from 'react-reconciler... | 2024-08-30T09:34:52 |
vercel/next.js | 05d71110906b10c5a6eca43b1beedb1ada5a2462 | 567dc18b2388922c1e14f531159aa1bcc6cfce0a | [test]: move resume-data-cache to e2e test (#85647)
Moves `resume-data-cache` to `test/e2e`. We don't currently run
`production` tests when deployed - many of them do funky things with
`next.build` / `next.start` and are meant to test local behavior rather
than deployed behavior.
As a result, I also temporarily disab... | [
{
"path": "test/e2e/app-dir/resume-data-cache/resume-data-cache/resume-data-cache.test.ts",
"patch": "@@ -3,10 +3,18 @@ import { retry } from 'next-test-utils'\n import { computeCacheBustingSearchParam } from 'next/dist/shared/lib/router/utils/cache-busting-search-param'\n \n describe('resume-data-cache', (... | 2025-10-31T23:17:57 |
golang/go | 5ede095649db7783726c28390812bca9ce2c684a | 5ce8cd16f3859ec5ac4106ad8ec15d6236f4501b | net/textproto: avoid quadratic complexity in Reader.ReadResponse
Reader.ReadResponse constructed a response string from repeated
string concatenation, permitting a malicious sender to cause excessive
memory allocation and CPU consumption by sending a response consisting
of many short lines.
Use a strings.Builder to c... | [
{
"path": "src/net/textproto/reader.go",
"patch": "@@ -285,8 +285,10 @@ func (r *Reader) ReadCodeLine(expectCode int) (code int, message string, err err\n //\n // An expectCode <= 0 disables the check of the status code.\n func (r *Reader) ReadResponse(expectCode int) (code int, message string, err error) {... | 2025-09-30T22:11:16 |
nodejs/node | 4adcd59f3f5f847373edb4960eed32235ec888b0 | 395b917ed9bab5d236466d8d6ae7f3686db57f5f | 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": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.2',\n+ 'v8_embedder_string': '-node.3',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-12-16T10:11:22 |
rust-lang/rust | d3149ca7aa0d5ea00ad1b69fb01ca067dde336bd | 69370dc4a8862b8401615a2a7b950704ba66c495 | Fix incorrect rustdoc JSON representation of `#[doc(test(..))]` attrs. | [
{
"path": "src/librustdoc/json/conversions.rs",
"patch": "@@ -1041,10 +1041,10 @@ fn maybe_from_hir_attr(attr: &hir::Attribute, item_id: ItemId, tcx: TyCtxt<'_>)\n for attr_span in test_attrs {\n // FIXME: This is ugly, remove when `test_attrs` has been ported to new attribute AP... | 2026-03-06T04:38:02 |
facebook/react | 394e75d9a9af26dc00074f2b8c2978d8c2dfbbb9 | 071dd00366b3accb649e3f5978454e993e0b11aa | [DevTools] Increase max payload for websocket in standalone app (#30848)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitti... | [
{
"path": "packages/react-devtools-core/src/standalone.js",
"patch": "@@ -329,7 +329,7 @@ function startServer(\n const httpServer = useHttps\n ? require('https').createServer(httpsOptions)\n : require('http').createServer();\n- const server = new Server({server: httpServer});\n+ const server = ... | 2024-08-30T09:34:27 |
golang/go | 5ce8cd16f3859ec5ac4106ad8ec15d6236f4501b | f6f4e8b3ef21299db1ea3a343c3e55e91365a7fd | encoding/pem: make Decode complexity linear
Because Decode scanned the input first for the first BEGIN line, and
then the first END line, the complexity of Decode is quadratic. If the
input contained a large number of BEGINs and then a single END right at
the end of the input, we would find the first BEGIN, and then s... | [
{
"path": "src/encoding/pem/pem.go",
"patch": "@@ -37,7 +37,7 @@ type Block struct {\n // line bytes. The remainder of the byte array (also not including the new line\n // bytes) is also returned and this will always be smaller than the original\n // argument.\n-func getLine(data []byte) (line, rest []byte)... | 2025-09-30T18:16:56 |
vercel/next.js | b57c8a16a38a6cc535fe348672ea790643413c1a | 84de02c4200696c1dee754e0816c6551dd8d027d | Preserve interception markers in parameter types (#85526)
### What?
This PR preserves the specific interception route markers in dynamic
parameter types throughout the routing system.
### Why?
Previously, the code only tracked whether a parameter was intercepted
(using generic types like `'dynamic-intercepted'` or
... | [
{
"path": "packages/next/src/build/static-paths/app.ts",
"patch": "@@ -596,7 +596,10 @@ export function resolveParallelRouteParams(\n switch (paramType) {\n case 'catchall':\n case 'optional-catchall':\n- case 'catchall-intercepted':\n+ case 'catchall-intercepte... | 2025-10-31T21:57:04 |
nodejs/node | 395b917ed9bab5d236466d8d6ae7f3686db57f5f | 91617e7a677c4a8fdf8f9331853447e5c7d5f650 | 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": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-05-28T07:10:52 |
electron/electron | 0d948da4b98b0d52115e5be4d047b8f81d857b98 | 2cf59b38858f1162172f9d5aeacba2396855d59d | chore: bump chromium to 132.0.6787.0 (main) (#44329)
* chore: bump chromium in DEPS to 132.0.6785.0
* chore: bump chromium in DEPS to 132.0.6787.0
* 5837702: mac fullscreen: always show traffic lights
https://chromium-review.googlesource.com/c/chromium/src/+/5837702
* 5892572: Move SimpleMenuModel out of u... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '132.0.6783.0',\n+ '132.0.6787.0',\n 'node_version':\n 'v20.18.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2024-10-21T00:02:21 |
facebook/react | 071dd00366b3accb649e3f5978454e993e0b11aa | 61739a8a0fd23adf18336d96f9c307a1cd897354 | [compiler] Errors in earlier functions dont stop subsequent compilation
Errors in an earlier component/hook shouldn't stop later components from compiling.
ghstack-source-id: 6e04a5bb2e2045303cbddad6d6d4bd38d5f7990b
Pull Request resolved: https://github.com/facebook/react/pull/30844 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts",
"patch": "@@ -310,8 +310,6 @@ export function compileProgram(\n pass.opts.eslintSuppressionRules ?? DEFAULT_ESLINT_SUPPRESSIONS,\n pass.opts.flowSuppressions,\n );\n- const lintError = suppressionsToCompilerError... | 2024-08-30T05:40:41 |
golang/go | f6f4e8b3ef21299db1ea3a343c3e55e91365a7fd | 7dd54e1fd7f3a25fccbb5c6ab7066e2baad23e66 | net/url: enforce stricter parsing of bracketed IPv6 hostnames
- Previously, url.Parse did not enforce validation of hostnames within
square brackets.
- RFC 3986 stipulates that only IPv6 hostnames can be embedded within
square brackets in a URL.
- Now, the parsing logic should strictly enforce that only IPv6
hos... | [
{
"path": "src/go/build/deps_test.go",
"patch": "@@ -237,7 +237,6 @@ var depsRules = `\n \t internal/types/errors,\n \t mime/quotedprintable,\n \t net/internal/socktest,\n-\t net/url,\n \t runtime/trace,\n \t text/scanner,\n \t text/tabwriter;\n@@ -300,6 +299,12 @@ var depsRules = `\n \tFMT\n \t< tex... | 2025-08-29T17:35:55 |
rust-lang/rust | 7baf2be12a95fc489c3fc4111baeedbf867b0f46 | 4e0b64408c4aee1066eefa6a80a56803a69467aa | Fix uitests | [
{
"path": "tests/ui-fulldeps/session-diagnostic/diagnostic-derive-doc-comment-field.stderr",
"patch": "@@ -35,12 +35,6 @@ help: the nightly-only, unstable trait `IntoDiagArg` is not implemented for `Not\n LL | struct NotIntoDiagArg;\n | ^^^^^^^^^^^^^^^^^^^^^\n = help: normalized in stderr\n-note: requ... | 2026-03-07T00:23:58 |
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.