repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
facebook/react | 9baecbf02b2b53746f259b77293288aa9d8968f8 | 0422a00e3e5e6823ae763bef37911ee50709c324 | [Fizz] Avoid hanging when suspending after aborting while rendering (#34192)
This fixes an edge case where you abort the render while rendering a
component that ends up Suspending. It technically only applied if you
were deep enough to be inside `renderNode` and was not susceptible to
hanging if the abort + suspending... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -94,9 +94,7 @@ describe('ReactDOMFizzServer', () => {\n ReactDOM = require('react-dom');\n ReactDOMClient = require('react-dom/client');\n ReactDOMFizzServer = require('react-dom/server');\n- if (__EXPERIMEN... | 2025-08-12T23:46:56 |
rust-lang/rust | 0740609ea38a7274911952fa90c28b89c71f6611 | fda6d37bb88ee12fd50fa54d15859f1f91b74f55 | Point at binop lhs and rhs when expression is multiline
```
error[E0277]: cannot add `()` to `u32`
--> $DIR/multiline-span-simple.rs:13:18
|
LL | foo(1 as u32 +
| -------- ^ no implementation for `u32 + ()`
LL |
LL | / bar(x,
LL | |
LL | | y),
| |______________-
``` | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/suggestions.rs",
"patch": "@@ -2916,12 +2916,21 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n | ObligationCauseCode::CheckAssociatedTypeBounds { .. }\n | ObligationCauseCode::LetElse\n | ObligationCauseCod... | 2026-03-29T21:07:47 |
golang/go | f8f87129646ca3821b3926e649c856a960d6bc9e | 491da55fdba438284656c370f6d2f3e0b0971a83 | crypto/tls: fix broken link in KeyLogWriter documentation
The Mozilla developer documentation link for the NSS key log format
has been broken since early 2022. Update the documentation to point
to the IETF TLS working group draft which is currently in the RFC
publication queue.
Fixes #63331
Co-Authored-By: Claude Op... | [
{
"path": "src/crypto/tls/common.go",
"patch": "@@ -825,7 +825,7 @@ type Config struct {\n \t// KeyLogWriter optionally specifies a destination for TLS master secrets\n \t// in NSS key log format that can be used to allow external programs\n \t// such as Wireshark to decrypt TLS connections.\n-\t// See http... | 2026-02-03T15:10:47 |
electron/electron | 38be633aa864c3df8c6f77f425492676cc263773 | 9d01e6b3e30c6c5fe4bafcbce1329acd5b39ae10 | fix(reland): allow disabling all `NSMenuItems` (#48795)
* fix: allow disabling all `NSMenuItems` (#48598)
fix: allow disabling all NSMenuItems
* fix: add guard for type
---------
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> | [
{
"path": "lib/browser/api/menu.ts",
"patch": "@@ -25,11 +25,30 @@ Menu.prototype._isCommandIdChecked = function (id) {\n };\n \n Menu.prototype._isCommandIdEnabled = function (id) {\n- return this.commandsMap[id] ? this.commandsMap[id].enabled : false;\n+ const item = this.commandsMap[id];\n+ if (!item)... | 2025-11-07T03:02:04 |
facebook/react | 0422a00e3e5e6823ae763bef37911ee50709c324 | 47fd2f5e1487fb48c561a6f8f30c534d8f8c7747 | [DevTools] Fix missing key warning (#34186) | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementView.js",
"patch": "@@ -174,9 +174,8 @@ export default function InspectedElementView({\n {showStack ? <StackTraceView stack={stack} /> : null}\n {showOwnersList &&\n owners?.map(owne... | 2025-08-12T17:58:19 |
nodejs/node | 4e1f39b678b37017ac9baa0971e3aeecd3b67b51 | 25947d6504c0e01d8897be5b78292e3e01d16fc9 | doc: add @avivkeller to collaborators
Fixes: https://github.com/nodejs/node/issues/60937
PR-URL: https://github.com/nodejs/node/pull/61115
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> | [
{
"path": "README.md",
"patch": "@@ -287,6 +287,8 @@ For information about the governance of the Node.js project, see\n **Yagiz Nizipli** <<yagiz@nizipli.com>> (he/him) - [Support me](https://github.com/sponsors/anonrig)\n * [atlowChemi](https://github.com/atlowChemi) -\n **Chemi Atlow** <<chemi@atlow.c... | 2025-12-18T16:00:35 |
vercel/next.js | b2f193b0964212c3ef0213efb74fe40dfd5be43b | affb856d39618e75ce25ac4c16425002df27de6c | test: Cleanup and refactoring (#90454)
- `expect(hasImageMatchingUrl(browser, "...")).toBe(true)` has very bad error messages if the assertion fails
- there was a `(process.env.TURBOPACK_DEV ? describe.skip : describe)('production mode',` around a dev test | [
{
"path": "test/integration/next-image-legacy/base-path/test/index.test.ts",
"patch": "@@ -20,17 +20,15 @@ const appDir = join(__dirname, '../')\n let appPort\n let app\n \n-async function hasImageMatchingUrl(browser, url) {\n- const links = await browser.elementsByCss('img')\n- let foundMatch = false\n- ... | 2026-02-24T19:03:44 |
golang/go | 491da55fdba438284656c370f6d2f3e0b0971a83 | bd7b8a52c847afcfc15b21741ec8972275a79c34 | cmd/compile/internal/ssagen: fix typo GrtCallerSP -> GetCallerSP
Fix a typo in findIntrinsic function where "GrtCallerSP" should be
"GetCallerSP". This typo was in the condition checking for runtime
intrinsic functions that don't have definitions.
Fixes #77432
Change-Id: I8667a42456b4b2c4533dfcbca198b46793f71c89
Git... | [
{
"path": "src/cmd/compile/internal/ssagen/intrinsics.go",
"patch": "@@ -2170,7 +2170,7 @@ func findIntrinsic(sym *types.Sym) intrinsicBuilder {\n \n \tfn := sym.Name\n \tif ssa.IntrinsicsDisable {\n-\t\tif pkg == \"internal/runtime/sys\" && (fn == \"GetCallerPC\" || fn == \"GrtCallerSP\" || fn == \"GetClos... | 2026-02-06T08:48:19 |
facebook/react | 47fd2f5e1487fb48c561a6f8f30c534d8f8c7747 | 1dc3bdead16bfb6d481f29b4ec55ffcf63f5bca8 | [DevTools] Fix index (#34187)
I used the wrong indexer and tested with one entry. | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -3247,7 +3247,7 @@ export function attach(\n const debugInfo = thenable._debugInfo;\n if (debugInfo) {\n for (let j = 0; j < debugInfo.length; j++) {\n- const debugEntry = debugInfo[i];\n+ ... | 2025-08-12T17:57:35 |
electron/electron | 9d01e6b3e30c6c5fe4bafcbce1329acd5b39ae10 | 3c100c22291ec203198ac0ccd8d52d93a0db73f3 | fix: oom crash in v8 when optimizing wasm (#48791) | [
{
"path": "patches/v8/.patches",
"patch": "@@ -1 +1,2 @@\n chore_allow_customizing_microtask_policy_per_context.patch\n+turboshaft_avoid_introducing_too_many_variables.patch",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "patches/v8/turboshaft_avoid_introducing_too_... | 2025-11-06T12:58:13 |
nodejs/node | 240382451df116493185db5fe3ca2d08d23bd6c9 | 2e597ded4bf8f90146647ab666123c3cb5069e78 | doc: add gurgunday to collaborators
PR-URL: https://github.com/nodejs/node/pull/61094
Fixes: https://github.com/nodejs/node/issues/60921
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "README.md",
"patch": "@@ -337,6 +337,8 @@ For information about the governance of the Node.js project, see\n **Geoffrey Booth** <<webadmin@geoffreybooth.com>> (he/him)\n * [gireeshpunathil](https://github.com/gireeshpunathil) -\n **Gireesh Punathil** <<gpunathi@in.ibm.com>> (he/him)\n+* [gurg... | 2025-12-17T12:24:43 |
vercel/next.js | affb856d39618e75ce25ac4c16425002df27de6c | c1e485ce8aef778600e75846fc2fb3757c83a319 | Turbopack: Fix experimental server hmr for pages router (#90398)
This is cherry-picked from #90389, which also serves as a test case for
server hmr being enabled by default.
This fixes a number of issues with server hmr, most notably that pages
router updates weren’t reflected:
1. **Pages Router pages weren't cleari... | [
{
"path": "packages/next/src/server/dev/hot-reloader-turbopack.ts",
"patch": "@@ -586,26 +586,37 @@ export async function createHotReloaderTurbopack(\n join(distDir, p)\n )\n \n+ const { type: entryType } = splitEntryKey(key)\n+ // Server HMR only applies to App Router Node.js runtime endpoi... | 2026-02-24T18:27:51 |
facebook/react | d587434c350a9ba317285ce7b535add47ab3c205 | ca292f7a57e8c5950cda51f1aa00509dbb07dbf1 | [DevTools] Pick up suspended by info from use() (#34148)
Similar to #34144 but for `use()`.
`use()` dependencies don't get added to the `fiber._debugInfo` set
because that just models the things blocking the children, and not the
Fiber component itself. This picks up any debug info from the thenable
state that we sta... | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -791,7 +791,7 @@ describe('InspectedElement', () => {\n \"react_lazy\": {\n \"_payload\": Dehydrated {\n \"preview_short\": {…},\n- \"preview_long\": {_result: () => {}, _... | 2025-08-11T16:10:05 |
golang/go | 5f51b092846ae43d03092d866449d9933a8bf42b | b152d9a11808c278d2ccb193d7c82938078007ce | cmd/link: ignore GCC generated .wm4/.wm8 symbols with no type
Fixes #77436
Change-Id: I37d852a89678c929156c4765e774c819eb515e6f
Reviewed-on: https://go-review.googlesource.com/c/go/+/742220
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservice... | [
{
"path": "src/cmd/go/testdata/script/cgo_g3.txt",
"patch": "@@ -0,0 +1,18 @@\n+[!cgo] skip\n+\n+# Test that -g3 works with cgo.\n+env CGO_CFLAGS=-g3\n+go build\n+\n+-- go.mod --\n+module cgog3\n+\n+go 1.25\n+-- m.go --\n+package main\n+\n+import \"os/user\"\n+\n+func main() {\n+\tuser.Current()\n+}",
"... | 2026-02-05T04:58:51 |
electron/electron | f6ffb55c724dbe8acd904a786cf777c78a90f8c3 | 27bea2576e8a39a9ff1c104c43ab4e982c2e5671 | refactor: remove `electron::WebRequestAPI` interface (#48792)
* refactor: remove electron::WebRequestAPI interface
Remove the |electron::WebRequestAPI| interface class.
Use handles to the concrete class |electron::api::WebRequest| instead.
Prerequisite for https://github.com/electron/electron/pull/48762.
Two classe... | [
{
"path": "filenames.gni",
"patch": "@@ -456,7 +456,6 @@ filenames = {\n \"shell/browser/net/system_network_context_manager.h\",\n \"shell/browser/net/url_loader_network_observer.cc\",\n \"shell/browser/net/url_loader_network_observer.h\",\n- \"shell/browser/net/web_request_api_interface.h\",... | 2025-11-06T08:05:50 |
nodejs/node | 05f8772096f974190b11eabce0ea657bc5c8c1b1 | 6322071efea46c8f8caf02c8ed504cee194cd661 | tools: fix update-nghttp2 signature verification
Detached signatures must be passed to `gpgv` as a filename before
the datafile (which can be stdin but the detached signature file
cannot be stdin and cannot be piped in).
PR-URL: https://github.com/nodejs/node/pull/61035
Refs: https://github.com/nodejs/node/pull/60113... | [
{
"path": "tools/dep_updaters/update-nghttp2.sh",
"patch": "@@ -50,12 +50,13 @@ echo \"Fetching nghttp2 source archive\"\n curl -sL -o \"$NGHTTP2_TARBALL\" \"https://github.com/nghttp2/nghttp2/releases/download/$NGHTTP2_REF/$NGHTTP2_TARBALL\"\n \n echo \"Verifying PGP signature\"\n-curl -sL \"https://github... | 2025-12-14T15:01:11 |
vercel/next.js | c1e485ce8aef778600e75846fc2fb3757c83a319 | 55ffc5626760a55793078cbacfe55b1e90870c58 | [Instant] Validate blocking head (#89539)
Previously, instant validation would always use the dynamic stage for
the head, which means that we wouldn't catch errors related to a
blocking `generateViewport`. This is fixed here. We treat head as a
separate segment and use the appropriate stage (Static or Runtime)
dependi... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -1069,5 +1069,6 @@\n \"1068\": \"Expected workStore to be initialized\",\n \"1069\": \"Invariant: cache entry \\\"%s\\\" not found in dir \\\"%s\\\"\",\n \"1070\": \"image of size %s could not be tracked by lru cache\",\n- \"1071\": \"toNodeDebugCha... | 2026-02-24T18:24:57 |
facebook/react | 62a634b9722aa77d7ddb1fe8017db7d3a0925389 | 53d07944df70781b929f733e2059df43ca82edd3 | [DebugTools] Use thenables from the _debugThenableState if available (#34161)
In the case where a Promise is not cached, then the thenable state might
contain an older version. This version is the one that was actually
observed by the committed render, so that's the version we'll want to
inspect.
We used to not store... | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -147,6 +147,8 @@ function getPrimitiveStackCache(): Map<string, Array<any>> {\n let currentFiber: null | Fiber = null;\n let currentHook: null | Hook = null;\n let currentContextDependency: null | ContextDependency<mixed> = null;\n+... | 2025-08-11T15:46:27 |
golang/go | b152d9a11808c278d2ccb193d7c82938078007ce | fc9f22134a870528a7a6d110fa6172431f73cccf | cmd/link: correct error message in loadelf.Load
The message said we were ignoring the symbols, but we aren't.
We are treating them as an error.
For #77436
Change-Id: I5492d81717c539b09f6956b591178f1f3a42893d
Reviewed-on: https://go-review.googlesource.com/c/go/+/742060
Reviewed-by: Michael Knyszek <mknyszek@google.c... | [
{
"path": "src/cmd/link/internal/loadelf/ldelf.go",
"patch": "@@ -627,7 +627,7 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\treturn errorf(\"%v: sym#%d (%q): ignoring symbol in section %d (%q) (type %d)\", elfsym.sym, i, elfsym.nam... | 2026-02-04T20:42:44 |
electron/electron | 27bea2576e8a39a9ff1c104c43ab4e982c2e5671 | c4609924072547a94d60d297057c5b3767d4e82d | fix: revert allow disabling all NSMenuItems, fix menu crash (#48794)
Revert "fix: allow disabling all `NSMenuItems` (#48598)"
This reverts commit 0cb4fdd0f2ae28d7bf3cd753cd2b641947e637aa. | [
{
"path": "lib/browser/api/menu.ts",
"patch": "@@ -25,30 +25,11 @@ Menu.prototype._isCommandIdChecked = function (id) {\n };\n \n Menu.prototype._isCommandIdEnabled = function (id) {\n- const item = this.commandsMap[id];\n- if (!item) return false;\n-\n- const focusedWindow = BaseWindow.getFocusedWindow(... | 2025-11-05T23:49:43 |
nodejs/node | 4f24aff94ad9160bceaf9dcc9cf5235a65f01029 | 28b11396feb9ae576d492ebee1b5840b9b6689ea | module: preserve URL in the parent created by createRequire()
Previously, createRequire() does not preserve the URL it gets
passed in the mock parent module created, which can be
observable if it's used together with module.registerHooks().
This patch adds preservation of the URL if createRequire()
is invoked with one... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -135,7 +135,7 @@ const { BuiltinModule } = require('internal/bootstrap/realm');\n const {\n maybeCacheSourceMap,\n } = require('internal/source_map/source_map_cache');\n-const { pathToFileURL, fileURLToPath, isURL } = require('internal/url');\n+... | 2025-12-13T07:36:20 |
vercel/next.js | da0cbcce7694fbaf09ce0312c6f674887c2ade6f | dcf11d111bac0639c1f41f05dafe321a4fa86f77 | Add not-found.js / notFound() links to Status Codes section (#88332)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
##... | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/not-found.mdx",
"patch": "@@ -10,7 +10,7 @@ Next.js provides two conventions to handle not found cases:\n \n ## `not-found.js`\n \n-The **not-found** file is used to render UI when the [`notFound`](/docs/app/api-reference/functions/not-found) funct... | 2026-02-24T17:08:27 |
facebook/react | 53d07944df70781b929f733e2059df43ca82edd3 | 34ce3acafdcfb6830250043b64d8af2450c730bc | [Fiber] Assign implicit debug info to used thenables (#34146)
Similar to #34137 but for Promises.
This lets us pick up the debug info from a raw Promise as a child which
is not covered by `_debugThenables`. Currently ChildFiber doesn't stash
its thenables so we can't pick them up from devtools after the fact
without ... | [
{
"path": "packages/react-reconciler/src/ReactFiberThenable.js",
"patch": "@@ -12,6 +12,7 @@ import type {\n PendingThenable,\n FulfilledThenable,\n RejectedThenable,\n+ ReactIOInfo,\n } from 'shared/ReactTypes';\n \n import type {LazyComponent as LazyComponentType} from 'react/src/ReactLazy';\n@@ -2... | 2025-08-11T15:44:05 |
golang/go | fc9f22134a870528a7a6d110fa6172431f73cccf | a72a4295edf694395ba9d3b5e7c5393ebf6a415d | net/http: remove hasPort and simplify logic
Fixes #76651
Change-Id: I306e127375095bc0caedb01ac458107cfec5f085
Reviewed-on: https://go-review.googlesource.com/c/go/+/725740
Auto-Submit: Sean Liao <sean@liao.dev>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Mich... | [
{
"path": "src/net/http/http.go",
"patch": "@@ -106,15 +106,15 @@ type contextKey struct {\n \n func (k *contextKey) String() string { return \"net/http context value \" + k.name }\n \n-// Given a string of the form \"host\", \"host:port\", or \"[ipv6::address]:port\",\n-// return true if the string include... | 2025-12-02T04:06:09 |
electron/electron | 513a6ee80a5c65106d87170c66505782f29e9df6 | 040b0e795b7ec1f5ef6b64666918d1f520ef2914 | fix: draw smoothing round rect corner (#48769) | [
{
"path": "shell/renderer/electron_smooth_round_rect.cc",
"patch": "@@ -302,8 +302,8 @@ SkPath DrawSmoothRoundRect(float x,\n bottom_right_smoothness, SkPoint::Make(x + width, y + height), 2);\n \n // Bottom left corner\n- DrawCorner(path, bottom_left_radius, left_bottom_smoothness,\n- ... | 2025-11-05T09:33:05 |
nodejs/node | 14f02fc2f7c1ea7989bdfeddfadc14921edd4e25 | 4db307a4b0fcd804c790caa55573c2bb7b4a8a02 | lib,src,test: fix tests without SQLite
PR-URL: https://github.com/nodejs/node/pull/60906
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": ".github/workflows/test-shared.yml",
"patch": "@@ -192,7 +192,7 @@ jobs:\n --arg ccache '(import <nixpkgs> {}).sccache' \\\n --arg devTools '[]' \\\n --arg benchmarkTools '[]' \\\n- ${{ endsWith(matrix.system, '-darwin') && '--arg extraConfigFlags ''[... | 2025-12-11T22:04:24 |
facebook/react | 34ce3acafdcfb6830250043b64d8af2450c730bc | 6445b3154ee60c2b2aa15d8be437a3f07feeb8f9 | [DevTools] Pick up suspended by info from React.lazy in type position (#34144)
Normally, we pick up debug info from instrumented Promise or React.Lazy
while we're reconciling in ReactChildFiber when they appear in the child
position. We add those to the `_debugInfo` of the Fiber.
However, we don't do that for for Laz... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -104,6 +104,7 @@ import {\n MEMO_NUMBER,\n MEMO_SYMBOL_STRING,\n SERVER_CONTEXT_SYMBOL_STRING,\n+ LAZY_SYMBOL_STRING,\n } from '../shared/ReactSymbols';\n import {enableStyleXFeatures} from 'react-devtools-feature-... | 2025-08-11T15:42:59 |
vercel/next.js | c61d96e0bc25aaddc203499705f1965b7146d6d7 | 48ab605baf3d3adc9d5e22bcc7119588f771d02c | next-image: fix dpl handling with unicode (#90420)
With skew protection enabled, image srcs were double-encoded:
1. The imported value might be `'/_next/static/media/äöüščří.55df2443.png?dpl=1234'`
2. Then `new URL(src, 'http://n')` would normalize the URL, leading to `/_next/static/media/%C3%A4%C3%B6%C3%BC%C5%A1%C4%... | [
{
"path": "packages/next/src/client/legacy/image.tsx",
"patch": "@@ -129,14 +129,19 @@ function defaultLoader({\n \n // Extract dpl parameter early so validation uses the clean URL\n let deploymentId = getDeploymentId()\n- if (src.startsWith('/')) {\n- const srcUrl = new URL(src, 'http://n')\n- c... | 2026-02-24T16:28:51 |
golang/go | a72a4295edf694395ba9d3b5e7c5393ebf6a415d | 38ed6147485232f9562e87970c56f4491c082998 | simd/archsimd: remove BUG note about type parameter
After CL 742320, using vector type as type parameter now works.
Updates #77444
Change-Id: I4f8cd2c9c18e04efbc884cb57dfcf9f2b48306d8
Reviewed-on: https://go-review.googlesource.com/c/go/+/742400
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Cherry ... | [
{
"path": "src/simd/archsimd/doc.go",
"patch": "@@ -58,6 +58,4 @@\n // allocate it in the heap, or put it in an aggregate type.\n package archsimd\n \n-// BUG(cherry): Using a vector type as a type parameter may not work.\n-\n // BUG(cherry): Using reflect Call to call a vector function/method may not w... | 2026-02-05T16:45:22 |
electron/electron | 5bd45a6a28fffbe70c6752ba5142a13e9f817f77 | d7727c9ec2b247785248fc8f60633f75c97cfa27 | feat: add SF Symbol support to NativeImage::CreateFromNamedImage (#48203)
* feat: add SF Symbol support to NativeImage::CreateFromNamedImage
* use obj-c name in NSImage constructor
* add test for named symbol image
* apply suggested simplification
* fix: support NX cocoa prefix | [
{
"path": "docs/api/native-image.md",
"patch": "@@ -202,8 +202,7 @@ Creates a new `NativeImage` instance from `dataUrl`, a base 64 encoded [Data URL\n Returns `NativeImage`\n \n Creates a new `NativeImage` instance from the `NSImage` that maps to the\n-given image name. See Apple's [`NSImageName`](https://d... | 2025-11-04T10:15:34 |
nodejs/node | 4db307a4b0fcd804c790caa55573c2bb7b4a8a02 | a00d95c73dcac8fc2b316238fb978a7d5aa650c6 | fs: detect dot files when using globstar
Using globstar in glob pattern should not prevent dot (hidden) files
from being matched.
PR-URL: https://github.com/nodejs/node/pull/61012
Fixes: https://github.com/nodejs/node/issues/56321
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Marco Ippolit... | [
{
"path": "lib/internal/fs/glob.js",
"patch": "@@ -442,7 +442,18 @@ class Glob {\n const fromSymlink = pattern.symlinks.has(index);\n \n if (current === lazyMinimatch().GLOBSTAR) {\n- if (entry.name[0] === '.' || (this.#exclude && this.#exclude(this.#withFileTypes ? entry : entry.na... | 2025-12-11T21:12:03 |
facebook/react | 6445b3154ee60c2b2aa15d8be437a3f07feeb8f9 | ab5238d5a40a4a4a68b351d345ab26f8ec5785e2 | [Fiber] Add additional debugInfo to React.lazy constructors in DEV (#34137)
This creates a debug info object for the React.lazy call when it's
called on the client. We have some additional information we can track
for these since they're created by React earlier.
We can track the stack trace where `React.lazy` was ca... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -2822,7 +2822,7 @@ describe('ReactFlight', () => {\n expect(getDebugInfo(promise)).toEqual(\n __DEV__\n ? [\n- {time: 20},\n+ {time: gate(flags => flags.enableAsyncDebugInfo) ?... | 2025-08-11T15:42:23 |
vercel/next.js | 48ab605baf3d3adc9d5e22bcc7119588f771d02c | e160f03f96feff08bf3bf8e4911ce2af9464757d | tests: reenable escheck-output (#90423)
Various bugs I reported to https://github.com/yowainwright/es-check/ are fixed now, and there aren't any false negatives anymore. | [
{
"path": "test/production/escheck-output/app/foo/page.js",
"patch": "@@ -0,0 +1,5 @@\n+'use client'\n+\n+export default function Page() {\n+ return <button>Client</button>\n+}",
"additions": 5,
"deletions": 0,
"language": "JavaScript"
},
{
"path": "test/production/escheck-output/app/la... | 2026-02-24T16:23:35 |
golang/go | 38ed6147485232f9562e87970c56f4491c082998 | ae842f71461ad178eff7283bc36e150fe284b9aa | cmd/compile: fix SIMD type parameter instantiation
When a SIMD type is used to instantiate a type parameter, the SIMD's
underlying type is its shape. This shape type must be marked as a SIMD
type, otherwise, the backend will confuse and does not know how to put
this SIMD type to proper registers.
Fixing this by marki... | [
{
"path": "src/cmd/compile/internal/types/type.go",
"patch": "@@ -1683,6 +1683,9 @@ func (t *Type) SetUnderlying(underlying *Type) {\n \tif underlying.HasShape() {\n \t\tt.SetHasShape(true)\n \t}\n+\tif underlying.isSIMD {\n+\t\tsimdify(t, underlying.isSIMDTag)\n+\t}\n \n \t// spec: \"The declared type does... | 2026-02-05T14:16:55 |
electron/electron | a88de8bf1cb3433be67b8a97ba133f3c74ab53c2 | 4d6db515bdd3eae06fa7e3a4d929c8e7f319ad1b | fix: use app name as a part of tray id on Linux (#48675)
* fix: use browser name as tray id
* fix: remove unnecessary .c_str()
* fix: use string_view instead of string&
* fix: move app_name_ to the bottom of private: section
https://google.github.io/styleguide/cppguide.html#Declaration_Order
* fix: use base's str... | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -144,3 +144,4 @@ chore_disable_protocol_handler_dcheck.patch\n fix_check_for_file_existence_before_setting_mtime.patch\n revert_cleanup_remove_feature_windelayspellcheckserviceinit.patch\n fix_release_mouse_buttons_on_focus_loss_on_wayland.patch\n+fix_linu... | 2025-11-03T22:53:53 |
rust-lang/rust | dae0c011084c7877b47dda1e7514fa7685c94e9a | fda6d37bb88ee12fd50fa54d15859f1f91b74f55 | Tweak wording of E0275 WF errors
Modify the main error message to read better:
```
error[E0275]: overflow evaluating whether `&'a mut Bar` is well-formed
``` | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/overflow.rs",
"patch": "@@ -99,6 +99,15 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n \"overflow assigning `{a}` to `{b}`\",\n )\n }\n+ ty::PredicateK... | 2026-03-29T18:25:55 |
golang/go | ae842f71461ad178eff7283bc36e150fe284b9aa | 824befbca0e862571dc1a449b1c8df1218e6c4b6 | log/slog: correct method names in MultiHandler docs
Fixes #77428
Change-Id: I02d76ac9220fb2e0df404e4a446953bc0b56475f
Reviewed-on: https://go-review.googlesource.com/c/go/+/741560
Auto-Submit: Rhys Hiltner <rhys.hiltner@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.co... | [
{
"path": "src/log/slog/multi_handler.go",
"patch": "@@ -17,8 +17,8 @@ func NewMultiHandler(handlers ...Handler) *MultiHandler {\n }\n \n // MultiHandler is a [Handler] that invokes all the given Handlers.\n-// Its Enable method reports whether any of the handlers' Enabled methods return true.\n-// Its Hand... | 2026-02-03T17:23:33 |
electron/electron | 4d6db515bdd3eae06fa7e3a4d929c8e7f319ad1b | 20fc76cb4379e76efbb8d649c4b98d57baaf2bb1 | fix: release mouse buttons on focus loss on Wayland (#48752) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -143,3 +143,4 @@ expose_referrerscriptinfo_hostdefinedoptionsindex.patch\n chore_disable_protocol_handler_dcheck.patch\n fix_check_for_file_existence_before_setting_mtime.patch\n revert_cleanup_remove_feature_windelayspellcheckserviceinit.patch\n+fix_relea... | 2025-11-03T13:37:42 |
golang/go | 824befbca0e862571dc1a449b1c8df1218e6c4b6 | b8be5de81ee78f51fbd600498093b542e75a710e | bufio: fix doc link to Reset method
On https://pkg.go.dev/bufio#Reader, the reference to the Reset
method is rendered as [Reset]. Fix it by referring to the method
via its type.
Change-Id: I4256ca80ebef7b850e6a97b96503dd7178cb361b
Reviewed-on: https://go-review.googlesource.com/c/go/+/736320
LUCI-TryBot-Result: Go LU... | [
{
"path": "src/bufio/bufio.go",
"patch": "@@ -30,7 +30,7 @@ var (\n \n // Reader implements buffering for an io.Reader object.\n // A new Reader is created by calling [NewReader] or [NewReaderSize];\n-// alternatively the zero value of a Reader may be used after calling [Reset]\n+// alternatively the zero v... | 2026-01-14T11:54:22 |
facebook/react | ab5238d5a40a4a4a68b351d345ab26f8ec5785e2 | 7a934a16b861366282e297ee61611f9bd8c524cb | [DevTools] Show name prop of Suspense / Activity in the Components Tree view (#34135)
The name prop will be used in the Suspense tab to help identity a
boundary. Activity will also allow names. A custom component can be
identified by the name of the component but built-ins doesn't have that.
This PR adds it to the Co... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -2369,13 +2369,23 @@ export function attach(\n const keyString = key === null ? null : String(key);\n const keyStringID = getStringID(keyString);\n \n+ const nameProp =\n+ fiber.tag === SuspenseCom... | 2025-08-11T15:41:46 |
electron/electron | 20fc76cb4379e76efbb8d649c4b98d57baaf2bb1 | 2a94d414f76c8d2025197996aca026f4c87e9f27 | docs: explain how to handle incoming drag and drop (#48718)
Fixes https://github.com/electron/electron/issues/48667 | [
{
"path": "docs/tutorial/native-file-drag-drop.md",
"patch": "@@ -110,4 +110,10 @@ the item is a Markdown file located in the root of the project:\n \n \n \n+## Dragging files into your app\n+\n+You can use the standard\n+[Drag and Drop web API](https://developer... | 2025-11-03T13:37:01 |
rust-lang/rust | 3ce8cfbc58a7cbd0cc01e4c4cc63d269fe8e59d4 | 584d32e3ee7a2051c9ec1338d259ed8ef16380ca | emit error on `#[track_caller]` with `extern fn`
such a function implicitly uses `extern "C" | [
{
"path": "compiler/rustc_ast_passes/src/ast_validation.rs",
"patch": "@@ -1679,19 +1679,28 @@ impl<'a> Visitor<'a> for AstValidator<'a> {\n self.check_item_safety(span, safety);\n }\n \n- if let FnKind::Fn(ctxt, _, fun) = fk\n- && let Extern::Explicit(str_lit, extern_a... | 2026-03-29T16:14:53 |
golang/go | b8be5de81ee78f51fbd600498093b542e75a710e | d4febb45179fa99ee1d5783bcb693ed7ba14115c | runtime: clarify g object vs stack memory lifetime in HACKING.md
The documentation states that g objects are "never freed" but does not
clarify that goroutine stack memory is managed separately. This can be
confusing as it might imply that all goroutine memory (including stacks)
is retained indefinitely.
Add a paragr... | [
{
"path": "src/runtime/HACKING.md",
"patch": "@@ -60,6 +60,14 @@ Every non-dead G has a *user stack* associated with it, which is what\n user Go code executes on. User stacks start small (e.g., 2K) and grow\n or shrink dynamically.\n \n+When a goroutine exits, its stack memory may be freed immediately or\n+... | 2026-02-03T15:07:55 |
facebook/react | 3958d5d84b3d3e6ae5c1caef9c8cf0dc58e862e6 | 738aebdbacff9becd469b888209a08436f87c511 | [Flight] Copy the name field of a serialized function debug value (#34085)
This ensures that if the name is set manually after the declaration,
then we get that name when we log the value. For example Node.js
`Response` is declared as `_Response` and then later assigned a new
name.
We should probably really serialize... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -1969,6 +1969,44 @@ function createModel(response: Response, model: any): any {\n return model;\n }\n \n+const mightHaveStaticConstructor = /\\bclass\\b.*\\bstatic\\b/;\n+\n+function getInferredFunctionApproximate(code: string): () =... | 2025-08-07T14:55:01 |
electron/electron | 2a94d414f76c8d2025197996aca026f4c87e9f27 | 4abb1f2aa3636f085d8209d8b0468b29c1cc1279 | docs: clarify BrowserWindow and App API support status on Wayland (#48740)
* docs: clarify BrowserWindow API support in Wayland
* typo fix
* updated docs
* wrapping | [
{
"path": "docs/api/app.md",
"patch": "@@ -565,8 +565,9 @@ and subscribing to the `ready` event if the app is not ready yet.\n * `steal` boolean _macOS_ - Make the receiver the active app even if another app is\n currently active.\n \n-On Linux, focuses on the first visible window. On macOS, makes the a... | 2025-10-31T21:35:08 |
nodejs/node | 060deae99b031a7d47cf4e6edc82eaf1a0465cfc | 67527c427efd608b3062f758bfc17d811ef5ad91 | util: fix parseArgs skipping positional arg with --eval and --print
PR-URL: https://github.com/nodejs/node/pull/60814
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Ilyas Shabi <ilyasshabi94@gmail.com> | [
{
"path": "lib/internal/util/parse_args/parse_args.js",
"patch": "@@ -2,7 +2,6 @@\n \n const {\n ArrayPrototypeForEach,\n- ArrayPrototypeIncludes,\n ArrayPrototypeMap,\n ArrayPrototypePush,\n ArrayPrototypePushApply,\n@@ -54,20 +53,16 @@ const {\n kEmptyObject,\n } = require('internal/util');\n \... | 2025-11-23T05:46:19 |
rust-lang/rust | c2886b23dd8f870beec73077119a29302051ac0a | 4095cfadb80341b99f0dc504232c4cfe1579f634 | Allow disabling all fixture support
Why? Because sometimes we work on resolving some bug that causes hang/consistent panics/stack overflows/etc., and we put it in a fixture for a test. Then r-a does exactly the same to us, and it's really hard to work this way. | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/ra_fixture.rs",
"patch": "@@ -22,7 +22,7 @@ pub(crate) fn complete_ra_fixture(\n &ctx.sema,\n original.clone(),\n expanded,\n- ctx.config.minicore,\n+ &ctx.config.ra_fixture,\n &mut |_| {},... | 2026-03-29T16:15:17 |
facebook/react | 4c9c109cea9be3622d9d70f81f96e72528bdad16 | 552a5dadcfaee529b3ad8c8011c5d8f8f000ebf1 | [Fiber] Try to give a stack trace to every entry in the Scheduler Performance Track (#34123)
For "render" and "commit" phases we don't give any specific stack atm.
This tries to always provide something useful to say the cause of the
render.
For normal renders this will now show the same thing as the "Event" and
"Upd... | [
{
"path": "packages/react-reconciler/src/ReactFiberBeginWork.js",
"patch": "@@ -158,6 +158,7 @@ import {\n DefaultHydrationLane,\n SomeRetryLane,\n includesSomeLane,\n+ includesOnlyRetries,\n laneToLanes,\n removeLanes,\n mergeLanes,\n@@ -269,6 +270,7 @@ import {\n scheduleUpdateOnFiber,\n ... | 2025-08-07T14:26:30 |
golang/go | d4febb45179fa99ee1d5783bcb693ed7ba14115c | e2a34c7e9b04564ddad50bd7ec7b52fabde74192 | crypto/tls: avoid data race when canceling a QUICConn's Context
Methods on QUICConn are synchronous:
The connection state is expected to change only in reaction
to a user calling a QUICConn method, and the state change
should finish completely before the method returns.
The connection context provided to QUICConn.Sta... | [
{
"path": "src/crypto/tls/conn.go",
"patch": "@@ -1531,7 +1531,7 @@ func (c *Conn) handshakeContext(ctx context.Context) (ret error) {\n \tdefer cancel()\n \n \tif c.quic != nil {\n-\t\tc.quic.cancelc = handshakeCtx.Done()\n+\t\tc.quic.ctx = handshakeCtx\n \t\tc.quic.cancel = cancel\n \t} else if ctx.Done()... | 2026-02-05T23:56:13 |
electron/electron | 310490221e5edc9eeedb0baf1a137e042a04cd7d | 3345edd2bf175766d332e764326148bf35d81483 | chore: bump chromium to 144.0.7500.0 (main) (#48725)
* chore: bump chromium in DEPS to 144.0.7500.0
* chore: fixup patch indices
* 7088768: Reland "download reclient only for chromeos by default"
https://chromium-review.googlesource.com/c/chromium/src/+/7088768
* Revert "7088768: Reland "download reclient only for... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '143.0.7499.0',\n+ '144.0.7500.0',\n 'node_version':\n 'v24.10.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "build/... | 2025-10-31T15:01:09 |
nodejs/node | 83ba6b107a067f5831b03ab69c787fcb35bdcb05 | 0ffa607dee513f161e2e4c5b7e8256d6bf4e9ea9 | test: update test426 fixtures
Update test426 fixtures for source map tests.
Refs: https://github.com/tc39/source-map-tests
PR-URL: https://github.com/nodejs/node/pull/60982
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.... | [
{
"path": "test/fixtures/test426/README.md",
"patch": "@@ -1,9 +1,9 @@\n # Source Map Tests\n \n-This repository holds testing discussions and tests for the the Source Map debugging format. Specifically, we're looking to encourage discussion around:\n+This repository holds discussions on testing and tests f... | 2025-12-09T14:38:02 |
facebook/react | 552a5dadcfaee529b3ad8c8011c5d8f8f000ebf1 | f468d37739cbce9caff88c3b83aca47b0ea7bdbc | [DevTools] fix: handle store mutations synchronously in TreeContext (#34119)
If there is a commit that removes the currently inspected (selected)
elements in the Components tree, we are going to kick off the transition
to re-render the Tree. The elements will be re-rendered with the
previous inspectedElementID, which ... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/TreeContext.js",
"patch": "@@ -954,7 +954,7 @@ function TreeContextController({\n Array<number>,\n Map<number, number>,\n ]) => {\n- transitionDispatch({\n+ dispatch({\n type: 'HANDLE_STORE_MUTATION',\n... | 2025-08-07T13:05:56 |
golang/go | 99d7121934a9cfa7963d3a9bfd840779fd2869f6 | b8bccb97982a7dc340f64d0ad522843418db8810 | cmd/link: add more clang driver flags when testing flag
This changes does 2 things:
- Move `-L` to `prefixesToKeep` since it allows providing a custom
default libs search path.
- Allow various flags that impact the behaviour of the clang driver.
The latter allows for LLVM only toolchains to be compatible with
linke... | [
{
"path": "src/cmd/link/internal/ld/lib.go",
"patch": "@@ -2208,20 +2208,30 @@ func trimLinkerArgv(argv []string) []string {\n \tflagsWithNextArgSkip := []string{\n \t\t\"-F\",\n \t\t\"-l\",\n-\t\t\"-L\",\n \t\t\"-framework\",\n \t\t\"-Wl,-framework\",\n \t\t\"-Wl,-rpath\",\n \t\t\"-Wl,-undefined\",\n \t}\n... | 2025-12-16T23:53:01 |
facebook/react | b080063331af4d2c359b3cc576813dbca6e7db5c | 66f09bd0540d0a094b80c94d013df885903c97da | [DevTools] Source Map Stack Traces such in await locations (#34094)
Stacked on #34093.
Instead of using the original `ReactStackTrace` that has the call sites
on the server, this parses the `Error` object which has the virtual call
sites on the client. We'll need this technique for things stack traces
suspending on t... | [
{
"path": "packages/react-devtools-shared/src/__tests__/utils-test.js",
"patch": "@@ -401,7 +401,7 @@ Object.defineProperty(exports, \"__esModule\", { value: true });\n exports.f = f;\n function f() { }\n //# sourceMappingURL=`;\n- const result = ['', 'http://test/a.mts', 1, 16];\n+ const result = [''... | 2025-08-06T17:45:06 |
electron/electron | 3345edd2bf175766d332e764326148bf35d81483 | c5fe50be3b03ca5ebe917f563f85fcbdf21180a4 | chore: upgrade Node.js to v24.10.0 (#48613)
* chore: upgrade Node.js to v24.10.0
* chore: fixup crypto patch
* chore: fixup crypto test patch
* src: prepare for v8 sandboxing
https://github.com/nodejs/node/pull/58376
* esm: fix module.exports export on CJS modules
https://github.com/nodejs/node/pull/57366
* cho... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '143.0.7499.0',\n 'node_version':\n- 'v22.20.0',\n+ 'v24.10.0',\n 'nan_version':\n '675cefebca42410733da8a454c8d9391fcebfbc2',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2025-10-30T18:16:48 |
golang/go | b8bccb97982a7dc340f64d0ad522843418db8810 | 513bb875bc77b2a516ac56f7710d8fbcd6ba6359 | cmd/compile: don't double-walk the map argument of clear
mkcallstmt1 already walks the map argument of clear. mapClear then
walks it again, which can cause problems if it is some syntax that is
non-idempotent under walk. That is the case for the new way map
lookups are being lowered in CL 736020.
Fixes #77435
Chang... | [
{
"path": "src/cmd/compile/internal/walk/range.go",
"patch": "@@ -477,7 +477,7 @@ func mapClear(m, rtyp ir.Node) ir.Node {\n \t// instantiate mapclear(typ *type, hmap map[any]any)\n \tfn := typecheck.LookupRuntime(\"mapclear\", t.Key(), t.Elem())\n \tn := mkcallstmt1(fn, rtyp, m)\n-\treturn walkStmt(typeche... | 2026-02-04T23:29:40 |
facebook/react | b211d7023c2f142aa21296bccba1de212d700c09 | ba4bdb2ab5e15398fb2ffaafe944a1de56851734 | [compiler] Add repros for various invariants (#34099)
We received some bug reports about invariants reported by the compiler
in their codebase. Adding them as repros.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/face... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.bug-infer-mutation-aliasing-effects.expect.md",
"patch": "@@ -0,0 +1,46 @@\n+\n+## Input\n+\n+```javascript\n+import {useCallback, useRef} from 'react';\n+\n+export default function useThunkDispatch(state, dispatc... | 2025-08-04T18:36:12 |
vercel/next.js | e160f03f96feff08bf3bf8e4911ce2af9464757d | 5c425fe2ce1b5599d7af70929b917308de9ef2ee | [ci] Fix input cache keys for tasks referencing `rust-toolchain` (#90442) | [
{
"path": "packages/next-swc/turbo.json",
"patch": "@@ -10,7 +10,7 @@\n \"../../Cargo.toml\",\n \"../../Cargo.lock\",\n \"../../.github/workflows/build_and_deploy.yml\",\n- \"../../rust-toolchain\"\n+ \"../../rust-toolchain.toml\"\n ],\n \"env\": [\"CI\"],\n... | 2026-02-24T16:14:00 |
nodejs/node | 0ffa607dee513f161e2e4c5b7e8256d6bf4e9ea9 | bd426739dcc17ecfef833d81638cf76b4357b0ba | tools: fix `vcbuild test` when path contain spaces
PR-URL: https://github.com/nodejs/node/pull/56481
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "vcbuild.bat",
"patch": "@@ -183,7 +183,7 @@ if defined package set stage_package=1\n :: assign path to node_exe\n set \"node_exe=%config%\\node.exe\"\n set \"node_gyp_exe=\"%node_exe%\" deps\\npm\\node_modules\\node-gyp\\bin\\node-gyp\"\n-set \"npm_exe=\"%~dp0%node_exe%\" %~dp0deps\\npm\\bin\\npm... | 2025-12-09T11:18:58 |
electron/electron | 0cb4fdd0f2ae28d7bf3cd753cd2b641947e637aa | 21dfa8c73210ebf75acaae1f3b96f9aba3cd076b | fix: allow disabling all `NSMenuItems` (#48598)
fix: allow disabling all NSMenuItems | [
{
"path": "lib/browser/api/menu.ts",
"patch": "@@ -25,11 +25,30 @@ Menu.prototype._isCommandIdChecked = function (id) {\n };\n \n Menu.prototype._isCommandIdEnabled = function (id) {\n- return this.commandsMap[id] ? this.commandsMap[id].enabled : false;\n+ const item = this.commandsMap[id];\n+ if (!item)... | 2025-10-28T15:20:55 |
vercel/next.js | 5c425fe2ce1b5599d7af70929b917308de9ef2ee | 9a8228474e46188dd206314c5ea2196fd48a63d8 | next-image: fix deployment id handling for unoptimized (#90416)
Previously
```jsx
import img from "./x.png";
// x is "/_next/static/media/test.abc123.png?dpl=foo"
<Image id="static-unoptimized" src={x} unoptimized />
```
would lead to `/_next/static/media/test.abc123.png?dpl=foo&dpl=foo`
#90420 adds some related ... | [
{
"path": "packages/next/src/client/legacy/image.tsx",
"patch": "@@ -420,6 +420,18 @@ function generateImgAttrs({\n loader,\n }: GenImgAttrsData): GenImgAttrsResult {\n if (unoptimized) {\n+ if (src.startsWith('/') && !src.startsWith('//')) {\n+ let deploymentId = getDeploymentId()\n+ if (d... | 2026-02-24T15:53:03 |
nodejs/node | 37d9cfcd3ae5d1857838937d3403d16d227c05ba | cbe02339b6c93b68b28bc380882ef7ed8add98b8 | esm: improve error messages for ambiguous module syntax
PR-URL: https://github.com/nodejs/node/pull/60376
Fixes: https://github.com/nodejs/node/issues/60322
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@... | [
{
"path": "lib/internal/modules/esm/module_job.js",
"patch": "@@ -2,9 +2,9 @@\n \n const {\n Array,\n+ ArrayPrototypeFind,\n ArrayPrototypeJoin,\n ArrayPrototypePush,\n- ArrayPrototypeSome,\n FunctionPrototype,\n ObjectSetPrototypeOf,\n PromisePrototypeThen,\n@@ -65,8 +65,8 @@ const CJSGlobalL... | 2025-12-05T23:51:23 |
electron/electron | 21dfa8c73210ebf75acaae1f3b96f9aba3cd076b | 29e0948f7b6270a86b09cdafcaee265a1455029c | fix: use correct signal variable in nan-spec-runner install check (#48639)
The install process spawn was not capturing its own signal variable,
causing the error check to incorrectly reference the build signal
instead. This could lead to:
- Install termination by signal going undetected
- False positive errors when bu... | [
{
"path": "script/nan-spec-runner.js",
"patch": "@@ -118,16 +118,16 @@ async function main () {\n return process.exit(buildStatus !== 0 ? buildStatus : signal);\n }\n \n- const { status: installStatus } = cp.spawnSync(NPX_CMD, [`yarn@${YARN_VERSION}`, 'install'], {\n+ const { status: installStatus, ... | 2025-10-28T15:18:47 |
facebook/react | 557745eb0b50c2c7b126813fdae9c1929afc87f9 | d3f800d47a9f98f03e44bf30b0c3ad524110ba6d | [DevTools] Add structure full stack parsing to DevTools (#34093)
We'll need complete parsing of stack traces for both owner stacks and
async debug info so we need to expand the stack parsing capabilities a
bit. This refactors the source location extraction to use some helpers
we can use for other things too.
This is ... | [
{
"path": "packages/react-devtools-shared/src/__tests__/utils-test.js",
"patch": "@@ -19,8 +19,8 @@ import {\n formatWithStyles,\n gt,\n gte,\n- parseSourceFromComponentStack,\n } from 'react-devtools-shared/src/backend/utils';\n+import {extractLocationFromComponentStack} from 'react-devtools-shared/... | 2025-08-04T13:37:46 |
vercel/next.js | 7fc89cc0f4ee6783f847b97479cc5f65270e85f5 | 5f26a684e61faed401e31ee8bda7019dea15fe36 | Fix `config.reactProductionProfiling` for Webpack (#90430)
Absolutely no idea how this was passing in the integration test setup
For Webpack, setting it via the config was previously completely ignored and only the `--profile` flag was respected
Turbopack was already working correctly: https://github.com/vercel/ne... | [
{
"path": "packages/next/src/build/webpack-build/impl.ts",
"patch": "@@ -151,7 +151,6 @@ export async function webpackBuildImpl(\n rewrites: NextBuildContext.rewrites!,\n originalRewrites: NextBuildContext.originalRewrites,\n originalRedirects: NextBuildContext.originalRedirects,\n- reactProd... | 2026-02-24T15:11:41 |
rust-lang/rust | de6826beff7cbfc52be0f1efecea6449e2df295d | a1c519d03735b701be54d0f20813162481a9e392 | fix: Fix block lowering in ast id map | [
{
"path": "src/tools/rust-analyzer/crates/span/src/ast_id.rs",
"patch": "@@ -678,9 +678,10 @@ impl AstIdMap {\n }\n }\n syntax::WalkEvent::Leave(node) => {\n- if cfg!(debug_assertions) && ast::BlockExpr::c... | 2026-03-29T09:12:27 |
nodejs/node | f65b0bc81a79a6068e594d1179c4c51680bfaa89 | 025ade69973cf078978280247c6dad294bf914d7 | src: implement Windows-1252 encoding support and update related tests
PR-URL: https://github.com/nodejs/node/pull/60893
Fixes: https://github.com/nodejs/node/issues/60888
Fixes: https://github.com/nodejs/node/issues/59515
Fixes: https://github.com/nodejs/node/issues/56542
Reviewed-By: Matteo Collina <matteo.collina@gm... | [
{
"path": "lib/internal/encoding.js",
"patch": "@@ -28,7 +28,7 @@ const kEncoding = Symbol('encoding');\n const kDecoder = Symbol('decoder');\n const kFatal = Symbol('kFatal');\n const kUTF8FastPath = Symbol('kUTF8FastPath');\n-const kLatin1FastPath = Symbol('kLatin1FastPath');\n+const kWindows1252FastPath ... | 2025-12-04T14:23:01 |
golang/go | 997215446134152d8c3c53b3d052032475ef7cfa | f2e7fa6d31143b2d9fbb94df7aa05b3a0919d112 | go/build: don't invoke go command when setting UseAllFiles
Fixes #68556
Change-Id: I36b08577243a6b3a13b3adef116411d73a2d3428
Reviewed-on: https://go-review.googlesource.com/c/go/+/700337
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Emmanuel Odeke <emmanuel@... | [
{
"path": "src/go/build/build.go",
"patch": "@@ -1139,7 +1139,7 @@ func (ctxt *Context) importGo(p *Package, path, srcDir string, mode ImportMode)\n \t// we must not being doing special things like AllowBinary or IgnoreVendor,\n \t// and all the file system callbacks must be nil (we're meant to use the loca... | 2025-09-01T14:00:45 |
facebook/react | 30fca45c1c3aa8c37a9fd63e7d43ab20f229958f | c499adf8c89bbfd884f4d3a58c4e510001383525 | fix: apply initial horizontal offset on tree mount (#34088)
When the element is pre-selected and the Tree component is mounted,
right now we are only applying initial vertical offset, but not the
horizontal one.
Because of this, if the DOM element was selected on Elements panel and
then user opens Components panel fo... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/Tree.js",
"patch": "@@ -24,7 +24,7 @@ import {TreeDispatcherContext, TreeStateContext} from './TreeContext';\n import Icon from '../Icon';\n import {SettingsContext} from '../Settings/SettingsContext';\n import {BridgeContext, StoreCont... | 2025-08-04T11:12:53 |
electron/electron | 29e0948f7b6270a86b09cdafcaee265a1455029c | 08492b5977ab8db2d625d3d1c5169094c8f08b4c | chore: bump chromium to 143.0.7497.0 (main) (#48657)
* chore: bump chromium in DEPS to 143.0.7492.0
* chore: bump chromium in DEPS to 143.0.7493.0
* chore: update mas_avoid_private_macos_api_usage.patch.patch
Move os_crypt/sync and os_crypt/async shared code to os_crypt/common | https://chromium-review.googlesource... | [
{
"path": "BUILD.gn",
"patch": "@@ -592,6 +592,7 @@ source_set(\"electron_lib\") {\n use_libcxx_modules = false\n \n deps += [\n+ \"//components/os_crypt/common:keychain_password_mac\",\n \"//components/remote_cocoa/app_shim\",\n \"//components/remote_cocoa/browser\",\n \"//co... | 2025-10-28T15:17:29 |
rust-lang/rust | 69b6d26d05006dca7556abc555fb0e029ecf1f4e | c4db0e127c6e96d1798423bf9f205fd06f5481a6 | fix invalid type suggestion for item nested in function | [
{
"path": "compiler/rustc_hir_analysis/src/collect/type_of.rs",
"patch": "@@ -4,7 +4,7 @@ use rustc_errors::{Applicability, StashKey, Suggestions};\n use rustc_hir::def_id::{DefId, LocalDefId};\n use rustc_hir::intravisit::VisitorExt;\n use rustc_hir::{self as hir, AmbigArg, HirId};\n-use rustc_middle::ty::... | 2026-03-29T08:23:14 |
vercel/next.js | 5f26a684e61faed401e31ee8bda7019dea15fe36 | 409b7a6a284fecbb99fcf85b20922e4b80623a1a | docs: rework version staleness (#90192)
Closes:
https://linear.app/vercel/issue/DOC-6144/error-page-version-staleness | [
{
"path": "errors/version-staleness.mdx",
"patch": "@@ -1,63 +1,73 @@\n ---\n-title: Version Staleness\n+title: A newer version is available\n ---\n \n-## Why This Error Occurred\n+## What this notice means\n \n-In the error overlay, a message was shown that the detected Next.js version was out-of-date.\n+T... | 2026-02-24T14:38:49 |
golang/go | 044fe174d7a45ab0c7872500de63e6c61b01bf27 | f766b8da6c6e78bfbd549931ad44e0a2386a32ba | internal/stringslite: remove duplicate code in Index
Merge two nearly identical loops into one by selecting the fallback
method (IndexString vs IndexRabinKarp) inside the loop based on
whether n <= bytealg.MaxLen.
Fixes #77364#
Change-Id: Iefbef60922ca24e4dda3016127f54290096bcfed
Reviewed-on: https://go-review.googl... | [
{
"path": "src/internal/stringslite/strings.go",
"patch": "@@ -28,52 +28,15 @@ func IndexByte(s string, c byte) int {\n func Index(s, substr string) int {\n \tn := len(substr)\n \tswitch {\n-\tcase n == 0:\n+\tcase n == 0 || substr == s:\n \t\treturn 0\n \tcase n == 1:\n \t\treturn IndexByte(s, substr[0])\n... | 2026-02-03T08:02:27 |
nodejs/node | 746c3c2ec2eee4f33adde73c34364ed873cacffd | 5879e9b257d4bae7da7b31d527250425c7abc7ab | util: assert getCallSites does not invoke Error.prepareStackTrace
PR-URL: https://github.com/nodejs/node/pull/60922
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ilyas Shabi <ilyasshabi94@gmail.com> | [
{
"path": "doc/api/util.md",
"patch": "@@ -564,6 +564,9 @@ changes:\n Returns an array of call site objects containing the stack of\n the caller function.\n \n+Unlike accessing an `error.stack`, the result returned from this API is not\n+interfered with `Error.prepareStackTrace`.\n+\n ```mjs\n import { getC... | 2025-12-03T17:53:07 |
facebook/react | c499adf8c89bbfd884f4d3a58c4e510001383525 | 1d163962b21f9396d26930e31719bd8b10d9e107 | [Flight] Allow Temporary References to be awaited (#34084)
Fixes #33534.
`.then` method can be tested when you await a value that's not a
Promise. For regular Client References we have a way to mark those as
"async" and yield a reference to the unwrapped value in case it's a
Promise on the Client.
However, the reali... | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMReply-test.js",
"patch": "@@ -438,6 +438,50 @@ describe('ReactFlightDOMReply', () => {\n expect(response.obj).toBe(obj);\n });\n \n+ it('can return an opaque object through an async function', async () => {\n+ function fn() {... | 2025-08-02T22:44:20 |
electron/electron | 9ce27e5318b702eec5553e51658cfff13f50ba03 | 09c22ea9794366a4d922444e23cfbf83d3ca8afc | docs: security.md use runnable examples for permissions and csp (#43248)
* docs: security.md use runnable examples for permissions and csp
Signed-off-by: LeUser111 <florian.wiedenmann@grob.de>
* Removed semi-colon for uniform js code style in examples
Signed-off-by: LeUser111 <florian.wiedenmann@grob.de>
* docs: s... | [
{
"path": "docs/api/session.md",
"patch": "@@ -66,7 +66,7 @@ The `session` module has the following properties:\n \n ### `session.defaultSession`\n \n-A `Session` object, the default session object of the app.\n+A `Session` object, the default session object of the app, available after `app.whenReady` is ca... | 2025-10-27T20:56:53 |
nodejs/node | ecdf6a8c533d04b85595f5d053635f740d3c3d93 | 5b4b031da4b6aedb811d29602a89d436c559215e | stream: fix isErrored/isWritable for WritableStreams
PR-URL: https://github.com/nodejs/node/pull/60905
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "lib/internal/webstreams/writablestream.js",
"patch": "@@ -76,6 +76,8 @@ const {\n \n const {\n kIsClosedPromise,\n+ kIsErrored,\n+ kIsWritable,\n kControllerErrorFunction,\n } = require('internal/streams/utils');\n \n@@ -183,6 +185,14 @@ class WritableStream {\n size);\n }\n \n+ ge... | 2025-12-03T13:08:34 |
facebook/react | 1d163962b21f9396d26930e31719bd8b10d9e107 | ddf8bc3fbac7aefbf557e2e4a3e14d8de1b80872 | Allow returning a temporary reference inside an async function (#33761)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a p... | [
{
"path": "packages/react-server/src/ReactFlightServerTemporaryReferences.js",
"patch": "@@ -70,6 +70,9 @@ const proxyHandlers = {\n `Instead, you can export a Client Component wrapper ` +\n `that itself renders a Client Context Provider.`,\n );\n+ // Allow returning a t... | 2025-08-02T22:11:54 |
golang/go | 28fbdf7acb4146b5bc3d88128e407d1344691839 | 045d1270a7c299c6e40cccf3776860749abfe18e | cmd/go: fix pkg-config flag sanitization
Implement a new pkg-config safe flag list (containing everything except
for --log-file) and use that when checking flags passed to pkg-config,
instead of using checkCompilerFlags.
Fixes #77387
Change-Id: Id6141d0a2934053aa43e3aa8ce402bd499c4c028
Reviewed-on: https://go-review... | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -1797,10 +1797,7 @@ func (b *Builder) getPkgConfigFlags(a *Action, p *load.Package) (cflags, ldflags\n \t\t\t}\n \t\t}\n \n-\t\t// Running 'pkg-config' can cause execution of\n-\t\t// arbitrary code using flags that are not in\n-\t\t// the safelist.... | 2026-02-03T02:29:51 |
vercel/next.js | 409b7a6a284fecbb99fcf85b20922e4b80623a1a | f74bdef4e67ea93c4a692372d5db946befe0c257 | Add support for Next.js error telemetry for `AggregateError` (#90391) | [
{
"path": "crates/next-error-code-swc-plugin/src/lib.rs",
"patch": "@@ -75,7 +75,7 @@ fn is_error_class_name(name: &str) -> bool {\n || name == \"Warning\"\n }\n \n-// Get the string representation of the first argument of `new Error(...)`\n+// Get the string representation of the message argument o... | 2026-02-24T14:35:55 |
electron/electron | e44b96bbd3b5072eb021a2839e211070adbf2779 | b389377c6341870bb270a37178e811a1ce7baf37 | refactor: avoid deprecated views a11y api (#47674)
* refactor: use GetViewAccessibility().SetName() instead of SetAccessibleName()
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/5537333
* refactor: use GetViewAccessibility().SetRole() instead of SetAccessibleRole()
Xref: https://chromium-review.goo... | [
{
"path": "shell/browser/ui/views/autofill_popup_view.cc",
"patch": "@@ -23,6 +23,7 @@\n #include \"ui/gfx/geometry/point.h\"\n #include \"ui/gfx/geometry/rect.h\"\n #include \"ui/gfx/text_utils.h\"\n+#include \"ui/views/accessibility/view_accessibility.h\"\n #include \"ui/views/border.h\"\n #include \"ui/v... | 2025-10-27T19:05:25 |
nodejs/node | 470ef988f62e6148cbbbd31f7061cd214030a714 | 80e0779a8195a65c05ab7268031ddf15715be382 | benchmark: fix incorrect base64 input in byteLength benchmark
PR-URL: https://github.com/nodejs/node/pull/60841
Fixes: https://github.com/nodejs/node/issues/60836
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmai... | [
{
"path": "benchmark/buffers/buffer-bytelength-string.js",
"patch": "@@ -22,7 +22,7 @@ const chars = {\n function getInput(type, repeat, encoding) {\n const original = (repeat === 1) ? chars[type] : chars[type].repeat(repeat);\n if (encoding === 'base64') {\n- Buffer.from(original, 'utf8').toString('... | 2025-12-03T07:19:16 |
facebook/react | ddf8bc3fbac7aefbf557e2e4a3e14d8de1b80872 | 0860b9cc1f4a7188b41204bddc57a127a8bbf6e9 | [compiler] Improve merging of scopes that invalidate together (#34049)
We try to merge consecutive reactive scopes that will always invalidate
together, but there's one common case that isn't handled.
```js
const y = [[x]];
```
Here we'll create two consecutive scopes for the inner and outer array
expressions. Becau... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/MergeReactiveScopesThatInvalidateTogether.ts",
"patch": "@@ -119,6 +119,7 @@ class FindLastUsageVisitor extends ReactiveFunctionVisitor<void> {\n \n class Transform extends ReactiveFunctionTransform<ReactiveScopeDependencies | null>... | 2025-08-01T20:00:01 |
golang/go | bd1b41eb8131a503a1a8d2fc41d3e79bce159468 | 01299a31c26b730785ac497da2ef7c593947d5d7 | reflect, runtime: adjust user-created GCData on AIX
On AIX the runtime adjusts the GCData field in getGCMaskOnDemand
to account for the AIX dynamic loader moving the data section.
That works fine for statically generated types,
but it breaks user generated types. The user generated type
will have a normal, correct, po... | [
{
"path": "src/reflect/type.go",
"patch": "@@ -2580,6 +2580,9 @@ func StructOf(fields []StructField) Type {\n \t\t// space to store it.\n \t\ttyp.TFlag |= abi.TFlagGCMaskOnDemand\n \t\ttyp.GCData = (*byte)(unsafe.Pointer(new(uintptr)))\n+\t\tif runtime.GOOS == \"aix\" {\n+\t\t\ttyp.GCData = adjustAIXGCData(... | 2026-01-31T02:42:27 |
vercel/next.js | e9c4f4289d15d43681e9e79b2fa605b09a0af0d4 | 426d0d2e0135853461db4c86ad966ccdfef5bcb5 | Fix route cache keying for unprefetched navigations (#90400)
When navigating to a route that wasn't previously prefetched (e.g. via a
Link with prefetch={false}, or router.push()), the client stores the
route data from the server response in the cache so it can be reused by
future navigations and prefetches to the sam... | [
{
"path": "packages/next/src/client/components/router-reducer/create-initial-router-state.ts",
"patch": "@@ -76,6 +76,7 @@ export function createInitialRouterState({\n discoverKnownRoute(\n Date.now(),\n location.pathname,\n+ null, // nextUrl — initial render is never an interception\n ... | 2026-02-24T06:39:39 |
electron/electron | a611881ff3f03d18517af746f723bbd2b401f6b7 | 7925a4fe78cf48053daa653965971c1652de2293 | fix: logical bug in install.js env var handling (#48634)
If either `npm_config_electron_use_remote_checksums` or
`electron_use_remote_checksums` are set as environment variables, then
force Electron to verify with remote checksums instead of embedded ones.
Fixes #48594. | [
{
"path": "npm/install.js",
"patch": "@@ -44,7 +44,7 @@ downloadArtifact({\n artifactName: 'electron',\n force: process.env.force_no_cache === 'true',\n cacheRoot: process.env.electron_config_cache,\n- checksums: process.env.electron_use_remote_checksums ?? process.env.npm_config_electron_use_remote_... | 2025-10-27T10:23:45 |
rust-lang/rust | cbc94349d0ba20d6781cd3892794db55e630922a | 148adf223edb0444eb1f99753919dd2080c2a534 | core: Destabilize beta-stable `RangeInclusiveIter::remainder`
As discussed, make this portion of the range API unstable again. This
will now be tracked under `new_range_remainder`.
Discussion: https://rust-lang.zulipchat.com/#narrow/channel/327149-t-libs-api.2Fapi-changes/topic/.60RangeFrom.3A.3Aremainder.60.20possib... | [
{
"path": "library/core/src/range/iter.rs",
"patch": "@@ -175,7 +175,10 @@ impl<A: Step> RangeInclusiveIter<A> {\n /// If the iterator is exhausted or empty, returns `None`.\n ///\n /// # Examples\n+ ///\n /// ```\n+ /// #![feature(new_range_remainder)]\n+ ///\n /// let range = ... | 2026-03-27T09:31:38 |
facebook/react | 0860b9cc1f4a7188b41204bddc57a127a8bbf6e9 | 538ac7ae4b918136c5bd7d15ada19439d15f8080 | [compiler] Add definitions for Object entries/keys/values (#34047)
Fixes remaining issue in #32261, where passing a previously useMemo()-d
value to `Object.entries()` makes the compiler think the value is
mutated and fail validatePreserveExistingMemo. While I was there I added
Object.keys() and Object.values() too.
-... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts",
"patch": "@@ -114,6 +114,99 @@ const TYPED_GLOBALS: Array<[string, BuiltInType]> = [\n returnValueKind: ValueKind.Mutable,\n }),\n ],\n+ [\n+ 'entries',\n+ addFunction(DEFAULT_SHAPES, [],... | 2025-08-01T19:59:49 |
nodejs/node | b013e6e32d956641526459f771f194da25852c90 | 4ea921bdbf94c11e86ef6b53aa7425c6df42876a | tools: update ESLint dependencies
- Update all dependencies to their latest version and regenerate lock
file.
- Fixup deprecated field of `@stylistic/eslint-plugin` config.
- Disable `assignmentOperator` indent rule (we are inconsistent, so
there's no valid config for it).
- Disable jsdoc rules that we do not foll... | [
{
"path": "eslint.config.mjs",
"patch": "@@ -277,6 +277,8 @@ export default [\n wrapIndent: ' ',\n }],\n 'jsdoc/check-alignment': 'error',\n+ 'jsdoc/reject-any-type': 'off',\n+ 'jsdoc/reject-function-type': 'off',\n \n // Stylistic rules.\n '@stylistic/js/arrow-par... | 2025-11-30T18:25:51 |
vercel/next.js | c23f3434a3e34ebf7b0b15afc115d94fa0238076 | 212ced6fb0a51205bf2f6a2b00393c3fbe09e0d5 | docs: fixes typo in manifest.mdx regarding Route Handler note (#90394)
This PR fixes a typo in the docs about the manifest.js file
Co-authored-by: Joseph <joseph.chamochumbi@vercel.com> | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/01-metadata/manifest.mdx",
"patch": "@@ -21,7 +21,7 @@ Add or generate a `manifest.(json|webmanifest)` file that matches the [Web Manif\n \n Add a `manifest.js` or `manifest.ts` file that returns a [`Manifest` object](#manifest-object).\n \n-> Good... | 2026-02-23T22:52:45 |
golang/go | 01299a31c26b730785ac497da2ef7c593947d5d7 | 1bbb78e7772e7530338e9f154936dc2479adafac | cmd/cgo: use objdir consistently, create it as needed
Previously we added a slash to the end of objdir only after
processing input files. The effect was that the temporary gcc
output files were placed in /tmp, using objdir as a prefix.
Those output files were not removed by anything.
Now we consistently use objdir as... | [
{
"path": "src/cmd/cgo/gcc.go",
"patch": "@@ -24,6 +24,7 @@ import (\n \t\"math\"\n \t\"os\"\n \t\"os/exec\"\n+\t\"path/filepath\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n@@ -1795,7 +1796,7 @@ var n atomic.Int64\n \n func gccTmp() string {\n \tc := strconv.Itoa(int(n.Add(1)))\n-\treturn *objDir + \"... | 2026-01-30T23:33:49 |
electron/electron | eda0a7e7493df36b75773899b5eb14be0b786d8d | 777b6c70a2ff264a94c45651c83ddbdf2df44c0f | fix: crash on empty dialog extensions array on Windows (#48640) | [
{
"path": "shell/browser/ui/file_dialog_win.cc",
"patch": "@@ -44,8 +44,7 @@ void ConvertFilters(const Filters& filters,\n std::vector<std::wstring>* buffer,\n std::vector<COMDLG_FILTERSPEC>* filterspec) {\n if (filters.empty()) {\n- COMDLG_FILTERSPEC spec = {L\"... | 2025-10-25T16:14:55 |
facebook/react | 538ac7ae4b918136c5bd7d15ada19439d15f8080 | 52612a7cbdd8e1fee9599478247f78725869ebad | [Flight] Fix debug info leaking to outer handler (#34081)
The `waitForReference` call for debug info can trigger inside a
different object's initializingHandler. In that case, we can get
confused by which one is the root object.
We have this special case to detect if the initializing handler's object
is `null` and we... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -879,7 +879,7 @@ function initializeDebugChunk(\n waitForReference(\n debugChunk,\n {}, // noop, since we'll have already added an entry to debug info\n- '', // noop\n+ ... | 2025-08-01T19:44:48 |
nodejs/node | 6432765a9c13929e5be8aab8e01f76924c9fe3fe | 8cfcf52db832bf7c8200470cc87a1159816a52e4 | src: fix off-thread cert loading in bundled cert mode
https://redirect.github.com/nodejs/node/pull/59856 had an typo/mistake
in the skip conditions so that it is skipping when --use-openssl-ca
or --openssl-system-ca-path (configure time) are NOT used, even
though they should be skipped only when those ARE used (which ... | [
{
"path": "src/crypto/crypto_context.cc",
"patch": "@@ -901,7 +901,7 @@ void StartLoadingCertificatesOffThread(\n // loading.\n {\n Mutex::ScopedLock cli_lock(node::per_process::cli_options_mutex);\n- if (!per_process::cli_options->ssl_openssl_cert_store) {\n+ if (per_process::cli_options->ssl... | 2025-12-02T09:51:06 |
golang/go | 1bbb78e7772e7530338e9f154936dc2479adafac | a3688ab13e76762a168f43e91ca9422c847ee896 | cmd/go: rewrite cgo names to "C." in compiler error messages
We used to do this but it broke in Go 1.10. This restores the rewrite,
but only applied to compiler output for packages that use cgo.
That is all that the original rewrite applied to anyhow.
Fixes #76339
Change-Id: Ife8ee858ddd0ff7bcc7423455b2eabf8381b7bde... | [
{
"path": "src/cmd/cgo/internal/testerrors/errors_test.go",
"patch": "@@ -72,7 +72,7 @@ func expect(t *testing.T, errors []*regexp.Regexp, files ...string) {\n \tdefer os.RemoveAll(dir)\n \n \tdst := filepath.Join(dir, strings.TrimSuffix(files[0], \".go\"))\n-\targs := []string{\"build\", \"-gcflags=-L -e\"... | 2025-11-19T00:24:04 |
vercel/next.js | 6aa3dbd2e805c6b5d1da67bd6e0c554433aa93f3 | 610fdb8e3f7f67f29e4be33107e262cc8e7d2c4a | Fix: Image component ignores images.qualities in Jest environment (#89536)
- Fixes #89492
- Fixes #18415
## Problem
When testing Next.js <Image /> components with Jest, custom
images.qualities configured in next.config.js are ignored, causing:
- Image URLs to use default quality (q=75) instead of configured values
... | [
{
"path": "packages/next/src/build/jest/jest.ts",
"patch": "@@ -103,9 +103,34 @@ export default function nextJest(options: { dir?: string } = {}) {\n await lockfilePatchPromise.cur\n }\n \n+ const imageConfig = nextConfig?.images\n+ ? {\n+ deviceSizes: nextConfig.images.... | 2026-02-23T21:19:06 |
rust-lang/rust | 74b3d554b364a0304c80b73cf856736b67f26c69 | 66067c67a961733a033bbfe5a891bb061bb840b3 | Fix rustc_hir::Crate links | [
{
"path": "src/doc/rustc-dev-guide/src/hir.md",
"patch": "@@ -35,7 +35,7 @@ data structure basically just contains the root module, the HIR\n `Crate` structure contains a number of maps and other things that\n serve to organize the content of the crate for easier access.\n \n-[`Crate`]: https://doc.rust-lan... | 2026-03-29T04:52:40 |
electron/electron | 6d8196fba32a11e2ffb72794ee5ad8d484851f68 | fbfd7c7126f4dfede73850019a20e48e6e694074 | chore: bump chromium to 143.0.7489.0 (main) (#48642)
* chore: bump chromium in DEPS to 143.0.7489.0
* chore: update add_didinstallconditionalfeatures.patch
no manual changes; patch applied with fuzz
* chore: update allow_in-process_windows_to_have_different_web_prefs.patch
patch reapplied manually due to context s... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '143.0.7485.0',\n+ '143.0.7489.0',\n 'node_version':\n 'v22.20.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "filena... | 2025-10-23T20:28:51 |
facebook/react | 52612a7cbdd8e1fee9599478247f78725869ebad | bdb4a96f628d3b426d3c79fbd598ec35c05835a3 | [compiler] Emit more specific error when making identifiers with reserved words (#34080)
This currently throws an invariant which may be misleading. I checked
the ecma262 spec and used the same list of reserved words in our check.
To err on the side of being conservative, we also error when strict mode
reserved words ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts",
"patch": "@@ -14,6 +14,7 @@ import type {HookKind} from './ObjectShape';\n import {Type, makeType} from './Types';\n import {z} from 'zod';\n import type {AliasingEffect} from '../Inference/AliasingEffects';\n+import {isReservedWord} ... | 2025-08-01T19:10:34 |
rust-lang/rust | 369c801eafe69b13c1464f00b0cbf829ff99e721 | 6e6701e2bd3b2116c9996c7cb1be7381f030ba0d | Clean up enum `LoadResult`
- Make the enum non-public
- Replace the generic `<T>` with concrete fields
- Rename variant `LoadDepGraph` to `IoError` | [
{
"path": "compiler/rustc_incremental/src/lib.rs",
"patch": "@@ -10,9 +10,8 @@ mod errors;\n mod persist;\n \n pub use persist::{\n- LoadResult, copy_cgu_workproduct_to_incr_comp_cache_dir, finalize_session_directory,\n- in_incr_comp_dir, in_incr_comp_dir_sess, load_query_result_cache, save_work_produ... | 2026-03-26T03:41:34 |
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.