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 | fb2177c153353621c5e343b0386993e5084f641e | 647e13366cfacd4f922ef287cef7a14e4ee60f52 | [Flight] Fix pending chunks count for streams & async iterables in DEV (#35143)
In DEV, we need to prevent the response from being GC'd while there are
still pending chunks for ReadableSteams or pending results for
AsyncIterables.
Co-authored-by: Sebastian "Sebbie" Silbermann <silbermann.sebastian@gmail.com> | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -813,6 +813,12 @@ function createInitializedStreamChunk<\n value: T,\n controller: FlightStreamController,\n ): InitializedChunk<T> {\n+ if (__DEV__) {\n+ // Retain a strong reference to the Response while we wait for chunks.\n... | 2025-11-14T22:52:11 |
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 |
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 |
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 |
rust-lang/rust | 65b88ea8ee499345aa8414f16d6cf018c6bdaed6 | f92020a676251cf985cbe5134a1fd976b5207ab6 | fix(lints): Improve ill_formed_attribute_input with better help message | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/doc.rs",
"patch": "@@ -665,7 +665,11 @@ impl DocParser {\n let span = cx.attr_span;\n cx.emit_lint(\n rustc_session::lint::builtin::INVALID_DOC_ATTRIBUTES,\n- AttributeLintKind::IllFo... | 2026-04-05T08:24:16 |
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 |
facebook/react | 647e13366cfacd4f922ef287cef7a14e4ee60f52 | 19b769fa5f143f9c23424cd744d85e3742450235 | [compiler] fix bad rebase from sapling (#35145)
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/35145).
* #35144
* __->__ #35145 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/new-mutability/error.todo-repro-destructure-from-prop-with-default-value.expect.md",
"patch": "@@ -1,43 +0,0 @@\n-\n-## Input\n-\n-```javascript\n-export function useFormatRelativeTime(opts = {}) {\n- const {timeZone, ... | 2025-11-14T22:50:38 |
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 |
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 |
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 |
facebook/react | 19b769fa5f143f9c23424cd744d85e3742450235 | dbf2538355c288c984a58f4d417aff2396924882 | [compiler] Fix for inferring props-derived-value as mutable (#35140)
Fix for the repro from the previous PR. A `Capture x -> y` effect should
downgrade to `ImmutableCapture` when the source value is maybe-frozen.
MaybeFrozen represents the union of a frozen value with a non-frozen
value.
---
[//]: # (BEGIN SAPLING FO... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts",
"patch": "@@ -954,6 +954,7 @@ function applyEffect(\n case ValueKind.Primitive: {\n break;\n }\n+ case ValueKind.MaybeFrozen:\n case ValueKind.Frozen: {\n ... | 2025-11-14T20:14:34 |
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 | 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 |
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 |
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 |
facebook/react | dbf2538355c288c984a58f4d417aff2396924882 | 21f282425c751ee7926416642a0aded88d218623 | [compiler] Repro for false positive mutation of a value derived from props (#35139)
Repro from the compiler WG (Thanks Cody!) of a case where the compiler
incorrectly thinks a value is mutable.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](h... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/new-mutability/error.todo-repro-destructure-from-prop-with-default-value.expect.md",
"patch": "@@ -0,0 +1,43 @@\n+\n+## Input\n+\n+```javascript\n+export function useFormatRelativeTime(opts = {}) {\n+ const {timeZone, ... | 2025-11-14T20:14:23 |
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 |
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 |
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 |
facebook/react | 21f282425c751ee7926416642a0aded88d218623 | 257b033fc7b0518e7b1db32ca24e2354933b9d0e | [compiler] Allow ref access in callbacks passed to event handler props (#35062)
## Summary
Fixes #35040. The React compiler incorrectly flags ref access within
event handlers as ref access at render time. For example, this code
would fail to compile with error "Cannot access refs during render":
```tsx
const onSub... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts",
"patch": "@@ -677,6 +677,15 @@ export const EnvironmentConfigSchema = z.object({\n * from refs need to be stored in state during mount.\n */\n enableAllowSetStateFromRefsInEffects: z.boolean().default(true),\n+\n+ /**... | 2025-11-14T17:00:33 |
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 |
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 | 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 |
facebook/react | 257b033fc7b0518e7b1db32ca24e2354933b9d0e | de97ef9ad510352ba37434085098bf026dd46b9b | [Compiler] Avoid capturing global setStates for no-derived-computations lint (#35135)
Summary:
This only matters when enableTreatSetIdentifiersAsStateSetters=true
This pattern is still bad. But Right now the validation can only
recommend to move stuff to "calculate in render"
A global setState should not be moved to... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts",
"patch": "@@ -690,6 +690,18 @@ function validateEffect(\n instr.value.args.length === 1 &&\n instr.value.args[0].kind === 'Identifier'\n ) {\n+ const calleeMet... | 2025-11-14T06:56:06 |
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 | 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 |
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 |
facebook/react | de97ef9ad510352ba37434085098bf026dd46b9b | 93fc57400b0cf9a2bfdc2765d94ee9984f2fd97f | [Compiler] Don't count a setState in the dependency array of the effect it is called on as a usage (#35134)
Summary:
The validation only allows setState declaration as a usage outside of
the effect.
Another edge case is that if you add the setState being validated in the
dependency array you also make the validation ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts",
"patch": "@@ -22,6 +22,7 @@ import {\n BasicBlock,\n isUseRefType,\n SourceLocation,\n+ ArrayExpression,\n } from '../HIR';\n import {eachInstructionLValue, eachInstructionOperand} ... | 2025-11-14T06:52:23 |
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 |
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 |
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 |
rust-lang/rust | 92426ef48211cd757fff5e6912532a80de14b985 | 4e836866b57c1d92c1b747d524cd04ba0f55ea3a | library: std: motor: use OS' process::exit in abort_internal
abort_internal() is used in panics; if it calls
core::intrinsics::abort(), the process triggers an
invalid op code (on x86_64), which is a much harder "abort"
than a user-controlled exit via a panic.
Most other OSes don't use core::intrinsics::abort() here,... | [
{
"path": "library/std/src/sys/pal/motor/mod.rs",
"patch": "@@ -42,5 +42,5 @@ pub fn unsupported_err() -> io::Error {\n }\n \n pub fn abort_internal() -> ! {\n- core::intrinsics::abort();\n+ moto_rt::process::exit(-1)\n }",
"additions": 1,
"deletions": 1,
"language": "Rust"
}
] | 2026-04-05T01:53:09 |
facebook/react | 93fc57400b0cf9a2bfdc2765d94ee9984f2fd97f | 093b3246e162c2a6fd1a376506ed1144ed140226 | [Flight] Fix broken byte stream parsing caused by buffer detachment (#35127)
This PR fixes a critical bug where `ReadableStream({type: 'bytes'})`
instances passed through React Server Components (RSC) would stall after
reading only the first chunk or the first few chunks in the client. This
issue was masked by using `... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -4857,6 +4857,7 @@ export function processBinaryChunk(\n resolvedRowTag === 65 /* \"A\" */ ||\n resolvedRowTag === 79 /* \"O\" */ ||\n resolvedRowTag === 111 /* \"o\" */ ||\n+ resolvedRowTag === 9... | 2025-11-13T20:23:02 |
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 |
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 |
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 |
facebook/react | 3a495ae72264c46b4a4355904c6b4958b0a2f9b2 | bbe3f4d322846083c57009dbd6121900f120b389 | [compiler] source location validator (#35109)
@josephsavona this was briefly discussed in an old thread, lmk your
thoughts on the approach. I have some fixes ready as well but wanted to
get this test case in first... there's some things I don't _love_ about
this approach, but end of the day it's just a tool for the te... | [
{
"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-13T03:02:46 |
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 |
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 |
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 |
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 | 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 |
facebook/react | bbe3f4d322846083c57009dbd6121900f120b389 | 1ea46df8ba9d7d90a13c8668c2642cb21a259aa5 | [flags] disableLegacyMode in native-fb (#35120)
this is failing test too because we need the legacy mode in the react
package until we fix the tests | [
{
"path": "packages/react-native-renderer/src/__tests__/ReactFabricAndNative-test.internal.js",
"patch": "@@ -40,7 +40,6 @@ describe('created with ReactFabric called with ReactNative', () => {\n require('react-native/Libraries/ReactPrivate/ReactNativePrivateInterface').getNativeTagFromPublicInstance;\... | 2025-11-12T20:38:58 |
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 |
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 |
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 | db8273c12f363f350330c4712aeaf969a3eee820 | 04ee54cd128a48cb3fdac7256e1a45d6d9743d8c | [compiler] Update test snap to include fixture comment (#35100)
Summary:
I missed this test case failing and now having @loggerTestOnly after
landing some other PRs good to know they're not land blocking
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [Revi... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/effect-derived-computations/usestate-derived-from-prop-no-show-in-data-flow-tree.expect.md",
"patch": "@@ -2,30 +2,36 @@\n ## Input\n \n ```javascript\n-// @validateNoDerivedComputationsInEffects_exp\n+// @validateNoDer... | 2025-11-11T18:16:04 |
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 |
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 | 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 |
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 |
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 | 92ac4e8b80cb51a1be7071e8338176680ce8f619 | f76c3617e0f00c98656a36d1b4083b397c7638f2 | [compiler] Don't validate when effect cleanup function depends on effect localized setState state derived values (#35020)
Summary:
If we are using a clean up function in an effect and that clean up
function depends on a value that is used to set the state we are
validating for we shouldn't throw an error since it is a... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts",
"patch": "@@ -568,6 +568,26 @@ function renderTree(\n return result;\n }\n \n+function getFnLocalDeps(\n+ fn: FunctionExpression | undefined,\n+): Set<IdentifierId> | undefined {\n+ if... | 2025-11-10T20:28:19 |
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 |
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 |
golang/go | a6949e942c4287fcccf3264b8df6190c88609cb7 | e0ebb4c646ade3ab83708d1772bce452398888b3 | go/types, types2: handle unconstrained type parameters correctly in a few places
When iterating over a type set via a range clause, am unconstrained
type set produces a single (nil, nil) result. This was not properly
accounted for in a few places:
- In the code for the append and copy built-in, handle the (nil, nil)
... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -112,7 +112,7 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t\t\tfor _, u := range typeset(y.typ()) {\n \t\t\t\t\tif s, _ := u.(*Slice); s != nil && Identical(s.elem, universeByte) {\n \t\t\t\t\t... | 2026-03-12T02:02:07 |
facebook/react | 72961203966a2f1d34dfca089e0a94a94ead7658 | 6347c6d37336c7791098d2d817b22f02ea41a5d3 | [compiler] Update ValidateNoDerivedComputationsInEffects_exp to log the error instead of throwing (#34972)
Summary:
TSIA
Simple change to log errors in Pipeline.ts instead of throwing in the
validation
Test Plan:
updated snap tests
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -277,7 +277,7 @@ function runWithEnvironment(\n }\n \n if (env.config.validateNoDerivedComputationsInEffects_exp) {\n- validateNoDerivedComputationsInEffects_exp(hir);\n+ env.logErrors(valida... | 2025-11-10T20:16:13 |
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 |
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 |
golang/go | e0ebb4c646ade3ab83708d1772bce452398888b3 | ab1a2c8874e470b251a6c2469eabf36b389a0a02 | cmd/compile: use 128-bit arm64 vector ops for Move expansion
Update Move rewrite rules to use FMOVQload/store and FLDPQ/FSTPQ
for medium-sized copies (16-64 bytes). This generates fewer and
wider instructions than the previous approach using LDP/STP pairs.
Executable Base .text go1 Change
------... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules",
"patch": "@@ -434,33 +434,25 @@\n (Move [15] dst src mem) =>\n \t(MOVDstore [7] dst (MOVDload [7] src mem)\n \t\t(MOVDstore dst (MOVDload src mem) mem))\n-(Move [16] dst src mem) =>\n-\t(STP dst (Select0 <typ.UInt64> (LDP src mem)) (Select1 <typ.UIn... | 2026-01-21T20:29:59 |
facebook/react | 6347c6d37336c7791098d2d817b22f02ea41a5d3 | 01fb3286321b6190b06b1cc86c7c1cd9e2d884d9 | [compiler] Fix false negatives and add data flow tree to compiler error for `no-deriving-state-in-effects` (#34995)
Summary:
Revamped the derivationCache graph.
This fixes a bunch of bugs where sometimes we fail to track from which
props/state we derived values from.
Also, it is more intuitive and allows us to easil... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts",
"patch": "@@ -33,6 +33,7 @@ type DerivationMetadata = {\n typeOfValue: TypeOfValue;\n place: Place;\n sourcesIds: Set<IdentifierId>;\n+ isStateSource: boolean;\n };\n \n type Valida... | 2025-11-10T20:09:13 |
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 |
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 |
golang/go | ff7ecb4efc2f754709ec018ae822fb411fcfa5a9 | 8e1ecee49120359594cad3b3e6e6464eb3945f49 | os/exec: document that Cmd.Wait must not be called concurrently
Clarify in the Wait documentation that it must not be called
concurrently from multiple goroutines. Also note that a custom
Cmd.Cancel function should not call Wait because Cancel may be
invoked by watchCtx in a separate goroutine.
Fixes #78046
Change-I... | [
{
"path": "src/os/exec/exec.go",
"patch": "@@ -929,6 +929,9 @@ func (e *ExitError) Error() string {\n // If any of c.Stdin, c.Stdout or c.Stderr are not an [*os.File], Wait also waits\n // for the respective I/O loop copying to or from the process to complete.\n //\n+// Wait must not be called concurrently ... | 2026-03-10T17:58:14 |
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 | 01fb3286321b6190b06b1cc86c7c1cd9e2d884d9 | ce4054ebdd550237cf20a509f8503d4624cbaffa | [compiler] Prevent overriding a derivationEntry on effect mutation and instead update typeOfValue and fix infinite loops (#34967)
Summary:
With this we are now comparing a snapshot of the derivationCache with
the new changes every time we are done recording the derivations
happening in the HIR.
We have to do this aft... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts",
"patch": "@@ -47,6 +47,43 @@ type ValidationContext = {\n class DerivationCache {\n hasChanges: boolean = false;\n cache: Map<IdentifierId, DerivationMetadata> = new Map();\n+ private... | 2025-11-10T20:08:05 |
golang/go | 8e1ecee49120359594cad3b3e6e6464eb3945f49 | 65f76a20a32fc2a63f22f681591813e568506c9d | context: fix package doc description of WithDeadlineCause and WithTimeoutCause
The package documentation incorrectly states that WithCancelCause,
WithDeadlineCause, and WithTimeoutCause all return a CancelCauseFunc.
In fact, only WithCancelCause returns a CancelCauseFunc. WithDeadlineCause
and WithTimeoutCause accept ... | [
{
"path": "src/context/context.go",
"patch": "@@ -24,11 +24,12 @@\n // child and its children until the parent is canceled. The go vet tool\n // checks that CancelFuncs are used on all control-flow paths.\n //\n-// The [WithCancelCause], [WithDeadlineCause], and [WithTimeoutCause] functions\n-// return a [C... | 2026-02-09T06:12:22 |
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 |
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 |
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 |
facebook/react | 52684925368a41a0c9fbfca9016cdcbb72fc9d1e | c83be7da9f0861770d7df52842d1c3dfe60f0927 | Fix: Activity should hide portal contents (#35091)
This PR updates the behavior of Activity so that when it is hidden, it
hides the contents of any portals contained within it.
Previously we had intentionally chosen not to implement this behavior,
because it was thought that this concern should be left to the userspa... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMActivity-test.js",
"patch": "@@ -0,0 +1,134 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ *\n+ * @e... | 2025-11-10T15:42:26 |
golang/go | 75fdbda51799a9f867b58a61004685d8637413e6 | 105b1e2757e8c0da9058a45c1e31c57849aedeae | cmd/go: update urls in documentation to go.dev
Update the urls in user facing documentation
and error messages to consistently use go.dev
instead of golang.org
Change-Id: I48866eb03036221035bcf204a892d9a3b4c214bb
Reviewed-on: https://go-review.googlesource.com/c/go/+/754460
LUCI-TryBot-Result: Go LUCI <golang-scoped@... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -199,7 +199,7 @@\n //\t\tBy default, if a vendor directory is present and the go version in go.mod\n //\t\tis 1.14 or higher, the go command acts as if -mod=vendor were set.\n //\t\tOtherwise, the go command acts as if -mod=readonly were set.\n-//\t\tSee https... | 2026-03-11T19:51:44 |
vercel/next.js | 8283b1260ba3eb187baf20727e739fbd8ba7bbf6 | 76d7dc1e98899e0674b622989675919adc6cc146 | Support accessing root params in `"use cache"` functions (#91191)
Root params (e.g. `import { lang } from 'next/root-params'`) can now be read inside `"use cache"` functions. The read root param values are automatically included in the cache key so that different root param combinations produce separate cache entries.... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -1137,5 +1137,7 @@\n \"1136\": \"Page \\\"%s\\\" cannot use both \\\\`export const unstable_dynamicStaleTime\\\\` and \\\\`export const unstable_instant\\\\`.\",\n \"1137\": \"\\\"%s\\\" cannot use \\\\`export const unstable_dynamicStaleTime\\\\`. This... | 2026-03-17T13:04:44 |
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 |
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 |
facebook/react | 717e70843e68db648d2fc75c57d1a61465a9f7f9 | a10ff9c8577004fa054be4f83906a29289bbffb9 | Fix: Errors should not escape a hidden Activity (#35074)
If an error is thrown inside a hidden Activity, it should not escape
into the visible part of the UI. Conceptually, a hidden Activity
boundary is not part of the current UI; it's the same as an unmounted
tree, except for the fact that the state will be restored ... | [
{
"path": "packages/react-reconciler/src/ReactFiberThrow.js",
"patch": "@@ -12,7 +12,10 @@ import type {Lane, Lanes} from './ReactFiberLane';\n import type {CapturedValue} from './ReactCapturedValue';\n import type {Update} from './ReactFiberClassUpdateQueue';\n import type {Wakeable} from 'shared/ReactType... | 2025-11-07T23:18:24 |
vercel/next.js | 76d7dc1e98899e0674b622989675919adc6cc146 | 9eed3027f161f19c5204e3a3555283df9ec91855 | Fix `unstable_catchError` type inference for fallback props (#91485)
### Why?
TypeScript fails to infer the generic `P` from `Omit<P, 'children'>` in
the fallback function parameter.
```
Argument of type '(props: { title: string; }, { error, reset, unstable_retry }: ErrorInfo) => Element' is not assignable to parame... | [
{
"path": "packages/next/error.d.ts",
"patch": "@@ -1,3 +1,7 @@\n+// Pages Router only\n import Error from './dist/api/error'\n export * from './dist/api/error'\n export default Error\n+\n+export { unstable_catchError } from './dist/api/error'\n+export type { ErrorInfo } from './dist/api/error'",
"addit... | 2026-03-17T11:07:03 |
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 | 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 |
vercel/next.js | 9eed3027f161f19c5204e3a3555283df9ec91855 | 3af4cc14ea400ebc01fdc267f3d3495bfe086a7e | Fix DataUriSource description to include "data:" prefix (#91455)
### What?
Fix the `description()` method of `DataUriSource` in Turbopack to include the full `data:` URI prefix in the display string.
**Before:** `data URI content (svg+xml;charset=utf8,...)`
**After:** `data URI content (data:svg+xml;charset=utf8,...... | [
{
"path": "turbopack/crates/turbopack-core/src/data_uri_source.rs",
"patch": "@@ -42,11 +42,15 @@ impl DataUriSource {\n impl Source for DataUriSource {\n #[turbo_tasks::function]\n async fn description(&self) -> Result<Vc<RcStr>> {\n+ let media_type = &self.media_type;\n+ let encoding... | 2026-03-17T09:25:51 |
golang/go | c697e0fc482de62da72d4470ac082bf5e5720642 | f3966c1ada0a0ddaea873f979ee9165649eb11b7 | spec: fix prose in rule for keys of struct composite literals
Use "promoted" rather than "embedded" because the selector
provides access to a promoted field.
For #9859.
Change-Id: If62c5260ab7bdfef3d6ea4ff770543ad668ac9b6
Reviewed-on: https://go-review.googlesource.com/c/go/+/755782
LUCI-TryBot-Result: Go LUCI <gola... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.27 (March 5, 2026)\",\n+\t\"Subtitle\": \"Language version go1.27 (March 16, 2026)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -3211,13 +321... | 2026-03-16T22:30:40 |
nodejs/node | 617f8321f5767c442f126f4858473d6ce76e3145 | ecd979c95afa3f551465e07122a77743e1334c9c | doc: fix spacing in process message event
PR-URL: https://github.com/nodejs/node/pull/61756
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/process.md",
"patch": "@@ -158,7 +158,7 @@ process.on('exit', (code) => {\n added: v0.5.10\n -->\n \n-* `message` { Object | boolean | number | string | null } a parsed JSON object\n+* `message` {Object|boolean|number|string|null} a parsed JSON object\n or a serializable primitive value... | 2026-02-10T07:15:36 |
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 |
vercel/next.js | 3af4cc14ea400ebc01fdc267f3d3495bfe086a7e | a27a11d78e748a8c7ccfd14b7759ad2b9bf097d8 | Fix startup warmup for empty-shell app route cache (#91470)
Startup loading of APP_PAGE PPR entries seeded the in-memory cache from
disk using a size estimate that only counted html and the route-level
RSC payload. Empty-shell prerenders have 0-byte html and do not persist
a monolithic .rsc file, with the reusable dat... | [
{
"path": "packages/next/src/server/lib/incremental-cache/memory-cache.external.ts",
"patch": "@@ -4,6 +4,24 @@ import { LRUCache } from '../lru-cache'\n \n let memoryCache: LRUCache<CacheHandlerValue> | undefined\n \n+function getBufferSize(buffer: Buffer | undefined) {\n+ return buffer?.length || 0\n+}\n... | 2026-03-17T05:36:34 |
golang/go | dbb3793b59371828cd1463bd3796f586ad4e6433 | 5262546d8296a6bed3fcd385385db51bd3e5f48b | slices: document that Delete, DeleteFunc, Replace, Insert modify the slice
Rephrase the opening doc comments for Delete, DeleteFunc, Replace, and
Insert to clarify that these functions modify s in place and return the
modified slice, following the pattern used by Compact.
Fixes #64329
Change-Id: I82c381a350b71efc819... | [
{
"path": "src/slices/slices.go",
"patch": "@@ -125,8 +125,8 @@ func ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool {\n \treturn IndexFunc(s, f) >= 0\n }\n \n-// Insert inserts the values v... into s at index i,\n-// returning the modified slice.\n+// Insert modifies s in place by inserting the value... | 2026-02-17T01:13:17 |
nodejs/node | 30adc7c2f30bbcde1ede78520fc5fb5a937fff53 | 551f605ffe8b6cec4de85a77b6f29605d0d81575 | src: fix `--build-sea` default executable path
PR-URL: https://github.com/nodejs/node/pull/61708
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "src/node_sea_bin.cc",
"patch": "@@ -388,7 +388,7 @@ ExitCode BuildSingleExecutable(const std::string& sea_config_path,\n \n SeaConfig config = opt_config.value();\n if (config.executable_path.empty()) {\n- config.executable_path = args[0];\n+ config.executable_path = Environment::GetExe... | 2026-02-09T23:27:02 |
facebook/react | 37b089a59cc14b6442b27303942d62425f9cea35 | 1a31a814f16838e2c9edfce0d244264c43184f86 | Don't skip content in visible offscreen trees for View Transitions (#35063)
Also, don't not skip hidden trees.
Memoized state is null when an Offscreen boundary (Suspense or Activity)
is visible.
This logic was inversed in a couple of View Transition checks which
caused pairs to be discovered or not discovered incor... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitViewTransitions.js",
"patch": "@@ -233,7 +233,7 @@ function commitAppearingPairViewTransitions(placement: Fiber): void {\n }\n let child = placement.child;\n while (child !== null) {\n- if (child.tag === OffscreenComponent && child.memoizedSt... | 2025-11-06T21:03:02 |
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 |
golang/go | 5262546d8296a6bed3fcd385385db51bd3e5f48b | a8a5b81473c00e857dd9963dc027dc1c10016d79 | cmd/go/internal/test: enable stdversion by default
Also, update the list of available checks, including
using the non-deprecated names.
Updates #18085
Fixes #77729
Change-Id: Ic31a53fda5628f0de85c7f447182f0d4b1cdcdb2
Reviewed-on: https://go-review.googlesource.com/c/go/+/755240
Reviewed-by: Michael Matloob <matloob@... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1875,11 +1875,11 @@\n // and its test source files to identify significant problems. If go vet\n // finds any problems, go test reports those and does not run the test\n // binary. Only a high-confidence subset of the default go vet checks are\n-// used. That... | 2026-03-13T21:05:17 |
vercel/next.js | 924d39dcef03fe6cf75eb5c7a4e76cb2c61c9286 | 0f867bb2196588bdfc29bcc3f79736bb84fa1572 | docs(turbopack): Fix all warnings in `cargo doc --no-deps --workspace`, and run rustdoc as part of our CI checks (#91339)
This gets `cargo doc` clean, and enables it in CI so that we won't regress it (I'm open to removing this if it proves to be annoying).
I also cleaned up some documentation and even found some dead... | [
{
"path": "crates/next-napi-bindings/src/next_api/utils.rs",
"patch": "@@ -98,6 +98,12 @@ pub fn root_task_dispose(\n Ok(())\n }\n \n+/// [Peeks] at the [`Issue`] held by the given source and returns it as a [`PlainDiagnostic`].\n+/// It does not [consume] any [`Issue`]s held by the source.\n+///\n+/// ... | 2026-03-16T23:42:24 |
facebook/react | 5a2205ba28a02596461187eecdffd066075d8685 | fa767dade6a22be994b5bf348fdabfc5301f72b4 | Update bug report template for eslint plugin label (#34959)
## Summary
When creating https://github.com/facebook/react/issues/34957, I noticed
a reference to `eslint-plugin-react-compiler` instead of
`eslint-plugin-react-hooks`. Since the former is merged into the latter
(https://github.com/facebook/react/pull/32416,... | [
{
"path": ".github/ISSUE_TEMPLATE/compiler_bug_report.yml",
"patch": "@@ -11,7 +11,7 @@ body:\n options:\n - label: React Compiler core (the JS output is incorrect, or your app works incorrectly after optimization)\n - label: babel-plugin-react-compiler (build issue installing or using the B... | 2025-11-05T21:57:26 |
nodejs/node | 551f605ffe8b6cec4de85a77b6f29605d0d81575 | f003f4601927974ea45c17e3411e0d1d60b2f067 | build: build with v8 gdbjit support on supported platform
Build it with gdbjit support on supported platforms by default
allows debugging JIT-compiled code in gdb when it's also enabled
at run time (via --gdbjit). Simply building it in should not
incur an overhead if it's not also enabled at run time.
PR-URL: https:/... | [
{
"path": "configure.py",
"patch": "@@ -2021,7 +2021,16 @@ def configure_v8(o, configs):\n o['variables']['v8_enable_webassembly'] = 0 if options.v8_lite_mode else 1\n o['variables']['v8_enable_javascript_promise_hooks'] = 1\n o['variables']['v8_enable_lite_mode'] = 1 if options.v8_lite_mode else 0\n-... | 2026-02-09T23:26:50 |
golang/go | a8a5b81473c00e857dd9963dc027dc1c10016d79 | 655aa335c951c3b1a61560016ad2cd2f6eac1684 | cmd/go: ensure go.mod and go.sum are consistent after `go get -tool`
The issue was that `go get -tool` could trigger module upgrades (due to
the tool's own requirements) that were not correctly captured by the
final consistency check in `checkPackageProblems`. This happened because
`updateTools` was being called after... | [
{
"path": "src/cmd/go/internal/modget/get.go",
"patch": "@@ -402,14 +402,14 @@ func runGet(ctx context.Context, cmd *base.Command, args []string) {\n \t\t}\n \t}\n \n+\tif *getTool {\n+\t\tupdateTools(moduleLoaderState, ctx, r, queries, &opts)\n+\t}\n+\n \t// If a workspace applies, checkPackageProblems wil... | 2026-02-24T17:00:40 |
electron/electron | 6a2571ee3d3692e727aaf766df2cd7183f6da90c | 94aa90bb6480cf1e76429cab6a0d96af836d6592 | ci: Wayland test job, helpers, and app spec (#49908)
* wayland test chromium patch
* ci: add wayland test job and helpers
* use weston directly instead of wlheadless-run
* roll build image to eac3529
* fixed exec command
* Update .github/workflows/pipeline-segment-electron-test.yml
Co-authored-by: John Kleinschm... | [
{
"path": ".devcontainer/docker-compose.yml",
"patch": "@@ -2,7 +2,7 @@ version: '3'\n \n services:\n buildtools:\n- image: ghcr.io/electron/devcontainer:a82b87d7a4f5ff0cab61405f8151ac4cf4942aeb\n+ image: ghcr.io/electron/devcontainer:eac3529546ea8f3aa356d31e345715eef342233b\n \n volumes:\n ... | 2026-02-25T19:51:13 |
facebook/react | c308cb590598b61a7fc1766e15edf454d758d226 | 986323f8c65927490036183357d644974a14b8a3 | Disable enablePostpone flag in experimental (#31042)
I don't think we're ready to land this yet since we're using it to run
other experiments and our tests. I'm opening this PR to indicate intent
to disable and to ensure tests in other combinations still work. Such as
enableHalt without enablePostpone. I think we'll a... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzStatic-test.js",
"patch": "@@ -400,72 +400,6 @@ describe('ReactDOMFizzStatic', () => {\n );\n });\n \n- // @gate enablePostpone\n- it('does not fatally error when aborting with a postpone during a prerender', async () => {\n- let postponedVa... | 2025-11-05T04:23:25 |
rust-lang/rust | 72f00dd40fd26566d6a2d37923d9df4aabbaddf8 | 166f219169267be776fd6200f5825568cd20dc40 | fix: add semicolon for postfix format unit like snippets
Example
---
```rust
fn main() {
"{ 2+2 } { SomeStruct { val: 1, other: 32 } :?}".println
}
```
**Before this PR**
```rust
fn main() {
println!("{} {:?}", 2 + 2, SomeStruct { val: 1, other: 32 })
}
```
**After this PR**
```rust
fn main() {
println... | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs",
"patch": "@@ -310,7 +310,7 @@ pub(crate) fn complete_postfix(\n if let ast::Expr::Literal(literal) = dot_receiver.clone()\n && let Some(literal_text) = ast::String::cast(literal.token())\n {\n- add_f... | 2026-04-04T13:38:56 |
vercel/next.js | fa32daad8d7d0cfff6de16d1fc13fe8bd2d1802e | 672b02b27002c8ac6816eff744c15090335b0caa | Add `unstable_catchError()` API for custom error boundary (#89688)
This PR adds `unstable_catchError()` API for a granular custom error
boundary. The error component generated by this API is not a true
component format, as the wrapper provides additional args. Therefore,
the API is a function call by design rather tha... | [
{
"path": "crates/next-core/src/next_import_map.rs",
"patch": "@@ -71,7 +71,16 @@ pub async fn get_next_client_import_map(\n .await?;\n \n match &ty {\n- ClientContextType::Pages { .. } => {}\n+ ClientContextType::Pages { .. } => {\n+ // Resolve next/error to the ESM entry p... | 2026-03-16T22:57:11 |
nodejs/node | f003f4601927974ea45c17e3411e0d1d60b2f067 | 8ba4d727a84a59837df5b673200fcebc5df5041f | tools: fix small inconsistencies in JSON doc output
PR-URL: https://github.com/nodejs/node/pull/61757
Reviewed-By: Claudio Wunder <cwunder@gnome.org>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Aviv Keller <me@aviv.sh> | [
{
"path": "doc/api/report.md",
"patch": "@@ -4,8 +4,6 @@\n \n <!-- type=misc -->\n \n-> Stability: 2 - Stable\n-\n <!-- name=report -->\n \n <!-- YAML\n@@ -22,6 +20,8 @@ changes:\n description: Added `--report-exclude-network` option for excluding networking operations that can slow down report generati... | 2026-02-09T22:58:43 |
golang/go | 48bbe7996d1e53c39188fba941bc3f9e523c8b94 | 6614616b7576a8011053c4b50fbb5e64d469837b | net/http/internal/http2: deflake TestServer_Rejects_Too_Many_Streams
This test contains a race condition in the server handler:
inHandler <- streamID
<-leaveHandler
We assume that all requests queue reading from leaveHandler in order,
but it is possible for the second request (stream id 3) to arrive at
leaveHandle... | [
{
"path": "src/net/http/internal/http2/server_test.go",
"patch": "@@ -2386,18 +2386,7 @@ func TestServer_Rejects_Too_Many_Streams(t *testing.T) {\n \tsynctestTest(t, testServer_Rejects_Too_Many_Streams)\n }\n func testServer_Rejects_Too_Many_Streams(t testing.TB) {\n-\tinHandler := make(chan uint32)\n-\tlea... | 2026-03-13T21:43:22 |
electron/electron | 94aa90bb6480cf1e76429cab6a0d96af836d6592 | b9a09acff36d268fd4ade597be2d6ff8a051d59d | fix: recover network requests after Network Service restart (#49887)
* fix: recover network requests after Network Service restart
* chore: reuse implementation
* chore: make linter happy
* chore: fix lint
---------
Co-authored-by: deepak1556 <hop2deep@gmail.com>
Co-authored-by: Charles Kerr <charles@charleskerr.... | [
{
"path": "shell/browser/api/electron_api_utility_process.cc",
"patch": "@@ -14,6 +14,7 @@\n #include \"base/process/launch.h\"\n #include \"base/process/process.h\"\n #include \"chrome/browser/browser_process.h\"\n+#include \"content/browser/network_service_instance_impl.h\" // nogncheck\n #include \"cont... | 2026-02-25T17:53:06 |
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.