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 |
|---|---|---|---|---|---|
nodejs/node | d10104bd944d256318bdd89ffeaf7b60afff6376 | ca92ea03da578e40846c497fa241c6da20be3255 | stream: fix decoded fromList chunk boundary check
Correct `fromList()` in decoded string mode to compare `n` against the
current chunk length, not the buffer array length.
This prevents over-consuming chunks, which can corrupt readable state
and crash with `TypeError` when mixing `setEncoding()` and `read(n)`.
PR-UR... | [
{
"path": "lib/internal/streams/readable.js",
"patch": "@@ -1669,7 +1669,7 @@ function fromList(n, state) {\n n -= str.length;\n buf[idx++] = null;\n } else {\n- if (n === buf.length) {\n+ if (n === str.length) {\n ret += str;\n buf[idx++] = null;\n ... | 2026-02-22T00:19:40 |
vercel/next.js | b61823d7b9dd26370fb1167b31098c24b1fcd199 | 0ca967b8637ca0b23a98f3d5fa6cb6675b89afb1 | SRI turbopack documentation (#90477)
<!-- CURSOR_AGENT_PR_BODY_BEGIN -->
Updates the Subresource Integrity (SRI) documentation to reflect that
the feature is now supported on both Webpack and Turbopack bundlers.
Previously, the documentation stated that SRI was "only available with
webpack bundler". This has been upd... | [
{
"path": "docs/01-app/02-guides/content-security-policy.mdx",
"patch": "@@ -457,7 +457,7 @@ module.exports = {\n \n As an alternative to nonces, Next.js offers experimental support for hash-based CSP using Subresource Integrity (SRI). This approach allows you to maintain static generation while still havin... | 2026-03-18T08:59:35 |
golang/go | 2de90fd48f2e4e38c2805e81b37d4116004752e2 | bfa3dc402859a92f00b88ebab500d44c64e28185 | cmd/compile/internal/noder: don't shoot oneself (fix silly mistake)
When reading multiple promoted fields in a struct literal from UIR,
don't overwrite the (top-level) struct literal type needed for the
next field.
Fixes #78262.
For #9859.
Change-Id: Ifac64537bebcb7dbb79a6173d0cd032cbf0b8ed8
Reviewed-on: https://go-... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -3117,6 +3117,7 @@ func (r *reader) structElems(typ *types.Type, valuesOnly bool, elems []ir.Node)\n \t\tvar fld *types.Field\n \t\tif n := r.Int(); n < 0 {\n \t\t\t// embedded field\n+\t\t\ttyp := typ // don't modify the original typ\n \t\t... | 2026-03-21T00:14:59 |
facebook/react | 3640f38a728f3a057649cf7aec65a6ce14c2eac0 | ec9cc003d232b5a3eed735311df152463a883b32 | [compiler] Add enableVerboseNoSetStateInEffect to suggest options to user/agent (#35306)
The current `validateNoSetStateInEffects` error has potential false
positives because
we cannot fully statically detect patterns where calling setState in an
effect is
actually valid. This flag `enableVerboseNoSetStateInEffect` ad... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -869,7 +869,9 @@ function getRuleForCategoryImpl(category: ErrorCategory): LintRule {\n severity: ErrorSeverity.Error,\n name: 'set-state-in-effect',\n description:\n- 'Validates aga... | 2025-12-08T17:16:28 |
electron/electron | 0ae46d71d37810e322fa28ae132f22d4cde6d103 | 9f9a5b8b9b702767f07cda5f1c1f6c0d51dde0a6 | fix: add explicit JSON property mappings for `SQRLShipItRequest` model (#49980)
* fix: add explicit JSON property mappings for SQRLShipItRequest model
* style: add patch body to mantle v2 fix patch | [
{
"path": "patches/squirrel.mac/.patches",
"patch": "@@ -10,3 +10,4 @@ chore_turn_off_launchapplicationaturl_deprecation_errors_in_squirrel.patch\n fix_crash_when_process_to_extract_zip_cannot_be_launched.patch\n use_uttype_class_instead_of_deprecated_uttypeconformsto.patch\n fix_clean_up_old_staged_updates... | 2026-03-03T04:48:41 |
nodejs/node | a193dadf37ef5af0024796eceb4096b0ea315d30 | 0fccfa421ba25754f109ef58f7d64eca89c93180 | test: fix typos in test files
PR-URL: https://github.com/nodejs/node/pull/61408
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongo... | [
{
"path": "test/fixtures/test-runner/global-setup-teardown/another-test-file.js",
"patch": "@@ -4,7 +4,7 @@ const test = require('node:test');\n const assert = require('node:assert');\n const fs = require('node:fs');\n \n-test('Another test that verifies setup flag existance', (t) => {\n+test('Another test ... | 2026-01-17T13:49:22 |
vercel/next.js | 0ca967b8637ca0b23a98f3d5fa6cb6675b89afb1 | a41bef94c5ec99cf71e286b8be02dca850b80062 | Add group depth tracking to instant validation boundary discovery (#91208)
The depth-based instant validation previously only iterated
URL-consuming segments as potential shared/new boundaries. Route groups
between URL segments were invisible — when a route group layout with
Suspense was shared in a client navigation,... | [
{
"path": "crates/next-core/src/app_structure.rs",
"patch": "@@ -1264,7 +1264,7 @@ async fn directory_tree_to_loader_tree_internal(\n let current_level_is_parallel_route = is_parallel_route(&directory_name);\n \n if current_level_is_parallel_route {\n- tree.segment = rcstr!(\"(slot)\");\n+ ... | 2026-03-18T05:14:19 |
golang/go | 0a750df0b23cefd951f2c9c8154acce66c05b739 | f2dae4c19d20070eeb2cef6baa5c20e0081f53f9 | Revert "cmd/compile: don't call memclrNoHeapPointersPreemptible from nosplit functions"
This reverts CL 756123.
Reason: Adding preemptible memclrNoHeapPointers exposes existing unsafe
use of notInHeapSlice, causing crashes. Revert the memclr stack until
the underlying issue is fixed.
For #78254.
Change-Id: Ic5e6eee... | [
{
"path": "src/cmd/compile/internal/walk/assign.go",
"patch": "@@ -723,8 +723,6 @@ func extendSlice(n *ir.CallExpr, init *ir.Nodes) ir.Node {\n \tif hasPointers {\n \t\tclrname = \"memclrHasPointers\"\n \t\tir.CurFunc.SetWBPos(n.Pos())\n-\t} else if ir.CurFunc.Pragma&ir.Nosplit != 0 {\n-\t\tclrname = \"memc... | 2026-03-20T21:45:30 |
electron/electron | 9f9a5b8b9b702767f07cda5f1c1f6c0d51dde0a6 | 21a2bfca161e51e03a3d665ea49b74b2f0cdc9dd | fix: prevent use-after-free in permission request callbacks (#50032)
EnterFullscreenModeForTab, RequestPointerLock, and RequestKeyboardLock
bind callbacks with base::Unretained(this); fullscreen also captures a
raw RenderFrameHost*. These callbacks may be invoked by the app's JS
permission handler after the WebContent... | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -98,6 +98,7 @@\n #include \"shell/browser/electron_browser_context.h\"\n #include \"shell/browser/electron_browser_main_parts.h\"\n #include \"shell/browser/electron_navigation_throttle.h\"\n+#include \"shell/browser/electron_permissio... | 2026-03-03T00:01:24 |
facebook/react | ec9cc003d232b5a3eed735311df152463a883b32 | 380778d296478d675846668f96b0ee3e8f7fe810 | [compiler][poc] Reuse ValidateExhaustiveDeps for effect dep validation (#35285)
Alternative approach to #35282 for validating effect deps in the
compiler that builds on the machinery in ValidateExhaustiveDependencies.
Key changes to that pass:
* Refactor to track the dependencies of array expressions as temporaries
s... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -601,7 +601,8 @@ function printErrorSummary(category: ErrorCategory, message: string): string {\n case ErrorCategory.Syntax:\n case ErrorCategory.UseMemo:\n case ErrorCategory.VoidUseMemo:\n- case Err... | 2025-12-08T15:58:38 |
nodejs/node | 94df36a12199de8bb06a02e5840e0e32415851c4 | bdc8131fa78089b81b74dbff467365afb6536e6a | tools: fix auto-start-ci
PR-URL: https://github.com/nodejs/node/pull/61900
Refs: https://github.com/nodejs/node/pull/61874
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> | [
{
"path": ".github/workflows/auto-start-ci.yml",
"patch": "@@ -71,3 +71,4 @@ jobs:\n | sh -s -- ${{ needs.get-prs-for-ci.outputs.numbers }}\n env:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n+ GH_REPO: ${{ github.repository }}",
"additions": 1,
"deletions": 0,
... | 2026-02-20T13:34:42 |
vercel/next.js | a41bef94c5ec99cf71e286b8be02dca850b80062 | 75c51c65410bc0d4a852b28bab42943dbf765135 | improve allowedDevOrigins error (#91521)
This improves the blocked-request warning so it names the actual dev
resource being requested and gives clearer guidance on how to allow it.
When the source host is known, the message includes an inline
`allowedDevOrigins` config snippet; when the source is missing or
opaque, i... | [
{
"path": "packages/next/src/server/lib/router-utils/block-cross-site-dev.ts",
"patch": "@@ -4,14 +4,72 @@ import { parseUrl } from '../../../lib/url'\n import { warnOnce } from '../../../build/output/log'\n import { isCsrfOriginAllowed } from '../../app-render/csrf-protection'\n \n+const allowedDevOriginsD... | 2026-03-18T00:35:29 |
golang/go | a45c8032bbfdfb4c43cb56536f987501e6709a70 | 79a8ccab29c435966dd41fc8dda144de5dca073e | cmd/go: include test deps in buildinfo
Fixes #76926
Change-Id: I822dd6363dea1c4ad73df5958964c1bfe2c46d19
Reviewed-on: https://go-review.googlesource.com/c/go/+/756240
Reviewed-by: Michael Matloob <matloob@google.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Michael Matloob <matloob@golang.org>
LUCI... | [
{
"path": "src/cmd/go/internal/load/test.go",
"patch": "@@ -294,15 +294,6 @@ func TestPackagesAndErrors(loaderstate *modload.State, ctx context.Context, done\n \n \tpb := p.Internal.Build\n \tpmain.DefaultGODEBUG = defaultGODEBUG(loaderstate, pmain, pb.Directives, pb.TestDirectives, pb.XTestDirectives)\n-\t... | 2026-03-18T00:09:35 |
electron/electron | 21a2bfca161e51e03a3d665ea49b74b2f0cdc9dd | 89483e7e89f3b95db4ed85171024e9de2ac9c529 | fix(styles): add missing dot prefix to .hero-icon.loop-3 CSS selector (#49950) | [
{
"path": "default_app/styles.css",
"patch": "@@ -41,7 +41,7 @@ h4 {\n transform-origin: 50% 50%;\n }\n \n-hero-icon.loop-3 {\n+.hero-icon.loop-3 {\n transform: translate(79px, 21px);\n opacity: 1;\n }",
"additions": 1,
"deletions": 1,
"language": "CSS"
}
] | 2026-03-02T18:11:25 |
facebook/react | 2cb08e65b39d1bd184803cc8e4d1081f9c801f69 | ad5971febdf6cc3103fa51121d4015832f2af5f8 | [compiler] Fix bug w functions depending on hoisted primitives (#35284)
Fixes an edge case where a function expression would fail to take a
dependency if it referenced a hoisted `const` inferred as a primitive
value. We were incorrectly skipping primitve-typed operands when
determing scopes for merging in InferReactiv... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/InferReactiveScopeVariables.ts",
"patch": "@@ -389,14 +389,6 @@ export function findDisjointMutableValues(\n */\n operand.identifier.mutableRange.start > 0\n ) {\n- if (\n- ... | 2025-12-05T19:29:06 |
nodejs/node | 94f779f0444e84036fbe545fc7ecdad375f2d3f7 | d7a755153a1f3dd071d2ae8af8f577edbd717ad8 | tools: automate updates for test/fixtures/test426
PR-URL: https://github.com/nodejs/node/pull/60978
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": ".github/workflows/tools.yml",
"patch": "@@ -38,6 +38,7 @@ on:\n - root-certificates\n - simdjson\n - sqlite\n+ - test426-fixtures\n - undici\n - uvwasi\n - zlib\n@@ -255,6 +256,14 @@ jobs:\n cat temp-output\n ... | 2026-02-18T16:14:47 |
vercel/next.js | 75c51c65410bc0d4a852b28bab42943dbf765135 | 39e705ca9fcbf417ed4381737737d40c79fc13ef | Turbopack: Use `debug = "line-tables-only"` for dev builds (#91539)
This defaults to `true`: https://doc.rust-lang.org/cargo/reference/profiles.html#debug
Nobody on the team uses a debugger often enough for this to be worth the time tradeoff: https://kobzol.github.io/rust/rustc/2025/05/20/disable-debuginfo-to-improve... | [
{
"path": "Cargo.toml",
"patch": "@@ -32,6 +32,10 @@ unexpected_cfgs = { level = \"warn\", check-cfg = [\n 'cfg(codspeed)',\n ] }\n \n+[profile.dev]\n+# https://kobzol.github.io/rust/rustc/2025/05/20/disable-debuginfo-to-improve-rust-compile-times.html\n+debug = \"line-tables-only\"\n+\n # This crate is p... | 2026-03-18T00:20:12 |
golang/go | 686b127fe865e25c1d92a78ba0b56224f3fc0acf | f9bdf58fb186b665b05dc5a5afdeb149a1b3335c | doc: fix 2 links in godebug.md
For #76349.
Change-Id: I27dd7658e6cbcf6afd1287a7ec5a39c576ceee67
Reviewed-on: https://go-review.googlesource.com/c/go/+/756580
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Mateusz Poliwczak <mpoliwczak34@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a... | [
{
"path": "doc/godebug.md",
"patch": "@@ -156,7 +156,7 @@ and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n ### Go 1.27\n \n-Go 1.27 removed the `gotypesalias` setting, as noted in the [Go 1.22][#go-122] section.\n+Go 1.27 removed the `gotypesalias` setting, as noted in the [Go 1.... | 2026-03-18T20:53:54 |
electron/electron | 89483e7e89f3b95db4ed85171024e9de2ac9c529 | 4c3565fb8820a52341742e8883dbf7ef69ccbf48 | feat: add macOS-only api to determine if app is currently active (#49622)
* feat: add macOS-only api to determine if app is currently active
You can `focus()` the app and get events for `did-become-active`, but there's currently not a way to directly check if your app is the active (foreground) application.
* test: ... | [
{
"path": "docs/api/app.md",
"patch": "@@ -573,6 +573,10 @@ focus but may instead show a notification or flash the app icon (Wayland).\n \n You should seek to use the `steal` option as sparingly as possible.\n \n+### `app.isActive()` _macOS_\n+\n+Returns `boolean` - `true` if the application is active (i.e.... | 2026-03-02T16:47:37 |
nodejs/node | d7a755153a1f3dd071d2ae8af8f577edbd717ad8 | ca90ab1f024ab1ea14d1c3cfd25f460e0caa3d1b | doc: remove incorrect mention of `module` in `typescript.md`
Node.js/Armaro has never supported `module`-keyword namespaces. Even
with `transform-types` on.
This removes the incorrect mention.
PR-URL: https://github.com/nodejs/node/pull/61839
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Marco ... | [
{
"path": "doc/api/typescript.md",
"patch": "@@ -146,11 +146,10 @@ The most prominent features that require transformation are:\n \n * `Enum` declarations\n * `namespace` with runtime code\n-* legacy `module` with runtime code\n * parameter properties\n * import aliases\n \n-`namespaces` and `module` that d... | 2026-02-18T14:04:23 |
vercel/next.js | 39e705ca9fcbf417ed4381737737d40c79fc13ef | 4de2201764a31ecb45f02c1024bfb145496b1520 | Turbopack: Merge release-with-assertions-no-lto profile into release-with-assertions (#91530)
- More profiles means more bloat to the `target` directory and more cold builds.
- There's no practical use case where we'd be okay with the performance hit of `debug-assertions` and not okay with the performance hit of `lto ... | [
{
"path": "Cargo.toml",
"patch": "@@ -271,16 +271,17 @@ opt-level = \"s\"\n [profile.release.package.miette]\n opt-level = \"s\"\n \n-\n-# Use a custom profile for CI where many tests are performance sensitive but we still want the additional validation of debug-assertions\n+# Use a custom profile for CI or... | 2026-03-17T23:36:59 |
facebook/react | ad5971febdf6cc3103fa51121d4015832f2af5f8 | 378973b387b6a6f287e451dd0356099180684c3c | fix[devtools]: no-op unsupported backend bridge events (#35296)
Follow-up to https://github.com/facebook/react/pull/34641.
Similar to https://github.com/facebook/react/pull/35293,
https://github.com/facebook/react/pull/35294.
React DevTools backend can be used in non-DOM environments, so we have
to feature-check some... | [
{
"path": "packages/react-devtools-shared/src/backend/views/Highlighter/index.js",
"patch": "@@ -9,6 +9,7 @@\n \n import Agent from 'react-devtools-shared/src/backend/agent';\n import {hideOverlay, showOverlay} from './Highlighter';\n+import {isReactNativeEnvironment} from 'react-devtools-shared/src/backend... | 2025-12-05T16:41:58 |
golang/go | f9bdf58fb186b665b05dc5a5afdeb149a1b3335c | 89ba6eec5c6950d6c24523f81469139a5d88a024 | doc: remove template use in godebug.md
This file used to be implicitly a template prior to CL 733500, but now
it's no longer a template. The only template use here can be trivially
expressed with pure Markdown syntax, so do that. (The alternative path
would be to set 'template: true' explicitly.)
Fixes #78211.
Chang... | [
{
"path": "doc/godebug.md",
"patch": "@@ -136,9 +136,7 @@ are also treated as invalid.\n The defaults that will be compiled into a main package\n are reported by the command:\n \n-{{raw `\n \tgo list -f '{{.DefaultGODEBUG}}' my/main/package\n-`}}\n \n Only differences from the base Go toolchain defaults are... | 2026-03-18T20:00:48 |
electron/electron | e1e11c8fbea69823b742ceb781f438eb3bda7912 | 222c989f1315ef98d55408f17af7105dd6f81d85 | build: authenticate curl requests to googlesource in lint workflow (#50001)
fix: authenticate curl requests to googlesource in lint workflow
The "Download GN Binary" and "Download clang-format Binary" steps
fetch files from chromium.googlesource.com without passing
authentication cookies. When googlesource rate-limit... | [
{
"path": ".github/workflows/pipeline-electron-lint.yml",
"patch": "@@ -46,7 +46,7 @@ jobs:\n shell: bash\n run: |\n chromium_revision=\"$(grep -A1 chromium_version src/electron/DEPS | tr -d '\\n' | cut -d\\' -f4)\"\n- gn_version=\"$(curl -sL \"https://chromium.googlesource.com/ch... | 2026-03-02T16:29:49 |
nodejs/node | b4d877405585709caac89a7376f6a8e6565346bc | 4d1557a744873d8152cfa94a26ba9a0782614630 | doc: fix typo in --disable-wasm-trap-handler description
PR-URL: https://github.com/nodejs/node/pull/61820
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -758,7 +758,7 @@ added:\n \n By default, Node.js enables trap-handler-based WebAssembly bound\n checks. As a result, V8 does not need to insert inline bound checks\n-int the code compiled from WebAssembly which may speedup WebAssembly\n+in the code compiled from WebA... | 2026-02-17T20:59:22 |
vercel/next.js | 97f420911da9e1caec5e47535caa16f01c1be493 | 668f8e3a606dfb95d610a6e66d613c4a19e9ab30 | Move adapterPath from experimental to stable top-level config (#91535)
## Move `adapterPath` from experimental to stable
Graduates `adapterPath` from `experimental.adapterPath` to a top-level
`NextConfig` option, following the same pattern used for
`cacheHandlers`, `cacheComponents`, `typedRoutes`, and other options
... | [
{
"path": "docs/01-app/02-guides/upgrading/version-16.mdx",
"patch": "@@ -1040,7 +1040,7 @@ const nextConfig = {\n module.exports = nextConfig\n ```\n \n-Share your feedback in the [RFC discussion](https://github.com/vercel/next.js/discussions/77740).\n+`adapterPath` was promoted to a stable, top-level opti... | 2026-03-17T22:28:08 |
facebook/react | f99241b2e6cec825dfbdbb878755f12e1f510ca9 | 66ae640b362d75555649701e91c5ae26363db45b | [compiler] Add enableUseKeyedState flag and improve setState-in-render errors (#35230)
Adds a new `enableUseKeyedState` compiler flag that changes the error
message for unconditional setState calls during render.
When `enableUseKeyedState` is enabled, the error recommends using
`useKeyedState(initialState, key)` to r... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts",
"patch": "@@ -318,6 +318,12 @@ export const EnvironmentConfigSchema = z.object({\n */\n validateNoSetStateInRender: z.boolean().default(true),\n \n+ /**\n+ * When enabled, changes the behavior of validateNoSetStateInRe... | 2025-12-04T23:29:10 |
golang/go | fdd38337f0802ada78e70c4f3db1f440ba08ba2f | 0520d3f35287d5363941b466df6dd2e134620d09 | cmd/link: propagate Mach-O section alignment to symbol in loadmacho
The Mach-O object file loader reads the section alignment from the
section header into ldMachoSect.align, but never calls SetAlign on
the symbol builder when converting sections to linker symbols. This
causes all Mach-O .syso sections to fall back to ... | [
{
"path": "src/cmd/link/internal/loadmacho/ldmacho.go",
"patch": "@@ -570,6 +570,9 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\tbld.SetData(dat[sect.addr-c.seg.vmaddr:][:sect.size])\n \t\t}\n \t\tbld.SetSize(int64(len(bld.Data())))\n+\t\tif sect.align != 0 {\n+\... | 2026-03-17T14:33:28 |
electron/electron | 222c989f1315ef98d55408f17af7105dd6f81d85 | 838d30510f30f9a3eb3a70121fcd6b87f13cc414 | fix: bind offscreen paint callback to child `WebContents` (#49998)
fix: bind offscreen paint callback to child WebContents
Previously, MaybeOverrideCreateParamsForNewWindow bound the
OffScreenWebContentsView's paint callback to the parent WebContents
using base::Unretained(this). This was both unsafe (dangling pointe... | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1307,11 +1307,12 @@ void WebContents::MaybeOverrideCreateParamsForNewWindow(\n dict.Get(options::kOffscreen, &is_offscreen) && is_offscreen);\n \n if (is_offscreen) {\n+ // Use a no-op callback here. The real OnPaint... | 2026-03-02T16:24:48 |
nodejs/node | 4f13746b6dea1331c84d0a47c6256c6fe578719a | 1523d66a695ad1d1743e84966ff11859cc3dfd54 | module: fix extensionless entry with explicit type=commonjs
PR-URL: https://github.com/nodejs/node/pull/61600
Fixes: https://github.com/nodejs/node/issues/61104
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.c... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -1931,6 +1931,15 @@ Module._extensions['.js'] = function(module, filename) {\n } else {\n format = 'typescript';\n }\n+ } else if (path.extname(filename) === '') {\n+ // Extensionless files skip the .js suffix check above. When t... | 2026-02-16T14:58:58 |
vercel/next.js | d0a0474d3dc152ddeadcb2ffb05185e2a07815c9 | 89c6e73c81dc959a5a6e3d5ba74d7ced8531d9bb | fix allowedDevOrigins for no-cors requests (#91506)
This PR makes configured `allowedDevOrigins` apply to cross-site no-cors dev asset requests. When browsers omit Origin for subresource loads, the dev guard now falls back to `Referer` so explicit allowlisted hosts can load `/_next/*` resources in development.
Prev... | [
{
"path": "packages/next/src/server/lib/router-utils/block-cross-site-dev.ts",
"patch": "@@ -31,6 +31,19 @@ function warnOrBlockRequest(\n return true\n }\n \n+function parseHostnameFromHeader(\n+ header: string | string[] | undefined\n+): string | undefined {\n+ const headerValue = Array.isArray(header... | 2026-03-17T20:57:40 |
golang/go | 0520d3f35287d5363941b466df6dd2e134620d09 | 30bfe53dd7485e211247a6d5c2f29a6aea0719a9 | cmd/link: skip special symbols for label symbol generation
Some special symbols, e.g. funcdata symbols, don't have a section
set, because they are laid out as part of the top-level
go:func.* symbol. Similarly, other non-top-level symbols are part
of some top-level symbols. There is no relocation directly
targetting th... | [
{
"path": "src/cmd/link/internal/arm64/asm.go",
"patch": "@@ -1284,6 +1284,9 @@ func gensymlate(ctxt *ld.Link, ldr *loader.Loader) {\n \n \t// addLabelSyms adds \"label\" symbols at s+limit, s+2*limit, etc.\n \taddLabelSyms := func(s loader.Sym, limit, sz int64) {\n+\t\tif ldr.SymSect(s) == nil {\n+\t\t\tlo... | 2026-03-17T15:18:36 |
facebook/react | 66ae640b362d75555649701e91c5ae26363db45b | bf1afade8d95d2ef6e862d995ee74921ca8d47c7 | [eprh] fix react-compiler rules missing `meta.docs.url` property (#35258)
## Summary
To help people access the documentation easier, we can [add
`meta.docs.url`](https://eslint.org/docs/latest/extend/custom-rules#:~:text=Specifies%20the%20URL)
to the new react-compiler rules. This allows IDEs to make the rule name
a ... | [
{
"path": "packages/eslint-plugin-react-hooks/src/shared/ReactCompiler.ts",
"patch": "@@ -151,6 +151,7 @@ function makeRule(rule: LintRule): Rule.RuleModule {\n docs: {\n description: rule.description,\n recommended: rule.preset === LintRulePreset.Recommended,\n+ url: `https://r... | 2025-12-04T20:28:13 |
electron/electron | 838d30510f30f9a3eb3a70121fcd6b87f13cc414 | ee76e549fa55af9955b12678ffe3ef8b543ceb12 | fix: use destination context when wrapping VideoFrame in contextBridge (#49997)
Enter the destination context scope before creating the VideoFrame V8
wrapper, matching the sibling Element and Blob branches. Without this,
ScriptState::ForCurrentRealm resolved to the calling context instead of
the target context, produc... | [
{
"path": "shell/renderer/api/electron_api_context_bridge.cc",
"patch": "@@ -423,8 +423,9 @@ v8::MaybeLocal<v8::Value> PassValueToOtherContextInner(\n blink::VideoFrame* video_frame =\n blink::V8VideoFrame::ToWrappable(source_isolate, value);\n if (video_frame != nullptr) {\n+ v8::Conte... | 2026-03-02T16:18:19 |
nodejs/node | 1523d66a695ad1d1743e84966ff11859cc3dfd54 | a57893b7993daa111849b161e62a926848e40da3 | http: attach error handler to socket synchronously in onSocket
Between onSocket and onSocketNT, the socket had no error handler,
meaning any errors emitted during that window (e.g. from a blocklist
check or custom lookup) would be unhandled even if the user had set up
a request error handler.
Fix this by attaching so... | [
{
"path": "lib/_http_client.js",
"patch": "@@ -571,7 +571,7 @@ function socketErrorListener(err) {\n if (req) {\n // For Safety. Some additional errors might fire later on\n // and we need to make sure we don't double-fire the error event.\n- req.socket._hadError = true;\n+ socket._hadError ... | 2026-02-16T08:26:48 |
facebook/react | bf1afade8d95d2ef6e862d995ee74921ca8d47c7 | 0526c799d4df2815aed73912bfbd26fc0102ffc3 | [react-dom/server] Fix hanging on Deno (#35235) | [
{
"path": "packages/react-dom/package.json",
"patch": "@@ -61,7 +61,7 @@\n \"react-server\": \"./server.react-server.js\",\n \"workerd\": \"./server.edge.js\",\n \"bun\": \"./server.bun.js\",\n- \"deno\": \"./server.browser.js\",\n+ \"deno\": \"./server.node.js\",\n \"worke... | 2025-12-04T05:50:27 |
vercel/next.js | 4494261bd73d2b9ad337d01a0da19c18d09eca56 | 4050a5b09c4d4287a12ab4f92867724b5df7aeda | Remove devCacheControlNoCache experimental option (hard-code no-cache) (#91503)
### What?
Removes the `experimental.devCacheControlNoCache` config option entirely
and hard-codes `no-cache, must-revalidate` as the dev server
`Cache-Control` header value.
Previously the option controlled whether the dev server respond... | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -1389,12 +1389,7 @@ export async function handler(\n \n // In dev, we should not cache pages for any reason.\n if (routeModule.isDev) {\n- res.setHeader(\n- 'Cache-Control',\n- nextConfig.experimenta... | 2026-03-17T19:13:01 |
golang/go | 30bfe53dd7485e211247a6d5c2f29a6aea0719a9 | 9ec1d8f335bb76a07e9724fb332a4c2572d0fc3b | cmd/compile: enable promoted field selectors as keys in struct literals
Switch the generated UIR version from V2 to V3.
Adjust cmd/compile/internal/types to accept promoted field selectors
in composite literals.
Fixes #9859.
Change-Id: Ie314e28567cfa6cf4c9e962a07b32dd05b06bf5e
Reviewed-on: https://go-review.googleso... | [
{
"path": "src/cmd/compile/internal/noder/unified.go",
"patch": "@@ -25,8 +25,8 @@ import (\n )\n \n // uirVersion is the unified IR version to use for encoding/decoding.\n-// Use V2 as the encoded version for aliastypeparams.\n-const uirVersion = pkgbits.V2\n+// Use V3 for promoted struct field support in ... | 2026-03-16T21:01:37 |
electron/electron | ee76e549fa55af9955b12678ffe3ef8b543ceb12 | 97fceb5f7cee5011ce96c2c169ddd4dea2019933 | fix: use setter's creation context when proxying setter in OverrideGlobalPropertyFromIsolatedWorld (#49990)
The setter branch was deriving source_context from getter-> instead of
setter->. Currently latent since the only call site passes both from
the same preload context, but this would crash or mis-resolve if a
futu... | [
{
"path": "shell/renderer/api/electron_api_context_bridge.cc",
"patch": "@@ -905,7 +905,7 @@ bool OverrideGlobalPropertyFromIsolatedWorld(\n }\n if (!setter->IsNullOrUndefined() && setter->IsObject()) {\n v8::Local<v8::Context> source_context =\n- getter->GetCreationContextChecked(iso... | 2026-03-02T16:18:00 |
vercel/next.js | 6db019c330d55eff6cf4ed7a093a0fa1c5a3daf3 | c5577bb38eb41bee05c0de4a4b9f0bc53dd89fb0 | Skip catch-error-react-compiler test to unblock CI (#91528)
https://github.com/vercel/next.js/actions/runs/23170738194/job/67327462789#step:36:318
is holding up CI, including release. Cause is not from `catchError` PR,
it's just that the test has discovered missing support of Next.js for
Pages + React 17/18 + React co... | [
{
"path": "test/e2e/app-dir/catch-error/catch-error-react-compiler.test.ts",
"patch": "@@ -1,6 +1,12 @@\n import { nextTestSetup } from 'e2e-utils'\n \n-describe('app-dir - unstable_catchError with react compiler', () => {\n+// FIXME: If NEXT_TEST_REACT_VERSION is set, skip the test for now. Need to address... | 2026-03-17T18:55:55 |
nodejs/node | 8df6332f8a240a89da234bc60c041fca2923ba4c | ad945c599c6b9a5a356a27745643b871b3ebb3d2 | http2: add http1Options for HTTP/1 fallback configuration
PR-URL: https://github.com/nodejs/node/pull/61713
Fixes: https://github.com/nodejs/node/issues/59783
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Tim Perry <pimterry@gmail.com> | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -4430,6 +4430,42 @@ Passing the `type` option to [`Duplex.toWeb()`][] is deprecated. To specify the\n type of the readable half of the constructed readable-writable pair, use the\n `readableType` option instead.\n \n+### DEP0202: `Http1IncomingMessage` and `... | 2026-02-14T15:11:22 |
facebook/react | 7dc903cd29dac55efb4424853fd0442fef3a8700 | 36df5e8b42a97df4092f9584e4695bf4537853d5 | Patch FlightReplyServer with fixes from ReactFlightClient (#35277)
FlightReplyServer are for client->server and ReactFlightClient is for
server->client. They're not 100% symmetrical.
We did a number of refactors to ReactFlightClient in PRs like #29823 and
#33664 to change the structure of the resolution. This PR brin... | [
{
"path": "packages/react-server-dom-esm/src/server/ReactFlightDOMServerNode.js",
"patch": "@@ -344,31 +344,42 @@ function decodeReplyFromBusboy<T>(\n // we queue any fields we receive until the previous file is done.\n queuedFields.push(name, value);\n } else {\n- resolveField(response... | 2025-12-03T15:41:19 |
golang/go | 9ec1d8f335bb76a07e9724fb332a4c2572d0fc3b | d9a600a73bed7b907f7321200650fe5103f47fc9 | cmd/compile: skip race detector test failure for unsupported VMA
Fixes #78219
Updates #77597
Change-Id: I021df668bfc18081e71faaab2e4bad607873bf4d
Reviewed-on: https://go-review.googlesource.com/c/go/+/756780
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Meidan ... | [
{
"path": "src/cmd/compile/internal/test/fixedbugs_test.go",
"patch": "@@ -5,6 +5,7 @@\n package test\n \n import (\n+\t\"bytes\"\n \t\"internal/platform\"\n \t\"internal/testenv\"\n \t\"os\"\n@@ -110,7 +111,13 @@ func TestIssue77597(t *testing.T) {\n \tcmd := testenv.Command(t, testenv.GoToolPath(t), \"run... | 2026-03-19T02:48:47 |
electron/electron | 07dcba74b39b1d1e10f274bc8fb4a4dbda9cc46f | 839cc5b87989e6d886b5070ec6d7b3d11aa0ec73 | fix: potential UAF in `OnDownloadPathGenerated` (#50003)
fix: potential UAF in OnDownloadPathGenerated | [
{
"path": "shell/browser/electron_download_manager_delegate.cc",
"patch": "@@ -268,7 +268,7 @@ void ElectronDownloadManagerDelegate::OnDownloadPathGenerated(\n gin_helper::Promise<gin_helper::Dictionary> dialog_promise(isolate);\n auto dialog_callback = base::BindOnce(\n &ElectronDownloadMan... | 2026-03-02T15:28:14 |
vercel/next.js | e16f6fb2f333000737d5f1523a2f8f95240f4c98 | d50bef07caa60917681b0ced0f1bc523c2be4bba | [Segment Cache] Always upsert on prefetch completion (#91488)
**Previous:**
1. https://github.com/vercel/next.js/pull/91487
**Current:**
2. https://github.com/vercel/next.js/pull/91488
**Up next:**
3. https://github.com/vercel/next.js/pull/89297
---
When a prefetch response includes vary params, the segment cac... | [
{
"path": "packages/next/src/client/components/segment-cache/cache.ts",
"patch": "@@ -1938,7 +1938,8 @@ export async function fetchSegmentOnCacheMiss(\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000)\n return null\n }\n- const staleAt = Date.now() + getStaleTimeMs(serv... | 2026-03-17T17:57:45 |
nodejs/node | 05b8953cee0ca3d596717719f92e9142af5de10d | 2de34822cc9a19621a663e3f22b00b9a01697635 | doc: remove obsolete Boxstarter automated install
PR-URL: https://github.com/nodejs/node/pull/61785
Fixes: https://github.com/nodejs/node/issues/61690
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Stefan ... | [
{
"path": ".github/workflows/build-tarball.yml",
"patch": "@@ -18,7 +18,6 @@ on:\n - tsconfig.json\n - test/internet/**\n - tools/actions/**\n- - tools/bootstrap/**\n - tools/dep_updaters/**\n - tools/doc/**\n - tools/eslint-rules/**\n@@ -48,7 +47,6 @@ on:\n - ... | 2026-02-14T08:38:35 |
golang/go | 86b5e678e88efd89aee58e075064fd93c9346962 | 59bafc0b0782a6984b0b79499861947d5ccce509 | cmd/go: reject an empty tool name
An empty tool name ("") is incorrectly resolved by "go tool" as the directory
containing the tools binaries:
$ go tool ""
go tool : fork/exec /opt/homebrew/Cellar/go/1.24.5/libexec/pkg/tool/darwin_arm64: permission denied
To fix that case we also explicitely disallow an empty to... | [
{
"path": "src/cmd/go/internal/base/tool.go",
"patch": "@@ -42,6 +42,9 @@ func ToolPath(toolName string) (string, error) {\n }\n \n func ValidToolName(toolName string) bool {\n+\tif toolName == \"\" {\n+\t\treturn false\n+\t}\n \tfor _, c := range toolName {\n \t\tswitch {\n \t\tcase 'a' <= c && c <= 'z', '... | 2025-07-25T08:34:34 |
facebook/react | 09f05694a25578c46e846e4ff9495f7c1352c29c | 0af4fd80ed0ceb85b472b079c94a96b8526fcd06 | [compiler] Extend setState in effect validation to useEffectEvent (#35214)
ValidateNoSetStateInEffects already supports transitive setter
functions. This PR marks any synchonous state setter useEffectEvent
function so we can validate that uEE isn't being used only as
misdirection to avoid the validation within an effe... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts",
"patch": "@@ -2023,6 +2023,11 @@ export function isUseInsertionEffectHookType(id: Identifier): boolean {\n id.type.shapeId === 'BuiltInUseInsertionEffectHook'\n );\n }\n+export function isUseEffectEventType(id: Identifier): bool... | 2025-12-01T19:55:42 |
electron/electron | 839cc5b87989e6d886b5070ec6d7b3d11aa0ec73 | d0241ea27d78c612f2ed515b3124a84e5b760f40 | fix: deliver Universal Links when NSUserActivity.userInfo is nil (#49986)
* fix(mac): deliver Universal Links when NSUserActivity.userInfo is nil
* chore: format | [
{
"path": "shell/browser/mac/electron_application_delegate.mm",
"patch": "@@ -143,14 +143,12 @@ - (BOOL)application:(NSApplication*)sender\n std::string activity_type(base::SysNSStringToUTF8(userActivity.activityType));\n NSURL* url = userActivity.webpageURL;\n NSDictionary* details = url ? @{@\"webpa... | 2026-03-02T13:28:52 |
vercel/next.js | d50bef07caa60917681b0ced0f1bc523c2be4bba | a46ff7c861536337ace53ed2cc6311cc01882756 | Buffer prefetch response before passing to Flight client (#91487)
**Current:**
1. https://github.com/vercel/next.js/pull/91487
**Up next:**
2. https://github.com/vercel/next.js/pull/91488
3. https://github.com/vercel/next.js/pull/89297
---
Prefetch responses include metadata (in the Flight stream sense, not
HTML ... | [
{
"path": "packages/next/src/client/components/segment-cache/cache.ts",
"patch": "@@ -1682,7 +1682,13 @@ export async function fetchRouteOnCacheMiss(\n const couldBeIntercepted =\n varyHeader !== null && varyHeader.includes(NEXT_URL)\n \n- // Track when the network connection closes.\n+ // T... | 2026-03-17T17:55:41 |
golang/go | 4216fa3d0471aa290e591abf0e209992edfc1f54 | bf1c1b3bde50f33593cd0db8f19812ea957964f5 | runtime: return the error code as a return value in asmstdcall
This shaves off 8 bytes from the syscall_syscalln stack frame, which is
significant as that call path is almost over the nosplit limit.
Also, it follows the cgocall convention of returning the error code as
a return value, making it easier to reason about... | [
{
"path": "src/internal/runtime/syscall/windows/asm_windows_386.s",
"patch": "@@ -5,10 +5,14 @@\n #include \"go_asm.h\"\n #include \"textflag.h\"\n \n-TEXT ·StdCall<ABIInternal>(SB),NOSPLIT,$0\n-\tJMP\t·asmstdcall(SB)\n+TEXT ·StdCall<ABIInternal>(SB),NOSPLIT,$4-8\n+\tMOVL\tfn+0(FP), AX\n+\tMOVL\tAX, 0(SP)\n... | 2026-03-06T11:22:14 |
facebook/react | 1721e73e149d482a4421d4ea9f76d36a2c79ad02 | 6875c3eab48179f3c74a8a9f825c09554f683d7d | [test] Fix Error Proxy in Node.js 21+ (#35227) | [
{
"path": "scripts/jest/setupTests.js",
"patch": "@@ -136,6 +136,13 @@ if (process.env.REACT_CLASS_EQUIVALENCE_TEST) {\n }\n return Reflect.set(target, key, value, receiver);\n },\n+ get(target, key, receiver) {\n+ if (key === 'stack') {\n+ // https://g... | 2025-11-29T15:52:39 |
nodejs/node | 37ff1ea989af13e47052be2571c3781bc45977d4 | b92c9b5ff5032ba890cb53b8ae70f1eb0e0ca63a | http: fix keep-alive socket reuse race in requestOnFinish
When the HTTP response ends before the request's 'finish' event fires,
responseOnEnd() and requestOnFinish() can both call responseKeepAlive(),
corrupting the socket that the agent may have already handed to another
request.
This commit adds a !req.destroyed g... | [
{
"path": "lib/_http_client.js",
"patch": "@@ -870,7 +870,11 @@ function responseOnTimeout() {\n function requestOnFinish() {\n const req = this;\n \n- if (req.shouldKeepAlive && req._ended)\n+ // If the response ends before this request finishes writing, `responseOnEnd()`\n+ // already released the so... | 2026-02-06T16:29:11 |
electron/electron | d0241ea27d78c612f2ed515b3124a84e5b760f40 | 20dfc93f3a3394a942a4a494ae7b09c1fc7f635e | fix: delete temporary blink* globals after restoring Blink implementations (#49991)
ElectronRendererClient::DidCreateScriptContext (and the worker
equivalent) save Blink's fetch/Response/FormData/Request/Headers/
EventSource as temporary globalThis.blink* properties before Node
initialization may overwrite them. node/... | [
{
"path": "lib/node/init.ts",
"patch": "@@ -9,6 +9,7 @@ if ((globalThis as any).blinkfetch) {\n const keys = ['fetch', 'Response', 'FormData', 'Request', 'Headers', 'EventSource'];\n for (const key of keys) {\n (globalThis as any)[key] = (globalThis as any)[`blink${key}`];\n+ delete (globalThis a... | 2026-03-02T10:44:49 |
vercel/next.js | a46ff7c861536337ace53ed2cc6311cc01882756 | 892f7df054814144e313d347bd37ad391e42f728 | Error when accessing undefined root params in `generateStaticParams` (#91519)
Follow-up to #91189 which added support for accessing root params inside
`generateStaticParams`. Previously, if a `generateStaticParams` function
tried to read a root param that hasn't been defined yet — either because
the current segment is... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -1139,5 +1139,6 @@\n \"1138\": \"`unstable_retry()` can only be used in the App Router. Use `reset()` in the Pages Router.\",\n \"1139\": \"`unstable_catchError` can only be used in Client Components.\",\n \"1140\": \"Route %s used \\\\`import('next/... | 2026-03-17T17:27:50 |
facebook/react | 6875c3eab48179f3c74a8a9f825c09554f683d7d | 74fa1667a7355fd55591d82b0e1e992909b1dca0 | [test] Only run tests overriding fallback and error states in supported versions (#35234) | [
{
"path": "packages/react-devtools-shared/src/__tests__/storeComponentFilters-test.js",
"patch": "@@ -753,7 +753,7 @@ describe('Store component filters', () => {\n });\n });\n \n- // @reactVersion >= 16.6\n+ // @reactVersion >= 18.0\n it('resets forced error and fallback states when filters are ch... | 2025-11-27T15:15:14 |
golang/go | c1c0af1e16c4c932d4c05442d9717dac0dc08a79 | 4b7b1be731e35c2f9c5f3af6677b164ccb006568 | cmd/compile: simplify the implementation of LoweredMoveLoop on loong64
Removes 632 instructions from the go binary on loong64.
before after delta
asm 560709 560673 -36
cgo 478565 478545 -20
compile 2883165 2883089 -76
cover 528213 528189 -... | [
{
"path": "src/cmd/compile/internal/loong64/ssa.go",
"patch": "@@ -732,7 +732,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tif dstReg == srcReg {\n \t\t\tbreak\n \t\t}\n-\t\tcountReg := int16(loong64.REG_R23)\n+\t\tsrcEndReg := int16(loong64.REG_R23)\n \t\ttmpReg := int16(loong64.REG_R24)\n \... | 2025-12-30T12:27:35 |
nodejs/node | b92c9b5ff5032ba890cb53b8ae70f1eb0e0ca63a | f13d7bf69a7f1642fb5b1b624eff1a50ceb71849 | worker: eliminate race condition in process.cwd()
Fixes a race condition in worker thread cwd caching where the counter
is incremented before the directory change completes, allowing workers
to cache stale directory values.
In lib/internal/worker.js, the main thread's process.chdir() wrapper
previously incremented th... | [
{
"path": "lib/internal/worker.js",
"patch": "@@ -112,8 +112,8 @@ if (isMainThread) {\n cwdCounter = new Uint32Array(constructSharedArrayBuffer(4));\n const originalChdir = process.chdir;\n process.chdir = function(path) {\n- AtomicsAdd(cwdCounter, 0, 1);\n originalChdir(path);\n+ AtomicsAdd... | 2026-02-13T16:30:09 |
electron/electron | 20dfc93f3a3394a942a4a494ae7b09c1fc7f635e | 2bd7758ec1eebe6015ed0a381845781eaa07eca6 | fix: menu bar hiding on two `setFullscreen(false)` (#45930)
* test: add failing test for `setFullscreen(false)`
`setFullscreen(false)` should do nothing
when not already in fullscreen, but it hides the menu bar
on Linux.
* fix: menu bar hiding on two setFullScreen(false)
This fixes the following bug on Linux (and m... | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -788,10 +788,9 @@ void NativeWindowViews::SetFullScreen(bool fullscreen) {\n if (!IsFullScreenable())\n return;\n \n+ bool leaving_fullscreen = IsFullscreen() && !fullscreen;\n #if BUILDFLAG(IS_WIN)\n // There is no native fullscreen st... | 2026-03-02T09:01:30 |
facebook/react | 627b583650078514eff22498514682a8522282b1 | fb18ad3fd372623190a8f74387b79e28151cefc4 | [compiler][snap] Fix for filter mode with nested files, 'error.' prefix (#35215)
Fixes some issues i ran into w my recent snap changes:
* Correctly match against patterns that contain subdirectories, eg
`fbt/fbt-call`
* When checking if the input pattern has an extension, only prune known
supported extensions. Our con... | [
{
"path": "compiler/packages/snap/src/fixture-utils.ts",
"patch": "@@ -44,21 +44,6 @@ function stripExtension(filename: string, extensions: Array<string>): string {\n return filename;\n }\n \n-/**\n- * Strip all extensions from a filename\n- * e.g., \"foo.expect.md\" -> \"foo\"\n- */\n-function stripAllEx... | 2025-11-25T23:39:07 |
nodejs/node | 8f613eea130a9925d4a11310ff507d76ab9a7cd3 | 3d30c302c37f876d62a49318bfd48875b79c48c2 | zlib: add support for brotli compression dictionary
This change adds JS API support for custom compression dictionaries
with Brotli in the zlib library. The underlying Brotli dependency
already supports this and zstd exposes something similar.
This follows the zstd approach for using a custom dictionary but
for Brotli... | [
{
"path": "lib/zlib.js",
"patch": "@@ -830,11 +830,29 @@ function Brotli(opts, mode) {\n });\n }\n \n+ let dictionary = opts?.dictionary;\n+ if (dictionary !== undefined && !isArrayBufferView(dictionary)) {\n+ if (isAnyArrayBuffer(dictionary)) {\n+ dictionary = Buffer.from(dictionary);\n+ ... | 2026-02-13T16:10:17 |
golang/go | 9def4acb06bf9167441caa8af37e27b3cdbf8cf0 | 6bdfdb5f51951584732e6a95a7ee8a5ba5e8cb93 | cmd/link: support loading R_LARCH_GOT64_PC_{LO12, HI20} relocs on loong64
On loong64, such relocations are increasingly common when built using
an "extreme" code model. To ensure future interoperability with cgo,
the linker needs to be made aware of these relocations.
Ref: https://github.com/loongson/la-abi-specs/blo... | [
{
"path": "src/cmd/internal/obj/fips140.go",
"patch": "@@ -356,6 +356,8 @@ func (s *LSym) checkFIPSReloc(ctxt *Link, rel Reloc) {\n \t\tobjabi.R_GOTPCREL,\n \t\tobjabi.R_LOONG64_ADDR_LO, // used with PC-relative load\n \t\tobjabi.R_LOONG64_ADDR_HI, // used with PC-relative load\n+\t\tobjabi.... | 2026-03-12T07:34:02 |
electron/electron | 3d1cc3970b770dba739789d1a2dfd020c8a2d319 | 6a440f0bc9e21fa8e8c44fd60ab44a4604f467d1 | fix: update label/sublabel/icon in MenuItems on open (#49678)
fix: update label/sublabel/icon in macOS item on open | [
{
"path": "docs/api/menu-item.md",
"patch": "@@ -73,13 +73,16 @@ The following properties are available on instances of `MenuItem`:\n \n #### `menuItem.id`\n \n-A `string` indicating the item's unique id. This property can be\n-dynamically changed.\n+A `string` indicating the item's unique id.\n+\n+This pro... | 2026-02-27T17:47:05 |
facebook/react | fb18ad3fd372623190a8f74387b79e28151cefc4 | ddff35441a63d573ef41fcedabc32105e0ac3122 | [compiler] Exhaustive deps: extra tests, improve diagnostic (#35213)
First, this adds some more tests and organizes them into an
`exhaustive-deps/` subdirectory.
Second, the diagnostics are overhauled. For each memo block we now
report a single diagnostic which summarizes the issue, plus individual
errors for each mi... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts",
"patch": "@@ -807,6 +807,7 @@ export type ManualMemoDependency = {\n }\n | {kind: 'Global'; identifierName: string};\n path: DependencyPath;\n+ loc: SourceLocation;\n };\n \n export type StartMemoize = {",
"additions"... | 2025-11-25T20:09:09 |
nodejs/node | e68768045781b2ed2ab5255a97fb71d3fafe7b84 | 813993b1749d6c48ec868a298368d7644ae8f629 | test_runner: fix suite rerun
PR-URL: https://github.com/nodejs/node/pull/61775
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -706,10 +706,12 @@ class Test extends AsyncResource {\n this.fn = () => {\n for (let i = 0; i < (previousAttempt.children?.length ?? 0); i++) {\n const child = previousAttempt.children[i];\n- this.createSubte... | 2026-02-13T14:31:09 |
electron/electron | 6a440f0bc9e21fa8e8c44fd60ab44a4604f467d1 | 699445f5da9c702e8f06fb1f8e0491f94ca0f75f | fix: correct window sizing on Linux when constraints on resizability are enforced (#49903)
* fix window sizing on linux when constraints are applied
* added tests
* apply window style directly when changing resizability
* Revert "apply window style directly when changing resizability"
This reverts commit 949e2ee2a... | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -931,8 +931,10 @@ void NativeWindowViews::SetContentSizeConstraints(\n // of this to determine whether native widget has initialized.\n if (widget() && widget()->widget_delegate())\n widget()->OnSizeConstraintsChanged();\n+#if BUILDFLAG(... | 2026-02-27T17:33:21 |
facebook/react | ddff35441a63d573ef41fcedabc32105e0ac3122 | d39a1d6b638de6b990ea783544df775b8be59f1a | [compiler] Enable validateExhaustiveMemoizationDependencies by default (#35201)
Enables `@validateExhaustiveMemoizationDependencies` feature flag by
default, and disables it in select tests that failed due to the change.
Some of our tests intentionally use incorrect memo dependencies in order
to test edge cases.
---
... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts",
"patch": "@@ -221,7 +221,7 @@ export const EnvironmentConfigSchema = z.object({\n /**\n * Validate that dependencies supplied to manual memoization calls are exhaustive.\n */\n- validateExhaustiveMemoizationDependenci... | 2025-11-25T20:07:55 |
golang/go | ca3c2a6790cc7744fa340a497b86d0b479c1d4e3 | d0bd295ec12d8f5ad2bdb204e14123bf912f52aa | time: fix typo in comment
Correct "occasonal" to "occasional"
Change-Id: I54b8466a565ad8fd1ae9527c39b935b806062127
GitHub-Last-Rev: 996c59b92407515c7b7e2df23e34789ce280752c
GitHub-Pull-Request: golang/go#76426
Reviewed-on: https://go-review.googlesource.com/c/go/+/723520
Reviewed-by: Mark Freeman <markfreeman@google.... | [
{
"path": "src/time/time.go",
"patch": "@@ -1279,7 +1279,7 @@ func daysBefore(m Month) int {\n \t// which is:\n \t//\t0 31 61 92 122 153 183 214 245 275 306 336 367\n \t// This is almost exactly 367/12×(m-1) except for the\n-\t// occasonal off-by-one suggesting there may be an\n+\t// occasional off-by-on... | 2025-11-23T18:28:56 |
nodejs/node | dbe5d72c058168132693e59d4b30d21e56aef03f | 379edcd79280cba00988126a3e009f17e6466bfb | events: don't call resume after close
PR-URL: https://github.com/nodejs/node/pull/60548
Fixes: https://github.com/nodejs/node/issues/60507
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day> | [
{
"path": "lib/events.js",
"patch": "@@ -1074,7 +1074,7 @@ function on(emitter, event, options = kEmptyObject) {\n const value = unconsumedEvents.shift();\n size--;\n if (paused && size < lowWatermark) {\n- emitter.resume();\n+ emitter.resume(); // Can not be finish... | 2026-02-11T17:15:39 |
electron/electron | 55d9e48c35a439957ba8def510358e0f75662077 | 96ad701dd01a3506771bf976a9b9ccfa30356210 | fix: menu close event missing after opening a submenu (#49783)
* fix: menu close event missing after opening a submenu
* add a unit-like test | [
{
"path": "shell/browser/api/electron_api_menu.cc",
"patch": "@@ -311,6 +311,8 @@ void Menu::FillObjectTemplate(v8::Isolate* isolate,\n .SetMethod(\"_getAcceleratorTextAt\", &Menu::GetAcceleratorTextAtForTesting)\n #if BUILDFLAG(IS_MAC)\n .SetMethod(\"_getUserAcceleratorAt\", &Menu::GetUserAccel... | 2026-02-26T15:40:29 |
rust-lang/rust | 750e57819573e16cb6c6578e41d0cbb547e4e5f8 | c07baa4cc921e5606ae9ef846b8c187d65bf9c83 | clippy_dev/new_lint: fix path to the file where MSRVs reside | [
{
"path": "clippy_dev/src/new_lint.rs",
"patch": "@@ -319,7 +319,7 @@ fn get_lint_file_contents(lint: &LintData<'_>, enable_msrv: bool) -> String {\n \n impl {pass_type}{pass_lifetimes} for {name_camel} {{{extract_msrv}}}\n \n- // TODO: Add MSRV level to `clippy_config/src/msrvs.rs` i... | 2026-04-02T19:24:00 |
facebook/react | d39a1d6b638de6b990ea783544df775b8be59f1a | 16e16ec6ffe159ba831203eeeb7efe72df82c4be | [compiler] Distingush optional/extraneous deps (#35204)
In ValidateExhaustiveDependencies, I previously changed to allow
extraneous dependencies as long as they were non-reactive. Here we make
that more precise, and distinguish between values that are definitely
referenced in the memo function but optional as dependen... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts",
"patch": "@@ -803,6 +803,7 @@ export type ManualMemoDependency = {\n | {\n kind: 'NamedLocal';\n value: Place;\n+ constant: boolean;\n }\n | {kind: 'Global'; identifierName: string};\n path: Depe... | 2025-11-25T20:06:25 |
nodejs/node | 31bf4fb6e552ebec14283469c5697e0cc16814de | cff8bfd8654e03270d8640e3a13818a2ae0b46bf | fs: add `throwIfNoEntry` option for fs.stat and fs.promises.stat
Fixes: https://github.com/nodejs/node/issues/61116
Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/61178
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "doc/api/fs.md",
"patch": "@@ -1719,6 +1719,9 @@ changes:\n * `options` {Object}\n * `bigint` {boolean} Whether the numeric values in the returned\n {fs.Stats} object should be `bigint`. **Default:** `false`.\n+ * `throwIfNoEntry` {boolean} Whether an exception will be thrown\n+ if no fi... | 2026-02-11T15:02:02 |
golang/go | d0bd295ec12d8f5ad2bdb204e14123bf912f52aa | 8afbae3e51ca0a22121bdf34ac65e0d4c9d888b7 | cmd/go: provide concise user message to use - go work use
Fixes #64007
Change-Id: Ia1de6b33b2a531545984351e4453aa5d97b16953
Reviewed-on: https://go-review.googlesource.com/c/go/+/589815
Reviewed-by: Michael Matloob <matloob@golang.org>
Auto-Submit: Michael Matloob <matloob@google.com>
Reviewed-by: Carlos Amedee <car... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -1156,8 +1156,8 @@ func errWorkTooOld(gomod string, wf *modfile.WorkFile, goVers string) error {\n \t\t// even when it doesn't list any version.\n \t\tverb = \"implicitly requires\"\n \t}\n-\treturn fmt.Errorf(\"module %s listed in go.work file r... | 2024-06-03T14:16:32 |
vercel/next.js | 891adaa6058519e4728ef852583f55a6b198de2f | 66bbcb581921f99215304c19109c1a3446693ecb | Improve CSS parse error recovery and reporting (#90025)
## What?
This PR improves CSS parsing error handling in Turbopack by making parse errors recoverable instead of fatal.
1. **Extracting CSS parsing logic** into a new `parse_css_stylesheet` function that handles both parsing and CSS module validation in one plac... | [
{
"path": ".prettierignore",
"patch": "@@ -74,6 +74,8 @@ test/integration/typescript-app-type-declarations/next-env.strictRouteTypes.d.ts\n /turbopack/crates/turbopack-tests/tests/execution/turbopack/exports/invalid-export-parse-error/input/invalid-export/broken.js\n /turbopack/crates/turbopack-tests/tests/... | 2026-03-17T14:44:59 |
rust-lang/rust | 35693778e81a0e94e13a5a48809657c6b05f7f42 | e6b64a2f4c696b840f8a384ec28690eed6a5d267 | Fix ICE in unsafe binder discriminant queries
Forward discriminant-related queries through `ty::UnsafeBinder` to the erased
inner type, matching the existing layout behavior. | [
{
"path": "compiler/rustc_middle/src/ty/sty.rs",
"patch": "@@ -1630,6 +1630,9 @@ impl<'tcx> Ty<'tcx> {\n TyKind::Coroutine(def_id, args) => {\n Some(args.as_coroutine().variant_range(*def_id, tcx))\n }\n+ TyKind::UnsafeBinder(bound_ty) => {\n+ ... | 2026-04-02T15:15:28 |
electron/electron | 96ad701dd01a3506771bf976a9b9ccfa30356210 | aee06610464e7a98870333bca452b9718d5c4ba6 | chore: bump node to v24.14.0 (main) (#49941)
* chore: bump node in DEPS to v24.14.0
* lib: prefer call() over apply() if argument list is not array
https://github.com/nodejs/node/pull/60796
* build,deps: replace cjs-module-lexer with merve
https://github.com/nodejs/node/pull/61456
* chore: fixup patch indices
* ... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '147.0.7703.0',\n 'node_version':\n- 'v24.13.1',\n+ 'v24.14.0',\n 'nan_version':\n '675cefebca42410733da8a454c8d9391fcebfbc2',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2026-02-26T15:32:14 |
facebook/react | 9599e7a787cce2a41c35d783d45a160dfebab277 | 67c1487ffd872c95a3bb7d8104eac6eca79fe8cb | [compiler] Adjustments to exhaustive deps messages, disable the lint rule (#35192)
Similar to ValidateHookUsage, we implement this check in the compiler
for safety but (for now) continue to rely on the existing rule for
actually reporting errors to users.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -1067,7 +1067,15 @@ function getRuleForCategoryImpl(category: ErrorCategory): LintRule {\n name: 'memo-dependencies',\n description:\n 'Validates that useMemo() and useCallback() specify co... | 2025-11-24T20:20:12 |
golang/go | 8afbae3e51ca0a22121bdf34ac65e0d4c9d888b7 | 0a56bf885884d07f6391afcbb122041f193eebb2 | cmd/compile: allow multiple induction variables in one block in prove
In this CL, the restriction that each block can only have one induction
variable has been removed. This reduces missed optimizations.
Fixes #76269
Change-Id: I14043182a40cc7887c5b6d9c1a5df8ea3a1bfedc
Reviewed-on: https://go-review.googlesource.com... | [
{
"path": "src/cmd/compile/internal/ssa/downward_counting_loop.go",
"patch": "@@ -4,8 +4,6 @@\n \n package ssa\n \n-import \"fmt\"\n-\n // maybeRewriteLoopToDownwardCountingLoop tries to rewrite the loop to a\n // downward counting loop checking against start if the loop body does\n // not depend on ind or ... | 2025-11-12T09:38:27 |
rust-lang/rust | edb93228ce910aa1073c42d4ef4807c983968df1 | eb20cada00d0623dc0fd367e24f29384d29c472a | fix doc in rustc_attr_parsing::context | [
{
"path": "compiler/rustc_attr_parsing/src/context.rs",
"patch": "@@ -399,11 +399,11 @@ impl Stage for Late {\n }\n }\n \n-/// used when parsing attributes for miscellaneous things *before* ast lowering\n+/// Used when parsing attributes for miscellaneous things *before* ast lowering\n pub struct Early ... | 2026-04-02T13:52:23 |
vercel/next.js | 66bbcb581921f99215304c19109c1a3446693ecb | 23fa2787dd72acded58a5f2c62b2c347a137f401 | docs: `unstable_catchError()` (#89847)
Docs for https://github.com/vercel/next.js/pull/89688 | [
{
"path": "docs/01-app/01-getting-started/10-error-handling.mdx",
"patch": "@@ -7,6 +7,7 @@ related:\n links:\n - app/api-reference/functions/redirect\n - app/api-reference/file-conventions/error\n+ - app/api-reference/functions/catchError\n - app/api-reference/functions/not-found\n - a... | 2026-03-17T14:09:39 |
nodejs/node | cff8bfd8654e03270d8640e3a13818a2ae0b46bf | 6682787d687c1fdeeb69740abcb4a25bb6628b66 | test: unify assertSnapshot stacktrace transform
The snapshotted stack frames should hide node internal stack frames so
that general node core development does not need updating the snapshot.
For userland stack frames, they are highly fixture related and any
fixture change should reflect in a change of the snapshot. A... | [
{
"path": "test/common/assertSnapshot.js",
"patch": "@@ -3,11 +3,30 @@ const common = require('.');\n const path = require('node:path');\n const test = require('node:test');\n const fs = require('node:fs/promises');\n+const { realpathSync } = require('node:fs');\n const assert = require('node:assert/strict'... | 2026-02-11T14:36:49 |
golang/go | a481ef071e0b30b33b2857919957be151b2d2a6d | a61fd428974822a8c57a2b2840fc237e6711b24d | net/url: allow commas in hostnames for mongodb urls
A valid MongoDB URL can contain commas
to include multiple host:port pairs.
The current parseHost function splits the port
starting from the first colon (:),
but for MongoDB URLs that contain multiple host:port pairs,
it needs to split from the last colon (:).
Fixes... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -617,6 +617,13 @@ func parseHost(scheme, host string) (string, error) {\n \t\t\t\t// continue to permit it for postgres:// URLs only.\n \t\t\t\t// https://go.dev/issue/75223\n \t\t\t\ti = lastColon\n+\t\t\t} else if scheme == \"mongodb\" || scheme == \"mongodb+sr... | 2026-03-13T03:04:12 |
facebook/react | fca172e3f3b29aee12e4e99b8f151e7fd138a8db | fd524fe02a86c3e92a207d90da970941320f337f | [compiler] Ignore ESLint suppressions when ValidateMemoDeps enabled (#35184)
With `ValidateExhaustiveMemoDependencies` we can now check exhaustive
dependencies for useMemo and useCallback within the compiler, without
relying on the separate exhaustive-deps rule. Until now we've bailed out
of any component/hook that su... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts",
"patch": "@@ -400,7 +400,15 @@ export function compileProgram(\n */\n const suppressions = findProgramSuppressions(\n pass.comments,\n- pass.opts.eslintSuppressionRules ?? DEFAULT_ESLINT_SUPPRESSIONS,\n+ /*\n... | 2025-11-24T20:12:49 |
electron/electron | 227cc02aeed98395e8879b32d4bf20a43f5ed989 | 128880988ea488d99a2752de2e5c67c70ef19b2b | chore: bump chromium to 147.0.7703.0 (main) (#49935)
* chore: bump chromium in DEPS to 147.0.7702.0
* chore: update patches (trivial only)
Co-Authored-By: Claude (claude-3-5-sonnet, Anthropic)
* chore: bump chromium in DEPS to 147.0.7703.0
* 7582039: [Extensions] Use dependency injection for ManifestHandlerRegistr... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '147.0.7699.0',\n+ '147.0.7703.0',\n 'node_version':\n 'v24.13.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2026-02-26T13:21:31 |
rust-lang/rust | 69148fd1900f0d2cbbb02a8ffed38b4ad014565b | b3b29ede805f7865f4d1e48f01219cabbb0ede4b | add mgca fixme | [
{
"path": "compiler/rustc_next_trait_solver/src/solve/assembly/mod.rs",
"patch": "@@ -1335,6 +1335,7 @@ where\n TypeFlags::HAS_PLACEHOLDER | TypeFlags::HAS_INFER | TypeFlags::HAS_ALIAS,\n ) =>\n {\n+ // FIXME(mgca): we should also check the recursion li... | 2026-04-02T10:33:14 |
vercel/next.js | 23fa2787dd72acded58a5f2c62b2c347a137f401 | 66478522a85be6402ae54801fefcaf0967ea6acf | Fix inconsistent cache life/tags propagation for cache handler hits (#91454)
When a `"use cache"` entry is newly generated during a prerender
(`prerender` or `prerender-runtime`), `collectResult` defers propagation
of cache life and tags to the outer context. This is because the entry
might later be omitted from the f... | [
{
"path": "packages/next/src/server/use-cache/use-cache-wrapper.ts",
"patch": "@@ -552,6 +552,63 @@ function propagateCacheEntryMetadata(\n }\n }\n \n+/**\n+ * Conditionally propagates cache life, tags, and root param names to the outer\n+ * context. During prerenders (`prerender` / `prerender-runtime`) a... | 2026-03-17T13:59:11 |
facebook/react | df75af4edca7f316e6bfcfcde67197e8a57d1101 | bcc3fd8b05acc6cb4947b15938dc55b4b72fe31f | [compiler] Auto-fix for non-exhaustive deps (#34471)
Records more information in DropManualMemoization so that we know the
full span of the manual dependencies array (if present). This allows
ValidateExhaustiveDeps to include a suggestion with the correct deps.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [S... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts",
"patch": "@@ -817,6 +817,11 @@ export type StartMemoize = {\n * (e.g. useMemo without a second arg)\n */\n deps: Array<ManualMemoDependency> | null;\n+ /**\n+ * The source location of the dependencies argument. Used for\n+ ... | 2025-11-21T03:28:08 |
nodejs/node | 42b261bbdc968ad0049010055a70b3455a5e9ebf | 4dc0d20b1209e1835b382c7c4d025715ce627b1a | doc: fix methods being documented as properties in `process.md`
PR-URL: https://github.com/nodejs/node/pull/61765
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/process.md",
"patch": "@@ -907,7 +907,7 @@ changes:\n description: Change stability index for this feature from Experimental to Stable.\n -->\n \n-* Type: {number}\n+* Returns: {number}\n \n Gets the amount of free memory that is still available to the process\n (in bytes).\n@@ -1081,... | 2026-02-10T22:05:56 |
golang/go | a92edd97bfb9b383acb934fa0564bcad948bbb20 | 5978090f9d4c45b63c2c749174e04594ca39b064 | cmd/compile: simplify the implementation of LoweredZeroLoop on loong64
Removes 6484 instructions from the go binary on loong64.
before after delta
asm 561517 561225 -292
cgo 480929 480493 -436
compile 2887121 2886277 -844
cover 530429 530125 -304
fix ... | [
{
"path": "src/cmd/compile/internal/loong64/ssa.go",
"patch": "@@ -576,7 +576,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t}\n \tcase ssa.OpLOONG64LoweredZeroLoop:\n \t\tptrReg := v.Args[0].Reg()\n-\t\tcountReg := v.RegTmp()\n+\t\tendReg := v.RegTmp()\n \t\tflagReg := int16(loong64.REGTMP)\n... | 2026-03-11T02:11:35 |
electron/electron | 128880988ea488d99a2752de2e5c67c70ef19b2b | 8d05285a1f39c759985b17c89a449e4a6b3960df | test: correct typo in node-spec.ts comment (#49141)
fix: correct typo in node-spec.ts comment | [
{
"path": "spec/node-spec.ts",
"patch": "@@ -28,7 +28,7 @@ describe('node feature', () => {\n expect(msg).to.equal('message');\n });\n \n- it('Has its module searth paths restricted', async () => {\n+ it('Has its module search paths restricted', async () => {\n const child = ... | 2026-02-26T07:03:06 |
rust-lang/rust | 3d55f38a7f40c71b07283efc204fa8c658d2201b | 80ad55752e5ae6c2d1bc143b819eb8d1c00167d1 | fix compilation of time/hermit.rs
https://github.com/rust-lang/rust/pull/154518 has broken compiling std for Hermit by unwrapping an `i32`.
This commit converts the `i32` to an `io::Result` before unwrapping. | [
{
"path": "library/std/src/sys/time/hermit.rs",
"patch": "@@ -1,12 +1,13 @@\n use hermit_abi::{self, CLOCK_MONOTONIC, CLOCK_REALTIME};\n \n use crate::io;\n+use crate::sys::cvt;\n use crate::sys::pal::time::Timespec;\n use crate::time::Duration;\n \n fn clock_gettime(clock: hermit_abi::clockid_t) -> Timespe... | 2026-04-02T08:37:15 |
vercel/next.js | 66478522a85be6402ae54801fefcaf0967ea6acf | a060fbf9f7ba603bb32ab9cf9da48bfa9d3739d2 | Improve RSC error messages (#90702)
Improve the RSC error messages to be more comprehensive.
x-ref:
https://github.com/vercel/next.js/pull/89688#discussion_r2865847895
---------
Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com> | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -328,17 +328,17 @@ fn report_error(app_dir: &Option<PathBuf>, filepath: &str, error_kind: RSCErrorK\n .unwrap_or_default();\n \n let msg = if !is_app_dir {\n- format!(... | 2026-03-17T13:37:26 |
facebook/react | bcc3fd8b05acc6cb4947b15938dc55b4b72fe31f | 50e7ec8a694072fd6fcd52182df8a75211bf084d | [compiler] Implement exhaustive dependency checking for manual memoization (#34394)
The compiler currently drops manual memoization and rewrites it using
its own inference. If the existing manual memo dependencies has missing
or extra dependencies, compilation can change behavior by running the
computation more often ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -304,6 +304,30 @@ export class CompilerError extends Error {\n disabledDetails: Array<CompilerErrorDetail | CompilerDiagnostic> = [];\n printedMessage: string | null = null;\n \n+ static simpleInvariant(\n+ ... | 2025-11-21T03:26:26 |
golang/go | 5978090f9d4c45b63c2c749174e04594ca39b064 | adf9c27874d8b59b9632a23d9148db4faef36d98 | cmd/internal/obj/loong64: correcting spelling errors in the comments
Change-Id: I8773f3d00a529d11009c4682a191b3b75b15f396
Reviewed-on: https://go-review.googlesource.com/c/go/+/754060
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Carlos Amedee <carlos@golang.org... | [
{
"path": "src/cmd/internal/obj/loong64/instOp.go",
"patch": "@@ -327,47 +327,47 @@ var oprrr = map[obj.As]uint32{\n \tAVMADDWEVWH: 0x0e159 << 15, // vmaddwev.w.h\n \tAVMADDWEVVW: 0x0e15a << 15, // vmaddwev.d.w\n \tAVMADDWEVQV: 0x0e15b << 15, // vmaddwev.q.d\n-\tAVMADDWODHB: 0x... | 2026-03-11T09:24:15 |
nodejs/node | 4fca20c10b1a1a503e8bba09f4963fc8ed347a12 | 9f6f3c1f0e39920896dfceca9c82101af22f5c2f | doc: fix dropdown menu being obscured at <600px due to stacking context
PR-URL: https://github.com/nodejs/node/pull/61735
Fixes: https://github.com/nodejs/node/issues/59282
Reviewed-By: Aviv Keller <me@aviv.sh>
Reviewed-By: Claudio Wunder <cwunder@gnome.org>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api_assets/style.css",
"patch": "@@ -240,6 +240,7 @@ li.picker-header a span {\n max-width: 75vw;\n max-height: min(600px, 60vh);\n overflow-y: auto;\n+ z-index: 10;\n }\n \n .picker > ul, .picker > ol {",
"additions": 1,
"deletions": 0,
"language": "CSS"
}
] | 2026-02-10T11:08:47 |
electron/electron | 8d05285a1f39c759985b17c89a449e4a6b3960df | 6a2571ee3d3692e727aaf766df2cd7183f6da90c | fix: potential `std::stoi` crash in Windows Toasts (#49947)
fix: potential std::stoi crash in Windows Toasts | [
{
"path": "shell/browser/notifications/win/windows_toast_activator.cc",
"patch": "@@ -371,7 +371,7 @@ void HandleToastActivation(const std::wstring& invoked_args,\n \n int action_index = -1;\n if (!action_index_str.empty()) {\n- action_index = std::stoi(action_index_str);\n+ base::StringToInt(base... | 2026-02-25T22:14:45 |
vercel/next.js | a060fbf9f7ba603bb32ab9cf9da48bfa9d3739d2 | 8283b1260ba3eb187baf20727e739fbd8ba7bbf6 | Deflake per-page dynamic stale time test (#91492)
## Summary
- Fixes flaky test "per-page value overrides global staleTimes.dynamic
regardless of direction" introduced by #91437
- The test was flaky because `browser.back()` restored accordion state
from BFCache, causing previously-opened `LinkAccordion` links to be
i... | [
{
"path": ".agents/skills/router-act/SKILL.md",
"patch": "@@ -0,0 +1,274 @@\n+---\n+name: router-act\n+description: >\n+ How to write end-to-end tests using createRouterAct and LinkAccordion.\n+ Use when writing or modifying tests that need to control the timing of\n+ internal Next.js requests (like pref... | 2026-03-17T13:14:19 |
golang/go | cd2fa3b48dc059203aa724474e19096928b3f71f | a6949e942c4287fcccf3264b8df6190c88609cb7 | runtime: fix memclrNoHeapPointersPreemptible
memclrNoHeapPointersChunked was originally written for
clearing fresh allocations. It converts to uintptr early and thus
doesn't handle the case where the pointer points to the stack.
At the preemption point, the buffer being pointed to might be
on the stack and copied to a... | [
{
"path": "src/runtime/malloc.go",
"patch": "@@ -2184,22 +2184,27 @@ func reusableSize(size uintptr) bool {\n // Use this with care; if the data being cleared is tagged to contain\n // pointers, this allows the GC to run before it is all cleared.\n func memclrNoHeapPointersChunked(size uintptr, x unsafe.Poi... | 2026-03-17T18:13:16 |
facebook/react | 4cf770d7e1a52c66401b42c7d135f40b7dc23981 | 7d67591041e3ac47eac3bab6cff209071d4c0c6c | [compiler][poc] Quick experiment with SSR-optimization pass (#35102)
Just a quick poc:
* Inline useState when the initializer is known to not be a function.
The heuristic could be improved but will handle a large number of cases
already.
* Prune effects
* Prune useRef if the ref is unused, by pruning 'ref' props on pr... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -105,6 +105,7 @@ import {inferMutationAliasingRanges} from '../Inference/InferMutationAliasingRan\n import {validateNoDerivedComputationsInEffects} from '../Validation/ValidateNoDerivedComputationsInEffects';\... | 2025-11-20T23:02:38 |
Subsets and Splits
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.