repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
electron/electron | 371e83a8d2390c63bc9171c0b3949b460ab9ad17 | d6c8ff2e7050f30dffd784915bcbd2a9f993cdb2 | fix: support esm entrypoint to utility process (#40047) | [
{
"path": "lib/utility/init.ts",
"patch": "@@ -1,5 +1,7 @@\n+import { pathToFileURL } from 'url';\n+\n import { ParentPort } from '@electron/internal/utility/parent-port';\n-const Module = require('module') as NodeJS.ModuleInternal;\n+\n const v8Util = process._linkedBinding('electron_common_v8_util');\n \n... | 2023-09-29T21:38:37 |
vercel/next.js | 756221bb2d4c0498fe1d36f1c68bf79944b4d4c0 | bb617a8777a5b4e0d19e8729a059beeca9491608 | Turbopack: fix module rules for `.module.scss` (#82570)
It ran `postcss(webpack(postcss(filesource)))`, which doesn't work.
And changing the order does make sense, since we do want Webpack (SCSS) to run first, and only then PostCSS?
#82554 didn't catch every case | [
{
"path": "test/e2e/app-dir/css-modules-rsc-postcss/app/other.module.scss",
"patch": "@@ -0,0 +1,4 @@\n+.other {\n+ // some SCSS\n+ color: red;\n+}",
"additions": 4,
"deletions": 0,
"language": "Unknown"
},
{
"path": "test/e2e/app-dir/css-modules-rsc-postcss/app/page.tsx",
"patch":... | 2025-08-12T14:17:26 |
rust-lang/rust | d13828b2c7cedb6147999222118cd87bf4fe28cd | a8bbacd2702cfbc260b52f9c19fc5c01c510a7bb | fix: re-format the changes | [
{
"path": "src/librustdoc/html/render/mod.rs",
"patch": "@@ -59,8 +59,8 @@ use rustc_hir::def_id::{DefId, DefIdSet};\n use rustc_hir::{ConstStability, Mutability, RustcVersion, StabilityLevel, StableSince};\n use rustc_middle::ty::print::PrintTraitRefExt;\n use rustc_middle::ty::{self, TyCtxt};\n-use rustc_... | 2026-02-15T14:34:53 |
facebook/react | e63918d2cd53b03c19119b475e116d1b45fd0f84 | f86afca090b668d8be10b642750844759768d1ad | Add Promise as a child test to Flight fixture (#28778) | [
{
"path": "fixtures/flight/__tests__/__e2e__/smoke.test.js",
"patch": "@@ -13,7 +13,9 @@ test('smoke test', async ({page}) => {\n pageErrors.push(error.stack);\n });\n await page.goto('/');\n- await expect(page.locator('h1')).toHaveText('Hello World');\n+ await expect(page.getByTestId('promise-as-... | 2024-04-08T15:06:17 |
nodejs/node | c6269cb0693bde94b610ed5c613af7e2db63e144 | 3c4ef343eeb4a65e4fdf4b180a5fd9766aaf4913 | tools: fix path of abseil file in v8.gyp
PR-URL: https://github.com/nodejs/node/pull/54659
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigip... | [
{
"path": "tools/v8_gypfiles/v8.gyp",
"patch": "@@ -2233,6 +2233,7 @@\n '<(ABSEIL_ROOT)/absl/base/internal/low_level_alloc.h',\n '<(ABSEIL_ROOT)/absl/base/internal/low_level_alloc.cc',\n '<(ABSEIL_ROOT)/absl/base/internal/low_level_scheduling.h',\n+ '<(ABSEIL_ROOT)/absl/base/i... | 2024-09-17T11:47:08 |
vercel/next.js | 55f705f1ab8e50d9012a4e0b88b8277fbdc85d8e | 2bca1fde21db21e39e35c30a5c9eb88cb06178ee | fix(next/image): handle empty buffer and experimental flag for `skipMetadata` (#82569)
As a follow up to PR https://github.com/vercel/next.js/pull/82538 this
PR adds an experimental flag to optionally skip `sharp.metadata()` and
rely only on the JS implementation for format detection. | [
{
"path": "packages/next/src/server/config-schema.ts",
"patch": "@@ -385,6 +385,7 @@ export const configSchema: zod.ZodType<NextConfig> = z.lazy(() =>\n imgOptTimeoutInSeconds: z.number().int().optional(),\n imgOptMaxInputPixels: z.number().int().optional(),\n imgOptSequentialRead: z... | 2025-08-12T14:12:52 |
golang/go | 40b19b56a94c4d53a3c1d98275df44049b2f5917 | 2a5ac1a993efc463efdce7996efd356dabf03a25 | runtime: add valgrind instrumentation
Add build tag gated Valgrind annotations to the runtime which let it
understand how the runtime manages memory. This allows for Go binaries
to be run under Valgrind without emitting spurious errors.
Instead of adding the Valgrind headers to the tree, and using cgo to
call the var... | [
{
"path": "src/os/pidfd_linux.go",
"patch": "@@ -170,7 +170,10 @@ func checkPidfd() error {\n \n \t// Check waitid(P_PIDFD) works.\n \terr = ignoringEINTR(func() error {\n-\t\treturn unix.Waitid(unix.P_PIDFD, int(fd), nil, syscall.WEXITED, nil)\n+\t\tvar info unix.SiginfoChild\n+\t\t// We don't actually car... | 2025-03-22T00:58:55 |
rust-lang/rust | a8bbacd2702cfbc260b52f9c19fc5c01c510a7bb | 40a3ca1189940ad1805c8deb3ba60744fa16dc57 | fix: remove unused import | [
{
"path": "src/librustdoc/html/render/mod.rs",
"patch": "@@ -60,7 +60,7 @@ use rustc_hir::{ConstStability, Mutability, RustcVersion, StabilityLevel, Stable\n use rustc_middle::ty::print::PrintTraitRefExt;\n use rustc_middle::ty::{self, TyCtxt};\n use rustc_span::symbol::{Symbol, sym};\n-use rustc_span::{Byt... | 2026-02-15T14:26:54 |
nodejs/node | 3c4ef343eeb4a65e4fdf4b180a5fd9766aaf4913 | d17fefcd71658ffd7244405034bbdecb91e33745 | module: remove bogus assertion in CJS entrypoint handling with --import
The synchronous CJS translator can handle entrypoints now, this
can be hit when --import is used, so lift the bogus assertions and
added tests.
PR-URL: https://github.com/nodejs/node/pull/54592
Fixes: https://github.com/nodejs/node/issues/54577
R... | [
{
"path": "lib/internal/modules/esm/translators.js",
"patch": "@@ -240,11 +240,9 @@ function createCJSModuleWrap(url, source, isMain, loadCJS = loadCJSModule) {\n \n translators.set('commonjs-sync', function requireCommonJS(url, source, isMain) {\n initCJSParseSync();\n- assert(!isMain); // This is only... | 2024-08-27T15:49:25 |
electron/electron | d6c8ff2e7050f30dffd784915bcbd2a9f993cdb2 | d002f16157bbc7f4bc70f2db6edde21d74c02276 | chore: bump chromium to 119.0.6029.0 (main) (#39944)
* chore: bump chromium in DEPS to 119.0.6021.0
* 4727729: Initial ScreenCaptureKit AudioInputStream implementation
https://chromium-review.googlesource.com/c/chromium/src/+/4727729
* chore: fixup patch indices
* chore: bump chromium in DEPS to 119.0.6023... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -68,8 +68,8 @@ executors:\n version:\n description: \"xcode version\"\n type: enum\n- enum: [\"14.3.0\", \"14.0.0\"]\n- default: 14.3.0\n+ enum: [\"15.0.0\", \"14.0.0\"]\n+ default: 15.0.0\n macos:\n ... | 2023-09-29T05:26:41 |
facebook/react | 9a6cb241504027688c166f7fedba8bd443cb9639 | 0d0f7c2ad178cc546f04bf5b302d0c27609bc3cc | [ez] Fix comments to be star blocks
ghstack-source-id: 6a9e844a3ba548d3bf2b7373dc023ad42c2e719b
Pull Request resolved: https://github.com/facebook/react-forget/pull/2826 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts",
"patch": "@@ -9,17 +9,29 @@ import type { SourceLocation } from \"./HIR\";\n import { assertExhaustive } from \"./Utils/utils\";\n \n export enum ErrorSeverity {\n- // Invalid JS syntax, or valid syntax that is semantically inval... | 2024-04-08T14:55:55 |
vercel/next.js | bd802d13277f4b44d5cf4c1f1d61f9c32956bbc3 | 5bbd5ddf82e6c917b98c72a1632a7d2fffdf562d | [turbopack] Handle relative paths before matching in node file traces (#82539)
# Fix glob handling for NFT JSON asset includes and excludes
The current webpack version uses the https://www.npmjs.com/package/glob package to match and notably only handles `../` when it appears in a prefix position ([ref](https://www.n... | [
{
"path": "crates/next-api/src/nft_json.rs",
"patch": "@@ -4,7 +4,7 @@ use anyhow::{Result, bail};\n use serde_json::json;\n use turbo_rcstr::RcStr;\n use turbo_tasks::{\n- ReadRef, ResolvedVc, TryFlatJoinIterExt, Vc,\n+ FxIndexMap, ReadRef, ResolvedVc, TryFlatJoinIterExt, TryJoinIterExt, Vc,\n gr... | 2025-08-12T11:13:43 |
golang/go | 8b45a3f78b178ce66f419038a664cbd6a82ada54 | 896097000912761dbd31cead2bec99f17534f521 | runtime: guarantee checkfinalizers test allocates in a shared tiny block
Currently the checkfinalizers test (TestDetectCleanupOrFinalizerLeak)
only *tries* to ensure the tiny alloc with a cleanup attached shares a
block with other objects. However, what it does is insufficient, because
it could get unlucky and have th... | [
{
"path": "src/runtime/malloc.go",
"patch": "@@ -1672,7 +1672,10 @@ func postMallocgcDebug(x unsafe.Pointer, elemsize uintptr, typ *_type) {\n \t}\n \n \t// N.B. elemsize == 0 indicates a tiny allocation, since no new slot was\n-\t// allocated to fulfill this call to mallocgc.\n+\t// allocated to fulfill th... | 2025-05-20T20:26:56 |
nodejs/node | 305137faaec137a1f0c40bafd0edac0eed7b8ead | 7feff2434dab5a45ba1fe4f4bc72cf521ebd28c5 | doc: fix typo callsite.lineNumber
PR-URL: https://github.com/nodejs/node/pull/54969
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/util.md",
"patch": "@@ -395,7 +395,7 @@ function exampleFunction() {\n console.log(`CallSite ${index + 1}:`);\n console.log(`Function Name: ${callSite.functionName}`);\n console.log(`Script Name: ${callSite.scriptName}`);\n- console.log(`Line Number: ${callSite.lineNumer}`)... | 2024-09-16T20:25:24 |
facebook/react | 0d0f7c2ad178cc546f04bf5b302d0c27609bc3cc | 1f35f7e320bd2f75421a7d4b0b13cf2a7604a980 | Update ValidatePreservedManualMemoization severity to
CannotPreserveMemoization
We do need to fix the error location to point to the "callsite" rather
than the definition of the useMemo callback, but that aside, even if the
error message were perfect, it's not meant to be actionable to the user.
So let's change the s... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidatePreservedManualMemoization.ts",
"patch": "@@ -439,7 +439,7 @@ class Visitor extends ReactiveFunctionVisitor<VisitorState> {\n reason:\n \"This value was manually memoized, but cannot be memoized under For... | 2024-04-08T14:55:54 |
electron/electron | d002f16157bbc7f4bc70f2db6edde21d74c02276 | dd7395ebedf0cfef3129697f9585035a4ddbde63 | feat: `systemPreferences.getColor` should return RGBA instead of RGB (#38960)
* fix: return RGBA hex value from `SystemPreferences.getColor`
* docs: update docs to match changes of last commit
* fix: GetColor on windows now returns RGBA too
* fix: update tests for getColor RGBA on Windows
---------
Co-a... | [
{
"path": "docs/api/system-preferences.md",
"patch": "@@ -306,7 +306,7 @@ This API is only available on macOS 10.14 Mojave or newer.\n * `window-background` - The background of a window.\n * `window-frame-text` - The text in the window's titlebar area.\n \n-Returns `string` - The system color settin... | 2023-09-28T22:56:16 |
vercel/next.js | 5bbd5ddf82e6c917b98c72a1632a7d2fffdf562d | 39fffcc300473ae2f9568d5c993f3e866cfd03b3 | Turbopack: improve Lightning CSS error handling (#82561)
Don't return the `Result:Err`, but turn into an issue and return `Unparseable`
Also fixes the location translation: Lightning CSS uses 1-based columns, while Turbopack uses 0-based column indices. | [
{
"path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts",
"patch": "@@ -415,13 +415,13 @@ describe('ReactRefreshLogBox app', () => {\n if (isTurbopack) {\n await expect(browser).toDisplayRedbox(`\n {\n- \"description\": \"Parsing css source code failed\",\n+ \"... | 2025-08-12T11:12:17 |
rust-lang/rust | 71e4b03b02dcd190d48b508e14d70146fa7007ef | b451b42018616243f66ffd96f40b2cc1cee08561 | fix: no complete suggest param in complex pattern
Example
---
```rust
fn foo(bar: u32) {}
fn bar((a, bar$0)) {}
```
**Before this PR**
```rust
fn foo(bar: u32) {}
fn bar(bar: u32)) {}
```
**After this PR**
Not complete `bar: u32` | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/fn_param.rs",
"patch": "@@ -25,7 +25,7 @@ pub(crate) fn complete_fn_param(\n ctx: &CompletionContext<'_>,\n pattern_ctx: &PatternContext,\n ) -> Option<()> {\n- let (ParamContext { param_list, kind, .. }, impl_or_trait) = ma... | 2026-02-14T14:01:28 |
golang/go | 4ce1c8e9e1aab695bb0da506f2de336a5caa81f6 | 0810fd2d9282dda12532e249c931b36a2d2526ed | cmd/compile: add rules about ORN and ANDN
Reduce the number of go toolchain instructions on loong64 as follows.
file before after Δ %
addr2line 279880 279776 -104 -0.0372%
asm 556638 556410 -228 -0.0410%
buildid 272272 272072 -200 -0.0735%
cgo 4815... | [
{
"path": "src/cmd/compile/internal/loong64/ssa.go",
"patch": "@@ -165,6 +165,8 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tssa.OpLOONG64OR,\n \t\tssa.OpLOONG64XOR,\n \t\tssa.OpLOONG64NOR,\n+\t\tssa.OpLOONG64ANDN,\n+\t\tssa.OpLOONG64ORN,\n \t\tssa.OpLOONG64SLL,\n \t\tssa.OpLOONG64SLLV,\n \t\t... | 2025-05-20T02:28:17 |
nodejs/node | c1afd2c8e3298c28a0ea7a14b5e0761e688e5697 | 53ede878a51aee2dd2d1c97b5cefa43ae12f14aa | fs: translate error code properly in cpSync
UV error code needs to be negative integer so it can be mapped
correctly. The filesystem error are positive integer, so we need to
handle it before throwing.
Co-authored-by: Jake Yuesong Li <jake.yuesong@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/54906
Reviewed-... | [
{
"path": "src/node_file.cc",
"patch": "@@ -3147,7 +3147,14 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n ? std::filesystem::symlink_status(src_path, error_code)\n : std::filesystem::status(src_path, error_code);\n if (error_co... | 2024-09-16T12:41:55 |
facebook/react | 1f35f7e320bd2f75421a7d4b0b13cf2a7604a980 | 76bb13cd26717312fc5fc5d4a69b4938e7ce27a9 | Add new ErrorSeverity.CannotPreserveMemoization
This adds a new category of error where the compiler cannot preserve
memoization exactly how as it was originally authored. We're adding a
new category here because it's not an actionable error, and allows us to
more specifically control whether it's reportable or not.
... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts",
"patch": "@@ -15,6 +15,8 @@ export enum ErrorSeverity {\n InvalidReact = \"InvalidReact\",\n // Incorrect configuration of the compiler.\n InvalidConfig = \"InvalidConfig\",\n+ // Code that can reasonably occur and that doe... | 2024-04-08T14:55:53 |
electron/electron | e3e793d25bfa04f3003fdd09cb78c3ff4afc08e7 | da92c9aa27fd9d0085d957f0e17bd0ca7b5ad898 | chore: remove invalid constexpr qualification (#40006)
GetPathConstant calls base::internal::flat_tree<Key, GetKeyFromValue, KeyCompare, Container>::find(Key const&) const which is not constexpr.
GCC 12 and earlier raise a compile error on this. | [
{
"path": "shell/browser/api/electron_api_app.cc",
"patch": "@@ -433,7 +433,7 @@ IconLoader::IconSize GetIconSizeByString(const std::string& size) {\n }\n \n // Return the path constant from string.\n-constexpr int GetPathConstant(base::StringPiece name) {\n+int GetPathConstant(base::StringPiece name) {\n ... | 2023-09-28T16:49:09 |
vercel/next.js | 333489d8dbfacfbe3c91b3f8945503192a93ace8 | b8508126f99bba26fcf6511b3637f3f50eeba9e7 | Turbopack: fix postcss in RSC CSS (#82554)
### What?
make sure to apply PostCSS on .module.css that is requested from RSC.
Fixes a regression from #82448
Closes #82545 | [
{
"path": "test/e2e/app-dir/css-modules-rsc-postcss/app/layout.tsx",
"patch": "@@ -0,0 +1,8 @@\n+import { ReactNode } from 'react'\n+export default function Root({ children }: { children: ReactNode }) {\n+ return (\n+ <html>\n+ <body>{children}</body>\n+ </html>\n+ )\n+}",
"additions": 8,
... | 2025-08-12T08:54:17 |
rust-lang/rust | 40a3ca1189940ad1805c8deb3ba60744fa16dc57 | 5d04477ea8118ba54d9ce402848dda19a41d61eb | fix: remove unused source span | [
{
"path": "src/librustdoc/html/render/mod.rs",
"patch": "@@ -2779,46 +2779,12 @@ fn render_call_locations<W: fmt::Write>(\n let needs_expansion = line_max - line_min > NUM_VISIBLE_LINES;\n let locations_encoded = serde_json::to_string(&line_ranges).unwrap();\n \n- let source_map = tcx... | 2026-02-15T14:01:01 |
golang/go | 0d7dc6842b3de170fcc8c72aa4380269b8f21f80 | 0375edd901f2807af29af95f60a06065c489708c | cmd/internal/obj/riscv: fix vector integer multiply add
The RISC-V integer vector multiply add instructions are not encoded
correctly; the first and second arguments are swapped. For example,
the instruction
VMACCVV V1, V2, V3
encodes to
b620a1d7 or vmacc.vv v3,v1,v2
and not
b61121d7 or vmacc.vv v3,v2,v1
as expe... | [
{
"path": "src/cmd/asm/internal/asm/testdata/riscv64.s",
"patch": "@@ -830,38 +830,38 @@ start:\n \tVWMULSUVX\tX10, V2, V0, V3\t\t\t// d76125e8\n \n \t// 31.11.13: Vector Single-Width Integer Multiply-Add Instructions\n-\tVMACCVV\t\tV1, V2, V3\t\t\t// d7a120b6\n-\tVMACCVV\t\tV1, V2, V0, V3\t\t\t// d7a120b4\... | 2025-05-06T12:07:09 |
nodejs/node | 53ede878a51aee2dd2d1c97b5cefa43ae12f14aa | 91952103991b809805115ac176b05cd34144bae3 | src: add `--env-file-if-exists` flag
Fixes: https://github.com/nodejs/node/issues/50993
Refs: https://github.com/nodejs/node/issues/51451
test: remove unnecessary comment
src: conform to style guidelines
src: change flag to `--env-file-optional`
test: revert automatic linter changes
doc: fix typos
src: change fl... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -828,6 +828,8 @@ in the file, the value from the environment takes precedence.\n You can pass multiple `--env-file` arguments. Subsequent files override\n pre-existing variables defined in previous files.\n \n+An error is thrown if the file does not exist.\n+\n ```ba... | 2024-09-16T00:58:16 |
facebook/react | f86afca090b668d8be10b642750844759768d1ad | 2acfb7b60922bdc8376dd144ca7bc532df78254b | docs: fix typo in fixtures/nesting/README.md (#27507) | [
{
"path": "fixtures/nesting/README.md",
"patch": "@@ -68,7 +68,7 @@ We will use three different `package.json`s: one for non-React code at the root,\n - **`src/legacy/package.json`**: This is where we declare the `react` and `react-dom` dependencies for the \"legacy\" trees. In this demo, we're using React... | 2024-04-06T17:11:19 |
electron/electron | 4cf6884dd418aa7d6e4dc549efc3db1ee2a67900 | 94585f5889b83d4961a57619aab4f1f041f5b857 | fix: detect screen readers by testing their existences (#39988) | [
{
"path": "shell/browser/native_window_views_win.cc",
"patch": "@@ -7,6 +7,7 @@\n #include <wrl/client.h>\n \n #include \"base/win/atl.h\" // Must be before UIAutomationCore.h\n+#include \"base/win/scoped_handle.h\"\n #include \"content/public/browser/browser_accessibility_state.h\"\n #include \"shell/brow... | 2023-09-28T15:17:42 |
vercel/next.js | cc5e9e67006b24b808217a34528dff3455905ee3 | 4dc34109a49b688752572c9df480fde8d1773e5b | Fix: Allow dynamic rendering when root layout is wrapped in Suspense (#82378)
The prelude is empty when the entire app is suspended during prerender.
Typically this indicates a lack of suspense boundary in the app, which
creates no static shell, thus throwing error. However, if the root
layout itself is dynamic but wr... | [
{
"path": "packages/next/src/client/components/app-router.tsx",
"patch": "@@ -44,6 +44,7 @@ import { isRedirectError, RedirectType } from './redirect-error'\n import { pingVisibleLinks } from './links'\n import RootErrorBoundary from './errors/root-error-boundary'\n import DefaultGlobalError from './builtin... | 2025-08-12T00:18:40 |
rust-lang/rust | 88f0ac34dce0e0d21da576aa111ce3b7d66bfafc | ce0bf0b22b646bacf91f73393483f684a44848ca | Fix const normalization for generic const items with trait assoc consts | [
{
"path": "compiler/rustc_trait_selection/src/traits/query/normalize.rs",
"patch": "@@ -376,10 +376,14 @@ impl<'a, 'tcx> QueryNormalizer<'a, 'tcx> {\n // `tcx.normalize_canonicalized_projection` may normalize to a type that\n // still has unevaluated consts, so keep normalizing here if that'... | 2026-02-07T09:51:44 |
golang/go | 0375edd901f2807af29af95f60a06065c489708c | 7f806c1052aa919c1c195a5b2223626beab2495c | os: skip TestOpenFileCreateExclDanglingSymlink when no symlinks
Skip this test on plan9, and any other platform that doesn't
have symlinks.
Fixes #73729
Change-Id: I8052db24ed54c3361530bd4f54c96c9d10c4714c
Reviewed-on: https://go-review.googlesource.com/c/go/+/674697
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-p... | [
{
"path": "src/os/os_test.go",
"patch": "@@ -2300,6 +2300,7 @@ func TestFilePermissions(t *testing.T) {\n }\n \n func TestOpenFileCreateExclDanglingSymlink(t *testing.T) {\n+\ttestenv.MustHaveSymlink(t)\n \ttestMaybeRooted(t, func(t *testing.T, r *Root) {\n \t\tconst link = \"link\"\n \t\tif err := Symlink(... | 2025-05-21T00:02:11 |
electron/electron | 94585f5889b83d4961a57619aab4f1f041f5b857 | 43a646ed8592f31e0c8fa08b684dac329b7bf976 | fix: propagate layout call to all children of `InspectableWebContentsViewViews` (#39994)
Propagate layout call to all children of InspectableWebContentsViewViews.
When BrowserView bounds are set from js, those might not trigger layout
immediately, sometimes propagating InvalidateLayout call to parent.
View is mar... | [
{
"path": "shell/browser/ui/views/inspectable_web_contents_view_views.cc",
"patch": "@@ -216,6 +216,8 @@ const std::u16string InspectableWebContentsViewViews::GetTitle() {\n void InspectableWebContentsViewViews::Layout() {\n if (!devtools_web_view_->GetVisible()) {\n contents_web_view_->SetBoundsRect(... | 2023-09-28T15:17:21 |
facebook/react | f33a6b69c6cb406ea0cc51d07bc4d3fd2d8d8744 | e3ebcd54b98a4f8f5a9f7e63982fa75578b648ed | Track Owner for Server Components in DEV (#28753)
This implements the concept of a DEV-only "owner" for Server Components.
The owner concept isn't really super useful. We barely use it anymore,
but we do have it as a concept in DevTools in a couple of cases so this
adds it for parity. However, this is mainly intere... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -484,6 +484,7 @@ function createElement(\n type: mixed,\n key: mixed,\n props: mixed,\n+ owner: null | ReactComponentInfo, // DEV-only\n ): React$Element<any> {\n let element: any;\n if (__DEV__ && enableRefAsProp) {\n@@ -49... | 2024-04-05T16:48:52 |
rust-lang/rust | 9fb9225cf498b6f215502df4bf0023809c2f3056 | 75b9d89c68a4a92758349272aa4e35a8eb7a6708 | Disable debug_assert_not_in_new_nodes for multiple threads | [
{
"path": "compiler/rustc_middle/src/dep_graph/graph.rs",
"patch": "@@ -9,7 +9,7 @@ use rustc_data_structures::fx::{FxHashMap, FxHashSet};\n use rustc_data_structures::profiling::QueryInvocationId;\n use rustc_data_structures::sharded::{self, ShardedHashMap};\n use rustc_data_structures::stable_hasher::{Has... | 2026-02-15T11:41:46 |
vercel/next.js | 4dc34109a49b688752572c9df480fde8d1773e5b | 0ad13118dda40eb1275ef00e0d3aabcf906eb2e7 | Fix: Disambiguate Mediapartners-Google user agent (#82536)
`Mediapartners-Google` used to match both `HEADLESS_BROWSER_BOT_UA_RE`
and `HTML_LIMITED_BOT_UA_RE`, causing inconsistent state values for
`getBotType`, `isDomBotUA`, and `isHtmlLimitedBotUA`. | [
{
"path": "packages/next/src/shared/lib/router/utils/html-bots.ts",
"patch": "@@ -1,4 +1,6 @@\n // This regex contains the bots that we need to do a blocking render for and can't safely stream the response\n // due to how they parse the DOM. For example, they might explicitly check for metadata in the `head... | 2025-08-11T23:36:18 |
nodejs/node | c77bcf018716e97ae35203990bcd51c143840348 | 3da465a8158906606b6df9feb2b2339ddcf3f3b7 | test: adjust test-tls-junk-server for OpenSSL32
Refs: #53382
OpenSSL32 returns different error text. Looking through
the test it seems like the expected error text has been adjusted
for different OpenSSL versions in the past and what the test
is testing is not related to the error being returned.
Update test to allo... | [
{
"path": "test/parallel/test-tls-junk-server.js",
"patch": "@@ -20,8 +20,12 @@ server.listen(0, function() {\n const req = https.request({ port: this.address().port });\n req.end();\n \n+ let expectedErrorMessage = new RegExp('wrong version number');\n+ if (common.hasOpenSSL(3, 2)) {\n+ expectedEr... | 2024-09-15T16:40:05 |
golang/go | d37a1bdd48458e48de13cdc320c8ddf9b021e356 | 74304cda29381fd5ba07a4090b701f8a670896c6 | cmd/compile: fix the implementation of NORconst on loong64
In the loong64 instruction set, there is no NORI instruction,
so the immediate value in NORconst need to be stored in register
and then use the three-register NOR instruction.
Change-Id: I5ef697450619317218cb3ef47fc07e238bdc2139
Reviewed-on: https://go-review... | [
{
"path": "src/cmd/compile/internal/loong64/ssa.go",
"patch": "@@ -276,7 +276,6 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tssa.OpLOONG64ANDconst,\n \t\tssa.OpLOONG64ORconst,\n \t\tssa.OpLOONG64XORconst,\n-\t\tssa.OpLOONG64NORconst,\n \t\tssa.OpLOONG64SLLconst,\n \t\tssa.OpLOONG64SLLVconst,\n... | 2025-05-19T09:02:48 |
facebook/react | 7966ccddc8e9a0d9901c40ad556220ea23785088 | 6090cab099a8f7f373e04c7eb2937425a8f80f80 | Enable stale action (#28729)
Follows #28695
Now that the action has run successfully in debug mode
([logs](https://github.com/facebook/react/actions/runs/8532177618/job/23372921455#step:2:35)),
let's enable it to persist changes.
Also changes the number of operations per run from the default of 30 to
100 sinc... | [
{
"path": ".github/workflows/stale.yml",
"patch": "@@ -16,8 +16,8 @@ jobs:\n days-before-stale: 90\n # Number of days of inactivity before a stale issue or PR is closed\n days-before-close: 7\n- # Tmp dry run setup to test new config\n- debug-only: 'true'\n+ ... | 2024-04-04T14:27:29 |
rust-lang/rust | 7733f65ff9fbd5b033e5ad012250f0fc4bee44ad | 646418838fc494822f4814e6fd58a59f08d3575a | fix: use `ExprIsRead::Yes` for rhs of ordinary assignments
the rhs of an ordinary assignment `x = *never_ptr` was inferred with
`ExprIsRead::No`, which prevented `NeverToAny` coercion for place
expressions of type `!`. this caused false type mismatches and missing
divergence detection. the destructuring assignment pat... | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/expr.rs",
"patch": "@@ -751,7 +751,7 @@ impl<'db> InferenceContext<'_, 'db> {\n \n if let Some(lhs_ty) = lhs_ty {\n self.write_pat_ty(target, lhs_ty);\n- self.infer_expr_coerce(value, &Expectati... | 2026-02-15T11:37:51 |
electron/electron | c8156c3c57ad8b6e19353725805843202977c1e7 | 689d1b76de36ca6f63e291ef019da004b8ca3559 | fix: failure on immutable `webContents.print(options)` (#39985)
fix: failure on immutable webContents.print(options) | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -345,49 +345,53 @@ WebContents.prototype.printToPDF = async function (options) {\n // TODO(codebytere): deduplicate argument sanitization by moving rest of\n // print param logic into new file shared between printToPDF and print\n WebContents.prototy... | 2023-09-28T08:41:46 |
nodejs/node | 86bdca9772f63d5566bd725df7f5e2bc4738f93d | 4c0ad1fef1e83c3166a2177a8eb2326a93602cc2 | repl: avoid interpreting 'npm' as a command when errors are recoverable
This change ensures that 'npm' within JavaScript code is not mistakenly
interpreted as an npm command when the error is recoverable.
This allows 'npm' to be treated as expected in such scenarios.
Fixes: https://github.com/nodejs/node/issues/54830... | [
{
"path": "lib/repl.js",
"patch": "@@ -931,7 +931,9 @@ function REPLServer(prompt,\n ReflectApply(_memory, self, [cmd]);\n \n if (e && !self[kBufferedCommandSymbol] &&\n- StringPrototypeStartsWith(StringPrototypeTrim(cmd), 'npm ')) {\n+ StringPrototypeStartsWith(StringPrototype... | 2024-09-15T13:25:19 |
vercel/next.js | 0ad13118dda40eb1275ef00e0d3aabcf906eb2e7 | 78c544b1d53fc80e9e842559667822ff34abffd8 | Turbopack: Rework watcher data structures, store watched list and watcher behind the same RwLock (#82258)
Reworks the data structures used for the watcher to achieve a few goals:
- I want to avoid multiple locks, as I don't think we actually need two different locks, and multiple locks leaves more room for bugs (e.g.... | [
{
"path": "turbopack/crates/turbo-tasks-fs/src/lib.rs",
"patch": "@@ -261,11 +261,7 @@ impl DiskFileSystemInner {\n let invalidator = turbo_tasks::get_invalidator();\n self.invalidator_map\n .insert(path.to_owned(), invalidator, None);\n- if let Some(non_recursive) = &self... | 2025-08-11T23:32:38 |
golang/go | 74304cda29381fd5ba07a4090b701f8a670896c6 | a070533633bd709bc3598dbd7c28edca1d2ba6e2 | cmd/compile/internal/escape: improve order of work to speed up analyzing many locations
For the package github.com/microsoft/typescript-go/internal/checker,
compilation currently spends most of its time in escape analysis.
Here, we re-order work to be more efficient when analyzing many
locations, and delay visiting s... | [
{
"path": "src/cmd/compile/internal/escape/graph.go",
"patch": "@@ -62,9 +62,14 @@ type location struct {\n \tdst *location\n \tdstEdgeIdx int\n \n-\t// queued is used by walkAll to track whether this location is\n-\t// in the walk queue.\n-\tqueued bool\n+\t// queuedWalkAll is used by walkAll to tra... | 2025-03-12T21:29:25 |
facebook/react | 6090cab099a8f7f373e04c7eb2937425a8f80f80 | 583eb6770d56e9793d3660bd9c6782fdebc93729 | Use a Wrapper Error for onRecoverableError with a "cause" Field for the real Error (#28736)
We basically have four kinds of recoverable errors:
- Hydration mismatches.
- Server errored but client didn't.
- Hydration render errored but client render didn't (in Root or Suspense
boundary).
- Concurrent render erro... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -2417,17 +2417,17 @@ describe('ReactDOMFizzServer', () => {\n \n ReactDOMClient.hydrateRoot(container, <App />, {\n onRecoverableError(error) {\n- Scheduler.log(\n- 'Log recoverable error: ' + nor... | 2024-04-04T01:53:07 |
electron/electron | 480f48b2fcf659e031e2440b9af67c38cc061aca | a0ae691a9c1da400904934803818d345c64cd258 | feat: enable dark mode on GTK UIs (#38977)
feat: port DarkModeManagerLinux
This is needed after https://bugs.chromium.org/p/chromium/issues/detail?id=998903
and replaces the previous workaround to detect dark mode on GTK.
Detect system dark theme preference via xdg settings portal:
https://flatpak.github.io/xdg-... | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -204,6 +204,10 @@ static_library(\"chrome\") {\n \"//chrome/browser/ui/views/status_icons/status_icon_linux_dbus.cc\",\n \"//chrome/browser/ui/views/status_icons/status_icon_linux_dbus.h\",\n ]\n+ sources += [\n+ \"//chrome/browser/ui/v... | 2023-09-27T18:17:40 |
vercel/next.js | d75d90f3cf4502df4beb5cc3f1ae55482d4afda7 | 161a8ba0bf52499524dd2a8293d3fc5350d6cc83 | docs: experimental config browserDebugInfoInTerminal (#82532)
Adding docs for `browserDebugInfoInTerminal` | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/browserDebugInfoInTerminal.mdx",
"patch": "@@ -0,0 +1,134 @@\n+---\n+title: browserDebugInfoInTerminal\n+description: Forward browser console logs and errors to your terminal during development.\n+version: experimental\n+---\n+\n+The `exper... | 2025-08-11T21:08:18 |
golang/go | a070533633bd709bc3598dbd7c28edca1d2ba6e2 | 4cdca1342b1d3d9591d72a7e7cf67068aa54c524 | reflect: turn off allocation test if instrumentation is on
Help fix the asan builders.
Change-Id: I980f5171519643c3543bdefc6ea46fd0fca17c28
Reviewed-on: https://go-review.googlesource.com/c/go/+/674616
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Keith Randall <khr@google.com>
Auto-Submit: Keith R... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -13,6 +13,8 @@ import (\n \t\"internal/asan\"\n \t\"internal/goarch\"\n \t\"internal/goexperiment\"\n+\t\"internal/msan\"\n+\t\"internal/race\"\n \t\"internal/testenv\"\n \t\"io\"\n \t\"math\"\n@@ -8766,6 +8768,9 @@ func TestTypeAssertPanic(t *testing.T) {\n... | 2025-05-20T22:59:02 |
nodejs/node | 4c0ad1fef1e83c3166a2177a8eb2326a93602cc2 | 6db320acbc56f84ce06e9d365d215db56fa2dacc | doc: fix broken Android building link
PR-URL: https://github.com/nodejs/node/pull/54922
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Xuguang Mei <meixuguang@gmail.com> | [
{
"path": "doc/api/os.md",
"patch": "@@ -1373,7 +1373,7 @@ The following process scheduling constants are exported by\n </tr>\n </table>\n \n-[Android building]: https://github.com/nodejs/node/blob/HEAD/BUILDING.md#androidandroid-based-devices-eg-firefox-os\n+[Android building]: https://github.com/nodejs/... | 2024-09-15T12:29:18 |
facebook/react | 583eb6770d56e9793d3660bd9c6782fdebc93729 | a5aedd1e15733311d64ccab3fdd14db630067496 | Emit Server Error Prefix in the .stack Property Too (#28738)
Follow up to #28684.
V8 includes the message in the stack and printed errors include just the
stack property which is assumed to contain the message. Without this,
the prefix doesn't get printed in the console.
<img width="578" alt="Screenshot 2024-0... | [
{
"path": "packages/react-server/src/ReactFizzServer.js",
"patch": "@@ -842,7 +842,7 @@ function encodeErrorForBoundary(\n ? 'Switched to client rendering because the server rendering aborted due to:\\n\\n'\n : 'Switched to client rendering because the server rendering errored:\\n\\n';\n bou... | 2024-04-04T01:52:54 |
electron/electron | f943b8c940386f196a10cf490ad9122d83ec59f5 | b7c9c895b5a60ddce41b8563703b5d8516c76983 | fix: set window contents as opaque to decrease DWM GPU usage (#39895)
* set window contents as opaque to decrease DWM GPU usage
* chore: add more context to ShouldWindowContentsBeTransparent | [
{
"path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc",
"patch": "@@ -133,4 +133,14 @@ void ElectronDesktopWindowTreeHostWin::OnNativeThemeUpdated(\n }\n }\n \n+bool ElectronDesktopWindowTreeHostWin::ShouldWindowContentsBeTransparent()\n+ const {\n+ // Window should be marked as opa... | 2023-09-27T14:42:46 |
vercel/next.js | 161a8ba0bf52499524dd2a8293d3fc5350d6cc83 | d251264721d5f4f2e29a2feccfdf222845faa63c | Test that there are no server-side CSS chunks (#82471)
A few months ago, this was fixed for Turbopack. Adding a regression test now | [
{
"path": "test/e2e/app-dir/css-server-chunks/app/client/page.tsx",
"patch": "@@ -0,0 +1,8 @@\n+'use client'\n+\n+import '../../global.css'\n+import styles from '../../styles.module.css'\n+\n+export default function Page() {\n+ return <div className={styles.foo}>Hello</div>\n+}",
"additions": 8,
"d... | 2025-08-11T20:33:13 |
golang/go | 4cdca1342b1d3d9591d72a7e7cf67068aa54c524 | fccac5fe98d10479cab5031d1dd913b2f96387f2 | runtime: disable stack allocation test when instrumentation is on
Should fix some asan build failures.
Change-Id: Ic0a816b56a1a278aa0ad541aea962f9fea7b10fc
Reviewed-on: https://go-review.googlesource.com/c/go/+/674696
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-... | [
{
"path": "src/runtime/runtime_test.go",
"patch": "@@ -7,7 +7,10 @@ package runtime_test\n import (\n \t\"flag\"\n \t\"fmt\"\n+\t\"internal/asan\"\n \t\"internal/cpu\"\n+\t\"internal/msan\"\n+\t\"internal/race\"\n \t\"internal/runtime/atomic\"\n \t\"internal/testenv\"\n \t\"io\"\n@@ -329,6 +332,9 @@ func Te... | 2025-05-20T22:56:29 |
electron/electron | b7c9c895b5a60ddce41b8563703b5d8516c76983 | 1ba321b7332b0a462f04c4d1f921cefcb337f325 | build: fix with `enable_pdf_viewer = false` (#39990)
build: fix with enable_pdf_viewer = false | [
{
"path": "shell/browser/extensions/api/resources_private/resources_private_api.cc",
"patch": "@@ -13,15 +13,15 @@\n #include \"chrome/grit/generated_resources.h\"\n #include \"components/strings/grit/components_strings.h\"\n #include \"components/zoom/page_zoom_constants.h\"\n-#include \"pdf/buildflags.h\"... | 2023-09-27T14:09:53 |
vercel/next.js | e822c80904f1db2c0773b18f5cd7bfce834ccd40 | ee8286f126a11e30613d89dc5ffe4044fbe2fdd1 | fix: add `?dpl` to fonts in `/_next/static/media` part 2 (#82488)
This is a follow up to PR https://github.com/vercel/next.js/pull/82384
which fixed it for `<link>` but not for `next/font` that embeds local
fonts in css.
https://nextjs.org/docs/14/app/building-your-application/deploying#version-skew | [
{
"path": "packages/font/src/google/loader.test.ts",
"patch": "@@ -124,6 +124,7 @@ describe('next/font/google loader', () => {\n mockFetchResource.mockResolvedValue(Buffer.from('OK'))\n const { css } = await nextFontGoogleFontLoader({\n functionName,\n+ deploymentId: undef... | 2025-08-11T20:18:08 |
facebook/react | a5aedd1e15733311d64ccab3fdd14db630067496 | 20e710aeab3e03809c82d134171986ea270026a0 | Move console mocks to internal-test-utils (#28710)
Moving this to `internal-test-utils` so I can add helpers in the next PR
for:
- assertLogDev
- assertWarnDev
- assertErrorDev
Which will be exported from `internal-test-utils`. This isn't strictly
necessary, but it makes the factoring nicer, so internal-test-u... | [
{
"path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js",
"patch": "@@ -12,6 +12,7 @@\n \n const React = require('react');\n const {startTransition, useDeferredValue} = React;\n+const chalk = require('chalk');\n const ReactNoop = require('react-noop-renderer');\n const {\n waitFor... | 2024-04-03T20:02:04 |
golang/go | 68bc0d84e9dd74a02472bfff744e0650b4b1653c | 49a660e22cb349cf13ef0a2f6214c6fdd75afda0 | encoding/json: avoid supurious synctest deadlock detection
Use a sync.OnceValue rather than a sync.WaitGroup to
coordinate access to encoderCache entries.
The OnceValue better expresses the intent of the code
(we want to initialize the cache entry only once).
However, the motivation for this change is to avoid
testi... | [
{
"path": "src/encoding/json/encode.go",
"patch": "@@ -359,25 +359,22 @@ func typeEncoder(t reflect.Type) encoderFunc {\n \t}\n \n \t// To deal with recursive types, populate the map with an\n-\t// indirect func before we build it. This type waits on the\n-\t// real func (f) to be ready and then calls it. T... | 2025-05-15T18:03:15 |
vercel/next.js | ee8286f126a11e30613d89dc5ffe4044fbe2fdd1 | 2c1a3d153f15546d8ec03fe4e06e287d49f49a26 | fix(next/image): use `image-size` pkg as additional format detector (#82538)
In a previous PR https://github.com/vercel/next.js/pull/82118 we added a
fallback to `sharp().metadata()` when the magic number didn't detect the
image format in order to improve detection.
But `sharp` can be slow to read metadata, so we sho... | [
{
"path": "packages/next/src/compiled/image-detector/detector.js",
"patch": "@@ -0,0 +1 @@\n+(()=>{\"use strict\";var t={436:(t,e,n)=>{Object.defineProperty(e,\"__esModule\",{value:true});e.BMP=void 0;const r=n(779);e.BMP={validate:t=>(0,r.toUTF8String)(t,0,2)===\"BM\",calculate:t=>({height:Math.abs((0,r.re... | 2025-08-11T19:54:37 |
golang/go | 609197b406ce8d9efd39bd3984b2cade74df35a6 | 546761aff45111490b21a045e3d989104182bcd9 | cmd/doc: use golang.org/x/pkgsite/cmd/internal/doc to start server
This change switches the pkgsite command invoked to start a pkgsite
server from golang.org/x/pkgsite/cmd/pkgsite to
golang.org/x/pkgsite/cmd/internal/doc. The doc command is a simplified
version of cmd/pkgsite that changes some options to improve the u... | [
{
"path": "src/cmd/doc/main.go",
"patch": "@@ -44,7 +44,6 @@ package main\n \n import (\n \t\"bytes\"\n-\t\"context\"\n \t\"errors\"\n \t\"flag\"\n \t\"fmt\"\n@@ -53,17 +52,13 @@ import (\n \t\"io\"\n \t\"log\"\n \t\"net\"\n-\t\"net/http\"\n \t\"os\"\n \t\"os/exec\"\n \t\"os/signal\"\n \t\"path\"\n \t\"path... | 2025-05-19T19:31:37 |
electron/electron | 1ba321b7332b0a462f04c4d1f921cefcb337f325 | ad57867594c9f1be91846fedf7fe9ab22403ae81 | fix: rounded corners on vibrant macOS modals (#39979)
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -1420,11 +1420,21 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n \n if (vibrantView != nil && !vibrancy_type_.empty()) {\n const bool no_rounded_corner = !HasStyleMask(NSWindowStyleMaskTitled);\n- if (... | 2023-09-27T13:12:37 |
facebook/react | 20e710aeab3e03809c82d134171986ea270026a0 | 3761acb42bf9979314fff130d4d9505408bcb651 | Cleanup enableUseRefAccessWarning flag (#28699)
Cleanup enableUseRefAccessWarning flag
I don't think this flag has a path forward in the current
implementation. The detection by stack trace is too brittle to detect
the lazy initialization pattern reliably (see e.g. some internal tests
that expect the warning bec... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -33,7 +33,6 @@ import {\n enableDebugTracing,\n enableSchedulingProfiler,\n enableCache,\n- enableUseRefAccessWarning,\n enableLazyContextPropagation,\n enableTransitionTracing,\n enableUseMemoCacheHook,\n@@ -2330,90 +23... | 2024-04-03T17:35:38 |
nodejs/node | a65105ec284023960e93b3a66f6661ddd2f4121f | c6f514c7ab72083bc96108afd776bc23c836844d | test: adjust tls test for OpenSSL32
Refs: https://github.com/nodejs/node/issues/53382
Looks like test is forcing an error through bad data and
the error code we get is different for OpenSSL32. Adjust
test to cope with the variation across versions.
Signed-off-by: Michael Dawson <midawson@redhat.com>
PR-URL: https://... | [
{
"path": "test/parallel/test-tls-alert-handling.js",
"patch": "@@ -31,10 +31,17 @@ const max_iter = 20;\n let iter = 0;\n \n const errorHandler = common.mustCall((err) => {\n- assert.strictEqual(err.code, 'ERR_SSL_WRONG_VERSION_NUMBER');\n+ let expectedErrorCode = 'ERR_SSL_WRONG_VERSION_NUMBER';\n+ let ... | 2024-09-14T16:55:40 |
vercel/next.js | 0ec5511da47c98112e86290d2f1550ad261d91b2 | 13899e5f85529900822ee7f7dd05e10b7c0c44bf | Turbopack: fix CSS module references, take 2 (#82448)
Replaces and closes https://github.com/vercel/next.js/pull/78058
Closes PACK-4324
Before, you got duplicate modules because
`transition_to_client(postcss(webpack(source in rsc)) != postcss(webpack(transition_to_client(source in rsc))`
Now, we have:
```
rsc layer
... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -314,8 +314,6 @@ jobs:\n export TURBOPACK_BUILD=1\n export NEXT_TEST_MODE=start\n export NEXT_TEST_REACT_VERSION=\"${{ matrix.react }}\"\n- # TODO(PACK-4578): Remove\n- export TURBOPACK_TEMP_DISABLE_DUPLICAT... | 2025-08-11T18:16:10 |
golang/go | 1972493904b41a34e35a1f62b18f5d91d84a26bd | 113b25774ed8d1d915ae4e1adf9222865ccb0695 | cmd/doc: show page for the requested object
This fixes a bug where we start pkgsite for every requested object,
rather than the one that we would have printed the documentation for.
To make things simple, we'll run the logic that prints the
documentation, but with an io.Discard writer. Then we can tell if the
document... | [
{
"path": "src/cmd/doc/main.go",
"patch": "@@ -126,6 +126,11 @@ func do(writer io.Writer, flagSet *flag.FlagSet, args []string) (err error) {\n \t\t\treturn err\n \t\t}\n \t}\n+\tif serveHTTP {\n+\t\t// We want to run the logic below to determine a match for a symbol, method,\n+\t\t// or field, but not actu... | 2025-05-19T19:31:37 |
electron/electron | ad57867594c9f1be91846fedf7fe9ab22403ae81 | e61359598214399cab97ca6a8ad541983059c331 | fix: apply size constraints to NSWindow (#39975) | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -354,10 +354,14 @@ void NativeWindow::SetContentSizeConstraints(\n size_constraints_.reset();\n }\n \n+// Windows/Linux:\n // The return value of GetContentSizeConstraints will be passed to Chromium\n // to set min/max sizes of window. Note that we ... | 2023-09-27T09:11:24 |
nodejs/node | c6f514c7ab72083bc96108afd776bc23c836844d | efbba60e5b8aed95b2413ff4169632bf3605c963 | test: fix test-http2-socket-close.js
Fixes: https://github.com/nodejs/node/issues/54819
PR-URL: https://github.com/nodejs/node/pull/54900
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "test/parallel/parallel.status",
"patch": "@@ -30,8 +30,6 @@ test-runner-watch-mode-complex: PASS, FLAKY\n test-async-context-frame: PASS, FLAKY\n # https://github.com/nodejs/node/issues/54534\n test-runner-run-watch: PASS, FLAKY\n-# https://github.com/nodejs/node/issues/54819\n-test-http2-socket-... | 2024-09-14T16:01:56 |
facebook/react | f33e63838d99aac5efc84a38cde84966f15801a1 | 0846daaa54537d3df212903bf37bab92e44f9c07 | Update copyrights to reference Meta instead of Facebook
Thanks @zpao!!! This was mostly his work, i just fixed up the last bit. | [
{
"path": "compiler/LICENSE",
"patch": "@@ -1,6 +1,6 @@\n MIT License\n \n-Copyright (c) Facebook, Inc. and its affiliates.\n+Copyright (c) Meta Platforms, Inc. and affiliates.\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation f... | 2024-04-03T15:43:36 |
vercel/next.js | 5f6cb1c60731d5388a86710e465b959871221989 | e9a5067e5165f98b53e1c8f58d19873d44345a44 | [turbopack] Fix the build under `--features=tokio_tracing` (#81979)
## Fix the build under the `tokio_tracing` feature
https://github.com/vercel/next.js/pull/80738 changed the definition of LocalTaskSpec and moved the Display trait impl down to LocalTaskType but updating this use was missed since it is guarded by a f... | [
{
"path": "turbopack/crates/turbo-tasks/src/manager.rs",
"patch": "@@ -810,7 +810,7 @@ impl<B: Backend + 'static> TurboTasks<B> {\n let description = format!(\n \"[local] (parent: {}) {}\",\n self.backend.get_task_description(parent_task_id),\n- ty,\n+ t... | 2025-08-11T16:09:12 |
golang/go | 113b25774ed8d1d915ae4e1adf9222865ccb0695 | fa42585dadb8d70191820549435820cb70691cf6 | cmd/compile: memcombine different size stores
This CL implements the TODO in combineStores to allow combining
stores of different sizes, as long as the total size aligns to
2, 4, 8.
Fixes #72832.
Change-Id: I6d1d471335da90d851ad8f3b5a0cf10bdcfa17c4
Reviewed-on: https://go-review.googlesource.com/c/go/+/661855
Review... | [
{
"path": "src/cmd/compile/internal/ssa/memcombine.go",
"patch": "@@ -374,22 +374,19 @@ func memcombineStores(f *Func) {\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\tfor n := f.Config.RegSize / size; n > 1; n /= 2 {\n-\t\t\t\tif combineStores(v, n) {\n-\t\t\t\t\tcontinue\n-\t\t\t\t}\n-\t\t\t}\n+\t\t\tcombineStor... | 2025-03-31T17:50:10 |
electron/electron | 624ae024e245f6bfc00fd1ad03f063cc40fe069c | 2190793fe6351e50940dec077907eaac1f16471c | docs: Quick Start | Electron Forge chapter requirements updated (#39639)
* Update quick-start.md
Added a note to a pre-require of Electron Forge.
Otherwise users will have an error `Cannot make for rpm, the following external binaries need to be installed: rpmbuild`
* Add two required steps for Electron Forge t... | [
{
"path": "docs/tutorial/quick-start.md",
"patch": "@@ -459,7 +459,14 @@ To summarize all the steps we've done:\n The fastest way to distribute your newly created app is using\n [Electron Forge](https://www.electronforge.io).\n \n-1. Add Electron Forge as a development dependency of your app, and use its `i... | 2023-09-26T23:56:39 |
nodejs/node | efbba60e5b8aed95b2413ff4169632bf3605c963 | c3e1c31baa8f4a59ef49ea0d0429ec55efe2ca81 | path: fix bugs and inconsistencies
Fixes: https://github.com/nodejs/node/issues/54025
PR-URL: https://github.com/nodejs/node/pull/54224
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bri... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -702,7 +702,7 @@ Module._findPath = function(request, paths, isMain) {\n \n let exts;\n const trailingSlash = request.length > 0 &&\n- (StringPrototypeCharCodeAt(request, request.length - 1) === CHAR_FORWARD_SLASH || (\n+ ((StringPrototy... | 2024-09-14T14:56:31 |
facebook/react | dc545c8d6eaca87c8d5cabfab6e1c768ecafe426 | 8f55a6aa5739ed8ca80c3066fb54f4ea4cfe600a | Fix: Class components should "consume" ref prop (#28719)
When a ref is passed to a class component, the class instance is
attached to the ref's current property automatically. This different
from function components, where you have to do something extra to attach
a ref to an instance, like passing the ref to `useIm... | [
{
"path": "packages/react-dom/src/__tests__/ReactCompositeComponent-test.js",
"patch": "@@ -261,29 +261,17 @@ describe('ReactCompositeComponent', () => {\n await act(() => {\n root.render(<Component ref={refFn1} />);\n });\n- if (gate(flags => flags.enableRefAsProp)) {\n- expect(instan... | 2024-04-03T03:15:04 |
golang/go | 2541a68a7010afcd2970ddc3979432e1a8f08406 | d596bc0e819aec2cf65a61d8b92f6bec8e0a7124 | reflect: add TypeAssert[T]
This implementation is zero-alloc when T is a concrete type,
allocates when val contains a method or when T is a interface
and Value was obtained for example through Elem(), in which case
it has to be allocated to avoid sharing the same memory.
goos: linux
goarch: amd64
pkg: reflect
cpu: AM... | [
{
"path": "api/next/62121.txt",
"patch": "@@ -0,0 +1 @@\n+pkg reflect, func TypeAssert[$0 interface{}](Value) ($0, bool) #62121",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/reflect/62121.md",
"patch": "@@ -0,0 +1,3 @@\n+The new [... | 2025-05-20T15:39:22 |
nodejs/node | 3569493ba7ec1eb6884acf4899a2bd4406f0b62d | c4f295470392db237c0adfc9832214538a99a034 | test: deflake test-dns
Prevent responses from being cached.
Fixes: https://github.com/nodejs/node/issues/54124
PR-URL: https://github.com/nodejs/node/pull/54902
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/parallel/test-dns.js",
"patch": "@@ -361,11 +361,11 @@ assert.throws(() => {\n const cases = [\n { method: 'resolveAny',\n answers: [\n- { type: 'A', address: '1.2.3.4', ttl: 3333333333 },\n- { type: 'AAAA', address: '::42', ttl: 3333333333 },\n- { type: 'MX'... | 2024-09-14T14:09:11 |
electron/electron | 2190793fe6351e50940dec077907eaac1f16471c | fa215f1009d17724c1c83845d0e65b3a8082e86d | fix: disable background throttling also in the `viz::DisplayScheduler` (#38924)
* fix: disable background throttling also in the `viz::DisplayScheduler`
`viz::DisplayScheduler` is responsible for drawing and swapping frames
in the `DisplayScheduler::DrawAndSwap` which is called from the
`DisplayScheduler::Attempt... | [
{
"path": "docs/api/structures/web-preferences.md",
"patch": "@@ -74,7 +74,11 @@\n * `defaultEncoding` string (optional) - Defaults to `ISO-8859-1`.\n * `backgroundThrottling` boolean (optional) - Whether to throttle animations and timers\n when the page becomes background. This also affects the\n- [Page... | 2023-09-26T20:00:46 |
facebook/react | 284f7764205f2c707d39ad493b7676f74f980c07 | a53f208f5e4dfc3cf7c34a4b51e44c07a9a24880 | [be] Clean up already fixed "bug" fixtures
These are already fixed, renamed to clarify that they are just repros of
previous bugs | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/repro-object-pattern.expect.md",
"patch": "@@ -10,8 +10,7 @@ function component(t) {\n \n export const FIXTURE_ENTRYPOINT = {\n fn: component,\n- params: [\"TodoAdd\"],\n- isComponent: \"TodoAdd\",\n+ params: [{ a: 4... | 2024-04-02T19:43:44 |
nodejs/node | c4f295470392db237c0adfc9832214538a99a034 | 45f44badaf120d9d0cab608a1e226fc0e74a57b7 | test: fix test test-tls-dhe for OpenSSL32
Refs: https://github.com/nodejs/node/issues/53382
- OpenSSL32 has a minimum dh key size by 2048 by default.
- Adjust test to use larger 3072 key instead of 1024
when OpenSSL32 is present.
Signed-off-by: Michael Dawson <midawson@redhat.com>
PR-URL: https://github.com/nodejs... | [
{
"path": "test/parallel/test-tls-dhe.js",
"patch": "@@ -43,9 +43,12 @@ const dheCipher = 'DHE-RSA-AES128-SHA256';\n const ecdheCipher = 'ECDHE-RSA-AES128-SHA256';\n const ciphers = `${dheCipher}:${ecdheCipher}`;\n \n-// Test will emit a warning because the DH parameter size is < 2048 bits\n-common.expectWa... | 2024-09-14T13:25:24 |
rust-lang/rust | 3a8a3c74f27ff22b2bbb11594bfe2fcbfd8698a7 | 5c13e0ced9213c883f2dea69dfccfa29da1c9dd7 | Remove resolved FIXME | [
{
"path": "src/tools/rust-analyzer/crates/ide-db/src/imports/merge_imports.rs",
"patch": "@@ -691,7 +691,6 @@ pub fn eq_attrs(\n attrs0: impl Iterator<Item = ast::Attr>,\n attrs1: impl Iterator<Item = ast::Attr>,\n ) -> bool {\n- // FIXME order of attributes should not matter\n let mut attrs0... | 2026-02-14T23:47:49 |
golang/go | d596bc0e819aec2cf65a61d8b92f6bec8e0a7124 | b7382cc1f012016c91036c49db0ea6db444b47d8 | runtime: disallow closing bubbled chans from outside bubble
A chan created within a synctest bubble may not be
operated on from outside the bubble.
We panicked on send and receive, but not close.
Panic on close as well.
For #67434
Change-Id: I98d39e0cf7baa1a679aca1fb325453d69c535308
Reviewed-on: https://go-review.go... | [
{
"path": "src/internal/synctest/synctest_test.go",
"patch": "@@ -263,6 +263,46 @@ func TestChannelFromOutsideBubble(t *testing.T) {\n \t}\n }\n \n+func TestChannelMovedOutOfBubble(t *testing.T) {\n+\tfor _, test := range []struct {\n+\t\tdesc string\n+\t\tf func(chan struct{})\n+\t\twantPanic ... | 2025-05-09T23:18:49 |
electron/electron | 943bfa89ceab95dd4435482d69d5c79bf97abcb2 | d75a852743283026d71d9f743032eaea84691a11 | test: fixup parallel/test-node-output-error test (#39972) | [
{
"path": "patches/node/chore_update_fixtures_errors_force_colors_snapshot.patch",
"patch": "@@ -11,7 +11,7 @@ trying to see whether or not the lines are greyed out. One possibility\n would be to upstream a changed test that doesn't hardcode line numbers.\n \n diff --git a/test/fixtures/errors/force_colors.... | 2023-09-25T20:23:05 |
facebook/react | a53f208f5e4dfc3cf7c34a4b51e44c07a9a24880 | 8b9edafa95f5657cbccb11e4c226abd7953df8f0 | Fixture for conditional use()
This is mostly to ensure we don't flag this as a conditional hook, but since i'm
here i made it a proper test. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/use-operator-conditional.expect.md",
"patch": "@@ -0,0 +1,154 @@\n+\n+## Input\n+\n+```javascript\n+import { ValidateMemoization } from \"shared-runtime\";\n+import { use, useMemo } from \"react\";\n+\n+const FooContext =... | 2024-04-02T18:36:11 |
rust-lang/rust | 646418838fc494822f4814e6fd58a59f08d3575a | deaae4956d3cefc6a780e8e7520d0d5adff19ee5 | fix: handle `ref mut` bindings in `contains_explicit_ref_binding`
the standalone `contains_explicit_ref_binding` function only checked for
`BindingAnnotation::Ref`, missing `BindingAnnotation::RefMut`. this caused
`let ref mut x = expr` to incorrectly take the coercion path instead of
preserving the exact type of the ... | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/pat.rs",
"patch": "@@ -673,7 +673,7 @@ impl<'db> InferenceContext<'_, 'db> {\n pub(super) fn contains_explicit_ref_binding(body: &Body, pat_id: PatId) -> bool {\n let mut res = false;\n body.walk_pats(pat_id, &mut |pat| {\n- res |= ma... | 2026-02-14T16:19:26 |
nodejs/node | 45f44badaf120d9d0cab608a1e226fc0e74a57b7 | cb20c5b9f46c64d28bf495814fec5fe8a89b663d | doc, build: fixup build docs
PR-URL: https://github.com/nodejs/node/pull/54899
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "BUILDING.md",
"patch": "@@ -206,8 +206,7 @@ For use of AVX2,\n * llvm version 3.3 or higher\n * nasm version 2.10 or higher in Windows\n \n-Please refer to\n-<https://www.openssl.org/docs/man1.1.1/man3/OPENSSL_ia32cap.html> for details.\n+Please refer to <https://docs.openssl.org/1.1.1/man3/OPENS... | 2024-09-14T11:45:38 |
golang/go | 5b0b4c01ba44f372343ed003b297f50ee3c8ff67 | 0d42cebacdba1855d11f29f708587c9a7a5cb976 | runtime: add package doc for checkfinalizer mode
Fixes #72949.
Change-Id: I114eda73c57bc7d596eb1656e738b80c1cbe5254
Reviewed-on: https://go-review.googlesource.com/c/go/+/662039
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Michael Pratt <mpratt@google.com>
Auto-Submit: Michael Knyszek <mknyszek@google.... | [
{
"path": "src/runtime/extern.go",
"patch": "@@ -52,6 +52,21 @@ It is a comma-separated list of name=val pairs setting these named variables:\n \tcgocheck mode can be enabled using GOEXPERIMENT (which\n \trequires a rebuild), see https://pkg.go.dev/internal/goexperiment for details.\n \n+\tcheckfinalizers: ... | 2025-04-02T01:46:45 |
electron/electron | 2085aae915e4618844910f8937d9bbeef543fc20 | 7c2df8860bdbc0121eb2b91d4f587e5a3e8dd443 | docs: esm tutorial (#39722)
* docs: esm tutorial
* Update esm.md
* Update docs/tutorial/esm.md
Co-authored-by: Michaela Laurencin <35157522+mlaurencin@users.noreply.github.com>
* table adjustment
* fix lint
* Update docs/tutorial/esm.md
Co-authored-by: David Sanders <dsanders11@ucsbalum.com>
* ... | [
{
"path": "docs/tutorial/esm-limitations.md",
"patch": "@@ -1,38 +0,0 @@\n-# ESM Limitations\n-\n-This document serves to outline the limitations / differences between ESM in Electron and ESM in Node.js and Chromium.\n-\n-## ESM Support Matrix\n-\n-This table gives a general overview of where ESM is support... | 2023-09-22T16:49:16 |
nodejs/node | 05ad94789916563664acb666a7ac367fd8b2cc8b | aff2214ca9b13dafee25e8c2d7e0eebeebd0f176 | http: reduce likelihood of race conditions on keep-alive timeout
Fixes: https://github.com/nodejs/node/issues/52649
Refs: https://github.com/nodejs/node/issues/54293
Co-authored-by: Arrigo Zanette <zanettea@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/54863
Reviewed-By: James M Snell <jasnell@gmail.com>
Rev... | [
{
"path": "lib/_http_agent.js",
"patch": "@@ -49,6 +49,9 @@ const {\n const kOnKeylog = Symbol('onkeylog');\n const kRequestOptions = Symbol('requestOptions');\n const kRequestAsyncResource = Symbol('requestAsyncResource');\n+\n+// TODO(jazelly): make this configurable\n+const HTTP_AGENT_KEEP_ALIVE_TIMEOUT_... | 2024-09-09T13:17:10 |
golang/go | 0d42cebacdba1855d11f29f708587c9a7a5cb976 | 2aac5a5cbacdaaefb518be7ea8ddc2a455ae35f2 | runtime: report finalizer and cleanup queue length with checkfinalizer>0
This change adds tracking for approximate finalizer and cleanup queue
lengths. These lengths are reported once every GC cycle as a single line
printed to stderr when GODEBUG=checkfinalizer>0.
This change lays the groundwork for runtime/metrics m... | [
{
"path": "src/runtime/mcleanup.go",
"patch": "@@ -336,6 +336,20 @@ type cleanupQueue struct {\n \t//\n \t// Read without lock, written only with lock held.\n \tneedg atomic.Uint32\n+\n+\t// Cleanup queue stats.\n+\n+\t// queued represents a monotonic count of queued cleanups. This is sharded across\n+\t// ... | 2025-05-09T19:33:22 |
electron/electron | 7c2df8860bdbc0121eb2b91d4f587e5a3e8dd443 | 56e45baeb8205da41f3a1a06582cf9958fc9cff2 | docs: tiny update on example message-ports.md (#39884)
Update message-ports.md
fix multiplying object * a number. It would multiply number * number. | [
{
"path": "docs/tutorial/message-ports.md",
"patch": "@@ -365,7 +365,7 @@ window.onmessage = (event) => {\n // process.\n port.onmessage = (event) => {\n console.log('from main process:', event.data)\n- port.postMessage(event.data * 2)\n+ port.postMessage(event.data.test * 2)\n }... | 2023-09-21T15:46:23 |
vercel/next.js | e9a5067e5165f98b53e1c8f58d19873d44345a44 | 74a0aa2f2de22983f73a0f185a86bf425e26c650 | [turbopack] Promote `exports` and module to factory parameters for cjs (#82285)
## Optimze cjs codegen by promoting `module` and `exports` to factory parameters
*tl;dr; destructing is hard, lets go shopping!*
Currently we prefix factories for cjs modules with
`var {m:module, e:exports} = __turbopack_context__;`
Thi... | [
{
"path": "crates/next-core/src/hmr_entry.rs",
"patch": "@@ -192,7 +192,6 @@ impl EcmascriptChunkItem for HmrEntryChunkItem {\n inner_code: code.build(),\n options: EcmascriptChunkItemOptions {\n strict: true,\n- module: true,\n ..Defaul... | 2025-08-11T15:36:53 |
nodejs/node | aff2214ca9b13dafee25e8c2d7e0eebeebd0f176 | fee02c70ee780558e3044066cde6d217b56c0230 | build: fix conflicting V8 object print flags
Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/54785
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "configure.py",
"patch": "@@ -1671,7 +1671,7 @@ def configure_v8(o, configs):\n o['variables']['v8_enable_short_builtin_calls'] = 1\n if options.v8_enable_snapshot_compression:\n o['variables']['v8_enable_snapshot_compression'] = 1\n- if options.v8_enable_object_print and options.v8_dis... | 2024-09-03T09:20:21 |
golang/go | 89af77deef7e554dff5ca21ff2c2aaf0a2d253ac | c58f58b9f8df0bde53bb5bc20b5ea97d34b1531d | internal/filepathlite: fix comment
fix typo
Change-Id: I46f0b052615d388a852439e63542b43e2ca62b7e
GitHub-Last-Rev: 96ac66c0362c5c544249cf465c528a924112fa76
GitHub-Pull-Request: golang/go#73725
Reviewed-on: https://go-review.googlesource.com/c/go/+/672955
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by:... | [
{
"path": "src/internal/filepathlite/path.go",
"patch": "@@ -180,7 +180,7 @@ func ToSlash(path string) string {\n \treturn replaceStringByte(path, Separator, '/')\n }\n \n-// FromSlash is filepath.ToSlash.\n+// FromSlash is filepath.FromSlash.\n func FromSlash(path string) string {\n \tif Separator == '/' {... | 2025-05-14T21:44:19 |
vercel/next.js | 74a0aa2f2de22983f73a0f185a86bf425e26c650 | 2c3e9d83b2e1e8824c32788c3eed434e5a636029 | [turbopack] Fix a small issue in the analyzer where we wouldn't skip assignments to free vars that were just identifiers (#82392)
Correctly skip assignments when replacing free variables
Drop an `Option<..>` for a parameter that is always supplied.
These are fixes i tripped over when attempting to compile time repla... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/mod.rs",
"patch": "@@ -2042,11 +2042,11 @@ impl JsValue {\n /// Returns any matching defined replacement that matches this value (the replacement that\n /// matches `$self.$prop`).\n ///\n- /// Optionally when passed a VarGraph, ve... | 2025-08-11T15:31:56 |
electron/electron | 5f712fa3250c137b286ad96f63ec3c232cb6e6fa | ba8915242a60ab3fbe7a2139ad9d5b2626af4e26 | chore: cherry-pick tls shutdown crash fix from upstream (#39928) | [
{
"path": "patches/node/.patches",
"patch": "@@ -44,3 +44,7 @@ chore_update_fixtures_errors_force_colors_snapshot.patch\n fix_assert_module_in_the_renderer_process.patch\n src_cast_v8_object_getinternalfield_return_value_to_v8_value.patch\n fix_add_trusted_space_and_trusted_lo_space_to_the_v8_heap.patch\n+t... | 2023-09-21T13:47:31 |
nodejs/node | e21984b70cbb31577cc80d4c047ae4d78e6fdda6 | 59220bb08a4608c64e73409a8bd05e47a9d277ce | test_runner: update kPatterns
PR-URL: https://github.com/nodejs/node/pull/54728
Fixes: https://github.com/nodejs/node/issues/54726
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Jake Yue... | [
{
"path": "lib/internal/test_runner/utils.js",
"patch": "@@ -51,7 +51,7 @@ const coverageColors = {\n const kMultipleCallbackInvocations = 'multipleCallbackInvocations';\n const kRegExpPattern = /^\\/(.*)\\/([a-z]*)$/;\n \n-const kPatterns = ['test', 'test/**/*', 'test-*', '*[.-_]test'];\n+const kPatterns =... | 2024-09-13T02:51:35 |
rust-lang/rust | d15d7149b17e8b399cf4030580649cc18b59ed6a | deaae4956d3cefc6a780e8e7520d0d5adff19ee5 | fix smol_str compilation error
the command 'cargo build --no-default-features --features borsh' failed with:
error[E0599]: no function or associated item named 'other' found for struct 'borsh::io::Error' in the current scope
--> lib/smol_str/src/borsh.rs:33:39
|
33 | .ok_or_else(|| Error::other(... | [
{
"path": "src/tools/rust-analyzer/lib/smol_str/src/borsh.rs",
"patch": "@@ -29,8 +29,9 @@ impl BorshDeserialize for SmolStr {\n }))\n } else {\n // u8::vec_from_reader always returns Some on success in current implementation\n- let vec = u8::vec_from_reader(len, r... | 2026-02-14T20:02:46 |
vercel/next.js | 78923b14f213e1f18203b2aa9b8e63dfb4a5b447 | 7dd77fea73e7ffe5fe16973d27536063f32d89b7 | fix: swc tracing (#82470)
regression introduced in
https://github.com/vercel/next.js/pull/67166/files#diff-907b7be0cfc75bd37773e5ebc38d1deffa40861b8ac1cde92e4992e284a1ee59R1324
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
... | [
{
"path": "packages/next/src/build/swc/index.ts",
"patch": "@@ -1532,7 +1532,7 @@ export function getBinaryMetadata() {\n *\n */\n export function initCustomTraceSubscriber(traceFileName?: string) {\n- if (swcTraceFlushGuard) {\n+ if (!swcTraceFlushGuard) {\n // Wasm binary doesn't support trace emi... | 2025-08-08T19:22:19 |
electron/electron | ba8915242a60ab3fbe7a2139ad9d5b2626af4e26 | c9eb3deab58f2562113866eaf89d094e60f8184a | ci: fix linux builds of forks (#39933) | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -1074,7 +1074,7 @@ commands:\n condition:\n or:\n - equal: [<< parameters.could-be-aks >>, false]\n- - equal: [<< pipeline.parameters.large-linux-executor >>, xlarge]\n+ - equal: [<< pipeline.pa... | 2023-09-21T10:10:46 |
facebook/react | e61f9832643ee988a75a49dbf11bc3a52ae3d708 | 5485ed0855dd457f9f1065062911f23aff2264b9 | Fix yarn dev | [
{
"path": "compiler/apps/playground/package.json",
"patch": "@@ -3,7 +3,7 @@\n \"version\": \"0.1.0\",\n \"private\": true,\n \"scripts\": {\n- \"dev\": \"NODE_ENV=development && next dev\",\n+ \"dev\": \"NODE_ENV=development next dev\",\n \"build\": \"next build && node ./scripts/downloadFo... | 2024-04-02T16:18:12 |
golang/go | dfebef1c0459af0a34eceb4027c9fab5824f2eab | be0cc937ec9c109da90ec4d7da5af89606f8c0cf | cmd/compile: fold negation into addition/subtraction on arm64
Fold negation into addition/subtraction and avoid double negation.
platform: linux/arm64
file before after Δ %
addr2line 3628108 3628116 +8 +0.000%
asm 6208353 6207857 -496 -0.008%
buildid 3460682 3460418 -264... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules",
"patch": "@@ -1198,6 +1198,7 @@\n \n // generic simplifications\n (ADD x (NEG y)) => (SUB x y)\n+(SUB x (NEG y)) => (ADD x y)\n (SUB x x) => (MOVDconst [0])\n (AND x x) => x\n (OR x x) => x\n@@ -1209,6 +1210,7 @@\n (XOR x (MVN y)) => (EON x y)\n (O... | 2025-05-17T06:30:07 |
nodejs/node | 92ca0b7ec138317161e18fc7b7f5550989c06fa0 | f5f67ae4a76f15df47fdf3f1253aba695c3d0ab9 | test: strip color chars in `test-runner-run`
Fixes: https://github.com/nodejs/node/issues/54551
PR-URL: https://github.com/nodejs/node/pull/54552
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "test/parallel/test-runner-run.mjs",
"patch": "@@ -4,6 +4,7 @@ import { join } from 'node:path';\n import { describe, it, run } from 'node:test';\n import { dot, spec, tap } from 'node:test/reporters';\n import assert from 'node:assert';\n+import util from 'node:util';\n \n const testFixtures = fi... | 2024-09-12T23:13:04 |
rust-lang/rust | 8d96e266848feb3d04b4216ba9e31f7c111e3e45 | 035b01b794602d5861daa43ac792f372f8981ed7 | Add regression test for struct ctor used as array repeat count under mGCA
Using a struct constructor (DefKind::Ctor(Struct, Const)) as an array
repeat count with `#![feature(min_generic_const_args)]` used to trigger
an ICE in const alias normalization. Add a regression test to ensure
the compiler produces a proper typ... | [
{
"path": "tests/ui/const-generics/mgca/struct-ctor-in-array-len.rs",
"patch": "@@ -0,0 +1,16 @@\n+// Regression test for https://github.com/rust-lang/rust/issues/141738\n+//\n+// Using a struct constructor as an array repeat count with\n+// `min_generic_const_args` used to ICE with \"unexpected `DefKind`\n... | 2026-02-14T19:44:50 |
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.