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 |
|---|---|---|---|---|---|
rust-lang/rust | 853967a62b2fca1372ae23f95a6f3a420d533660 | 0ecb4371975c5a580a9b64e859542f86ca35bb07 | Don't crash if `#[rustc_{dump_item_bounds,variance}]` was applied to the wrong item kind
Attr parsing already reports an error for this, an subsequent ICE isn't really helpful.
Side note: We certainly don't want convert the `bug!(…)`s in the respective queries to
delayed bugs! It's imperative that these queries eager... | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/rustc_dump.rs",
"patch": "@@ -1,5 +1,5 @@\n-use rustc_hir::{MethodKind, Target};\n use rustc_hir::attrs::AttributeKind;\n+use rustc_hir::{MethodKind, Target};\n use rustc_span::{Span, Symbol, sym};\n \n use crate::attributes::prelude::Allow;",
"addit... | 2026-03-02T15:00:32 |
electron/electron | b497700e363e1f406466050e0dd13d3fc108e96b | 1c991ff765b068f584e5be3002154977b133eb23 | test: fixup Node.js snapshot tests to run correctly (#43332) | [
{
"path": "patches/node/ci_ensure_node_tests_set_electron_run_as_node.patch",
"patch": "@@ -7,18 +7,53 @@ Some node tests / test fixtures spawn other tests that clobber env,\n which causes the `ELECTRON_RUN_AS_NODE` variable to be lost. This patch\n re-injects it.\n \n-diff --git a/test/common/assertSnapsho... | 2024-08-16T09:17:42 |
golang/go | 73676e322396f6d49b4328456023233a2fe5693e | 0e1b98993ea6574819813cfad89d7fd1d1c47552 | cmd/go: run cgo and cgo compiles in their own actions
This change splits package builds further into even more actions.
Between the cache action (and cover action, if present) and the actual
build action we insert three layers of actions:
Check Cache Action
| |
| V... | [
{
"path": "src/cmd/go/internal/work/action.go",
"patch": "@@ -19,6 +19,7 @@ import (\n \t\"internal/platform\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"slices\"\n \t\"strings\"\n \t\"sync\"\n \t\"time\"\n@@ -578,6 +579,47 @@ func (ca *coverActor) Act(b *Builder, ctx context.Context, a *Action) error {\n \tret... | 2025-08-08T21:35:43 |
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 |
nodejs/node | 559d4819242989553ac1bfc37dba27ab69c095d2 | f37d2a580913e0dd94b0358cd10552ef0aedba97 | src: fix typo in comment
PR-URL: https://github.com/nodejs/node/pull/57291
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> | [
{
"path": "src/node_util.cc",
"patch": "@@ -357,7 +357,7 @@ static void DefineLazyPropertiesGetter(\n // This getter has no JavaScript function representation and is not\n // invoked in the creation context.\n // When this getter is invoked in a vm context, the `Realm::GetCurrent(info)`\n- // returns... | 2025-03-03T13:51:12 |
electron/electron | 286384258be413c451b37c680b3237cbf1c625ea | f6bae51025a9451b972fb6ca038cd37652eabf33 | fix: blank page when printing pdf (#43309) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -2899,11 +2899,7 @@ void WebContents::OnGetDeviceNameToUse(\n if (!print_view_manager)\n return;\n \n- auto* focused_frame = web_contents()->GetFocusedFrame();\n- auto* rfh = focused_frame && focused_frame->HasSelection()\n- ... | 2024-08-14T19:47:47 |
vercel/next.js | c525e1395bed512bbbba90888f3f56a6138d3fa0 | 66376415ab585f25d753258452f7014ba4927793 | Reland "Include server latency in debug info" (#84950)
Co-authored-by: Andrew Clark <git@andrewclark.io> | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -34,6 +34,7 @@ import type { NextConfigComplete } from '../server/config-shared'\n import { finalizeEntrypoint } from './entries'\n import * as Log from './output/log'\n import { buildConfiguration } from './webpack/config'\n+import ForceCo... | 2025-10-16T15:36:22 |
golang/go | 0e1b98993ea6574819813cfad89d7fd1d1c47552 | 84e9ab398438bc728683ca68485c6e89526b0441 | testing: exit B.Loop early upon saturation
There's a cap of 1 billion benchmark iterations because more than that
is usually not going to give more useful data. Unfortunately, the
existing implementation neglected to check whether the 1e9 cap had
already been exceeded when it adjusted the number of iterations in the
B... | [
{
"path": "src/testing/benchmark.go",
"patch": "@@ -298,6 +298,9 @@ func (b *B) doBench() BenchmarkResult {\n \treturn b.result\n }\n \n+// Don't run more than 1e9 times. (This also keeps n in int range on 32 bit platforms.)\n+const maxBenchPredictIters = 1_000_000_000\n+\n func predictN(goalns int64, prevI... | 2025-08-31T17:34:47 |
nodejs/node | d3064e8ddbe3fefc6ece838d8d298d78616162ae | a914f173d2072ed47fc01df30114c7d84924de11 | v8: add v8.getCppHeapStatistics() method
Expose `CppHeap` data via
`cppgc::CppHeap::CollectStatistics()` in the v8 module.
PR-URL: https://github.com/nodejs/node/pull/57146
Fixes: https://github.com/nodejs/node/issues/56533
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Stephen Belanger <admin@stephenb... | [
{
"path": "doc/api/v8.md",
"patch": "@@ -271,6 +271,92 @@ buffers and external strings.\n }\n ```\n \n+## `v8.getCppHeapStatistics([detailLevel])`\n+\n+Retrieves [CppHeap][] statistics regarding memory consumption and\n+utilization using the V8 [`CollectStatistics()`][] function which\n+may change from one ... | 2025-03-04T11:14:34 |
rust-lang/rust | 797f06675afb89616e7fc99704e4869d012ea52c | ba1567989ee7774a1fb53aa680a8e4e8daa0f519 | Fix LegacyKeyValueFormat report from docker build: host-aarch64 | [
{
"path": "src/ci/docker/host-aarch64/aarch64-gnu-llvm-20/Dockerfile",
"patch": "@@ -37,20 +37,19 @@ RUN sh /scripts/sccache.sh\n \n # We are disabling CI LLVM since this builder is intentionally using a host\n # LLVM, rather than the typical src/llvm-project LLVM.\n-ENV NO_DOWNLOAD_CI_LLVM 1\n-ENV EXTERNAL... | 2026-02-28T16:21:09 |
vercel/next.js | 76d2beaeb86a718a7e643ffd9b2c1800e3b78ee4 | aa9075bea243a02d13a34341059ecd23dafb25fe | [Cache Components] Remove `unstable` prefix from `unstable_cacheTag` (#84880)
`cacheLife` is now stable and does not require an unstable prefix | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -653,7 +653,7 @@ impl ReactServerComponentValidator {\n \"revalidateTag\",\n // \"unstable_cache\", // useless in client, but doesn't technically error\n ... | 2025-10-16T14:01:44 |
electron/electron | 62406708cd29540caef0e07a74f696f981d963f7 | d004329f6f151a22b4009a51fa646dc0236ac1ac | docs: fix formatting in fuses tutorial (#43303) | [
{
"path": "docs/tutorial/fuses.md",
"patch": "@@ -13,34 +13,39 @@ Fuses are the solution to this problem, at a high level they are \"magic bits\" in\n ### `runAsNode`\n \n **Default:** Enabled\n+\n **@electron/fuses:** `FuseV1Options.RunAsNode`\n \n The runAsNode fuse toggles whether the `ELECTRON_RUN_AS_NO... | 2024-08-13T19:27: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 |
nodejs/node | 0aa3dddfeb4328d2f7a686893ec8d7569ad608f8 | 635aed90c0af549c28f9bfe8229e53b97e2b4688 | module: handle cached linked async jobs in require(esm)
This handles two cases caused by using Promise.all() with
multiple dynamic import() that can make an asynchronously
linked module job that has finished/failed linking but
has not yet started actual evaluation appear in the load
cache when another require request ... | [
{
"path": "lib/internal/modules/esm/loader.js",
"patch": "@@ -18,7 +18,6 @@ const {\n kIsExecuting,\n kRequiredModuleSymbol,\n } = require('internal/modules/cjs/loader');\n-\n const { imported_cjs_symbol } = internalBinding('symbols');\n \n const assert = require('internal/assert');\n@@ -38,7 +37,15 @@ ... | 2025-03-04T07:34:34 |
rust-lang/rust | 88cec3a1c0fb586200f20e0bd2bc54fa83b3bd9b | 4d09563d8df41a9c26cccaf291bcf461b539b4e8 | update debuginfo visualizers and tests | [
{
"path": "src/etc/gdb_providers.py",
"patch": "@@ -18,6 +18,12 @@ def unwrap_unique_or_non_null(unique_or_nonnull):\n return ptr if ptr.type.code == gdb.TYPE_CODE_PTR else ptr[ptr.type.fields()[0]]\n \n \n+def unwrap_scalar_wrappers(wrapper):\n+ while not wrapper.type.is_scalar:\n+ wrapper = ... | 2026-02-24T11:27:08 |
vercel/next.js | 94f849e17a3b2b00f0dc2a493bce1217a3052691 | 718141176db250839ae2f493d8cac7637f22290c | Development: Implement request log time details (#84906)
## What?
Adds more detailed time for each request, showing what time is spent in
Next.js (i.e. routing, Turbopack compilation, etc.) and what time is
spent executing the application code which includes time spent in React
/ React rendering, requiring the applic... | [
{
"path": "packages/next/src/build/duration-to-string.ts",
"patch": "@@ -1,32 +1,54 @@\n+// Time thresholds in seconds\n+const SECONDS_IN_MINUTE = 60\n+const MINUTES_THRESHOLD_SECONDS = 120 // 2 minutes\n+const SECONDS_THRESHOLD_HIGH = 40\n+const SECONDS_THRESHOLD_LOW = 2\n+const MILLISECONDS_PER_SECOND = 1... | 2025-10-16T09:14:02 |
electron/electron | bba31189a06f59d5b828e25defe14571cb502157 | 0f55b452826ca82ca387d7b0df921ffa5d38395e | feat: accept-encoding zstd (#43150)
* fix: accept-encoding zstd
* Update shell/browser/net/system_network_context_manager.cc
Co-authored-by: Sam Maddock <smaddock@slack-corp.com>
* chore: make lint happy
---------
Co-authored-by: Sam Maddock <smaddock@slack-corp.com> | [
{
"path": "shell/browser/net/system_network_context_manager.cc",
"patch": "@@ -195,6 +195,8 @@ SystemNetworkContextManager::CreateDefaultNetworkContextParams() {\n void SystemNetworkContextManager::ConfigureDefaultNetworkContextParams(\n network::mojom::NetworkContextParams* network_context_params) {\n ... | 2024-08-12T14:00:04 |
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 |
nodejs/node | 47a59bde2aadb3ad1b377c0ef12df7abc28840e9 | 7c910d09e29186775866d1b69fa1be1d9e900d0a | src: fix node_config_file.h compilation error in GN build
PR-URL: https://github.com/nodejs/node/pull/57210
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "src/node_config_file.h",
"patch": "@@ -6,6 +6,7 @@\n #include <map>\n #include <string>\n #include <variant>\n+#include \"node_internals.h\"\n #include \"simdjson.h\"\n #include \"util-inl.h\"\n ",
"additions": 1,
"deletions": 0,
"language": "C/C++ Header"
}
] | 2025-03-03T08:27:31 |
rust-lang/rust | 66786fc407e79f013c6f0f256f36de7efcd96ae0 | e7d90c695a39426baf5ae705de2f9570a72229de | fix next-solver ICE on PointeeSized goals | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs",
"patch": "@@ -2632,6 +2632,8 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n trait_def_id != def_id\n && trait_name == self.tcx.item_name(def_id)\n && trait_has_same_params(de... | 2026-02-01T17:07:19 |
vercel/next.js | 00c027932476d941b9a1027ac5c1ab51969cd3d7 | d8fb79326b0c90bd7a37a3d6c7dbd276b9d70042 | Revert "Include server latency in debug info" (#84932)
Reverts vercel/next.js#84580
This is failing certain tests in development.
x-ref:
https://github.com/vercel/next.js/actions/runs/18511231838/job/52758196715 | [
{
"path": "packages/next/src/client/components/router-reducer/create-initial-router-state.test.tsx",
"patch": "@@ -139,7 +139,6 @@ describe('createInitialRouterState', () => {\n cache: expectedCache,\n nextUrl: '/linking',\n previousNextUrl: null,\n- debugInfo: null,\n }\n \n ... | 2025-10-16T02:17:35 |
electron/electron | c9b7806418d145abf4098ec60b964bfd24b2369c | 23bcca3ffcf31d6874fe3b0f69335a8e58755e43 | chore: bump chromium to 129.0.6650.0 (main) (#43266)
* chore: bump chromium in DEPS to 129.0.6645.0
* chore: update patches
* chore: bump chromium in DEPS to 129.0.6646.0
* refactor: remove ppapi dependency
PPAPI removal - https://issues.chromium.org/issues/40511450
PDF viewer migration - https://issues.c... | [
{
"path": ".github/workflows/pipeline-segment-electron-gn-check.yml",
"patch": "@@ -127,7 +127,8 @@ jobs:\n cd src\n gn check out/Default //electron:electron_lib\n gn check out/Default //electron:electron_app\n- gn check out/Default //electron/shell/common/api:mojo\n+ g... | 2024-08-12T08:28:33 |
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 |
nodejs/node | d1ec9488665e57244e9802ae142245be3323ceec | a6181b4a715670bc3c266935ce305563f668c186 | doc: fix rendering of DEP0174 description
PR-URL: https://github.com/nodejs/node/pull/56835
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -3568,7 +3568,7 @@ changes:\n \n Type: Runtime\n \n-Calling [`util.promisify`][] on a function that returns a <Promise> will ignore\n+Calling [`util.promisify`][] on a function that returns a `Promise` will ignore\n the result of said promise, which can lead... | 2025-03-01T23:46:31 |
vercel/next.js | 2d01e12bfae308a3406ac16501fb4b6e65543852 | 43c6ccfdd5e804b6e85b307101b50af689c60b59 | Fix url-imports test (#84922)
It fetches itself from github | [
{
"path": "test/e2e/url-imports/next.lock/lock.json",
"patch": "@@ -15,10 +15,10 @@\n \"integrity\": \"sha512-orh6tVnh1jjxWNNLduiv0pUcW0guzwTmy52JQGdz4D2LL2IgIlJaC0w4+YBtIBXa2kKGho839WgGAK0sC0Folw==\",\n \"contentType\": \"application/javascript; charset=UTF-8\"\n },\n- \"https://github.com/verce... | 2025-10-15T23:03:56 |
electron/electron | c35739d60df88b78383af0376cb094566bf5ed55 | c4dfff98440c857992ad0847b5132f2cbb2085ec | refactor: use url::DomainIs() to check cookie domains (#43262)
* test: add tests to exercise pre-exsiting cookie domain matching behavior
* refactor: use url::DomainIs() to match cookie domains
* docs: fix typo | [
{
"path": "docs/api/cookies.md",
"patch": "@@ -74,7 +74,7 @@ The following methods are available on instances of `Cookies`:\n `url`. Empty implies retrieving cookies of all URLs.\n * `name` string (optional) - Filters cookies by name.\n * `domain` string (optional) - Retrieves cookies whose domains ... | 2024-08-09T23:35:18 |
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 |
nodejs/node | 71196c431f6ae65a8fffb57a47b742ce93c86e4f | 60dff4208fe330265e5ae217d3d66e99825fe45f | net: emit an error when custom lookup resolves to a non-string address
PR-URL: https://github.com/nodejs/node/pull/57192
Fixes: https://github.com/nodejs/node/issues/57112
Reviewed-By: Tim Perry <pimterry@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
... | [
{
"path": "lib/net.js",
"patch": "@@ -1416,7 +1416,7 @@ function lookupAndConnect(self, options) {\n // calls net.Socket.connect() on it (that's us). There are no event\n // listeners registered yet so defer the error event to the next tick.\n process.nextTick(connectErrorNT, self, e... | 2025-03-01T20:43:41 |
golang/go | 5a0446d4498fb59853c81300ec387374a98f23bd | c39b2fdd1ec86f68668141a0901d5f3fc634854e | [dev.simd] simd/_gen/simdgen, cmd/compile: add memory op machine ops
This CL adds the machine ops for memory-op and also their prog writing
logic.
This CL also fixes a bug in the XED parser. Previously the
merge of machine ops is not checking the CPU feature, so some AVX
instruction might have their "memFeatures" fie... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1353,6 +1353,514 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPSHRDQMasked512:\n \t\tp = simdV2kvImm8(s, v)\n \n+\tcase ssa.OpAMD64VPABSDMasked128load,\n+\t\tssa.OpAMD64VPABSDMasked256load,\n+\t\tssa.OpAM... | 2025-09-04T18:20:59 |
electron/electron | c4dfff98440c857992ad0847b5132f2cbb2085ec | 346244ef9e89d6f7d4a16e9c20af498609420c33 | fix: accidental handle copying in a range loop (#43260)
fix: accidental handle copying
Xref: https://github.com/electron/electron/pull/37857 | [
{
"path": "shell/browser/api/message_port.cc",
"patch": "@@ -9,6 +9,7 @@\n #include <utility>\n \n #include \"base/containers/contains.h\"\n+#include \"base/containers/to_vector.h\"\n #include \"base/strings/string_number_conversions.h\"\n #include \"base/task/single_thread_task_runner.h\"\n #include \"gin/... | 2024-08-09T18:38:03 |
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 | cf5e993177dac0d9fd30e961416a391c37da1815 | cdb3d467fa2df80611cc7576ce3b3806aa715fa3 | cmd/link: allow one to specify the data section in the internal linker
Fixes #74945
Change-Id: Ia73a8dcdf707222e822522daaa7f31a38b1c31e6
GitHub-Last-Rev: da1526ad8cebd5cfa2f979d49d86f3424d192ce0
GitHub-Pull-Request: golang/go#75117
Reviewed-on: https://go-review.googlesource.com/c/go/+/698355
Reviewed-by: Mark Freema... | [
{
"path": "src/cmd/link/elf_test.go",
"patch": "@@ -59,6 +59,12 @@ package main\n func main() {}\n `\n \n+var goSourceWithData = `\n+package main\n+var globalVar = 42\n+func main() { println(&globalVar) }\n+`\n+\n // The linker used to crash if an ELF input file had multiple text sections\n // with the same... | 2025-09-10T19:25:49 |
nodejs/node | 60dff4208fe330265e5ae217d3d66e99825fe45f | 5ae1224cef39bbb09af11ca272b8cfe7a19b9b03 | test: skip `test-config-json-schema` with quic
`parallel/test-config-json-schema` compares to a generated fixture that
assumes that Node.js was built with default configuration settings.
Skip the test if non-default quic is enabled (`configure --with-quic`).
Refs: https://github.com/nodejs/node/pull/57016
Refs: http... | [
{
"path": "test/parallel/test-config-json-schema.js",
"patch": "@@ -21,6 +21,10 @@ if (!common.hasIntl) {\n common.skip('missing Intl');\n }\n \n+if (process.config.variables.node_quic) {\n+ common.skip('this test assumes default configuration options');\n+}\n+\n const {\n generateConfigJsonSchema,\n }... | 2025-02-27T17:42:48 |
electron/electron | f49f6ff68b5edef36ec503a3fe08569b116f74fd | 0718c2b9eec4fac19cd799359cf546c165405b96 | fix: check screen capture permissions in `desktopCapturer` (#43080)
fix: check screen capture permissions in desktopCapturer | [
{
"path": "shell/browser/api/electron_api_desktop_capturer.cc",
"patch": "@@ -42,6 +42,10 @@\n #include \"ui/gfx/x/randr.h\"\n #endif\n \n+#if BUILDFLAG(IS_MAC)\n+#include \"ui/base/cocoa/permissions_utils.h\"\n+#endif\n+\n #if BUILDFLAG(IS_LINUX)\n // Private function in ui/base/x/x11_display_util.cc\n bas... | 2024-08-09T08:08:49 |
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 |
nodejs/node | ac5afbc83ae21d5f6f718dcfd47816981861dd98 | 40deed2ebdf696dd0066cd318670ae12b841499f | doc: add @geeksilva97 to collaborators
Fixes: https://github.com/nodejs/node/issues/57032
PR-URL: https://github.com/nodejs/node/pull/57241
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> | [
{
"path": "README.md",
"patch": "@@ -335,6 +335,8 @@ For information about the governance of the Node.js project, see\n **Gerhard Stöbich** <<deb2001-github@yahoo.de>> (he/they)\n * [gabrielschulhof](https://github.com/gabrielschulhof) -\n **Gabriel Schulhof** <<gabrielschulhof@gmail.com>>\n+* [geeksilv... | 2025-02-28T17:13:23 |
rust-lang/rust | 5bd28b85bd5cc0000f67035a1c37fd0b150eccd6 | 5677f7c70676a99c6cae3b636098ffbf5f8c70f5 | Remove `FromCycleError` impl for `SymbolName`.
It has no effect.
`symbol_name` is the only query that produces a `SymbolName`. If it was
marked with `cycle_delayed_bug`/`cycle_stash` then this `FromCycleError`
impl would make sense, but that's not the case. Maybe it was the case in
the past. | [
{
"path": "compiler/rustc_query_impl/src/from_cycle_error.rs",
"patch": "@@ -56,18 +56,6 @@ impl<'tcx> FromCycleError<'tcx> for Result<ty::EarlyBinder<'_, Ty<'_>>, CyclePla\n }\n }\n \n-impl<'tcx> FromCycleError<'tcx> for ty::SymbolName<'_> {\n- fn from_cycle_error(tcx: TyCtxt<'tcx>, _: CycleError, _... | 2026-02-27T05:15:59 |
golang/go | fef360964c85d47406bdfbf7333591686720663b | 7d562b8460a210ad9d0b65a44fbfb71d2ea81789 | archive/tar: fix typo in benchmark name
This was accidentally introduced in CL 662835.
Change-Id: I5c7ac67337e33e82037414377912b57d2a45be91
Reviewed-on: https://go-review.googlesource.com/c/go/+/702275
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit:... | [
{
"path": "src/archive/tar/strconv_test.go",
"patch": "@@ -440,7 +440,7 @@ func TestFormatPAXRecord(t *testing.T) {\n \t}\n }\n \n-func BenchmarkParsePAXTIme(b *testing.B) {\n+func BenchmarkParsePAXTime(b *testing.B) {\n \ttests := []struct {\n \t\tname string\n \t\tin string",
"additions": 1,
"de... | 2025-09-10T00:24:20 |
electron/electron | 0718c2b9eec4fac19cd799359cf546c165405b96 | 1a6563fb66455d3ec68efaeb62c11f3c25187c62 | fix: system-context-menu with frameless BrowserWindows (#43243) | [
{
"path": "shell/browser/native_window_views_win.cc",
"patch": "@@ -288,6 +288,15 @@ bool NativeWindowViews::PreHandleMSG(UINT message,\n \n return false;\n }\n+ case WM_RBUTTONUP: {\n+ if (!has_frame()) {\n+ bool prevent_default = false;\n+ NotifyWindowSystemContextMenu(GET_... | 2024-08-09T08:08:01 |
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 |
rust-lang/rust | 5677f7c70676a99c6cae3b636098ffbf5f8c70f5 | 6f111d21a5ab57069727be85fd94f910a49665aa | Rename trait `Value` as `FromCycleError`.
`Value` is an unhelpfully generic name. Standard naming procedure for a
trait with a single method is for the trait name to match the method
name, which is what this commit does. Likewise, the enclosing module is
renamed from `values` to `from_cycle_error`.
Also add a comment... | [
{
"path": "compiler/rustc_middle/src/queries.rs",
"patch": "@@ -150,10 +150,10 @@ use crate::{dep_graph, mir, thir};\n // `Providers` that the driver creates (using several `rustc_*` crates).\n //\n // The result type of each query must implement `Clone`, and additionally\n-// `ty::query::values::Value`, wh... | 2026-02-27T04:11:18 |
vercel/next.js | 43c6ccfdd5e804b6e85b307101b50af689c60b59 | a5064d7ee44790de2f4e5cefc04314fdd0d941dc | Fix parallel routes ignoring generateStaticParams from primary route (#84889)
### What?
Fixes a bug where `generateStaticParams` from the primary route was
being ignored when dynamic segments existed in both regular routes
(`children`) and parallel routes (e.g., `@breadcrumbs`), causing routes
that should have been s... | [
{
"path": "packages/next/src/build/segment-config/app/app-segments.ts",
"patch": "@@ -128,10 +128,12 @@ async function collectAppPageSegments(routeModule: AppPageRouteModule) {\n \n // If this is a page segment, we've reached a leaf node\n if (name === PAGE_SEGMENT_KEY) {\n- // Add all segments... | 2025-10-15T23:02:57 |
nodejs/node | 40deed2ebdf696dd0066cd318670ae12b841499f | 72cfa4b11c279653750b243a6ed2c769ef9dc4a2 | src: improve error handling in `node_messaging.cc`
PR-URL: https://github.com/nodejs/node/pull/57211
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "src/node_messaging.cc",
"patch": "@@ -1627,10 +1627,15 @@ static void MessageChannel(const FunctionCallbackInfo<Value>& args) {\n \n MessagePort::Entangle(port1, port2);\n \n- args.This()->Set(context, env->port1_string(), port1->object())\n- .Check();\n- args.This()->Set(context, env->p... | 2025-02-26T00:24:25 |
golang/go | c34958234414a6ec8512967b3681d45314b50d3a | 253dd08f5df3a45eafc97eec388636fcabfe0174 | crypto/rsa: don't test CL 687836 against v1.0.0 FIPS 140-3 module
Fixes #75343 (again)
Updates #74115
Change-Id: I6a6a696431d12e45ec9e302e63ed18990c5ee9d9
Reviewed-on: https://go-review.googlesource.com/c/go/+/702615
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Michael Pratt <mpratt@google.com>
Rev... | [
{
"path": "src/crypto/rsa/rsa_test.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"crypto\"\n \t\"crypto/internal/boring\"\n \t\"crypto/internal/cryptotest\"\n+\t\"crypto/internal/fips140\"\n \t\"crypto/rand\"\n \t. \"crypto/rsa\"\n \t\"crypto/sha1\"\n@@ -1245,6 +1246,9 @@ func TestModifiedPrivateKey(t *tes... | 2025-09-10T21:06:39 |
electron/electron | 70dda694e222a73fd11276908b03509783513e2d | aa19087bed8da3fdd3872e36b272b8673fa15bc7 | build: fix build when `enable_pdf_viewer` and `enable_electron_extensions` disabled (#43206)
build: fix build when enable_pdf_viewer and enable_electron_extensions disabled | [
{
"path": "shell/browser/api/electron_api_session.cc",
"patch": "@@ -48,6 +48,7 @@\n #include \"net/base/completion_repeating_callback.h\"\n #include \"net/base/load_flags.h\"\n #include \"net/base/network_anonymization_key.h\"\n+#include \"net/base/registry_controlled_domains/registry_controlled_domain.h\"... | 2024-08-07T12:51:38 |
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 |
rust-lang/rust | 2aaced63444987973c1205931ed3dda94f26a26b | 8129da81e247cb21f8d7cacf486f4683cc291660 | Replace two `abort_if_errors` calls.
Calling `abort_if_errors` after emitting an error is guaranteed to call
`raise_fatal`, so just do that directly instead. | [
{
"path": "compiler/rustc_query_impl/src/execution.rs",
"patch": "@@ -132,9 +132,8 @@ fn mk_cycle<'tcx, C: QueryCache>(\n query.value_from_cycle_error(tcx, cycle_error, guar)\n }\n CycleErrorHandling::Fatal => {\n- error.emit();\n- tcx.dcx().abort_if_errors(... | 2026-02-27T03:31:51 |
nodejs/node | 72cfa4b11c279653750b243a6ed2c769ef9dc4a2 | b4c7ea0dc4558ad8c341cfbc3ab7d23522a02b3d | src: improve error handling in `tty_wrap.cc`
PR-URL: https://github.com/nodejs/node/pull/57211
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "src/tty_wrap.cc",
"patch": "@@ -100,8 +100,12 @@ void TTYWrap::GetWindowSize(const FunctionCallbackInfo<Value>& args) {\n \n if (err == 0) {\n Local<Array> a = args[0].As<Array>();\n- a->Set(env->context(), 0, Integer::New(env->isolate(), width)).Check();\n- a->Set(env->context(), 1, ... | 2025-02-26T00:12:56 |
golang/go | 253dd08f5df3a45eafc97eec388636fcabfe0174 | 2009e6c596551673ebb12050daa30171171cb432 | debug/macho: filter non-external symbols when reading imported symbols without LC_DYSYMTAB
File.ImportedSymbols will return symbols with a type that has one of the
N_STAB (0xe0) bits set and no section. That's not the expected behavior,
as those symbols might not be external.
We should expand the type check to also a... | [
{
"path": "src/debug/macho/file.go",
"patch": "@@ -735,9 +735,10 @@ func (f *File) ImportedSymbols() ([]string, error) {\n \t\tconst (\n \t\t\tN_TYPE = 0x0e\n \t\t\tN_UNDF = 0x0\n+\t\t\tN_EXT = 0x01\n \t\t)\n \t\tfor _, s := range st.Syms {\n-\t\t\tif s.Type&N_TYPE == N_UNDF && s.Sect == 0 {\n+\t\t\tif s.T... | 2025-09-10T11:16:00 |
vercel/next.js | 2e327560519ef5f641bf211877b404da7b5edbae | 32476071fe331948d89a35c391eb578aed8de979 | Include server latency in debug info (#84580)
The debug info of the promise created by the Flight client represents
the latency between when the navigation starts and when it's passed to
React. Most importantly, it should include the time it takes for the
client to start receiving data from the server.
Before this PR... | [
{
"path": "packages/next/src/client/components/router-reducer/create-initial-router-state.test.tsx",
"patch": "@@ -139,6 +139,7 @@ describe('createInitialRouterState', () => {\n cache: expectedCache,\n nextUrl: '/linking',\n previousNextUrl: null,\n+ debugInfo: null,\n }\n \n ... | 2025-10-15T21:39:42 |
electron/electron | 45891aa75b77061edc548dd142f4ccf8a5deae4d | 6293bbced0e2282e2a4076fd5cc422a2a90f1ed5 | build: fix patchup logic only running on one platform (#43139) | [
{
"path": ".github/actions/checkout/action.yml",
"patch": "@@ -75,7 +75,7 @@ runs:\n \"$GITHUB_SERVER_URL/$GITHUB_REPOSITORY\"\n \n ELECTRON_USE_THREE_WAY_MERGE_FOR_PATCHES=1 gclient sync --with_branch_heads --with_tags -vvvvv\n- if [ \"${{ inputs.is-release }}\" != \"true\" ]; then\n+ ... | 2024-08-07T08:01:59 |
rust-lang/rust | c0770baed8b4158a063ed27493ff2eeacfd6681c | cc1b878386666be4b97ed21e053487f1ec0f6c0c | Make `from_cycle_error` consume the `CycleError`.
This makes it clear the `CycleError` is not used after the call. | [
{
"path": "compiler/rustc_middle/src/query/plumbing.rs",
"patch": "@@ -151,7 +151,7 @@ pub struct QueryVTable<'tcx, C: QueryCache> {\n pub hash_value_fn: Option<fn(&mut StableHashingContext<'_>, &C::Value) -> Fingerprint>,\n \n pub value_from_cycle_error:\n- fn(tcx: TyCtxt<'tcx>, cycle_error:... | 2026-02-26T23:31:32 |
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 | de5d7eccb99088e3ab42c0d907da6852d8f9cebe | 8098b99547e2bb802c976a424e486ba94d3222a8 | runtime/internal/maps: only conditionally clear groups when sparse
We only want to do the work of clearing slots
if they are full. But we also don't want to do too
much work to figure out whether a slot is full or not,
especially if clearing a slot is cheap.
1) We decide group-by-group instead of slot-by-slot.
If... | [
{
"path": "src/internal/runtime/maps/table.go",
"patch": "@@ -604,12 +604,37 @@ func (t *table) Clear(typ *abi.MapType) {\n \tif t.used == 0 && t.growthLeft == mgl { // no current entries and no tombstones\n \t\treturn\n \t}\n-\tfor i := uint64(0); i <= t.groups.lengthMask; i++ {\n-\t\tg := t.groups.group(t... | 2025-08-21T00:33:14 |
nodejs/node | b4c7ea0dc4558ad8c341cfbc3ab7d23522a02b3d | 52ecb96cf6b38cbc0efad850130db2ee806b628f | src: improve error handling in `tcp_wrap.cc`
PR-URL: https://github.com/nodejs/node/pull/57211
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "src/tcp_wrap.cc",
"patch": "@@ -390,8 +390,9 @@ MaybeLocal<Object> AddressToJS(Environment* env,\n \n int port;\n \n- if (info.IsEmpty())\n+ if (info.IsEmpty()) {\n info = Object::New(env->isolate());\n+ }\n \n switch (addr->sa_family) {\n case AF_INET6:\n@@ -413,32 +414,45 @@ MaybeL... | 2025-02-26T00:11:31 |
vercel/next.js | 32476071fe331948d89a35c391eb578aed8de979 | 1da5efa1482e2eadce9719fb94d2f74148321973 | Turbopack: fix spacing on EcmascriptModuleAssetType (#84915)
### What?
typo | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -300,10 +300,10 @@ impl Display for EcmascriptModuleAssetType {\n EcmascriptModuleAssetType::Typescript { tsx, analyze_types } => {\n write!(f, \"typescript\")?;\n if *tsx {\n- ... | 2025-10-15T20:19:58 |
electron/electron | a4dcb0fb3229f037560f63337f860ae218f9bcaf | acd39bd077b28588e5b1488739f6f650b9b3c1b7 | build: fixup patches in main (#43218)
chore: fixup patches in main | [
{
"path": "patches/chromium/fix_potential_draggable_region_crash_when_no_mainframeimpl.patch",
"patch": "@@ -16,10 +16,10 @@ MainFrameImpl is not null.\n Upstreamed in https://chromium-review.googlesource.com/c/chromium/src/+/5756619\n \n diff --git a/third_party/blink/renderer/core/exported/web_view_impl.c... | 2024-08-05T17:51:17 |
facebook/react | e33a7233a76e1164bd1a9c4b8115abb575b48c50 | 18bf7bf5002450ce7daa281e8be1c3216bd871ed | [DevTools] Track virtual instances on the tracked path for selections (#30802)
This appends a (filtered) virtual instance path at the end of the fiber
path. If a virtual instance is selected inside the fiber.
The main part of the path is still just the fiber path since that's the
semantically stateful part. Then ... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -2266,16 +2266,11 @@ export function attach(\n debug('recordUnmount()', fiber, null);\n }\n \n- if (trackedPathMatchFiber !== null) {\n+ if (trackedPathMatchInstance === fiberInstance) {\n // We're i... | 2024-08-29T16:45:03 |
rust-lang/rust | cc1b878386666be4b97ed21e053487f1ec0f6c0c | 72a001bc25217104f9de5ff4b35c280c95adcb28 | Inline and remove `handle_cycle_error`.
It has a single use. | [
{
"path": "compiler/rustc_query_impl/src/execution.rs",
"patch": "@@ -5,7 +5,7 @@ use rustc_data_structures::hash_table::{Entry, HashTable};\n use rustc_data_structures::stack::ensure_sufficient_stack;\n use rustc_data_structures::sync::{DynSend, DynSync};\n use rustc_data_structures::{outline, sharded, syn... | 2026-02-26T23:27:31 |
vercel/next.js | 1da5efa1482e2eadce9719fb94d2f74148321973 | de7393051378a4acb1f3fdc6fbde7ad82beb67c3 | fix: process.env.TURBOPACK maybe undefined (#84885) | [
{
"path": "packages/next-rspack/index.js",
"patch": "@@ -4,7 +4,7 @@ module.exports = function withRspack(config) {\n // we have already been called. This can happen when using build workers.\n return config\n }\n- if (process.env.TURBOPACK === 'auto') {\n+ if (!process.env.TURBOPACK || process... | 2025-10-15T20:16:43 |
nodejs/node | 48f381d309be4093175a037cfb232cd750f8e17e | 0d92ce497b044f1ea80b850dacea7f309d0b046b | fs: only show deprecation warning when error code matches
PR-URL: https://github.com/nodejs/node/pull/56549
Refs: https://github.com/nodejs/node/pull/55753
Reviewed-By: Jacob Smith <jacob@frende.me> | [
{
"path": "lib/fs.js",
"patch": "@@ -278,8 +278,8 @@ let showExistsDeprecation = true;\n function existsSync(path) {\n try {\n path = getValidatedPath(path);\n- } catch {\n- if (showExistsDeprecation) {\n+ } catch (err) {\n+ if (showExistsDeprecation && err?.code === 'ERR_INVALID_ARG_TYPE') {\... | 2025-02-28T10:46:11 |
golang/go | 8098b99547e2bb802c976a424e486ba94d3222a8 | fe5420b054a091f59f5adbd78f4716d20c7f484c | internal/runtime/maps: speed up Clear
We don't need to know the actual full slots, just whether there
are any or not.
The test for any full slots is simpler on amd64. We don't have to
use PMOVMSKB and do the intreg->floatreg transfer.
Fixes #75097
Change-Id: Iace1c100618d7fc2ac5ddd5fe9e8fe5c9595243f
Reviewed-on: ht... | [
{
"path": "src/internal/runtime/maps/group.go",
"patch": "@@ -215,6 +215,12 @@ func (g ctrlGroup) matchFull() bitset {\n \treturn ctrlGroupMatchFull(g)\n }\n \n+// anyFull reports whether any slots in the group are full.\n+func (g ctrlGroup) anyFull() bool {\n+\t// A slot is full iff bit 7 is unset. Test wh... | 2025-08-20T23:53:09 |
electron/electron | acd39bd077b28588e5b1488739f6f650b9b3c1b7 | 3d766e9ccb82dbec81c03b83171c3f149f71cde8 | ci: auto label bug issues with platform (#43198) | [
{
"path": ".github/workflows/issue-opened.yml",
"patch": "@@ -86,6 +86,29 @@ jobs:\n }\n }\n \n+ const operatingSystems = select('heading:has(> text[value=\"What operating system(s) are you using?\"]) + paragraph > text', tree)?.value.trim().split(', ');\n+ co... | 2024-08-05T13:52:49 |
facebook/react | 795b3207ce5ea25c80749e367c61e5f56ac09856 | 537c74e16a394df16a4b368caa09ea5755f78dfb | fix[react-devtools/extensions]: fixed tabs API calls and displaying restricted access popup (#30825)
Stacked on https://github.com/facebook/react/pull/30824. See [this
commit](https://github.com/facebook/react/pull/30825/commits/c9830d64749cf8fd592ea30a1cd65842cf83f6df).
Turns out we should be listing `tabs` in ou... | [
{
"path": "packages/react-devtools-extensions/chrome/manifest.json",
"patch": "@@ -42,7 +42,8 @@\n },\n \"permissions\": [\n \"storage\",\n- \"scripting\"\n+ \"scripting\",\n+ \"tabs\"\n ],\n \"host_permissions\": [\n \"<all_urls>\"",
"additions": 2,
"deletions": 1,
"lan... | 2024-08-29T10:31:43 |
vercel/next.js | 776625634df4260cf7c6f5459ffc74c98ba9f136 | 7e11a155cca95dbe1a8ef655c8389ec7ca266598 | Remove deprecated experimental_ppr route-level configuration (#84871)
### What?
Removes the deprecated `experimental_ppr` route-level configuration
option from Next.js.
### Why?
The PPR configuration feature has been deprecated in favor of the cache
components feature flag. The `experimental_ppr` route-level option... | [
{
"path": "crates/next-core/src/segment_config.rs",
"patch": "@@ -89,7 +89,6 @@ pub struct NextSegmentConfig {\n pub fetch_cache: Option<NextSegmentFetchCache>,\n pub runtime: Option<NextRuntime>,\n pub preferred_region: Option<Vec<RcStr>>,\n- pub experimental_ppr: Option<bool>,\n pub mid... | 2025-10-15T19:03:00 |
nodejs/node | 304743655d5236c2edc39094336ee2667600b684 | fd453837ea3955a20ad8157482058e30ed781f15 | doc: add streamResetBurst and streamResetRate
Added missing documentation for the streamResetBurst and streamResetRate
options in the http2.createSecureServer section. This ensures developers
are aware of these configurable options.
Fixes: https://github.com/nodejs/node/issues/57169
Refs: https://nodejs.org/docs/late... | [
{
"path": "doc/api/http2.md",
"patch": "@@ -3055,6 +3055,9 @@ changes:\n **Default:** `100`.\n * `settings` {HTTP/2 Settings Object} The initial settings to send to the\n remote peer upon connection.\n+ * `streamResetBurst` {number} and `streamResetRate` {number} Sets the rate\n+ limit for the... | 2025-02-26T15:47:23 |
golang/go | fad1dc608d178bf2527c249ded24ca22948269b8 | b1f3e38e4153de19b1964068d79e7da6eac7b5d8 | runtime: don't artificially limit TestReadMetricsSched
TestReadMetricsSched/running can take some time to enter in steady state
on busy systems. We currently only allow 1 second for that, we should
let it run unlimitedly until success or the test time's out.
Fixes #75049
Change-Id: I452059e1837caf12a2d2d9cae1f70a0ef... | [
{
"path": "src/runtime/metrics_test.go",
"patch": "@@ -1632,15 +1632,13 @@ func TestReadMetricsSched(t *testing.T) {\n \tcheckEq := func(t *testing.T, s *metrics.Sample, value uint64) {\n \t\tcheck(t, s, value, value)\n \t}\n-\tspinUntil := func(f func() bool, timeout time.Duration) bool {\n-\t\tstart := ti... | 2025-09-10T06:23:42 |
electron/electron | 3d766e9ccb82dbec81c03b83171c3f149f71cde8 | 687767139065860dcde89e0ceac65c79eb1b84b5 | perf: don't build unused vectors in HidChooserContext (#43192)
* refactor: remove unused code in HidChooserContext::DeviceRemoved()
* refactor: remove unused code in HidChooserContext::OnHidManagerConnectionError()
* refactor: use structured bindings for readability | [
{
"path": "shell/browser/hid/hid_chooser_context.cc",
"patch": "@@ -273,13 +273,8 @@ void HidChooserContext::DeviceRemoved(device::mojom::HidDeviceInfoPtr device) {\n if (CanStorePersistentEntry(*device))\n return;\n \n- std::vector<url::Origin> revoked_origins;\n- for (auto& map_entry : ephemeral_d... | 2024-08-05T13:31:58 |
facebook/react | 537c74e16a394df16a4b368caa09ea5755f78dfb | fc0df475c4417670272b819bad92590b310bcdaa | feat[react-devtools]: support Manifest v3 for Firefox extension (#30824)
Firefox [finally supports
`ExecutionWorld.MAIN`](https://bugzilla.mozilla.org/show_bug.cgi?id=1736575)
in content scripts, which means we can migrate the browser extension to
Manifest V3.
This PR also removes a bunch of no longer required e... | [
{
"path": "packages/react-devtools-extensions/firefox/manifest.json",
"patch": "@@ -1,12 +1,12 @@\n {\n- \"manifest_version\": 2,\n+ \"manifest_version\": 3,\n \"name\": \"React Developer Tools\",\n \"description\": \"Adds React debugging tools to the Firefox Developer Tools.\",\n \"version\": \"5.3... | 2024-08-29T10:28:35 |
vercel/next.js | 1112dce6b70827e160f5fe6b073117b5ef864bd0 | c6a6c7365b24df5ace37f9d68e7f6c0730152416 | [dev-overlay] Never dedupe errors with different names or messages (#84908) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/shared.ts",
"patch": "@@ -324,6 +324,9 @@ export function useErrorOverlayReducer(\n const pendingEvents = events.filter((event) => {\n // Filter out duplicate errors\n return (\n+ // SpiderMonkey and JavaScriptCore don't include t... | 2025-10-15T16:45:37 |
nodejs/node | fd453837ea3955a20ad8157482058e30ed781f15 | 34ded4df1f665e32606d2c3cf47979f71c37be82 | src: fix ThrowInvalidURL call in PathToFileURL
Replace `nullptr` with `std::nullopt` when calling `ThrowInvalidURL` in
`PathToFileURL`. This ensures the function receives the correct argument
type and aligns with the expected behavior.
PR-URL: https://github.com/nodejs/node/pull/57141
Reviewed-By: Yagiz Nizipli <yagi... | [
{
"path": "src/node_url.cc",
"patch": "@@ -161,7 +161,7 @@ void BindingData::PathToFileURL(const FunctionCallbackInfo<Value>& args) {\n ada::parse<ada::url_aggregator>(EncodePathChars(input_str, os), nullptr);\n \n if (!out) {\n- return ThrowInvalidURL(realm->env(), input.ToStringView(), nullptr)... | 2025-02-26T14:34:50 |
golang/go | b1f3e38e4153de19b1964068d79e7da6eac7b5d8 | 00824f5ff5913712710e449de8b7bbae51182197 | cmd/compile: when CSEing two values, prefer the statement marked one
Fixes #75249
Change-Id: Ifd61bf5341f23ce2c9735e607e00d987489caacf
Reviewed-on: https://go-review.googlesource.com/c/go/+/701295
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Alexander Musman <... | [
{
"path": "src/cmd/compile/internal/dwarfgen/linenum_test.go",
"patch": "@@ -0,0 +1,105 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package dwarfgen\n+\n+import (\n+\t\"debug/dwar... | 2025-09-05T17:19:17 |
electron/electron | 687767139065860dcde89e0ceac65c79eb1b84b5 | e64302cc91af38e96aa65c17c021ad9d7f302e9d | fix: gin_helper::MicrotasksScope instantiation (#43185) | [
{
"path": "shell/browser/api/electron_api_auto_updater.cc",
"patch": "@@ -46,9 +46,9 @@ void AutoUpdater::OnError(const std::string& message) {\n gin::StringToV8(isolate, message),\n };\n \n- gin_helper::MicrotasksScope microtasks_scope(\n+ gin_helper::MicrotasksScope microtasks_scope{\n ... | 2024-08-05T13:24:27 |
facebook/react | fc0df475c4417670272b819bad92590b310bcdaa | 3a45ba241c028cd0af7bf17bb4c6487d0095a10f | [compiler] Inferred deps must match exact optionality of manual deps
To prevent any difference in behavior, we check that the optionality of the inferred deps exactly matches the optionality of the manual dependencies. This required a fix, I was incorrectly inferring optionality of manual deps (they're only optional i... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/DropManualMemoization.ts",
"patch": "@@ -488,7 +488,7 @@ export function dropManualMemoization(func: HIRFunction): void {\n function findOptionalPlaces(fn: HIRFunction): Set<IdentifierId> {\n const optionals = new Set<IdentifierId>();\... | 2024-08-28T22:16:02 |
nodejs/node | e03af77418f44b69ab55f1570781d8990d02f14f | 6a19fde949ad876d240fda0e638cf1b1ee2cab0d | src: improve error handling in buffer and dotenv
Replacing ToLocalChecked()
PR-URL: https://github.com/nodejs/node/pull/57189
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Robert Nagy <ronagy@icloud.com> | [
{
"path": "src/node_buffer.cc",
"patch": "@@ -567,9 +567,14 @@ void SlowCopy(const FunctionCallbackInfo<Value>& args) {\n ArrayBufferViewContents<char> source(args[0]);\n SPREAD_BUFFER_ARG(args[1].As<Object>(), target);\n \n- const auto target_start = args[2]->Uint32Value(env->context()).ToChecked();\n... | 2025-02-24T00:38:56 |
vercel/next.js | c6a6c7365b24df5ace37f9d68e7f6c0730152416 | b7b153f6231ddc69f8eea8c0762463652c98008e | Turbopack: better errors for strip_prefix_len (#84882)
To help debugging | [
{
"path": "turbopack/crates/turbopack-core/src/resolve/alias_map.rs",
"patch": "@@ -610,7 +610,9 @@ where\n \n if is_match {\n let mut remaining = self.request.clone();\n- remaining.strip_prefix_len(prefix.len());\n+ ... | 2025-10-15T16:34:49 |
golang/go | 9650c97d0fad719b372159a6ca59e722a6e487ce | f1c4b860d4cf5d3164fbb5a26bafc36f109d9bdc | syscall: remove unreachable code
Reported by go vet:
$ go vet syscall
# syscall_test
# [syscall_test]
syscall/env_unix_test.go:100:4: unreachable code
The TestVetStdlib test in golang.org/x/tools/go/analysis/unitchecker
also ran into this.
Fixes #73998.
Change-Id: I7f2842a42835a38163433a09a3311be9c30f8a14
Cq-I... | [
{
"path": "src/syscall/env_unix_test.go",
"patch": "@@ -96,7 +96,9 @@ func TestClearenv(t *testing.T) {\n \t\t\tdefer func() {\n \t\t\t\tret = recover()\n \t\t\t}()\n-\t\t\tpanic(nil)\n+\t\t\tif true {\n+\t\t\t\tpanic(nil)\n+\t\t\t}\n \t\t\treturn \"should not return\"\n \t\t}\n ",
"additions": 3,
"... | 2025-09-10T14:41:04 |
electron/electron | 78995b956effdebb33b2f4ceed59ec7cb5b03b99 | f508f6b6b570481a2b61d8c4f8c1951f492e4309 | fix: potential draggable regions crash in DevTools (#43179) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -130,3 +130,4 @@ fix_font_face_resolution_when_renderer_is_blocked.patch\n feat_enable_passing_exit_code_on_service_process_crash.patch\n chore_remove_reference_to_chrome_browser_themes.patch\n feat_enable_customizing_symbol_color_in_framecaptionbutton.pat... | 2024-08-05T07:56:08 |
facebook/react | 7475d568da137b661ce23edc24446871d58c67ef | 9180a37fba0c9ad642bfc6e1c2839f88f66485ab | [wip][compiler] Infer optional dependencies
Updates PropagateScopeDeps and DeriveMinimalDeps to understand optional dependency paths (`a?.b`). There a few key pieces to this:
In PropagateScopeDeps we jump through some hoops to work around the awkward structure of nested OptionalExpressions. This is much easier in HIR... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts",
"patch": "@@ -224,6 +224,14 @@ const EnvironmentConfigSchema = z.object({\n \n enableReactiveScopesInHIR: z.boolean().default(true),\n \n+ /**\n+ * Enables inference of optional dependency chains. Without this flag\n+ *... | 2024-08-28T17:52:36 |
rust-lang/rust | a24022ad4e98bfc5adc47cc114db57b68c8511d2 | e00790eb2c790e2cac7d410e493fbb68ca00f2a7 | Fix LLVM intrinsic signatures for AVX-VNNI | [
{
"path": "library/stdarch/crates/core_arch/src/x86/avx512vnni.rs",
"patch": "@@ -12,7 +12,7 @@ use stdarch_test::assert_instr;\n #[stable(feature = \"stdarch_x86_avx512\", since = \"1.89\")]\n #[cfg_attr(test, assert_instr(vpdpwssd))]\n pub fn _mm512_dpwssd_epi32(src: __m512i, a: __m512i, b: __m512i) -> __... | 2026-03-01T19:02:24 |
vercel/next.js | b7b153f6231ddc69f8eea8c0762463652c98008e | f80c92261ebbb0b376e45f0b15bd5657609a03d9 | [Cache Components] Fix cacheSignal in dev render (#84846)
This PR changes the timing used in `CacheSignal.cacheReady()` to work
correctly when rendering, not just prerendering. When rendering, React
schedules new work in `setImmediate` (as opposed to using a microtask
when prerendering), and `CacheSignal.cacheReady()`... | [
{
"path": "packages/next/src/server/app-render/cache-signal.ts",
"patch": "@@ -12,7 +12,7 @@ export class CacheSignal {\n private earlyListeners: Array<() => void> = []\n private listeners: Array<() => void> = []\n private tickPending = false\n- private taskPending = false\n+ private pendingTimeoutC... | 2025-10-15T16:32:43 |
nodejs/node | 6a19fde949ad876d240fda0e638cf1b1ee2cab0d | c05f4baf3246002abda5bc14efc6996261fa4c00 | src: improve error handling in module_wrap
Replacing ToLocalChecked()
PR-URL: https://github.com/nodejs/node/pull/57188
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "src/module_wrap.cc",
"patch": "@@ -241,8 +241,10 @@ void ModuleWrap::New(const FunctionCallbackInfo<Value>& args) {\n uint32_t len = export_names_arr->Length();\n LocalVector<String> export_names(realm->isolate(), len);\n for (uint32_t i = 0; i < len; i++) {\n- Local<Valu... | 2025-02-23T23:27:19 |
golang/go | f1c4b860d4cf5d3164fbb5a26bafc36f109d9bdc | 30686c4cc89e6952ec00846e34016f37d53f31dd | Revert "crypto/internal/fips140: update frozen module version to "v1.0.0""
This reverts CL 701518. This should land just before CL 701520 to avoid
breaking the builders for long.
Fixes #75343
Change-Id: If1ae1fe933fe443ca9776888967d80875b02f41a
Reviewed-on: https://go-review.googlesource.com/c/go/+/702255
Reviewed-b... | [
{
"path": "src/crypto/internal/cryptotest/hash.go",
"patch": "@@ -20,7 +20,7 @@ type MakeHash func() hash.Hash\n // TestHash performs a set of tests on hash.Hash implementations, checking the\n // documented requirements of Write, Sum, Reset, Size, and BlockSize.\n func TestHash(t *testing.T, mh MakeHash) {... | 2025-09-09T22:05:22 |
electron/electron | 5b18cc46bc4ef293a5cfe54c52b94447bd7dc11c | 7c79221a543eeb874b1f1aef90ccda894a7dc623 | chore: bump chromium to 129.0.6630.0 (main) (#43087)
* chore: bump chromium in DEPS to 129.0.6623.0
* chore: update mas_avoid_private_macos_api_usage.patch.patch
remove the changes to media/audio/mac/audio_manager_mac.cc,
since upstream has also made this change now.
Xref: https://chromium-review.googlesourc... | [
{
"path": "BUILD.gn",
"patch": "@@ -38,7 +38,7 @@ if (is_mac) {\n import(\"build/rules.gni\")\n \n assert(\n- mac_deployment_target == \"10.15\",\n+ mac_deployment_target == \"11.0\",\n \"Chromium has updated the mac_deployment_target, please update this assert, update the supported vers... | 2024-08-02T14:02:11 |
facebook/react | 7771d3a7972cc2483c45fde51b7ec2d926cba097 | f2841c2a490b4b776b98568871b69693fedf985c | [compiler] Track refs through object expressions and property lookups
Summary:
This addresses the issue of the compiler being overly restrictive about refs escaping into object expressions. Rather than erroring whenever a ref flows into an object, we will now treat the object itself as a ref, and apply the same escape... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts",
"patch": "@@ -11,12 +11,12 @@ import {\n IdentifierId,\n Place,\n SourceLocation,\n- isRefOrRefValue,\n isRefValueType,\n isUseRefType,\n } from '../HIR';\n import {\n eachInstructionValueOpe... | 2024-08-27T17:11:50 |
rust-lang/rust | 21674fed54a8c2493323d0ae58a73cce99b885e3 | 7a221089b3fafcd105fbac2143724d181286c8d5 | fix: Fix wrong descend range for add_missing_match_arms
Example
---
```rust
macro_rules! m { ($expr:expr) => {$expr}}
enum Test {
A,
B,
C,
}
fn foo(t: Test) {
m!(match t {
Test::A => (),
$0});
}
```
**Before this PR**
Assist not applicable
**After this PR**
```rust
macro_rules! m { ($e... | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_missing_match_arms.rs",
"patch": "@@ -44,8 +44,7 @@ pub(crate) fn add_missing_match_arms(acc: &mut Assists, ctx: &AssistContext<'_>)\n let arm_list_range = ctx.sema.original_range_opt(match_arm_list.syntax())?;\n \n if cursor_at_... | 2026-03-01T16:21:19 |
vercel/next.js | f80c92261ebbb0b376e45f0b15bd5657609a03d9 | c34ea8f280d1fc6e7ab9c1665fd7f8efd40b8336 | Turbopack: expose client static assets correctly (#84695)
This is about whether `new URL("logo.png", import.meta.url)` and `import logo from "./logo.png"` return a client or a server asset:
- a server asset is a file that will be read by the server during rendering, for example a Wasm or font file (if you think about... | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -1082,13 +1082,11 @@ impl Project {\n no_mangling: self.no_mangling(),\n scope_hoisting: self.next_config().turbo_scope_hoisting(self.next_mode()),\n debug_ids: self.next_config().turbopack_debug_ids(),\n+ ... | 2025-10-15T16:06:50 |
nodejs/node | d62d7ca7b5cdd4e86d9adc4e619b1112fd0964c8 | f52a358217a5b3f23571c5659135f556df970764 | src: improve error handling in spawn_sync
Replacing more ToLocalChecked uses.
PR-URL: https://github.com/nodejs/node/pull/57185
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "src/spawn_sync.cc",
"patch": "@@ -22,6 +22,7 @@\n #include \"spawn_sync.h\"\n #include \"debug_utils-inl.h\"\n #include \"env-inl.h\"\n+#include \"node_errors.h\"\n #include \"node_external_reference.h\"\n #include \"node_internals.h\"\n #include \"string_bytes.h\"\n@@ -185,15 +186,17 @@ void Syn... | 2025-02-23T20:44:43 |
golang/go | 30686c4cc89e6952ec00846e34016f37d53f31dd | c5737dc21bbac9fbefc35ac9313e66291d66b382 | encoding/json/v2: document context annotation with SemanticError
When the json package calls
Marshaler, MarshalerTo, Unmarshaler, or UnmarshalerFrom methods
and a SemanticError is returned, it will automatically
annotate the error with context.
Document this behavior.
Change-Id: Id8e775a7c1c2a6ffc29ea518913591915e8a... | [
{
"path": "src/encoding/json/v2/arshal_methods.go",
"patch": "@@ -41,6 +41,10 @@ var (\n //\n // It is recommended that implementations return a buffer that is safe\n // for the caller to retain and potentially mutate.\n+//\n+// If the returned error is a [SemanticError], then unpopulated fields\n+// of the... | 2025-09-09T00:33:47 |
electron/electron | 7c79221a543eeb874b1f1aef90ccda894a7dc623 | e7ca92a574a47dcfc2e00dc2d0a49410146f2284 | docs: fixed broken electron-fiddle links in the "Tutorial - Publishing and Updating" doc (#43129)
fixed electron-fiddle build and config links | [
{
"path": "docs/tutorial/tutorial-6-publishing-updating.md",
"patch": "@@ -222,8 +222,8 @@ rest of our docs and happy developing! If you have questions, please stop by our\n [code-signed]: ./code-signing.md\n [discord server]: https://discord.gg/electronjs\n [electron fiddle]: https://www.electronjs.org/fid... | 2024-08-02T01:28:50 |
facebook/react | f2841c2a490b4b776b98568871b69693fedf985c | 96aca5f4f3d7fbe0c13350f90031d8ec4c060ccb | [compiler] Fixture to demonstrate issue with returning object containing ref
Summary:
We currently can return a ref from a hook but not an object containing a ref.
ghstack-source-id: 8b1de4991eb2731b7f758e685ba62d9f07d584b2
Pull Request resolved: https://github.com/facebook/react/pull/30820 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.return-ref-callback-structure.expect.md",
"patch": "@@ -0,0 +1,45 @@\n+\n+## Input\n+\n+```javascript\n+// @flow @validateRefAccessDuringRender @validatePreserveExistingMemoizationGuarantees\n+\n+import {useRef} f... | 2024-08-27T17:11:50 |
golang/go | c5737dc21bbac9fbefc35ac9313e66291d66b382 | b9a4a09b0fbb54b533f847c784c807db95f68d3b | runtime: when using cgo on 386, call C sigaction function
On 386 the C sigaction function assumes that the caller does not set
the SA_RESTORER flag. It does not copy the C sa_restorer field to
the kernel sa_restorer field. The effect is that the kernel sees
the SA_RESTORER flag but a NULL sa_restorer field, and the pr... | [
{
"path": "src/runtime/cgo/gcc_sigaction.c",
"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 linux && (amd64 || arm64 || loong64 || ppc64le)\n+//go:build linux && (386 || amd64 || arm64 || loong64 || ppc64l... | 2025-09-06T05:24:37 |
nodejs/node | f52a358217a5b3f23571c5659135f556df970764 | c864dea910c41cd3e4766aa54c98fb1d813194ba | fs: fix rmSync error code
Return the correct error code, when a directory_not_empty error
occurred.
Fixes: https://github.com/nodejs/node/issues/57095
PR-URL: https://github.com/nodejs/node/pull/57103
Reviewed-By: Jason Zhang <xzha4350@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "src/node_file.cc",
"patch": "@@ -1705,7 +1705,8 @@ static void RmSync(const FunctionCallbackInfo<Value>& args) {\n return env->ThrowErrnoException(EPERM, \"rm\", message.c_str(), path_c_str);\n } else if (error == std::errc::directory_not_empty) {\n std::string message = \"Directory not... | 2025-02-25T21:13:03 |
vercel/next.js | c34ea8f280d1fc6e7ab9c1665fd7f8efd40b8336 | 8cab15c0c947a71eb8606ba29da719a2e121fc88 | fix: always use the safe stable stringify (#84909) | [
{
"path": "packages/next/src/lib/is-error.ts",
"patch": "@@ -1,4 +1,5 @@\n import { isPlainObject } from '../shared/lib/is-plain-object'\n+import safeStringify from 'next/dist/compiled/safe-stable-stringify'\n \n // We allow some additional attached properties for Next.js errors\n export interface NextError... | 2025-10-15T16:02:07 |
electron/electron | 3a07bd8821f3ea70edc0a86d90270a47adf0309d | cc956420ef39c9b659a11965721bcc972b0f6d88 | fix: take bluetooth serial ports into account in `serial.getPorts()` (#43101)
* fix: take bluetooth serial ports into account in serial.getPorts()
* chore: remove port.path.LossyDisplayName() | [
{
"path": "shell/browser/serial/serial_chooser_context.cc",
"patch": "@@ -25,14 +25,15 @@ namespace electron {\n \n constexpr char kPortNameKey[] = \"name\";\n constexpr char kTokenKey[] = \"token\";\n+constexpr char kBluetoothDevicePathKey[] = \"bluetooth_device_path\";\n #if BUILDFLAG(IS_WIN)\n-const char... | 2024-08-01T16:13:31 |
golang/go | 4c20f7f15a9a8eed50d8cbb8be8f74d449093a5c | 5dcedd65504cc9cadc9a5ea8bc3af51a26eec704 | cmd/cgo: run gcc to get errors and debug info in parallel
This change kicks off the work to load the debug info when processing
each file, and then waits for all the files to be processed before
starting the single-goroutined part that processes them. The processing
is very order dependent so we won't try to make it c... | [
{
"path": "src/cmd/cgo/gcc.go",
"patch": "@@ -183,16 +183,16 @@ func splitQuoted(s string) (r []string, err error) {\n \treturn args, err\n }\n \n-// Translate rewrites f.AST, the original Go input, to remove\n-// references to the imported package C, replacing them with\n-// references to the equivalent Go... | 2025-08-25T21:22:01 |
nodejs/node | 6cb0690fccd6ed902f785edd1ae5b55855035998 | 9fd90d9df78510d657760eb575afa9985a6e8e30 | src: detect whether the string is one byte representation or not
References: nodejs#56090
PR-URL: https://github.com/nodejs/node/pull/56147
Fixes: https://github.com/nodejs/node/issues/56090
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "doc/api/v8.md",
"patch": "@@ -1304,6 +1304,45 @@ setTimeout(() => {\n }, 1000);\n ```\n \n+## `v8.isStringOneByteRepresentation(content)`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* `content` {string}\n+* Returns: {boolean}\n+\n+V8 only supports `Latin-1/ISO-8859-1` and `UTF16` as the underlyi... | 2024-12-21T13:36:22 |
vercel/next.js | 8cab15c0c947a71eb8606ba29da719a2e121fc88 | c3c2e574dc07144f04c573eeae44655e49b62814 | [Cache Components] Remove `unstable` prefix from `unstable_cacheLife` (#84877)
`cacheLife` is now stable and does not require an unstable prefix | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -652,7 +652,7 @@ impl ReactServerComponentValidator {\n \"revalidatePath\",\n \"revalidateTag\",\n // \"unstable_cache\", // useless in cl... | 2025-10-15T15:14:04 |
facebook/react | 96aca5f4f3d7fbe0c13350f90031d8ec4c060ccb | f90a6bcc4c988f7524ce2be675b3257a530a51e9 | Spawn new task if we hit stack overflow (#30419)
If we see the "Maximum call stack size exceeded" error we know we've hit
stack overflow. We can recover from this by spawning a new task and
trying again. Effectively a zero-cost trampoline in the normal case. The
new task will have a clean stack. If you have a lot o... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -8677,4 +8677,65 @@ describe('ReactDOMFizzServer', () => {\n '\\n in Bar (at **)' + '\\n in Foo (at **)',\n );\n });\n+\n+ it('can recover from very deep trees to avoid stack overflow', async () => {\n+ ... | 2024-08-27T17:10:37 |
electron/electron | 2337d8676dbde6cd10f6112a13e73e3bb18a28e5 | 45e5ccc55e8b13a45899bacff5cb98c9994446f2 | fix: handle failing to enter fullscreen on macOS (#43112)
* fix: handle failing to enter/exit fullscreen on macOS
On macOS, failing to enter/exit fullscreen can fail. If this happens,
properly restore the original window state.
* refactor: remove fail to exit fullscreen handlers
Seem to be unnecessary since ... | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -167,6 +167,7 @@ class NativeWindowMac : public NativeWindow,\n void DetachChildren() override;\n \n void NotifyWindowWillEnterFullScreen();\n+ void NotifyWindowDidFailToEnterFullScreen();\n void NotifyWindowWillLeaveFullScreen();\n \n // ... | 2024-08-01T10:13:13 |
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.