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 |
|---|---|---|---|---|---|
facebook/react | d3d4d3a46b014ab0f6edc443c19fcdba09105f20 | 633a0fe536febefa02698db124b7265a3fde55e1 | Call cleanup of insertion effects when hidden (#30954)
Insertion effects do not unmount when a subtree is removed while
offscreen.
Current behavior for an insertion effect is if the component goes
- *visible -> removed:* calls insertion effect cleanup
- *visible -> offscreen -> removed:* insertion effect clean... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -40,6 +40,7 @@ import type {\n import {\n alwaysThrottleRetries,\n enableCreateEventHandleAPI,\n+ enableHiddenSubtreeInsertionEffectCleanup,\n enablePersistedModeClonedFlag,\n enableProfilerTimer,\n enableProfilerComm... | 2024-09-13T20:18:14 |
electron/electron | 41b8fdca5c53a41eabdad9a6a75b45bda4a6f37b | 38512efd25a159ddc64a54c22ef9eb6dd60064ec | fix: devtools dock state with WCO on linux (#43490) | [
{
"path": "shell/browser/ui/inspectable_web_contents.cc",
"patch": "@@ -550,7 +550,7 @@ void InspectableWebContents::LoadCompleted() {\n prefs.FindString(\"currentDockState\");\n base::RemoveChars(*current_dock_state, \"\\\"\", &dock_state_);\n }\n-#if BUILDFLAG(IS_WIN)\n+#if BUILDFLAG(I... | 2024-08-29T00:17:00 |
golang/go | 32dfd69282ac86b0ce49909d36e2a4e5797ad25c | 7f6ff5ec3edfa1ed82014ad53f6cad3dc023f48e | cmd/dist: disable FIPS 140-3 mode when testing maphash with purego
hash/maphash can't be built with FIPS 140-3 mode and the purego tag
since CL 703095. That change precludes running "GODEBUG=fips140=on go
dist test" with, as there is a test variant that tests maphash with the
purego tag.
Change-Id: Iaedfaf3bb79281a79... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -705,6 +705,7 @@ func (t *tester) registerTests() {\n \t\t\t\ttimeout: 300 * time.Second,\n \t\t\t\ttags: []string{\"purego\"},\n \t\t\t\tpkg: \"hash/maphash\",\n+\t\t\t\tenv: []string{\"GODEBUG=fips140=off\"}, // FIPS 140-3 mode is incompatible with... | 2025-09-22T10:59:20 |
nodejs/node | 9a9a45adb700125cb7a2888a14341f7db484daf5 | 725089a17325bce4c797d6faf6fe99a3cead880d | src: do not pass nullptr to std::string ctor
fixes -Wnonnull warning on some compilers
PR-URL: https://github.com/nodejs/node/pull/57354
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Shelley Vohr <shelle... | [
{
"path": "src/debug_utils.cc",
"patch": "@@ -254,7 +254,7 @@ class Win32SymbolDebuggingContext final : public NativeSymbolDebuggingContext {\n USE(GetLastError());\n #endif // DEBUG\n }\n- return nullptr;\n+ return {};\n }\n \n SymbolInfo LookupSymbol(void* address) override {",
"a... | 2025-03-09T03:48:08 |
electron/electron | 38512efd25a159ddc64a54c22ef9eb6dd60064ec | 7cea9929264a8fcd569a55a69aa0bfe785be67ab | chore: bump node to v20.17.0 (main) (#43428)
* chore: bump node in DEPS to v20.17.0
* module: disallow CJS <-> ESM edges in a cycle from require(esm)
https://github.com/nodejs/node/pull/52264
* src: expose LookupAndCompile with parameters
https://github.com/nodejs/node/pull/53886
* src: fix -Wshadow war... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '130.0.6672.0',\n 'node_version':\n- 'v20.16.0',\n+ 'v20.17.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2024-08-26T19:09:33 |
facebook/react | 633a0fe536febefa02698db124b7265a3fde55e1 | 94e4acaa1477e65cac02ba86058cde0afe4c8f1f | [compiler] Factor out function effects from reference effects
Summary:
This PR performs a major refactor of InferReferenceEffects to separate out the work on marking places with Effects from inferring FunctionEffects. The behavior should be identical after this change (see [internal sync](https://www.internalfb.com/in... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferFunctionEffects.ts",
"patch": "@@ -0,0 +1,335 @@\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... | 2024-09-13T19:38:17 |
vercel/next.js | 8bc8dc343c30fdc263fcf719fbc99febe0fe4c93 | 56db4345f2eca501712d1963b78521a68a73803e | docs: Add missing codemod docs (#84980)
- middleware-to-proxy
- remove-unstable-prefix | [
{
"path": "docs/01-app/02-guides/upgrading/codemods.mdx",
"patch": "@@ -40,6 +40,69 @@ This codemod removes the `experimental_ppr` Route Segment Config from App Router\n - export const experimental_ppr = true;\n ```\n \n+#### Remove `unstable_` prefix from stabilized API\n+\n+##### `remove-unstable-prefix`\... | 2025-10-17T11:20:17 |
golang/go | 7f6ff5ec3edfa1ed82014ad53f6cad3dc023f48e | 9693b94be057b58f35bcc4a81c937495b93d588e | cmd/compile: fix doc word
"using" -> "uses"
Change-Id: I2bcefc6128dafd4fd05d7ce291b1afb28465a25c
GitHub-Last-Rev: bf9006eeb65c94a4e492be29f530f511a3d6ffc1
GitHub-Pull-Request: golang/go#75548
Reviewed-on: https://go-review.googlesource.com/c/go/+/705515
Reviewed-by: Keith Randall <khr@google.com>
Auto-Submit: Keith R... | [
{
"path": "src/cmd/compile/README.md",
"patch": "@@ -57,7 +57,7 @@ terms of these, so the next step after type checking is to convert the syntax\n and types2 representations to ir and types. This process is referred to as\n \"noding.\"\n \n-Noding using a process called Unified IR, which builds a node repre... | 2025-09-19T21:59:21 |
nodejs/node | b3b9f5224342c366ece5f24618410baa8110c6b3 | 7c2709de33d644c09bc878ab1af2b3718b0b2c21 | src: fix process exit listeners not receiving unsettled tla codes
fix listeners registered via `process.on('exit', ...` not receiving
error code 13 when an unsettled top-level-await is encountered in
the code
PR-URL: https://github.com/nodejs/node/pull/56872
Fixes: https://github.com/nodejs/node/issues/53551
Reviewed... | [
{
"path": "doc/api/process.md",
"patch": "@@ -1893,8 +1893,28 @@ A number which will be the process exit code, when the process either\n exits gracefully, or is exited via [`process.exit()`][] without specifying\n a code.\n \n-Specifying a code to [`process.exit(code)`][`process.exit()`] will override any\n... | 2025-03-08T19:54:30 |
facebook/react | 94e4acaa1477e65cac02ba86058cde0afe4c8f1f | 206df66e70652e85711c3177ce1a0459609a7771 | [Fiber] Set profiler values to doubles (#30942)
At some point this trick was added to initialize the value first to NaN
and then replace them with zeros and negative ones.
This is to address the issue noted in
https://github.com/facebook/react/issues/14365 where these hidden
classes can be initialized to SMIs at... | [
{
"path": "packages/react-reconciler/src/ReactFiber.js",
"patch": "@@ -187,18 +187,11 @@ function FiberNode(\n // Learn more about this here:\n // https://github.com/facebook/react/issues/14365\n // https://bugs.chromium.org/p/v8/issues/detail?id=8538\n- this.actualDuration = Number.NaN;\n- ... | 2024-09-13T16:27:00 |
electron/electron | 9ce0ca74c348d40de1aad417c1c163ac44ae5f09 | 3a5a1ea7bd1ff813c0dc62e3486c32f562dee612 | build: remove fix_disable_scope_reuse_associated_dchecks.patch (#43441)
chore: remove fix_disable_scope_reuse_associated_dchecks.patch | [
{
"path": "patches/v8/.patches",
"patch": "@@ -1,3 +1,2 @@\n chore_allow_customizing_microtask_policy_per_context.patch\n deps_add_v8_object_setinternalfieldfornodecore.patch\n-fix_disable_scope_reuse_associated_dchecks.patch",
"additions": 0,
"deletions": 1,
"language": "Unknown"
},
{
"... | 2024-08-23T15:04:20 |
golang/go | 9693b94be057b58f35bcc4a81c937495b93d588e | 8616981ce691248dfa585918a108e5f32c9aacc5 | runtime: include stderr when objdump fails
If objdump panics, we want the panic included in the test log.
Change-Id: I6a6a636c13c5ba08acaa1c6c8714541a8e91542b
Reviewed-on: https://go-review.googlesource.com/c/go/+/704338
Reviewed-by: Florian Lehner <lehner.florian86@gmail.com>
Auto-Submit: Michael Pratt <mpratt@googl... | [
{
"path": "src/runtime/unsafepoint_test.go",
"patch": "@@ -43,7 +43,7 @@ func TestUnsafePoint(t *testing.T) {\n \tcmd := exec.Command(testenv.GoToolPath(t), \"tool\", \"objdump\", \"-s\", \"setGlobalPointer\", os.Args[0])\n \tout, err := cmd.CombinedOutput()\n \tif err != nil {\n-\t\tt.Fatalf(\"can't objdum... | 2025-09-16T19:07:08 |
nodejs/node | abd73d865ae25df50d9c91b65d6843b48a2e8d9f | 27f98c3cd1cee93efb28efea11d59e51ba9be4b9 | build: fix compatibility with V8's `depot_tools`
Recent changes to `depot_tools`'s `ninja.py` proxy is causing infinite
recursion in our V8 CI builds as we checkout `depot_tools` into a
directory with a leading `_` (i.e. `_depot_tools`) and the proxy now
checks for an exact match (i.e. `== "depot_tools"`) instead of
`... | [
{
"path": "tools/make-v8.sh",
"patch": "@@ -53,7 +53,7 @@ if [ \"$ARCH\" = \"s390x\" ] || [ \"$ARCH\" = \"ppc64le\" ]; then\n gn gen -v \"out.gn/$BUILD_ARCH_TYPE\" --args=\"is_component_build=false is_debug=false use_goma=false goma_dir=\\\"None\\\" use_custom_libcxx=false v8_target_cpu=\\\"$TARGET_ARCH\\... | 2025-03-07T15:35:36 |
vercel/next.js | 50f53158cb9ef11abab36dbc84fc712fe8ee3fd5 | 67aa35d499346473c989e59f7db1fe71091a8f09 | Turbopack: Add ChunkedVec test case (#84756)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### I... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/utils/chunked_vec.rs",
"patch": "@@ -41,7 +41,7 @@ impl<T> ChunkedVec<T> {\n }\n }\n \n- pub fn iter(&self) -> impl Iterator<Item = &T> {\n+ pub fn iter(&self) -> impl ExactSizeIterator<Item = &T> {\n ExactSizeIter {\n ... | 2025-10-17T04:01:53 |
golang/go | b8af74436000dcb370b41ec70acc8ab4632adf05 | 51dc5bfe6c1e8e71065401f12cf000b9941882fd | testing: fix example for unexported identifier
Fixes #75540
Change-Id: I925f893d33660f0b08996d53cc9c564017232b39
Reviewed-on: https://go-review.googlesource.com/c/go/+/705456
Reviewed-by: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Revie... | [
{
"path": "src/testing/testing.go",
"patch": "@@ -30,9 +30,9 @@\n //\timport \"testing\"\n //\n //\tfunc TestAbs(t *testing.T) {\n-//\t got := Abs(-1)\n+//\t got := abs(-1)\n //\t if got != 1 {\n-//\t t.Errorf(\"Abs(-1) = %d; want 1\", got)\n+//\t t.Errorf(\"abs(-1) = %d; want 1\", go... | 2025-09-19T10:27:55 |
electron/electron | 6e4d90fcdbfff7eb1d445edf6ad7312c2fc7ded0 | fd8d9f06fd9b1154836f9c76a02f651ddf8cd603 | fix: ensure bounds stability in `OnWidgetBoundsChanged` (#43431)
* fix: ensure bounds stability in OnWidgetBoundsChanged
* Update shell/browser/native_window_views.cc
Co-authored-by: Charles Kerr <charles@charleskerr.com>
---------
Co-authored-by: Charles Kerr <charles@charleskerr.com> | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -22,6 +22,7 @@\n \n #include \"base/containers/contains.h\"\n #include \"base/memory/raw_ref.h\"\n+#include \"base/numerics/ranges.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"content/public/browser/desktop_media_id.h\"\... | 2024-08-23T15:02:05 |
nodejs/node | 4cc69f9470b752292ea50990745d6fd101e40218 | f161033bd559f5e59ddd069fea67a6da5564fff1 | src: allow embedder customization of OOMErrorHandler
PR-URL: https://github.com/nodejs/node/pull/57325
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Jake Yueson... | [
{
"path": "src/api/environment.cc",
"patch": "@@ -233,7 +233,10 @@ void SetIsolateErrorHandlers(v8::Isolate* isolate, const IsolateSettings& s) {\n auto* fatal_error_cb = s.fatal_error_callback ?\n s.fatal_error_callback : OnFatalError;\n isolate->SetFatalErrorHandler(fatal_error_cb);\n- isolate-... | 2025-03-07T10:15:49 |
vercel/next.js | 67aa35d499346473c989e59f7db1fe71091a8f09 | 11c741ecb505a98323aa5502517d4cb69f260fe5 | Turbopack: rename Persistent Caching (#84896)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### ... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/database/db_versioning.rs",
"patch": "@@ -51,21 +51,21 @@ pub fn handle_db_versioning(\n let disabled_versioning = env::var(\"TURBO_ENGINE_DISABLE_VERSIONING\").ok().is_some();\n let version = if disabled_versioning {\n println!(\n- ... | 2025-10-17T03:08:55 |
facebook/react | 206df66e70652e85711c3177ce1a0459609a7771 | 5ac4034e14a72c0edf602585c10fd2725fb376c5 | [compiler][rewrite] PropagateScopeDeps hir rewrite
Resubmission of #30079 -- core logic unchanged, but needed to rebase past #30573
### Quick background
#### Temporaries
The compiler currently treats temporaries and named variables (e.g. `x`) differently in this pass.
- named variables may be reassigned (in fact, si... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -101,6 +101,7 @@ import {propagatePhiTypes} from '../TypeInference/PropagatePhiTypes';\n import {lowerContextAccess} from '../Optimization/LowerContextAccess';\n import {validateNoSetStateInPassiveEffects} fro... | 2024-09-12T20:59:40 |
golang/go | 51dc5bfe6c1e8e71065401f12cf000b9941882fd | ee7bf06cb306ea9234fbc1501f3e0f3903ada427 | Revert "cmd/go: disable cgo by default if CC unset and DefaultCC doesn't exist"
This reverts commit c2d85eb999fcd428a1cd71ed93805cbde0c16eaa.
Reason for revert: change was incorrect. ignores setting of CGO_ENABLED in some cases
Change-Id: I8e6e68dd600be5306a247a3314f4b57175f1aa56
Reviewed-on: https://go-review.goog... | [
{
"path": "src/cmd/go/internal/cfg/cfg.go",
"patch": "@@ -145,8 +145,7 @@ func defaultContext() build.Context {\n \tif buildcfg.DefaultCGO_ENABLED == \"1\" {\n \t\tdefaultCgoEnabled = true\n \t} else if buildcfg.DefaultCGO_ENABLED == \"0\" {\n-\t}\n-\tif runtime.GOARCH == ctxt.GOARCH && runtime.GOOS == ctxt... | 2025-09-19T16:25:20 |
nodejs/node | f161033bd559f5e59ddd069fea67a6da5564fff1 | 365faa7a4fbf973741600990b606d848ce0dcc14 | win,build: add option to enable Control Flow Guard
PR-URL: https://github.com/nodejs/node/pull/56605
Fixes: https://github.com/nodejs/node/issues/42100
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "common.gypi",
"patch": "@@ -28,6 +28,7 @@\n 'clang%': 0,\n 'error_on_warn%': 'false',\n 'suppress_all_error_on_warn%': 'false',\n+ 'control_flow_guard%': 'false',\n \n 'openssl_product': '<(STATIC_LIB_PREFIX)openssl<(STATIC_LIB_SUFFIX)',\n 'openssl_no_asm%': 0,\n@@ -310,6 +... | 2025-03-07T07:09:26 |
electron/electron | ca0837c85201690648821aa13473a15c70a21f6e | 1aeca6fd0e988cfc4f82322a19da034f190134b3 | chore: fix typos in 'shell/' folder. (#43373) | [
{
"path": "shell/browser/api/electron_api_session.cc",
"patch": "@@ -261,7 +261,7 @@ class ClearDataTask {\n }\n \n private:\n- // An individiual |content::BrowsingDataRemover::Remove...| operation as part\n+ // An individual |content::BrowsingDataRemover::Remove...| operation as part\n // of a full ... | 2024-08-23T00:48:32 |
facebook/react | 5ac4034e14a72c0edf602585c10fd2725fb376c5 | f6dcce5199a3b9480a47d9feda8e00d8d9a0905d | [compiler] Fork fixtures for enablePropagateDepsInHIR
- flip `enablePropagateDepsInHIR` to off by default
- fork fixtures which produce compilation differences in #30894 to separate directory `propagate-scope-deps-hir-fork`, to be cleaned up when we remove this flag
ghstack-source-id: 7d5b8dc29788a65c272c846af9877b09... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts",
"patch": "@@ -223,7 +223,7 @@ const EnvironmentConfigSchema = z.object({\n */\n enableUseTypeAnnotations: z.boolean().default(false),\n \n- enablePropagateDepsInHIR: z.boolean().default(true),\n+ enablePropagateDepsInHI... | 2024-09-12T20:59:40 |
vercel/next.js | 07b3ae71d179bb3ca2b9ad3c6e0de12123c0004a | a5a47b2a6e189c6537717e9abecbc25aee0aba14 | chore: Attempt to fix ppr-partial-hydration flakiness (#84672)
Write to a marker file to determine when the slow server component finishes rendering instead of trying to sleep for some fixed amount of time. | [
{
"path": "test/e2e/app-dir/ppr-partial-hydration/app/with-shell/with-streaming-metadata/page.tsx",
"patch": "@@ -1,7 +1,7 @@\n import { Suspense } from 'react'\n import { connection } from 'next/server'\n-import { setTimeout } from 'timers/promises'\n import { HydrationIndicator } from '../../hydration-ind... | 2025-10-17T02:38:52 |
golang/go | ee7bf06cb306ea9234fbc1501f3e0f3903ada427 | f9e61a9a32c8cbfd810ac9fec135b5c0911b8d69 | time: improve ParseDuration performance for invalid input
Add "parseDurationError" to reduce memory allocation in the error path of
"ParseDuration" and delay the generation of error messages. This improves
the performance when dealing with invalid input.
The format of the error message remains unchanged.
Benchmarks:... | [
{
"path": "src/time/format.go",
"patch": "@@ -1602,6 +1602,16 @@ func leadingFraction(s string) (x uint64, scale float64, rem string) {\n \treturn x, scale, s[i:]\n }\n \n+// parseDurationError describes a problem parsing a duration string.\n+type parseDurationError struct {\n+\tmessage string\n+\tvalue s... | 2025-09-19T10:34:09 |
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 |
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 |
vercel/next.js | a5a47b2a6e189c6537717e9abecbc25aee0aba14 | b42555aa39f7b6823d827715d73608701d458d1e | fix: throw error during build when invalid export for Proxy (#84886)
### Why?
When Proxy/Middleware had invalid exports (valid: named function `proxy`
for `proxy.js`, named function `middleware` for `middleware.js`, or
default function), it errored during runtime but not during build.
This error can sneak into produ... | [
{
"path": "crates/next-core/src/middleware.rs",
"patch": "@@ -2,7 +2,13 @@ use anyhow::Result;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{ResolvedVc, Vc, fxindexmap};\n use turbo_tasks_fs::FileSystemPath;\n-use turbopack_core::{context::AssetContext, module::Module, reference_type::ReferenceType... | 2025-10-17T02:24:04 |
electron/electron | 1aeca6fd0e988cfc4f82322a19da034f190134b3 | b481966f02f83aa49d6ba39a40b976e6e78dd2bf | feat: GPU shared texture offscreen rendering (#42953)
* feat: GPU shared texture offscreen rendering
* docs: clarify texture infos that passed by the paint event.
* feat: make gpu osr spec test optional
* fix: osr image compare
* fix: remove duplicate test
* fix: update patch file
* fix: code review
... | [
{
"path": "docs/api/structures/offscreen-shared-texture.md",
"patch": "@@ -0,0 +1,24 @@\n+# OffscreenSharedTexture Object\n+\n+* `textureInfo` Object - The shared texture info.\n+ * `widgetType` string - The widget type of the texture. Can be `popup` or `frame`.\n+ * `pixelFormat` string - The pixel forma... | 2024-08-23T00:23:13 |
nodejs/node | 8032e96cc82934bf020aaaaec81a30edefc3bea6 | 117c1ca9eb09e378c5992e7a25b26022b514e3d8 | doc: use more clear name in getSystemErrorMessage's example
In the previous example, `name` actually points to the `message`.
So I changed this name to fit the context of the example.
Fixes: https://github.com/nodejs/node/issues/57305
PR-URL: https://github.com/nodejs/node/pull/57310
Reviewed-By: Joyee Cheung <joyeec... | [
{
"path": "doc/api/util.md",
"patch": "@@ -668,8 +668,8 @@ The mapping between error codes and string messages is platform-dependent.\n \n ```js\n fs.access('file/that/does/not/exist', (err) => {\n- const name = util.getSystemErrorMessage(err.errno);\n- console.error(name); // No such file or directory\n... | 2025-03-04T12:46:38 |
golang/go | 3cf1aaf8b9c846c44ec8db679495dd5816d1ec30 | 0ab038af6290c7fb52d4c26949d735692781b3d1 | runtime: use futexes with 64-bit time on Linux
Linux introduced new syscalls to fix the year 2038 issue.
To still be able to use the old ones, the Kconfig option
COMPAT_32BIT_TIME would be necessary.
Use the new syscall with 64-bit values for futex by default.
Define _ENOSYS for detecting if it's not available.
Add a... | [
{
"path": "src/runtime/defs2_linux.go",
"patch": "@@ -48,6 +48,7 @@ const (\n \tEINTR = C.EINTR\n \tEAGAIN = C.EAGAIN\n \tENOMEM = C.ENOMEM\n+\tENOSYS = C.ENOSYS\n \n \tPROT_NONE = C.PROT_NONE\n \tPROT_READ = C.PROT_READ",
"additions": 1,
"deletions": 0,
"language": "Go"
},
{
"path": ... | 2025-09-18T15:43:42 |
vercel/next.js | 16d0191d023e7fc934e449c62b20aecb1dd7a96c | dc61d29e49ab328e9b36d3993f02b2762bc69f6c | [Cache Components] Allow unstable prefix for cacheLife and cacheTag (#84934)
These are now stable but to allow for graceful upgrading we still export
unstable versions. The unstable version includes a once-warning that
indicates you should upgrade to the stable name. | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -653,7 +653,9 @@ impl ReactServerComponentValidator {\n \"revalidateTag\",\n // \"unstable_cache\", // useless in client, but doesn't technically error\n ... | 2025-10-16T23:01:24 |
nodejs/node | 5401ac687cd0dd745f78efc7429d2e5118512394 | a7909014f77d737b5998f0bef92687507e992217 | doc: recommend setting `noEmit: true` in `tsconfig.json`
PR-URL: https://github.com/nodejs/node/pull/57320
Fixes: https://github.com/nodejs/node/issues/57294
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "doc/api/typescript.md",
"patch": "@@ -81,6 +81,7 @@ but we recommend version 5.8 or newer with the following `tsconfig.json` setting\n ```json\n {\n \"compilerOptions\": {\n+ \"noEmit\": true, // Optional - see note below\n \"target\": \"esnext\",\n \"module\": \"nodenext\",\n ... | 2025-03-06T22:30:59 |
electron/electron | 50ce448556b870f42f98d6567159576b8d0f0495 | 7391db93e25b6a19f5c6836f62a00e4a96548088 | fix: menu should allow focused `BaseWindow` where possible (#43404)
fix: menu should allow focused BaseWindow | [
{
"path": "docs/api/menu-item.md",
"patch": "@@ -10,9 +10,9 @@ See [`Menu`](menu.md) for examples.\n \n * `options` Object\n * `click` Function (optional) - Will be called with\n- `click(menuItem, browserWindow, event)` when the menu item is clicked.\n+ `click(menuItem, window, event)` when the menu... | 2024-08-22T18:13:30 |
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 |
golang/go | a58afe44fa3be498e213bafa77455ffdfe5e23e2 | 3203a5da290753e5c7aceb12f41f06b272356bd0 | net: fix testHookCanceledDial race
Loading and calling testHookCanceledDial in the function passed to
context.AfterFunc is racey, because the function runs in a separate
goroutine, and is not synchronized with the test code that restores
the original testHookCanceledDial value.
We could add a channel and wait for the... | [
{
"path": "src/net/fd_unix.go",
"patch": "@@ -82,6 +82,9 @@ func (fd *netFD) connect(ctx context.Context, la, ra syscall.Sockaddr) (rsa sysc\n \t\t\tdefer fd.pfd.SetWriteDeadline(noDeadline)\n \t\t}\n \n+\t\t// Load the hook function synchronously to prevent a race\n+\t\t// with test code that restores the ... | 2025-09-16T20:25:53 |
vercel/next.js | dc61d29e49ab328e9b36d3993f02b2762bc69f6c | 6bd5c47b90a3165df55a29fb3f0e7ebc5d4cd6be | Interception routes match from nested route navigation (#84898)
### What?
Refactors interception route regex generation to fix nested route
navigation and improve maintainability.
### Why?
Interception routes failed to trigger when navigating from nested
descendant routes. The previous implementation had overly com... | [
{
"path": "packages/next/src/lib/generate-interception-routes-rewrites.test.ts",
"patch": "@@ -36,16 +36,48 @@ describe('generateInterceptionRoutesRewrites', () => {\n // - / (root)\n // - /nested-link (any root-level route)\n // - /foo (any other root-level route)\n- // But NOT:\n- ... | 2025-10-16T22:58:09 |
nodejs/node | 395439be8b101c29ce86bb13464fd53381859768 | 2a6f90813f4802def79f2df1bfe20e95df279abf | assert: improve myers diff performance
fix: https://github.com/nodejs/node/issues/57242
PR-URL: https://github.com/nodejs/node/pull/57279
Fixes: https://github.com/nodejs/node/issues/57242
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: LiviaMedeiros <livia@cirno.name> | [
{
"path": "benchmark/assert/assertion-error.js",
"patch": "@@ -0,0 +1,38 @@\n+'use strict';\n+const common = require('../common.js');\n+const assert = require('assert');\n+\n+const bench = common.createBenchmark(main, {\n+ n: [10, 50, 200, 500],\n+ size: [10, 100],\n+ datasetName: ['objects'],\n+});\n+\n... | 2025-03-06T11:59:53 |
electron/electron | b27dc7514e639360812e534bd1d184e980bbe2ee | ae0c8881c3f908c32f11bf0f8a185f626734d3e3 | fix: documentation spelling errors (#43366)
chore: fix typos in 'docs/' folder. | [
{
"path": "docs/api/session.md",
"patch": "@@ -1511,7 +1511,7 @@ Returns `Promise<void>` - resolves when all data has been cleared.\n \n Clears various different types of data.\n \n-This method clears more types of data and is more thourough than the\n+This method clears more types of data and is more thoro... | 2024-08-22T13:44:55 |
golang/go | 3203a5da290753e5c7aceb12f41f06b272356bd0 | 8ca209ec3962874ad1c15c22c86293edf428c284 | net/http: avoid connCount underflow race
Remove a race condition in counting the number of connections per host,
which can cause a connCount underflow and a panic.
The race occurs when:
- A RoundTrip call attempts to use a HTTP/2 roundtripper (pconn.alt != nil)
and receives an isNoCachedConn error. The call re... | [
{
"path": "src/net/http/transport.go",
"patch": "@@ -1382,7 +1382,10 @@ func (w *wantConn) cancel(t *Transport) {\n \tw.done = true\n \tw.mu.Unlock()\n \n-\tif pc != nil {\n+\t// HTTP/2 connections (pc.alt != nil) aren't removed from the idle pool on use,\n+\t// and should not be added back here. If the pco... | 2025-09-15T22:18:57 |
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 |
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 |
nodejs/node | 755e4603fd1679de72d250514ea5096b272ae8d6 | 157b36b91b5998508973ecbb04c4dc498f8370c1 | doc: fix Windows ccache section position
PR-URL: https://github.com/nodejs/node/pull/57326
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "BUILDING.md",
"patch": "@@ -40,6 +40,7 @@ file a new issue.\n * [Option 2: Automated install with WinGet](#option-2-automated-install-with-winget)\n * [Option 3: Automated install with Boxstarter](#option-3-automated-install-with-boxstarter)\n * [Building Node.js](#building-nodejs... | 2025-03-05T16:33:52 |
vercel/next.js | 6bd5c47b90a3165df55a29fb3f0e7ebc5d4cd6be | 828211efa1a440e18df23b871c421b772214473d | Add codemod for removing `unstable_` prefix (#84974)
Stacked on https://github.com/vercel/next.js/pull/84877,
https://github.com/vercel/next.js/pull/84880
This PR adds a codemod for removing the `unstable_` prefix for
stabilized APIs. It is considered to scale by adding more APIs to the
`UNSTABLE_TO_STABLE_MAPPING` m... | [
{
"path": "packages/next-codemod/lib/utils.ts",
"patch": "@@ -132,4 +132,9 @@ export const TRANSFORMER_INQUIRER_CHOICES = [\n value: 'middleware-to-proxy',\n version: '15.6.0-canary.54',\n },\n+ {\n+ title: 'Remove `unstable_` prefix from stabilized API',\n+ value: 'remove-unstable-prefix',... | 2025-10-16T22:55:30 |
electron/electron | ae0c8881c3f908c32f11bf0f8a185f626734d3e3 | 4ae43dcb3b34949697e333b863c34cce30701575 | chore: fix typos in 'spec/' folder (and one in 'lib/' folder) (#43374) | [
{
"path": "lib/browser/init.ts",
"patch": "@@ -212,7 +212,7 @@ if (packagePath) {\n }\n });\n } else {\n- // Call appCodeLoaded before just for safety, it doesn't matter here as _load is syncronous\n+ // Call appCodeLoaded before just for safety, it doesn't matter here as _load is synchron... | 2024-08-22T13:44:15 |
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 | 8ca209ec3962874ad1c15c22c86293edf428c284 | 3032894e045fd3628198061a44c56d4a1fb73d93 | context: don't return a non-nil from Err before Done is closed
The Context.Err documentation states that it returns nil if the
context's done channel is not closed. Fix a race condition introduced
by CL 653795 where Err could return a non-nil error slightly before
the Done channel is closed.
No impact on Err performa... | [
{
"path": "src/context/context.go",
"patch": "@@ -463,6 +463,8 @@ func (c *cancelCtx) Done() <-chan struct{} {\n func (c *cancelCtx) Err() error {\n \t// An atomic load is ~5x faster than a mutex, which can matter in tight loops.\n \tif err := c.err.Load(); err != nil {\n+\t\t// Ensure the done channel has ... | 2025-09-18T18:15:47 |
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 |
nodejs/node | 157b36b91b5998508973ecbb04c4dc498f8370c1 | b4c8440109e5a945090d8ffc3acc9aa7c1f1add1 | src: make even more improvements to error handling
PR-URL: https://github.com/nodejs/node/pull/57264
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "src/crypto/crypto_tls.cc",
"patch": "@@ -2157,10 +2157,11 @@ void TLSWrap::SetMaxSendFragment(const FunctionCallbackInfo<Value>& args) {\n Environment* env = Environment::GetCurrent(args);\n TLSWrap* w;\n ASSIGN_OR_RETURN_UNWRAP(&w, args.This());\n- int rv = SSL_set_max_send_fragment(\n- ... | 2025-03-01T20:59:20 |
vercel/next.js | c6cd1f455f5c55530ce894aad3210ef5f6003a77 | c2863c87249bdd95ff3ede6b299a9e36470521b4 | Relax default.tsx validation for parallel routes leaf segments (#84767)
### What?
Relaxes the overly strict `default.tsx` validation for parallel routes
to only require the file when it's actually needed (non-leaf segments
with routable children).
### Why?
The initial validation for parallel routes required `defaul... | [
{
"path": "crates/next-core/src/app_structure.rs",
"patch": "@@ -896,15 +896,24 @@ impl Issue for MissingDefaultParallelRouteIssue {\n #[turbo_tasks::function]\n async fn description(&self) -> Vc<OptionStyledString> {\n Vc::cell(Some(\n- StyledString::Text(\n- forma... | 2025-10-16T19:45:38 |
electron/electron | 4ae43dcb3b34949697e333b863c34cce30701575 | 46bed807ca362aa415821c3d3808f79b93af0524 | fix: touch bar functionality on BaseWindow (#43353)
* fix: touch bar functionality on BaseWindow
* test: add test for BaseWindow.setTouchBar | [
{
"path": "lib/browser/api/base-window.ts",
"patch": "@@ -1,5 +1,7 @@\n import { EventEmitter } from 'events';\n import type { BaseWindow as TLWT } from 'electron/main';\n+import { TouchBar } from 'electron/main';\n+\n const { BaseWindow } = process._linkedBinding('electron_browser_base_window') as { BaseWi... | 2024-08-22T10:48:25 |
golang/go | d9751166a6872e05afee5087cee2f360344bd2f9 | 4eb5c6e07b56b75033d98941c8fadd3304ee4965 | [dev.simd] cmd/compile: handle rematerialized op for incompatible reg constraint
This CL fixes an issue raised by contributor dominikh@.
Change-Id: I941b330a6ba6f6c120c69951ddd24933f2f0b3ec
Reviewed-on: https://go-review.googlesource.com/c/go/+/704056
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.i... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -2576,7 +2576,26 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t\t\te.s.f.Fatalf(\"can't find source for %s->%s: %s\\n\", e.p, e.b, v.LongString())\n \t\t}\n \t\tif dstReg {\n-\t\t\tx = v.copyInto(e.p... | 2025-09-16T03:27:41 |
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 |
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 |
nodejs/node | 64f6a2fc4dc8c8556a3d61c77d4110b259ffe3a4 | c5666390266ec2b2c4b2a9cd947ea8387995b1d4 | doc: update node-api version matrix
PR-URL: https://github.com/nodejs/node/pull/57287
Fixes: https://github.com/nodejs/node/issues/57284
Refs: https://github.com/nodejs/node/pull/55676
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Vladimir Morozov ... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -291,6 +291,10 @@ information is in the latest API documentation in:\n <th>Node-API version</th>\n <th scope=\"col\">Supported In</th>\n </tr>\n+ <tr>\n+ <th scope=\"row\">10</th>\n+ <td>v22.14.0+, 23.6.0+ and all later versions</td>\n+ </tr>\n ... | 2025-03-05T10:10:10 |
vercel/next.js | 05627514cf9950e4890310fa643df00cb070e7b0 | baf4401c7bf039573e3c3b233c4e127c1deae2fd | Turbopack: turn panic into bail (#84927)
Eventual consistency strikes again | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -2543,9 +2543,9 @@ impl SourceMapper for CodeGenResultSourceMap {\n }\n fn span_to_snippet(&self, sp: Span) -> Result<String, Box<SpanSnippetError>> {\n match self {\n- CodeGenResultSourceMap::None => {\n- ... | 2025-10-16T19:21:14 |
electron/electron | f366caac84df20a2b8128424583f516941001168 | 4874233aae0079c522bcd822e847926d2e60389a | chore: bump chromium to 130.0.6669.0 (main) (#43397)
* chore: bump chromium in DEPS to 130.0.6669.0
* 5789734: Consolidate all the accessibility scale factor utility code into one file
https://chromium-review.googlesource.com/c/chromium/src/+/5789734
* 5798543: [autofill] Don't emit autofill audit reports if ... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '129.0.6668.0',\n+ '130.0.6669.0',\n 'node_version':\n 'v20.16.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2024-08-21T16:34:18 |
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 | 443b7aeddb82d90345b8e7c8a4ef7c145dac7ce4 | bdd30e25caa0b69e335ba1f1f48566924850fa4b | [dev.simd] cmd/compile, simd/_gen: make rewrite rules consistent on CPU Features
The previous CL left a bug in the xed parser so that the generator can
generate rules rewriting an AVX instruction to AVX512 instruction.
This CL fixes that.
Change-Id: I0df7e7dc6c936ce7add24a757ce7f44a15917fef
Reviewed-on: https://go-r... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1397,110 +1397,50 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VSQRTPDMasked512load:\n \t\tp = simdVkvload(s, v)\n \n-\tcase ssa.OpAMD64VADDPS128load,\n-\t\tssa.OpAMD64VADDPS256load,\n-\t\tssa.OpAMD64VADDP... | 2025-09-12T18:45:39 |
nodejs/node | c5666390266ec2b2c4b2a9cd947ea8387995b1d4 | 345aa1f7c48af7f8b9c65301ec73dc731c473f1b | stream: fix sizeAlgorithm validation in WritableStream
Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/57280
Fixes: https://github.com/nodejs/node/issues/57272
Refs: https://github.com/nodejs/node/pull/56067
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Mi... | [
{
"path": "lib/internal/webstreams/writablestream.js",
"patch": "@@ -1181,7 +1181,9 @@ function writableStreamDefaultControllerGetChunkSize(controller, chunk) {\n sizeAlgorithm,\n } = controller[kState];\n if (sizeAlgorithm === undefined) {\n- assert(stream[kState].state === 'errored' || stream[k... | 2025-03-05T03:04:39 |
vercel/next.js | baf4401c7bf039573e3c3b233c4e127c1deae2fd | e4e6df78ca86d3f5ad4a042c4b6cb6ce98c17666 | Turbopack: fix client reference order for shared references (#84760)
At first, we performed one naive traversal per page to collect all client references. That had the problem that references used by multiple layout segments were attributed only to the first layout segment (e.g. only on `not-found` and not on `page`).... | [
{
"path": "crates/next-api/src/client_references.rs",
"patch": "@@ -3,21 +3,13 @@ use next_core::{\n next_client_reference::{CssClientReferenceModule, EcmascriptClientReferenceModule},\n next_server_component::server_component_module::NextServerComponentModule,\n };\n-use roaring::RoaringBitmap;\n u... | 2025-10-16T19:20:28 |
electron/electron | a2de94dda1b716d8084d7f51c0e72e6cc226b53a | 2cc14c6e8faf9c9affcd00dab76524bb19337109 | chore: remove unused ConvertableToTraceFormatWrapper (#43356)
* chore: remove unused ConvertableToTraceFormatWrapper
Last use removed in Apr 2024 (39bf441b, #41880)
* fixup! chore: remove unused ConvertableToTraceFormatWrapper
remove now-unused trace_event.h header, too | [
{
"path": "shell/browser/javascript_environment.cc",
"patch": "@@ -18,7 +18,6 @@\n #include \"base/task/current_thread.h\"\n #include \"base/task/single_thread_task_runner.h\"\n #include \"base/task/thread_pool/initialization_util.h\"\n-#include \"base/trace_event/trace_event.h\"\n #include \"gin/array_buff... | 2024-08-20T19:21:43 |
golang/go | 78ef487a6f936a39e9d4ebf66ac421bb1244a7a9 | 77aac7bb75edc222dd7b350e8b76c20c79da5f43 | cmd/compile: fix the issue of shift amount exceeding the valid range
Fixes #75479
Change-Id: I362d3e49090e94f91a840dd5a475978b59222a00
Reviewed-on: https://go-review.googlesource.com/c/go/+/704135
Reviewed-by: Mark Freeman <markfreeman@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.g... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules",
"patch": "@@ -717,7 +717,8 @@\n (SRLVconst [rc] (MOVBUreg x)) && rc >= 8 => (MOVVconst [0])\n \n // (x + x) << c -> x << c+1\n-((SLLV|SLL)const [c] (ADDV x x)) => ((SLLV|SLL)const [c+1] x)\n+((SLLV|SLL)const <t> [c] (ADDV x x)) && c < t.Size() * 8... | 2025-09-16T07:27:42 |
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 |
vercel/next.js | 206fa758ee67677999bac7d726e84c25ed614449 | 1bb64bf9fa98f70e42f1a2098388fd83e8519378 | Turbopack: fix pageExtensions precedence (#84926)
Webpack doesn't use the specified order, it's by length. | [
{
"path": "crates/next-core/src/next_config.rs",
"patch": "@@ -1388,7 +1388,12 @@ impl NextConfig {\n \n #[turbo_tasks::function]\n pub fn page_extensions(&self) -> Vc<Vec<RcStr>> {\n- Vc::cell(self.page_extensions.clone())\n+ // Sort page extensions by length descending. This mirrors ... | 2025-10-16T18:08:43 |
nodejs/node | 52ac44888df66df91df921e307b309eceb360f4c | 2cff2560658a81c749c6e3f46566ee659af0810d | src: make more error handling improvements
PR-URL: https://github.com/nodejs/node/pull/57262
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "src/env.cc",
"patch": "@@ -54,10 +54,12 @@ using v8::HeapProfiler;\n using v8::HeapSpaceStatistics;\n using v8::Integer;\n using v8::Isolate;\n+using v8::JustVoid;\n using v8::Local;\n using v8::Maybe;\n using v8::MaybeLocal;\n using v8::NewStringType;\n+using v8::Nothing;\n using v8::Number;\n u... | 2025-03-01T19:56:27 |
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 |
golang/go | 465b85eb760bfdb114f6b6ebccf374aba3977929 | 909704b85e64b156f81e78bcfd1fbd9b032c089a | runtime: fix CheckScavengedBitsCleared with randomized heap base
We cannot easily determine the base address of the arena we added the
random padding pages to, which can cause confusing
TestScavengedBitsCleared failures when the arena we padded does not have
the lowest address of all of the arenas.
Instead of attempt... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -1122,8 +1122,6 @@ func CheckScavengedBitsCleared(mismatches []BitsMismatch) (n int, ok bool) {\n \t\t// Lock so that we can safely access the bitmap.\n \t\tlock(&mheap_.lock)\n \n-\t\theapBase := mheap_.pages.inUse.ranges[0].base.addr()\n-\t\tsecondArena... | 2025-09-17T21:04:56 |
vercel/next.js | 54ecdd83f636bfe32c43469da63cf5630d07cdb1 | 65d6ffb7eff5eca4d417ca948ae7ace4adeb2aeb | [dev] Fix Middleware and Proxy file conflict (#84965)
Since the conflict check looked only at the file name 💀, when there's a
`proxy` or `middleware` file inside the app, it also detected a
conflict:
```
Unhandled Rejection: Error: Both "middleware" and "proxy" files are detected. Please use "proxy" instead.
```
CI... | [
{
"path": "packages/next/src/server/lib/router-utils/setup-dev-bundler.ts",
"patch": "@@ -393,34 +393,38 @@ async function startWatcher(\n \n let hasMiddlewareFile = false\n let hasProxyFile = false\n+\n for (const fileName of sortedKnownFiles) {\n- const { name } = path.parse(fileN... | 2025-10-16T17:59:11 |
electron/electron | 2cc14c6e8faf9c9affcd00dab76524bb19337109 | 945aabfaeeafc30b4fed5b4ba49876f6b9b85e5d | chore: bump chromium to 129.0.6668.0 (main) (#43368)
* chore: bump chromium in DEPS to 129.0.6668.0
* 5787687: [Extensions] Remove EventRouterForwarder from BrowserProcess
https://chromium-review.googlesource.com/c/chromium/src/+/5787687
* 5788808: Resolve Blob URL's origin using info from browser process
... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '129.0.6664.0',\n+ '129.0.6668.0',\n 'node_version':\n 'v20.16.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2024-08-20T14:54:27 |
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 | 909704b85e64b156f81e78bcfd1fbd9b032c089a | 3db5979e8cc4cc86c4fefb4cecc5a2041b32404d | encoding/json/v2: fix typo in comment
Use the correct spelling of the Gregorian calendar.
Change-Id: I7e1d2974d38d5d3ded64f98852ee726c7b84be22
Reviewed-on: https://go-review.googlesource.com/c/go/+/704595
Reviewed-by: Joseph Tsai <joetsai@digital-static.net>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc... | [
{
"path": "src/encoding/json/v2/arshal_time.go",
"patch": "@@ -465,7 +465,7 @@ func appendDurationISO8601(b []byte, d time.Duration) []byte {\n }\n \n // daysPerYear is the exact average number of days in a year according to\n-// the Gregorian calender, which has an extra day each year that is\n+// the Greg... | 2025-09-17T09:55:02 |
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 |
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 |
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 |
golang/go | 6a8dbbecbfc32650841e737271384ffaba433292 | bffe7ad9f11b874429d6c2561b0383e931502164 | path/filepath: fix EvalSymlinks to return ENOTDIR on plan9
CL 155597 added a test to check EvalSymlinks returns ENOTDIR
for existing path which ends with a slash.
CL 404954 added a separate evalSymlinks implementation for plan9,
which has a kludge to ensure the ENOTDIR is returned in the above case.
Apparently the a... | [
{
"path": "src/path/filepath/symlink_plan9.go",
"patch": "@@ -16,8 +16,8 @@ func evalSymlinks(path string) (string, error) {\n \t\t// Check validity of path\n \t\t_, err := os.Lstat(path)\n \t\tif err != nil {\n-\t\t\t// Return the same error value as on other operating systems\n-\t\t\tif strings.HasSuffix(... | 2025-09-03T19:48:44 |
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 | 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 |
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 |
golang/go | 594deca981f0dd4a9351569e7c3e6999838148e3 | 9df1a289ac64451042f6f14b7229ae5cd2217352 | cmd/link: simplify PE relocations mapping
The code for mapping Windows PE relocations to Go relocations was
difficult to follow and contains some duplicated code. Also, it was
mapping IMAGE_REL_AMD64_ADDR32 to R_PCREL instead of R_ADDR.
This CL commit simplifies the code and fixes the mapping. I haven't been
able to ... | [
{
"path": "src/cmd/link/internal/loadpe/ldpe.go",
"patch": "@@ -17,6 +17,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"io\"\n+\t\"strconv\"\n \t\"strings\"\n )\n \n@@ -348,102 +349,65 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, input *bio.Read\n \t\t\t\treturn nil, fmt.Errorf(\"relo... | 2025-05-13T09:24:30 |
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 |
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 |
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 |
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 |
golang/go | cbdad4fc3cecbdfcee4e9d30df04916a151bfc16 | c2d85eb999fcd428a1cd71ed93805cbde0c16eaa | cmd/go: check pattern for utf8 validity before call regexp.MustCompile
Do not panic if the package path or the package version contains
invalid UTF-8 characters.
Fixes #75251
Change-Id: Ib787e74277cf814253857b911d378ea5e53d8824
Reviewed-on: https://go-review.googlesource.com/c/go/+/700815
Reviewed-by: Michael Matloo... | [
{
"path": "src/cmd/go/internal/modget/query.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"regexp\"\n \t\"strings\"\n \t\"sync\"\n+\t\"unicode/utf8\"\n \n \t\"cmd/go/internal/base\"\n \t\"cmd/go/internal/gover\"\n@@ -285,6 +286,11 @@ func reportError(q *query, err error) {\n \t// TODO(bcmills): Use errors.... | 2025-09-04T01:17:26 |
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 | 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 | 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 |
golang/go | c2d85eb999fcd428a1cd71ed93805cbde0c16eaa | ac82fe68aaec797a9677171b00241fba57f057bc | cmd/go: disable cgo by default if CC unset and DefaultCC doesn't exist
CL 621995 disrupted the behavior
introduced by CL 450739, now restore it.
Fixes #75340
Change-Id: Icd1a0eb970876995f9446e0547ceb9e78990f6ed
Reviewed-on: https://go-review.googlesource.com/c/go/+/703555
LUCI-TryBot-Result: Go LUCI <golang-scoped@... | [
{
"path": "src/cmd/go/internal/cfg/cfg.go",
"patch": "@@ -145,7 +145,8 @@ func defaultContext() build.Context {\n \tif buildcfg.DefaultCGO_ENABLED == \"1\" {\n \t\tdefaultCgoEnabled = true\n \t} else if buildcfg.DefaultCGO_ENABLED == \"0\" {\n-\t} else if runtime.GOARCH == ctxt.GOARCH && runtime.GOOS == ctx... | 2025-09-13T18:32:24 |
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 |
electron/electron | 4c3014944cda8a35fc005af3ade8ba3633e88866 | cc16de7032228933f6a0f09cbd72178d8ffd84d0 | chore: bump chromium to 129.0.6664.0 (main) (#43329)
* chore: bump chromium in DEPS to 129.0.6657.0
* chore: update patches
* chore: bump chromium in DEPS to 129.0.6658.0
* chore: update patches
* 5743786: [ServiceWorker] Populate service worker start token to WorkerId.
https://chromium-review.googlesou... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '129.0.6656.0',\n+ '129.0.6664.0',\n 'node_version':\n 'v20.16.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2024-08-19T18:52:53 |
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 |
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 |
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 |
golang/go | ac82fe68aaec797a9677171b00241fba57f057bc | 0b26678db2d042c6273c435df5cb5a37e7e04994 | bytes,strings: remove reference to non-existent SplitFunc
Fixes #75462
Updates #72841
Change-Id: Ie2cbbdb031578a3138ecc6e60c0025807f1990e6
Reviewed-on: https://go-review.googlesource.com/c/go/+/703675
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Alan Donovan <... | [
{
"path": "src/bytes/bytes.go",
"patch": "@@ -508,7 +508,7 @@ func Fields(s []byte) [][]byte {\n // It splits the slice s at each run of code points c satisfying f(c) and\n // returns a slice of subslices of s. If all code points in s satisfy f(c), or\n // len(s) == 0, an empty slice is returned. Every elem... | 2025-09-14T15:24:57 |
electron/electron | cc16de7032228933f6a0f09cbd72178d8ffd84d0 | 4d51edc504e300e02976bb64db476f352c695c23 | fix: printing occasionally showing failed when cancelled (#43337)
Closes https://github.com/electron/electron/issues/36084 | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -91,7 +91,7 @@ index 163eacc8bb6654880d37111923a87ea5a6134485..565258e9bd4cc52e347e1f4a72ee29ec\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/... | 2024-08-19T18:25:14 |
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 |
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 | 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 |
golang/go | 0b26678db2d042c6273c435df5cb5a37e7e04994 | e2cfc1eb3affe8bcdfeca4a9f0a2d7902dbb940f | cmd/compile: fix mips zerorange implementation
A +8 was missed when simplifying this code in CL 700936.
Fixes #75477
Change-Id: Ic7b83322dc1373432b44f0b63607141195220380
Reviewed-on: https://go-review.googlesource.com/c/go/+/703937
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scope... | [
{
"path": "src/cmd/compile/internal/mips/ggen.go",
"patch": "@@ -5,6 +5,7 @@\n package mips\n \n import (\n+\t\"cmd/compile/internal/base\"\n \t\"cmd/compile/internal/objw\"\n \t\"cmd/compile/internal/types\"\n \t\"cmd/internal/obj\"\n@@ -17,7 +18,7 @@ func zerorange(pp *objw.Progs, p *obj.Prog, off, cnt in... | 2025-09-16T02:59:22 |
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.