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 |
|---|---|---|---|---|---|
rust-lang/rust | cc3115d386eb4836f84b3fba0971c1780ed76bd4 | cf246bd45dcb8b702ae5409df999a8a2c9f19a1d | Enable debug printing on more types | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs",
"patch": "@@ -382,6 +382,7 @@ enum FlycheckCommandOrigin {\n ProjectJsonRunnable,\n }\n \n+#[derive(Debug)]\n enum StateChange {\n Restart {\n generation: DiagnosticsGeneration,\n@@ -435,6 +436,7 @@ enum DiagnosticsRec... | 2026-02-17T14:37:45 |
electron/electron | 37630a61282af710a1efc4828e7c2e907485a104 | 3a22fd32164e02864395a46dc777ce32333c6de4 | fix: wide string concatenation (#40892)
* fix: wide string concatenation
* Use wstring_views to keep length in context
* forgot a space, oopsies | [
{
"path": "shell/browser/browser_win.cc",
"patch": "@@ -19,8 +19,8 @@\n #include \"base/files/file_path.h\"\n #include \"base/logging.h\"\n #include \"base/path_service.h\"\n+#include \"base/strings/strcat_win.h\"\n #include \"base/strings/string_util.h\"\n-#include \"base/strings/stringprintf.h\"\n #includ... | 2024-01-08T06:02:20 |
vercel/next.js | 6f1f49ebbe808da0cab3ce64c147813b95360a3c | 516b28270effb646554c20865430f23d3db4ad40 | docs: typed routes manual tsconfig includes (#83031)
Docs fix to: https://github.com/vercel/next.js/issues/83010 | [
{
"path": "docs/01-app/03-api-reference/05-config/02-typescript.mdx",
"patch": "@@ -131,6 +131,15 @@ export default nextConfig\n \n Next.js will generate a link definition in `.next/types` that contains information about all existing routes in your application, which TypeScript can then use to provide feedb... | 2025-08-26T10:46:27 |
facebook/react | e047db8d037f63884a41575ea733c27fe8bd1f14 | 3a6a2e7e4a807003bc42e103d157ae783602c362 | [repro] Repro for control flow bug in PropagateScopeDependency
---
Thanks to @josephsavona for finding this bug. This is another example of why we
really want hir-everywhere.
Forget output currently nullthrows because we believe `obj.a` is run
unconditionally in source (missing the break/returns out of this sco... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug-reduce-reactive-deps-break-in-scope.expect.md",
"patch": "@@ -0,0 +1,63 @@\n+\n+## Input\n+\n+```javascript\n+function useFoo({ obj, objIsNull }) {\n+ const x = [];\n+ b0: {\n+ if (objIsNull) {\n+ break b0;\... | 2024-03-21T21:44:13 |
rust-lang/rust | fb94e5883ed1b648ae00fd3bc85e3dc002068a78 | 8387095803f21a256a9a772ac1f9b41ed4d5aa0a | Fix an ICE while checking param env shadowing on an erroneous trait impl | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs",
"patch": "@@ -299,6 +299,12 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n let trait_def_id = alias.trait_def_id(tcx);\n let rebased_args = alias.args.rebase_onto(tcx, trait_def_id, impl_substs);\n \n+ ... | 2026-02-18T10:12:34 |
golang/go | 456a90aa1618a6c3aa49ecba46969128e2bfa26f | 1cf6386b5ee1ba7d367b6456c2c6888ab68c3ec8 | runtime: add missing unlock in sysReserveAlignedSbrk
sysReserveAlignedSbrk locks memlock at entry, but it is not
unlocked at one of the return path. Add the missing unlock.
Fixes #74339.
Change-Id: Ib641bc348aca41494ec410e2c4eb9857f3362484
Reviewed-on: https://go-review.googlesource.com/c/go/+/683295
LUCI-TryBot-Res... | [
{
"path": "src/runtime/mem_sbrk.go",
"patch": "@@ -231,6 +231,7 @@ func sysReserveAlignedSbrk(size, align uintptr) (unsafe.Pointer, uintptr) {\n \t\t\tmemFree(unsafe.Pointer(end), endLen)\n \t\t}\n \t\tmemCheck()\n+\t\tunlock(&memlock)\n \t\treturn unsafe.Pointer(pAligned), size\n \t}\n ",
"additions": ... | 2025-06-22T19:01:27 |
electron/electron | cc1b64e01c334dc9b27cea7c90a066645f983190 | 22970f573b3ced41ad6b0e2c3e124e3a4ed6b40e | fix: macOS maximize button shouldn't be disabled just because the window is non-fullscreenable (#40705)
* fix: macOS maximize button shouldn't be disabled just because the window is non-fullscreenable
* add test
* fix test by enabling maximize button if `resizable && (maximizable || fullscreenable)` instead of `... | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -235,6 +235,8 @@ class NativeWindowMac : public NativeWindow,\n void InternalSetParentWindow(NativeWindow* parent, bool attach);\n void SetForwardMouseMessages(bool forward);\n \n+ void UpdateZoomButton();\n+\n ElectronNSWindow* window_; //... | 2024-01-05T17:15:35 |
nodejs/node | df4a0c996d374ed3ea168303e36271539ee44a74 | 7b01758ded981fc0d95aa719b221aaa4e255421b | typings: fix `ModulesBinding` types
PR-URL: https://github.com/nodejs/node/pull/55549
Refs: https://github.com/nodejs/node/pull/55412/files#r1817708918
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "typings/internalBinding/modules.d.ts",
"patch": "@@ -9,7 +9,7 @@ export type PackageConfig = {\n export type DeserializedPackageConfig = {\n data: PackageConfig,\n exists: boolean,\n- path: URL['pathname'],\n+ path: string,\n }\n export type SerializedPackageConfig = [\n PackageConfig['na... | 2024-11-02T16:36:49 |
vercel/next.js | 40ad4fa548dc9ecc5d79645996e0a2defd7ac016 | d023213c7dd80b50df276f8193641ce9b2c71ade | Turbopack: fix route format for NFT globs (#82997)
These are effectively the tests for https://github.com/vercel/next.js/pull/82906
`outputFileTracingIncludes` and `outputFileTracingExcludes` match not against the pathname of the routes, but also include the app/pages prefix, e.g. `app/route1` for `src/app/route1/rou... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -34,10 +34,7 @@ use next_core::{\n },\n next_server_utility::{NEXT_SERVER_UTILITY_MERGE_TAG, NextServerUtilityTransition},\n parse_segment_config_from_source,\n- util::{\n- NextRuntime, app_middleware_function_name, module_styles_rul... | 2025-08-26T07:23:12 |
facebook/react | 3a6a2e7e4a807003bc42e103d157ae783602c362 | f18a01bf59be6107daa817432f20b9e912e84d35 | Repro for "context variables are always mutable" error w callbacks
I haven't debugged to understand exactly why this pattern fails, but there are a
few instances of this internally. It's especially weird because
```javascript
// @enableAssumeHooksFollowRulesOfReact
@enableTransitivelyFreezeFunctionExpressions
... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.todo-multiple-calls-to-hoisted-callback-from-other-callback.expect.md",
"patch": "@@ -0,0 +1,46 @@\n+\n+## Input\n+\n+```javascript\n+// @enableAssumeHooksFollowRulesOfReact @enableTransitivelyFreezeFunctionExpressi... | 2024-03-22T04:40:02 |
rust-lang/rust | 39edacad9cc0efa63f0ba798d233fbc478a6f454 | 8387095803f21a256a9a772ac1f9b41ed4d5aa0a | Fix incorrect target
The target was `-musl`, but should be `-gnu`. | [
{
"path": "src/doc/rustc/src/platform-support/aarch64-unknown-linux-gnu.md",
"patch": "@@ -29,7 +29,7 @@ If cross-compiling, make sure your C compiler is included in `$PATH`, then add i\n `bootstrap.toml`:\n \n ```toml\n-[target.aarch64-unknown-linux-musl]\n+[target.aarch64-unknown-linux-gnu]\n cc = \"aarch... | 2026-02-18T09:14:28 |
electron/electron | 50860712943da0feabcb668b264c35b7837286c0 | 8c71e2adc9b47f8d9e9ad07be9e6a9b3a764a670 | feat: add `transparent` webpreference to webview (#40301)
* feat: add transparent option to WebContents
* feat: add transparent attribute to webview
* test: add tests for webview transparent attribute
* docs: add transparent attribute to webview docs
* fix: run tests on macOS only
* refactor: remove unn... | [
{
"path": "docs/api/webview-tag.md",
"patch": "@@ -221,7 +221,9 @@ windows. Popups are disabled by default.\n ```\n \n A `string` which is a comma separated list of strings which specifies the web preferences to be set on the webview.\n-The full list of supported preference strings can be found in [BrowserW... | 2024-01-05T04:00:27 |
nodejs/node | 7b01758ded981fc0d95aa719b221aaa4e255421b | 68dc15e400d1d85772aefc6ad1f0d3ca9c7a734e | Revert "fs,win: fix bug in paths with trailing slashes"
This reverts commit 00b2f07f9ddeb8ffd2fb2108b0ed9ffa81ea000d.
PR-URL: https://github.com/nodejs/node/pull/55527
Fixes: https://github.com/nodejs/node/issues/17801
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol... | [
{
"path": "lib/fs.js",
"patch": "@@ -385,11 +385,7 @@ function readFile(path, options, callback) {\n const req = new FSReqCallback();\n req.context = context;\n req.oncomplete = readFileAfterOpen;\n- binding.open(\n- getValidatedPath(path, 'path', { expectFile: true, syscall: 'read' }),\n- flag... | 2024-11-02T16:24:29 |
vercel/next.js | badf4b6c17255ecfe8f0ff16f8108c7254dd83ac | 8cd4251f0741b2b1ccb35788ebdd20f19aaf6d85 | feat(build): add client param parsing support for PPR routes (#82621)
### What?
This PR introduces comprehensive type-aware parameter tracking and
fallback handling for dynamic routes in PPR scenarios, with enhanced
client-side parameter resolution capabilities.
### Why?
When using client segment cache with dynamic... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -784,5 +784,12 @@\n \"783\": \"Expected document.currentScript to be a <script> element. Received %s instead.\",\n \"784\": \"Expected document.currentScript src to contain '/_next/'. Received %s instead.\",\n \"785\": \"Expected webSocket to be defi... | 2025-08-25T23:57:53 |
golang/go | 49cdf0c42e320dfed044baa551610f081eafb781 | 3bf1eecbd30f48851c35f608aa265c978b2cf301 | testing, testing/synctest: handle T.Helper in synctest bubbles
Fixes #74199
Change-Id: I6a15fbd59a3a3f8c496440f56d09d695e1504e4e
Reviewed-on: https://go-review.googlesource.com/c/go/+/682576
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Alan Donovan <adonovan@g... | [
{
"path": "src/testing/synctest/helper_test.go",
"patch": "@@ -0,0 +1,15 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package synctest_test\n+\n+import \"testing\"\n+\n+// helperLo... | 2025-06-20T13:44:09 |
facebook/react | 231f29f6f3ef5c8612cfbb050695d7a1e96ebd78 | 21bb8f9e75be24a7730c890409a53bc2120eef68 | Fix using context variable as JSX element tag
Updates the lowering for JSX element tag names to check if the identifier is a
context or local variable and use the appropriate instruction kind. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -2916,8 +2916,9 @@ function lowerJsxElementName(\n if (exprPath.isJSXIdentifier()) {\n const tag: string = exprPath.node.name;\n if (tag.match(/^[A-Z]/)) {\n+ const kind = getLoadKind(builder, exprPath);... | 2024-03-22T00:12:08 |
rust-lang/rust | 0a6961d2e002bd7730c427c18c8e65e84a5991c0 | 6de75dcc05cc41b46f7687f9c19c651a2cfa9cc0 | fix: prevent path transformation of parameter names matching modules | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_missing_impl_members.rs",
"patch": "@@ -2534,6 +2534,86 @@ impl Test for () {\n ${0:todo!()}\n }\n }\n+\"#,\n+ );\n+ }\n+\n+ #[test]\n+ fn test_param_name_not_qualified() {\n+ check_assist(\n+ ... | 2026-02-18T06:46:34 |
nodejs/node | 68dc15e400d1d85772aefc6ad1f0d3ca9c7a734e | 9a16fdea34316831cfcc26be41c7c8c918630de8 | util: fix util.getCallSites plurality
`util.getCallSite` returns an array of call site objects. Rename the
function to reflect that it returns a given count of frames captured
as an array of call site object.
Renames the first parameter `frames` to be `frameCount` to indicate
that it specifies the count of returned c... | [
{
"path": "benchmark/util/get-callsite.js",
"patch": "@@ -1,15 +1,15 @@\n 'use strict';\n \n const common = require('../common');\n-const { getCallSite } = require('node:util');\n+const { getCallSites } = require('node:util');\n const assert = require('node:assert');\n \n const bench = common.createBenchmar... | 2024-11-02T15:24:56 |
electron/electron | 8c71e2adc9b47f8d9e9ad07be9e6a9b3a764a670 | f229201f41d7cfe241e584d5ba801bf406666e55 | feat: add net module to utility process (#40017)
* chore: initial prototype of net api from utility process
* chore: update url loader to work on both browser and utility processes
* chore: add net files to utility process bundle
* chore: re-add app ready check but only on main process
* chore: replace bro... | [
{
"path": "docs/api/client-request.md",
"patch": "@@ -2,7 +2,7 @@\n \n > Make HTTP/HTTPS requests.\n \n-Process: [Main](../glossary.md#main-process)<br />\n+Process: [Main](../glossary.md#main-process), [Utility](../glossary.md#utility-process)<br />\n _This class is not exported from the `'electron'` modul... | 2024-01-04T21:20:37 |
vercel/next.js | af62463a97f6f45e290f2ba5a3efb5bb84d5f466 | 69d604b86b10cce0e5ee95e356865a95e930b360 | fix: add '.next/types/**/*.ts' to the pages router TSConfig (#83029)
See #83010
Previously, typed links only worked in App Router. Now they work in
Pages Router too, but we forgot to update the templates. | [
{
"path": "packages/create-next-app/templates/default-empty/ts/tsconfig.json",
"patch": "@@ -17,6 +17,6 @@\n \"@/*\": [\"./*\"]\n }\n },\n- \"include\": [\"next-env.d.ts\", \"**/*.ts\", \"**/*.tsx\"],\n+ \"include\": [\"next-env.d.ts\", \"**/*.ts\", \"**/*.tsx\", \".next/types/**/*.ts\"],\n ... | 2025-08-25T23:09:20 |
facebook/react | 21bb8f9e75be24a7730c890409a53bc2120eef68 | 0e72e2a00e9644801fa2fab2142e60f7076bfc0c | Repro for inconsistent context/local variable reference
We currently assume JSX element tags are always locals, and need to check which
load kind to use. Fixed in the next PR. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.todo-context-variable-as-jsx-element-tag.expect.md",
"patch": "@@ -0,0 +1,29 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ let Component = Foo;\n+\n+ Component = useMemo(() => {\n+ return... | 2024-03-22T00:12:08 |
golang/go | 4150372a5d2c3b70591efe1ce208f0a92747f1dc | 1b87d52549677a1ab3dfc05bb00eb568d81f6a5c | [dev.simd] cmd/compile: don't treat devel compiler as a released compiler
The compiler has a logic to print different messages on internal
compiler error depending on whether this is a released version of
Go. It hides the panic stack trace if it is a released version. It
does this by checking the version and see if it... | [
{
"path": "src/cmd/compile/internal/base/print.go",
"patch": "@@ -220,7 +220,7 @@ func FatalfAt(pos src.XPos, format string, args ...interface{}) {\n \t\tfmt.Printf(\"\\n\")\n \n \t\t// If this is a released compiler version, ask for a bug report.\n-\t\tif Debug.Panic == 0 && strings.HasPrefix(buildcfg.Vers... | 2025-06-20T16:02:18 |
facebook/react | d31e10b406163928589649466a3b0f76ae45c5cc | 4bc676d3dbd78f5c4c3f9be7f86c3b084a268ac9 | Fix for type aliases in function inferring as function deps | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -3982,6 +3982,18 @@ function gatherCapturedDeps(\n }\n \n fn.traverse({\n+ TypeAnnotation(path) {\n+ path.skip();\n+ },\n+ TSTypeAnnotation(path) {\n+ path.skip();\n+ },\n+ TypeAlias(path) ... | 2024-03-21T21:11:05 |
electron/electron | f229201f41d7cfe241e584d5ba801bf406666e55 | 3a06047e6153ef494b134970892665c55c32931e | refactor: make NativeWindow getter methods const (#40804)
* refactor: make NativeWindow getter methods const
* fixup! refactor: make NativeWindow getter methods const
make GetZOrderLevel() const
* fixup! refactor: make NativeWindow getter methods const
fix oops | [
{
"path": "shell/browser/api/electron_api_base_window.cc",
"patch": "@@ -332,7 +332,7 @@ void BaseWindow::Blur() {\n window_->Focus(false);\n }\n \n-bool BaseWindow::IsFocused() {\n+bool BaseWindow::IsFocused() const {\n return window_->IsFocused();\n }\n \n@@ -351,11 +351,11 @@ void BaseWindow::Hide() ... | 2024-01-04T15:51:59 |
golang/go | 3bf1eecbd30f48851c35f608aa265c978b2cf301 | 8ed23a2936dc5f3cf070c52043dcc0e92563e62b | runtime: fix struct comment
Change-Id: I0c33830b13c8a187ac82504c7653abb8f8cf7530
Reviewed-on: https://go-review.googlesource.com/c/go/+/681655
Reviewed-by: Sean Liao <sean@liao.dev>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang... | [
{
"path": "src/runtime/mheap.go",
"patch": "@@ -312,8 +312,10 @@ type heapArena struct {\n \t// during marking.\n \tpageSpecials [pagesPerArena / 8]uint8\n \n-\t// pageUseSpanDartboard is a bitmap that indicates which spans are\n-\t// heap spans and also gcUsesSpanDartboard.\n+\t// pageUseSpanInlineMarkBits... | 2025-06-14T11:37:47 |
nodejs/node | 10cce655cac552c2babbb63083dfe54e6ba7f05f | 81859cf01f7c0d644a80ec7bdd90f672b3d5444b | assert: fix the string length check for printing the simple diff
PR-URL: https://github.com/nodejs/node/pull/55474
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "lib/internal/assert/assertion_error.js",
"patch": "@@ -134,7 +134,14 @@ function getStackedDiff(actual, expected) {\n }\n \n function getSimpleDiff(originalActual, actual, originalExpected, expected) {\n- const stringsLen = actual.length + expected.length;\n+ let stringsLen = actual.length + ex... | 2024-11-02T15:12:12 |
facebook/react | 4bc676d3dbd78f5c4c3f9be7f86c3b084a268ac9 | 241b35463c662a9da230b511dc161fd9aa943634 | Repro for undefined "hoisted" variable from type alias
We inadvertently think the type annotation on the function expression param is
an identifier and create a LoadLocal for it, which fails. This happens to trip
up on the InferReferenceEffects initialization check, which we had assumed would
only fire for invalid... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.type-alias-used-as-annotation_.flow.expect.md",
"patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+// @flow @enableAssumeHooksFollowRulesOfReact @enableTransitivelyFreezeFunctionExpressions\n+type Bar = s... | 2024-03-21T21:11:04 |
electron/electron | 3a06047e6153ef494b134970892665c55c32931e | 84ba0c6c7d248d7121d1103d2844e7a124b59e3f | docs: note accelerator case insensitivity (#40783)
* Fix PR#38673
As requested in PR#38673 , a line has been added that explicitly states that accelerators are case sensitive
* Update docs/api/accelerator.md
Co-authored-by: Erick Zhao <erick@hotmail.ca>
* Update accelerator.md
---------
Co-authored-b... | [
{
"path": "docs/api/accelerator.md",
"patch": "@@ -4,7 +4,7 @@\n \n Accelerators are strings that can contain multiple modifiers and a single key code,\n combined by the `+` character, and are used to define keyboard shortcuts\n-throughout your application.\n+throughout your application. Accelerators are ca... | 2024-01-04T15:06:12 |
golang/go | 8ed23a2936dc5f3cf070c52043dcc0e92563e62b | ef60769b46c5ef796876c6b4407562646fb27d15 | crypto/cipher: fix link to crypto/aes
Fixes #74309
Change-Id: I4d97514355d825124a8d879c2590b45b039f5fd1
Reviewed-on: https://go-review.googlesource.com/c/go/+/682596
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>... | [
{
"path": "src/crypto/cipher/gcm.go",
"patch": "@@ -82,7 +82,7 @@ func newGCM(cipher Block, nonceSize, tagSize int) (AEAD, error) {\n \n // NewGCMWithRandomNonce returns the given cipher wrapped in Galois Counter\n // Mode, with randomly-generated nonces. The cipher must have been created by\n-// [aes.NewCi... | 2025-06-20T11:04:22 |
nodejs/node | 824c149e79af858be99f35a748a949995daba75b | a53c0cc7fcb51cffeb8058b26d9123b6c61ef157 | doc: improve c++ embedder API doc
normalise the headers, fixup bullet points and
expand `node::IsolateData` scope for clarity.
PR-URL: https://github.com/nodejs/node/pull/55597
Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/embedding.md",
"patch": "@@ -23,7 +23,7 @@ a Node.js-specific environment.\n \n The full code can be found [in the Node.js source tree][embedtest.cc].\n \n-### Setting up per-process state\n+### Setting up a per-process state\n \n Node.js requires some per-process state management in orde... | 2024-11-01T03:43:53 |
facebook/react | 241b35463c662a9da230b511dc161fd9aa943634 | 1cf8d9bc8b8ce905ce55043707fffb0b0c504e4f | Fix PruneMaybeThrows to update phi operand predecessor ids
When PruneMaybeThrows removes maybe-throw terminals, it's possible that the
block in question reassigned a value s.t. it appears as a later phi operand.
That phi has to be rewritten to reflect the updated predecessor block.
Here we track these rewrites (t... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Optimization/PruneMaybeThrows.ts",
"patch": "@@ -5,7 +5,10 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n+import { CompilerError } from \"..\";\n import {\n+ BlockId,\n+ GeneratedSource,\n GotoVariant,\n HIRFunction... | 2024-03-21T21:11:04 |
electron/electron | 84ba0c6c7d248d7121d1103d2844e7a124b59e3f | 0672f59f2648df29294d507e3789ca6a87877b8a | fix: BrowserView and <webview> should be transparent by default (#40866) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -3778,15 +3778,17 @@ void WebContents::SetImageAnimationPolicy(const std::string& new_policy) {\n }\n \n void WebContents::SetBackgroundColor(absl::optional<SkColor> maybe_color) {\n- web_contents()->SetPageBaseBackgroundColor(maybe_c... | 2024-01-04T15:04:56 |
vercel/next.js | 1e0f9d489880c4744a9d203f41c8c8ebcf0e8f2f | 78459a2a7def02e2706ee38dd647572f5b32c4c0 | Turbopack: fix NFT tracing of sharp 0.34 (#82340)
We need a special case for this shared library loading | [
{
"path": "turbopack/crates/turbopack-core/src/lib.rs",
"patch": "@@ -25,6 +25,7 @@ pub mod introspect;\n pub mod issue;\n pub mod module;\n pub mod module_graph;\n+pub mod node_addon_module;\n pub mod output;\n pub mod package_json;\n pub mod proxied_asset;",
"additions": 1,
"deletions": 0,
"la... | 2025-08-25T15:18:57 |
facebook/react | 72e02a8350309c6228ec1d9f21a5b09b84456fb8 | c47fee55d9886b2d9746a4b71c48bbd8b8ac9d3a | [Flight Reply] Don't allow Symbols to be passed to a reply (#28610)
As mentioned in #28609 there's a potential security risk if you allow a
passed value to the server to spoof Elements because it allows a hacker
to POST cross origin. This is only an issue if your framework allows
this which it shouldn't but it seem... | [
{
"path": "packages/react-client/src/ReactFlightReplyClient.js",
"patch": "@@ -105,10 +105,6 @@ function serializeTemporaryReferenceID(id: number): string {\n return '$T' + id.toString(16);\n }\n \n-function serializeSymbolReference(name: string): string {\n- return '$S' + name;\n-}\n-\n function seriali... | 2024-03-21T20:53:02 |
vercel/next.js | 78459a2a7def02e2706ee38dd647572f5b32c4c0 | 3596c0334303f464e201d74941a49d2fbe650ecf | Turbopack: support pattern into exports field (#82757)
Support patterns into `exports` field mappings
- for exact mappings (such as `"./foo": "./src/foo/index.js"`), all patterns work
- for wildcard mappings (such as `"./*": "./src/*/index.js"`), only basic patterns of `prefix<dynamic>suffix` are supported. | [
{
"path": "turbopack/crates/turbopack-core/src/resolve/alias_map.rs",
"patch": "@@ -1,9 +1,10 @@\n use std::{\n+ borrow::Cow,\n collections::BTreeMap,\n fmt::{Debug, Formatter},\n- future::Future,\n };\n \n+use anyhow::Result;\n use patricia_tree::PatriciaMap;\n use serde::{\n Deserialize,... | 2025-08-25T14:36:57 |
facebook/react | c47fee55d9886b2d9746a4b71c48bbd8b8ac9d3a | 7263b4f80a52036060257cc9a0e388351a05f231 | [Fizz][Legacy] use static markup mode for renderToStaticNodeStream (#28606)
Since it was first implemented renderToStaticNodeStream never correctly
set the renderer state to mark the output as static markup which means
it was functionally the same as renderToNodeStream. This change fixes
this oversight. While we ar... | [
{
"path": "packages/react-dom/src/__tests__/ReactServerRendering-test.js",
"patch": "@@ -609,6 +609,41 @@ describe('ReactDOMServer', () => {\n expect(response.read()).toBeNull();\n });\n });\n+\n+ it('should refer users to new apis when using suspense', async () => {\n+ let resolve... | 2024-03-21T18:03:09 |
vercel/next.js | 3596c0334303f464e201d74941a49d2fbe650ecf | 1029d059a816c2fda85f154daec4561ec0d9c98b | Turbopack: fix race condition in unit test (#82989) | [
{
"path": "turbopack/crates/turbo-tasks-backend/tests/trait_ref_cell.rs",
"patch": "@@ -2,7 +2,7 @@\n #![feature(arbitrary_self_types_pointers)]\n #![allow(clippy::needless_return)] // tokio macro-generated code doesn't respect this\n \n-use std::sync::Mutex;\n+use std::{collections::HashSet, mem::take, syn... | 2025-08-25T12:55:52 |
facebook/react | 1cf8d9bc8b8ce905ce55043707fffb0b0c504e4f | 14d54869ed934d20912fd65f12017a2b03d71008 | Repro for missing predecessor with try/catch
Found when running the compiler on a large swath of internal code.
PruneMaybeThrows rewrites terminals, but the logic to update subsequent phis was
incorrectly dropping phis rather than rewriting them. Fixed in the next PR. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.repro-preds-undefined.expect.md",
"patch": "@@ -0,0 +1,28 @@\n+\n+## Input\n+\n+```javascript\n+// @enableAssumeHooksFollowRulesOfReact @enableTransitivelyFreezeFunctionExpressions\n+function useSupportsTouchEvent()... | 2024-03-20T21:07:28 |
golang/go | 8552bcf7c261cd150d0074c4ec7e2412b20af0a5 | 4c7567290ced9c4dc629f2386f2eebfebba95ce6 | cmd/go/internal/fips140: ignore GOEXPERIMENT on error
During toolchain selection, the GOEXPERIMENT value may not be valid for
the current version (but it is valid for the selected version). In this
case, cfg.ExperimentErr is set and cfg.Experiment is nil.
Normally cmd/go main exits when ExperimentErr is set, so Exper... | [
{
"path": "src/cmd/go/internal/fips140/fips140.go",
"patch": "@@ -114,7 +114,11 @@ func Init() {\n \t\tfsys.Bind(Dir(), filepath.Join(cfg.GOROOT, \"src/crypto/internal/fips140\"))\n \t}\n \n-\tif cfg.Experiment.BoringCrypto && Enabled() {\n+\t// ExperimentErr != nil if GOEXPERIMENT failed to parse. Typicall... | 2025-06-11T20:46:21 |
nodejs/node | a53c0cc7fcb51cffeb8058b26d9123b6c61ef157 | e2bd64ddfe76a2c1d531c92eb713cf013d267f3b | src: fix dns crash when failed to create NodeAresTask
PR-URL: https://github.com/nodejs/node/pull/55521
Fixes: https://github.com/nodejs/node/issues/52439
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "src/cares_wrap.cc",
"patch": "@@ -145,14 +145,10 @@ void ares_sockstate_cb(void* data, ares_socket_t sock, int read, int write) {\n ares_poll_cb);\n \n } else {\n- /* read == 0 and write == 0 this is c-ares's way of notifying us that */\n- /* the socket is now closed. We... | 2024-11-01T03:28:03 |
facebook/react | 14d54869ed934d20912fd65f12017a2b03d71008 | 4daa4eceb7577918fb07eea8b03dcd70cfa84e81 | [patch][codegen] don't reuse babel nodes in codegen for dependencies
---
Reusing optionalMemberExpression nodes recently led to a bug when compiling
Forget playground.
```js
// the two a?.b's here should be different nodes!
if (a?.b !== $[0]) {
// ...
$[0] = a?.b;
}
```
Forget playground uses `babe... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -370,7 +370,6 @@ function codegenReactiveScope(\n const outputComments: Array<string> = [];\n for (const dep of scope.dependencies) {\n const index = cx.nextCacheIndex;\n- const dep... | 2024-03-20T23:29:02 |
vercel/next.js | 1029d059a816c2fda85f154daec4561ec0d9c98b | d58c9df9ef844162ccabb608dac83524beeb1376 | Update 07-fetching-data.mdx (#82862)
Promise.all or any of the other 3 static concurrency methods don't
actually run requests in parallel, rather they execute concurrently.
[Parallelism vs
Concurrency](https://wiki.haskell.org/Parallelism_vs._Concurrency)
[Promise
Concurrency](https://developer.mozilla.org/en-US/docs... | [
{
"path": "docs/01-app/01-getting-started/07-fetching-data.mdx",
"patch": "@@ -504,7 +504,7 @@ export default async function Page({ params }) {\n }\n ```\n \n-You can initiate requests in parallel by defining them outside the components that use the data, and resolving them together, for example, with [`Pro... | 2025-08-25T11:12:22 |
golang/go | 4c7567290ced9c4dc629f2386f2eebfebba95ce6 | c6ac7362888c25dd1251adaa11e1503cf78ec26d | runtime: set mspan limit field early and eagerly
Currently the mspan limit field is set after allocSpan returns, *after*
the span has already been published to the GC (including the
conservative scanner). But the limit field is load-bearing, because it's
checked to filter out invalid pointers. A stale limit value coul... | [
{
"path": "src/runtime/arena.go",
"patch": "@@ -1052,10 +1052,18 @@ func (h *mheap) allocUserArenaChunk() *mspan {\n \th.initSpan(s, spanAllocHeap, spc, base, userArenaChunkPages)\n \ts.isUserArenaChunk = true\n \ts.elemsize -= userArenaChunkReserveBytes()\n-\ts.limit = s.base() + s.elemsize\n \ts.freeindex... | 2025-06-18T17:42:16 |
electron/electron | dfce1a9eb4de3a5789536cd511e81c6dfd81e393 | baca2e302db0356b3039ab9f1fadf6b725afc04d | fix: ignore all NODE_ envs from foreign parent in node process (#40770)
* fix: ignore all NODE_ envs from foreign parent
* fix: recognize ad-hoc signed binary | [
{
"path": "filenames.gni",
"patch": "@@ -656,6 +656,7 @@ filenames = {\n \"shell/common/node_includes.h\",\n \"shell/common/node_util.cc\",\n \"shell/common/node_util.h\",\n+ \"shell/common/node_util_mac.mm\",\n \"shell/common/options_switches.cc\",\n \"shell/common/options_switches.h... | 2024-01-04T07:34:08 |
nodejs/node | f67e45e0702baef1ee1253042e48fcb7b806d3b3 | d080f0db1f7d05bbf058425485f14c29f471a7ba | http2: fix client async storage persistence
Create and store an AsyncResource for each stream, following a similar
approach as used in HttpAgent.
Fixes: https://github.com/nodejs/node/issues/55376
PR-URL: https://github.com/nodejs/node/pull/55460
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Stephen Bel... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -60,6 +60,8 @@ const {\n owner_symbol,\n },\n } = require('internal/async_hooks');\n+const { AsyncResource } = require('async_hooks');\n+\n const {\n AbortError,\n aggregateTwoErrors,\n@@ -241,6 +243,7 @@ const kPendingRequestCalls = Symbol('kPe... | 2024-10-31T17:08:45 |
facebook/react | 4daa4eceb7577918fb07eea8b03dcd70cfa84e81 | 63bb781781ef1b4b08ee169b43f08dece4232a39 | [validation] More detailed error diagnostics for validatePreserveExistingMemo
---
This should make it easier to grep through error diagnostics to understand state
of the codebase:
- no matching dependences -> likely that source is ignoring eslint failures
- differences in ref.current access -> non-backwards co... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidatePreservedManualMemoization.ts",
"patch": "@@ -102,10 +102,41 @@ function prettyPrintScopeDependency(val: ReactiveScopeDependency): string {\n return `${rootStr}${val.path.length > 0 ? \".\" : \"\"}${val.path.join(\".\")}`;\n }\n... | 2024-03-20T20:05:24 |
vercel/next.js | 85ef3638b3f546bb9117e8cd742771388303af0e | d6794f43c19ef3d64ac7bcc7bbe47433c95d42f9 | Turbopack: don't treat metadata routes as RSC (#82911)
Metadata routes are just `route.ts`\-s in diguise.
Treat them the same regarding the layer (`app-route`) and whether to emit client reference/server actions manifests for them (= don't).
This fixes a panic:
```
thread 'tokio-runtime-worker' panicked at crates/ne... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -1134,8 +1134,8 @@ impl AppEndpoint {\n next_config: Vc<NextConfig>,\n ) -> Result<Vc<AppEntry>> {\n Ok(get_app_metadata_route_entry(\n- self.app_project.rsc_module_context(),\n- self.app_project.edge_rsc_module_c... | 2025-08-25T09:56:47 |
golang/go | c6ac7362888c25dd1251adaa11e1503cf78ec26d | 53af292aed21c3f6ea75d16e5b25f660b2c028fb | runtime: prevent mutual deadlock between GC stopTheWorld and suspendG
Almost everywhere we stop the world we casGToWaitingForGC to prevent
mutual deadlock with the GC trying to scan our stack. This historically
was only necessary if we weren't stopping the world to change the GC
phase, because what we were worried abo... | [
{
"path": "src/runtime/mgc.go",
"patch": "@@ -1048,7 +1048,7 @@ func gcMarkTermination(stw worldStop) {\n \t// N.B. The execution tracer is not aware of this status\n \t// transition and handles it specially based on the\n \t// wait reason.\n-\tcasGToWaitingForGC(curgp, _Grunning, waitReasonGarbageCollectio... | 2025-06-14T02:45:08 |
nodejs/node | d080f0db1f7d05bbf058425485f14c29f471a7ba | 4379dfb1fdcd6a862ae5c3c74757efdc5bc11b0d | module: unify TypeScript and .mjs handling in CommonJS
This refactors the CommonJS loading a bit to create a center point
that handles source loading (`loadSource`) and make format detection
more consistent to pave the way for future synchronous hooks.
- Handle .mjs in the .js handler, similar to how .cjs has been ha... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -100,6 +100,9 @@ const kIsMainSymbol = Symbol('kIsMainSymbol');\n const kIsCachedByESMLoader = Symbol('kIsCachedByESMLoader');\n const kRequiredModuleSymbol = Symbol('kRequiredModuleSymbol');\n const kIsExecuting = Symbol('kIsExecuting');\n+\n+con... | 2024-10-31T15:43:57 |
facebook/react | a4939017ffe2e04a94efca0f48b661bc778a6fa4 | 8ef14cf24219addedca3607dabb3bef37fb2e013 | Concurrent RTR in ReactHooksInspectionIntegration-test (#28549)
More test updates to use concurrent root in RTR
`yarn test
packages/react-debug-tools/src/__tests__/ReactHooksInspectionIntegration-test.js` | [
{
"path": "packages/react-debug-tools/src/__tests__/ReactHooksInspectionIntegration-test.js",
"patch": "@@ -51,7 +51,12 @@ describe('ReactHooksInspectionIntegration', () => {\n </div>\n );\n }\n- const renderer = ReactTestRenderer.create(<Foo prop=\"prop\" />);\n+ let renderer;\n+ ... | 2024-03-20T15:15:32 |
electron/electron | 8c89137ecd1ad23b69ffc03d40385bc219977119 | be4e4ff11b31ef2d6caf322eae947df4bdaf1a16 | chore: bump chromium to 122.0.6194.0 (main) (#40750)
* chore: bump chromium in DEPS to 122.0.6180.0
* chore: update render_widget_host_view_base.patch
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/5079532
minor manual changes to match upstream changes
* chore: update printing.patch
Xre... | [
{
"path": "BUILD.gn",
"patch": "@@ -492,6 +492,7 @@ source_set(\"electron_lib\") {\n \"//third_party/webrtc_overrides:webrtc_component\",\n \"//third_party/widevine/cdm:headers\",\n \"//third_party/zlib/google:zip\",\n+ \"//ui/base:ozone_buildflags\",\n \"//ui/base/idle\",\n \"//ui/co... | 2024-01-03T08:52:49 |
golang/go | 1be5eb2686d8050c7067897b1ed98446ff8566c5 | 3a4d10bfca5cca54b69c50123d1245604c334e0f | [dev.simd] cmd/compile: fix signature error of PairDotProdAccumulate.
This CL is generated by CL 682135.
Change-Id: I6f004b2eca6323f1ff22555c85db993386f24c6c
Reviewed-on: https://go-review.googlesource.com/c/go/+/682155
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules",
"patch": "@@ -1115,9 +1115,9 @@\n (MaskedSaturatedSubUint8x16 x y mask) => (VPSUBSBMasked128 x y (VPMOVVec8x16ToM <types.TypeMask> mask))\n (MaskedSaturatedSubUint8x32 x y mask) => (VPSUBSBMasked256 x y (VPMOVVec8x32ToM <types.TypeMask> mask))\n... | 2025-06-16T22:53:36 |
facebook/react | 29a6ca33a548ba372942dd5f0ae1c777e405610b | 82c6595e758679adf518e69794ba8d11b97a6bd1 | Update gate pragma to detect global error events (#28591)
If a global error event is dispatched during a test, Jest reports that
test as a failure.
Our `@gate` pragma feature should account for this — if the gate
condition is false, and the global error event is dispatched, then the
test should be reported as a ... | [
{
"path": "scripts/babel/__tests__/transform-test-gate-pragma-test.js",
"patch": "@@ -203,6 +203,15 @@ describe('transform test-gate-pragma: actual runtime', () => {\n console.error('Stop that!');\n throw Error('I told you to stop!');\n });\n+\n+ // @gate false\n+ test('a global error event is t... | 2024-03-20T01:08:37 |
nodejs/node | 4379dfb1fdcd6a862ae5c3c74757efdc5bc11b0d | a465b206d71ff99e8d7e131638f59adb7cd1ec3a | http: add diagnostic channel `http.client.request.created`
PR-URL: https://github.com/nodejs/node/pull/55586
Fixes: https://github.com/nodejs/node/issues/55352
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: theanarkh <theratliter@gmail.com> | [
{
"path": "doc/api/diagnostics_channel.md",
"patch": "@@ -1123,6 +1123,13 @@ independently.\n \n #### HTTP\n \n+`http.client.request.created`\n+\n+* `request` {http.ClientRequest}\n+\n+Emitted when client creates a request object.\n+Unlike `http.client.request.start`, this event is emitted before the reques... | 2024-10-31T13:04:25 |
electron/electron | be4e4ff11b31ef2d6caf322eae947df4bdaf1a16 | a208d45aca3b19fb661c630880451e26d46c92a6 | fix: make grant_file_protocol_extra_privileges fuse also block CORS fetches (#40801) | [
{
"path": "build/fuses/build.py",
"patch": "@@ -32,6 +32,13 @@\n \n TEMPLATE_CC = \"\"\"\n #include \"electron/fuses.h\"\n+#include \"base/dcheck_is_on.h\"\n+\n+#if DCHECK_IS_ON()\n+#include \"base/command_line.h\"\n+#include \"base/strings/string_util.h\"\n+#include <string>\n+#endif\n \n namespace electro... | 2024-01-02T21:06:33 |
vercel/next.js | d6794f43c19ef3d64ac7bcc7bbe47433c95d42f9 | d89f14dda3f77ec1afc48e045190afc17fbb2ae5 | Turbopack: throw large static metadata error earlier (#82939)
Throw it during bundling, as opposed to at runtime.
This circumnavigates a panic in Turbopack when inlining a 40mb string into a JS module. | [
{
"path": "crates/next-core/src/next_app/metadata/route.rs",
"patch": "@@ -5,12 +5,16 @@\n use anyhow::{Ok, Result, bail};\n use base64::{display::Base64Display, engine::general_purpose::STANDARD};\n use indoc::{formatdoc, indoc};\n-use turbo_rcstr::rcstr;\n+use turbo_rcstr::{RcStr, rcstr};\n use turbo_task... | 2025-08-25T09:09:45 |
golang/go | 53af292aed21c3f6ea75d16e5b25f660b2c028fb | d05825468921f8d0e54c81f59330d3b263057a54 | encoding/json/jsontext: fix spelling error
Change-Id: Ic1f385afbe35addba8b3c439ccb64c56b1d300c9
Reviewed-on: https://go-review.googlesource.com/c/go/+/681795
Reviewed-by: Sean Liao <sean@liao.dev>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Joseph Tsai <joetsa... | [
{
"path": "src/encoding/json/jsontext/doc.go",
"patch": "@@ -10,7 +10,7 @@\n // primitive data types such as booleans, strings, and numbers,\n // in addition to structured data types such as objects and arrays.\n //\n-// This package (encoding/json/jsontxt) is experimental,\n+// This package (encoding/json/... | 2025-06-16T05:51:57 |
facebook/react | 346f6c13a838a3c99dac3a3c01d67f32da28e366 | f2b0b656b255fbf9efaf12c316988ff8a34332a2 | Todo for fbt with multiple fbt:enum
I need to do more debugging to figure out exactly why the example earlier fails
— but whatever it is, it's clearly a matter of the fbt plugin relying on some
specifics of source locations.
Here we just detect multiple instances of `<fbt:enum>` within a given `<fbt>`
tag and th... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -2058,6 +2058,25 @@ function lowerExpression(\n suggestions: null,\n });\n }\n+ const fbtEnumLocations: Array<SourceLocation> = [];\n+ expr.traverse({\n+ JSXNamespac... | 2024-03-19T23:39:05 |
nodejs/node | 81517faceac86497b3c8717837f491aa29a5e0f9 | 84fe809535b0954bbfed8658d3ede8a2f0e030db | build: fix building with system icu 76
ICU 76 decided to reduce overlinking[^1] thus `icu-i18n` will no longer
add `icu-uc` when linking to shared libraries. This results in undefined
symbols/references when trying to build with system ICU 76.
[^1]: unicode-org/icu@199bc82
PR-URL: https://github.com/nodejs/node/pull... | [
{
"path": "configure.py",
"patch": "@@ -1879,7 +1879,7 @@ def icu_download(path):\n elif with_intl == 'system-icu':\n # ICU from pkg-config.\n o['variables']['v8_enable_i18n_support'] = 1\n- pkgicu = pkg_config('icu-i18n')\n+ pkgicu = pkg_config(['icu-i18n', 'icu-uc'])\n if not pkgicu[0]... | 2024-10-29T23:24:38 |
electron/electron | a208d45aca3b19fb661c630880451e26d46c92a6 | 7995c56fb0b20b254b379a43e1435a81695a3c7d | fix: titlebar incorrectly displayed on frameless windows (#40749)
* fix: titlebar incorrectly displayed on frameless windows
* fix: enable transparency for Mica windows
* Refactor ShouldWindowContentsBeTransparent
---------
Co-authored-by: clavin <clavin@electronjs.org> | [
{
"path": "patches/chromium/fix_activate_background_material_on_windows.patch",
"patch": "@@ -1,19 +1,23 @@\n From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n From: clavin <clavin@electronjs.org>\n-Date: Wed, 30 Aug 2023 18:15:36 -0700\n+Date: Mon, 11 Dec 2023 20:43:34 -0300\n Subjec... | 2024-01-02T18:59:47 |
vercel/next.js | d8d3b2e07e51d0962c9e82adb61c638b3d903d58 | 94f422e480ac20de0abb9f1b860ca5f8a62c90e4 | Unhook WebSocket (#82931)
Currently, the WebSocket that's used for `next dev` is created in a React hook inside of the `HotReload` component, which is (transitively) rendered by the `ServerRoot` component, but only after the initial RSC response is processed, at least partially.
This creates a problem when integrat... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -780,5 +780,9 @@\n \"779\": \"Route %s used \\\"searchParams\\\" inside \\\"use cache\\\". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \\\"searchParams\\\" outside of... | 2025-08-25T08:51:03 |
facebook/react | f2b0b656b255fbf9efaf12c316988ff8a34332a2 | 501481ccea2dc1ba844a9f8a926db22a23e1f322 | More accurate source locations for JSX opening/closing tags
<img width="553" alt="Screenshot 2024-03-19 at 4 41 15 PM"
src="https://github.com/facebook/react-forget/assets/6425824/e87ee704-6c67-4e10-824b-71e97e7e19f5">
Slightly improves source locations for JSX elements so that the opening and
closing tag have di... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -1967,6 +1967,7 @@ function lowerExpression(\n case \"JSXElement\": {\n const expr = exprPath as NodePath<t.JSXElement>;\n const opening = expr.get(\"openingElement\");\n+ const openingLoc = openin... | 2024-03-19T23:26:32 |
golang/go | 3254c2bb8308690a88a9f62b7f51c84d80325e79 | 816199e421f743324e9c1c82bda22d1d0f53845c | internal/reflectlite: fix comment about meaning of flag field
Copied current (presumably correct) comment text from reflect package.
Change-Id: I19582b3675fbcb96a925002498d24ad2b7bc6178
Reviewed-on: https://go-review.googlesource.com/c/go/+/681935
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUC... | [
{
"path": "src/internal/reflectlite/value.go",
"patch": "@@ -43,17 +43,19 @@ type Value struct {\n \tptr unsafe.Pointer\n \n \t// flag holds metadata about the value.\n-\t// The lowest bits are flag bits:\n+\t//\n+\t// The lowest five bits give the Kind of the value, mirroring typ.Kind().\n+\t//\n+\t// The ... | 2025-06-14T23:38:26 |
nodejs/node | 84fe809535b0954bbfed8658d3ede8a2f0e030db | 8aac7da7d66fc0b1426d8bf1e7b3e7b7208885bd | test: remove unneeded listeners
Unhandled `'error'` events will make the process exit with an unclean
exit code anyway.
PR-URL: https://github.com/nodejs/node/pull/55486
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> | [
{
"path": "test/parallel/test-child-process-dgram-reuseport.js",
"patch": "@@ -32,4 +32,4 @@ const socket = dgram.createSocket(options);\n \n socket.bind(+process.env.port, common.mustCall(() => {\n socket.close();\n-})).on('error', common.mustNotCall());\n+}));",
"additions": 1,
"deletions": 1,
... | 2024-10-29T21:52:09 |
electron/electron | 7995c56fb0b20b254b379a43e1435a81695a3c7d | ab2a4fd836d539194bc5cde5f0d665eddeb6a134 | refactor: use a FixedFlatMap for v8 converting ui::MenuSourceType (#40786) | [
{
"path": "shell/common/gin_converters/content_converter.cc",
"patch": "@@ -69,80 +69,39 @@ namespace {\n \n namespace gin {\n \n+static constexpr auto MenuSourceTypes =\n+ base::MakeFixedFlatMap<base::StringPiece, ui::MenuSourceType>({\n+ {\"adjustSelection\", ui::MENU_SOURCE_ADJUST_SELECTION},\n... | 2023-12-20T23:44:17 |
vercel/next.js | 8d3d827552fdc879dccbd5453ed0ef439b02eff5 | 3e0247431e59f6796f8a1c25a39dc17c78f979bc | fix: change "noUnknownAtRules" to "warn" for Biome (#82974)
Temporary patch for #82826 to get Biome lint working with Tailwind until
they release a version with the fix (expected soon).
Note that this will still throw a warning, just not fail the build. | [
{
"path": "packages/create-next-app/templates/app-tw-empty/js/biome.json",
"patch": "@@ -17,7 +17,10 @@\n \"linter\": {\n \"enabled\": true,\n \"rules\": {\n- \"recommended\": true\n+ \"recommended\": true,\n+ \"suspicious\": {\n+ \"noUnknownAtRules\": \"warn\"\n+ }\n ... | 2025-08-24T09:28:52 |
rust-lang/rust | c1b0b32fe9c150392345c9f9c35f6c056f5ffcd4 | 05cd01b8879f599e064ffd7294a5ae09320e25b5 | fix: verify NeverToAny adjustment on binop lhs never place | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/tests/never_type.rs",
"patch": "@@ -823,11 +823,11 @@ fn binop_lhs_never_place_diverges() {\n check_no_mismatches(\n r#\"\n //- minicore: sized, add\n-fn foo() -> i32 {\n+fn foo() {\n unsafe {\n- let p: *const ! = 0 as _;\n- ... | 2026-02-18T05:42:35 |
facebook/react | 82c6595e758679adf518e69794ba8d11b97a6bd1 | 37676aba76a9b97e1059e6dec39c3f401f44248d | Bump es5-ext from 0.10.53 to 0.10.63 in /fixtures/dom (#28459)
Bumps [es5-ext](https://github.com/medikoo/es5-ext) from 0.10.53 to
0.10.63.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/medikoo/es5-ext/releases">es5-ext's
releases</a>.</em></p>
<blockquote>
<h2>0.10... | [
{
"path": "fixtures/dom/yarn.lock",
"patch": "@@ -2679,16 +2679,17 @@ es-to-primitive@^1.2.1:\n is-date-object \"^1.0.1\"\n is-symbol \"^1.0.2\"\n \n-es5-ext@^0.10.35, es5-ext@^0.10.46, es5-ext@^0.10.50, es5-ext@~0.10.14:\n- version \"0.10.53\"\n- resolved \"https://registry.yarnpkg.com/es5-ext/-/... | 2024-03-19T22:13:39 |
golang/go | 816199e421f743324e9c1c82bda22d1d0f53845c | ea00461b17c7579d1c9aff2398953b61747ce642 | runtime: don't let readTrace spin on trace.shutdown
Issue #74045 describes a scenario in which gopark is inlined into
readTrace, such that there are no preemption points. This is only a
problem because readTrace spins if trace.shutdown is set, through
traceReaderAvailable. However, trace.shutdown is almost certainly
o... | [
{
"path": "src/runtime/trace.go",
"patch": "@@ -956,7 +956,7 @@ func traceReader() *g {\n // scheduled and should be. Callers should first check that\n // (traceEnabled() || traceShuttingDown()) is true.\n func traceReaderAvailable() *g {\n-\t// There are three conditions under which we definitely want to s... | 2025-06-10T21:44:56 |
nodejs/node | 8aac7da7d66fc0b1426d8bf1e7b3e7b7208885bd | 3b3a95ac0cdb1808f4ea699ff64942eb85ea61a6 | module: fix error thrown from require(esm) hitting TLA repeatedly
This tracks the asynchronicity in the ModuleWraps when they turn out to
contain TLA after instantiation, and throw the right error
(ERR_REQUIRE_ASYNC_MODULE) when it's required again. It removes
the freezing of ModuleWraps since it's not meaningful to f... | [
{
"path": "lib/internal/errors.js",
"patch": "@@ -1650,6 +1650,9 @@ E('ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS', '%s', TypeError);\n E('ERR_QUIC_CONNECTION_FAILED', 'QUIC connection failed', Error);\n E('ERR_QUIC_ENDPOINT_CLOSED', 'QUIC endpoint closed: %s (%d)', Error);\n E('ERR_QUIC_OPEN_STREAM_FAILED', '... | 2024-10-29T21:15:19 |
electron/electron | 95d094d75bddb99c83d2902fbc9a4335632a41cf | ba976799012d33a2ddfe40f8692029dc37e99115 | fix: add partition alloc check for MacOS 13/14+ (#40757) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -127,3 +127,4 @@ feat_allow_passing_of_objecttemplate_to_objecttemplatebuilder.patch\n chore_remove_check_is_test_on_script_injection_tracker.patch\n fix_restore_original_resize_performance_on_macos.patch\n feat_allow_code_cache_in_custom_schemes.patch\n+e... | 2023-12-14T21:47:31 |
rust-lang/rust | 515d05522c4c12f65d816684f11b5ad6fc5a0df7 | 115bfdbb35014162be380f061ee08691f2503601 | Update compiler/rustc_borrowck/src/diagnostics/move_errors.rs
Co-authored-by: Esteban Kuber <estebank@users.noreply.github.com> | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/move_errors.rs",
"patch": "@@ -999,11 +999,13 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n if binds_to.len() == 1 {\n let place_desc = self.local_name(*local).map(|sym| format!(\"`{sym}`\"));\n \n- i... | 2026-02-18T03:46:37 |
vercel/next.js | 1400faa489e38f1fd97765944bb46fb0e5c75433 | 1fa24a41084da75145a33289602eddcf67def60b | Turbopack: bigger small value blocks (#82370)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### ... | [
{
"path": "turbopack/crates/turbo-persistence/src/static_sorted_file_builder.rs",
"patch": "@@ -18,16 +18,16 @@ use crate::{\n };\n \n /// The maximum number of entries that should go into a single key block\n-const MAX_KEY_BLOCK_ENTRIES: usize = 100 * 1024;\n+const MAX_KEY_BLOCK_ENTRIES: usize = MAX_KEY_BL... | 2025-08-23T05:23:38 |
facebook/react | 7257c9b4f80889eaadf884dade07be8783c90fdc | 93e0815b263e2cf341231ae36de0053a4394f586 | Fix for <fbt> with local import
Fbt violates the JSX spec by using a lowercase function as a tagname, even
though lowercase names are reserved for builtins. Here we detect cases where
there is an `<fbt>` tag where `fbt` is a local identifier and throw a todo. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -2044,6 +2044,21 @@ function lowerExpression(\n }\n props.push({ kind: \"JsxAttribute\", name: propName, place: value });\n }\n+ if (tag.kind === \"BuiltinTag\" && tag.name === \"fbt\") {\n+ ... | 2024-03-19T21:51:35 |
golang/go | ea00461b17c7579d1c9aff2398953b61747ce642 | 96a6e147b2b02b1f070d559cb2c8e1c25c9b78c3 | internal/trace: make Value follow reflect conventions
A previous change renamed Value.Uint64 to Value.ToUint64 to accomodate
string values. The method for a string value is then Value.ToString,
while the method for a debug string (for example, for fmt) is just
called String, as per fmt.Stringer.
This change follows a... | [
{
"path": "src/cmd/trace/gen.go",
"patch": "@@ -283,11 +283,11 @@ func (g *globalMetricGenerator) GlobalMetric(ctx *traceContext, ev *trace.Event)\n \tm := ev.Metric()\n \tswitch m.Name {\n \tcase \"/memory/classes/heap/objects:bytes\":\n-\t\tctx.HeapAlloc(ctx.elapsed(ev.Time()), m.Value.ToUint64())\n+\t\tc... | 2025-06-11T21:35:29 |
nodejs/node | 45c6a9e1f6e165eb0ab2f7b5635662aa1875c171 | 5633c62219e199baac833e8862d60333d85dc3d3 | src: migrate `String::Value` to `String::ValueView`
Fixes #54417
Ref: #55452
PR-URL: https://github.com/nodejs/node/pull/55458
Refs: https://github.com/nodejs/node/issues/55452
Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: James M Snell <jasnell@gma... | [
{
"path": "src/inspector_js_api.cc",
"patch": "@@ -245,9 +245,9 @@ static void AsyncTaskScheduledWrapper(const FunctionCallbackInfo<Value>& args) {\n Environment* env = Environment::GetCurrent(args);\n \n CHECK(args[0]->IsString());\n- Local<String> task_name = args[0].As<String>();\n- String::Value t... | 2024-10-29T00:32:26 |
electron/electron | a94fb2cb5da84edcddfa58efaf407fd1abca91ca | 80d85c0e8ec6675052a945d490c3b2b763316c0c | fix: don't reject `loadURL()` promise from `did-fail-load` - use `did-finish-load` instead (#40661) | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -333,24 +333,31 @@ WebContents.prototype.loadFile = function (filePath, options = {}) {\n }));\n };\n \n+type LoadError = { errorCode: number, errorDescription: string, url: string };\n+\n WebContents.prototype.loadURL = function (url, options) {\n... | 2023-12-12T19:45:14 |
vercel/next.js | 11c995310c038b4c96c3c1744ccb6738de5b6b1a | c9b8d7f7fb627931e9365af3439acd7e74445c81 | fix: add path normalization to getRelativePath for Windows (#82918)
See
https://github.com/vercel/next.js/pull/82761#pullrequestreview-3130058419 | [
{
"path": "packages/next/src/server/lib/router-utils/route-types-utils.ts",
"patch": "@@ -20,6 +20,7 @@ import {\n UNDERSCORE_GLOBAL_ERROR_ROUTE,\n UNDERSCORE_NOT_FOUND_ROUTE,\n } from '../../../shared/lib/entry-constants'\n+import { normalizePathSep } from '../../../shared/lib/page-path/normalize-path-... | 2025-08-22T20:56:29 |
facebook/react | 83409a1fdd14b2e5b33c587935a7ef552607780f | cb076b593cec3a92338958f58468cce19cb8f0d9 | [Flight] Encode React Elements in Replies as Temporary References (#28564)
Currently you can accidentally pass React Element to a Server Action. It
warns but in prod it actually works because we can encode the symbol and
otherwise it's mostly a plain object. It only works if you only pass
host components and no fun... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -35,6 +35,8 @@ import type {\n \n import type {Postpone} from 'react/src/ReactPostpone';\n \n+import type {TemporaryReferenceSet} from './ReactFlightTemporaryReferences';\n+\n import {\n enableBinaryFlight,\n enablePostpone,\n@@ -5... | 2024-03-19T20:59:52 |
golang/go | b9a548775fda6a74de8ab2020b2b95b4ebf1a2a9 | ca01eab9c7c9c4987a36f6887e332a1fcba757f0 | cmd/compile: add up-to-date test for generated files
This runs the ssa/_gen generator writing files into
a temporary directory, and then checks that there are
no differences with what is currently in the ssa directory,
and also checks that any file with the "generated from
_gen/..." header was actually generated, and ... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/README",
"patch": "@@ -9,3 +9,8 @@ more information.\n \n To regenerate everything, run \"go generate\" on the ssa package\n in the parent directory.\n+\n+The parent directory contains a test in generate_test.go that will fail\n+if the generated files are not up-... | 2025-06-10T18:15:46 |
nodejs/node | 5633c62219e199baac833e8862d60333d85dc3d3 | 7cb3a662dad3a3d1af14c8657992274f7c426924 | http: don't emit error after destroy
PR-URL: https://github.com/nodejs/node/pull/55457
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: James M Snell <jasne... | [
{
"path": "lib/_http_outgoing.js",
"patch": "@@ -908,6 +908,10 @@ OutgoingMessage.prototype.write = function write(chunk, encoding, callback) {\n };\n \n function onError(msg, err, callback) {\n+ if (msg.destroyed) {\n+ return;\n+ }\n+\n const triggerAsyncId = msg.socket ? msg.socket[async_id_symbol]... | 2024-10-28T12:57:58 |
electron/electron | 80d85c0e8ec6675052a945d490c3b2b763316c0c | 66b2f697ea6ad16eced011383b982d716c32e83c | fix: incorrectly mapped toggleDevTools in custom menu fiddle (#40703) | [
{
"path": "docs/fiddles/menus/customize-menus/main.js",
"patch": "@@ -102,7 +102,7 @@ const template = [\n })(),\n click: (item, focusedWindow) => {\n if (focusedWindow) {\n- focusedWindow.toggleDevTools()\n+ focusedWindow.webContents.toggleDevTools()\n ... | 2023-12-12T19:36:34 |
vercel/next.js | b478e57de89fb1611e7124b38bbbe7070b6eb1a3 | 84e9332399c6a62f4245ec06b0f2c826484bbf88 | [turbopack] Fix a few small things in the analyzer (#82899)
* Delete some dead code
* Remove some unnecessary `async` and `pub` modifiers
* i think the `async`'s were made unnecesssary when we made `FilesystemPath` no longer be a `Vc<>` | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/mod.rs",
"patch": "@@ -4,10 +4,8 @@ use std::{\n borrow::Cow,\n cmp::Ordering,\n fmt::{Display, Formatter, Write},\n- future::Future,\n hash::{BuildHasherDefault, Hash, Hasher},\n mem::take,\n- pin::Pin,\n sync::Arc,... | 2025-08-22T17:19:21 |
facebook/react | 93e0815b263e2cf341231ae36de0053a4394f586 | c03f1c809aeaf69ed26eda39df9dbd7242bc014d | Remove unnecessary scopes for value blocks
The example earlier in the stack had unreachable code in the output because
there was an unnecessary memoization block around an assignment. This was a
holdover from before we moved the logic to expand mutable ranges for phis from
LeaveSSA to InferMutableRanges. We were c... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/AlignReactiveScopesToBlockScopes.ts",
"patch": "@@ -84,6 +84,7 @@ class Visitor extends ReactiveFunctionVisitor<Context> {\n \n override visitInstruction(instr: ReactiveInstruction, state: Context): void {\n switch (instr.value.... | 2024-03-19T20:28:47 |
golang/go | 5a08865de339b5eeb8ad1c52635ea8ba505aafec | d166a0b03e88e3ffe17a5bee4e5405b5091573c6 | net: remove some BUG entries
A few methods that were not implemented on Windows are implemented
in CL 668195.
Change-Id: I35423792a5af00f29fcd24e56a6dfcf013669371
Reviewed-on: https://go-review.googlesource.com/c/go/+/680180
Reviewed-by: Quim Muntal <quimmuntal@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@lu... | [
{
"path": "src/net/iprawsock.go",
"patch": "@@ -24,9 +24,6 @@ import (\n // BUG(mikio): On JS and Plan 9, methods and functions related\n // to IPConn are not implemented.\n \n-// BUG(mikio): On Windows, the File method of IPConn is not\n-// implemented.\n-\n // IPAddr represents the address of an IP end po... | 2025-06-09T20:59:00 |
electron/electron | 83f15bd957b19f753a12a806f6a4225aea371469 | a6417cc2657b11a122620d0d32da3c84b1faa24e | chore: cleanup tests creating crashpad handler in the test runner process (#40668)
* chore: cleanup tests creating crashpad handler in the test runner process
* ci: logging
* ci: enable logging
* ci: more logging
* ci: run all tests
* ci: more logging
* ci: increase timeout
* Revert "ci: increase ... | [
{
"path": "spec/api-crash-reporter-spec.ts",
"patch": "@@ -5,7 +5,6 @@ import * as Busboy from 'busboy';\n import * as path from 'node:path';\n import { ifdescribe, ifit, defer, startRemoteControlApp, repeatedly, listen } from './lib/spec-helpers';\n import { app } from 'electron/main';\n-import { crashRepo... | 2023-12-12T10:38:42 |
nodejs/node | 7cb3a662dad3a3d1af14c8657992274f7c426924 | 4b48f9b63307b41c1a7ec872aaa82f74f95d2be7 | module: allow ESM that failed to be required to be re-imported
When a ESM module cannot be loaded by require due to the presence
of TLA, its module status would be stopped at kInstantiated. In
this case, when it's imported again, we should allow it to be
evaluated asynchronously, as it's also a common pattern for user... | [
{
"path": "lib/internal/modules/esm/module_job.js",
"patch": "@@ -22,7 +22,7 @@ let debug = require('internal/util/debuglog').debuglog('esm', (fn) => {\n debug = fn;\n });\n \n-const { ModuleWrap, kEvaluated } = internalBinding('module_wrap');\n+const { ModuleWrap, kInstantiated } = internalBinding('modul... | 2024-10-28T12:21:22 |
facebook/react | 57fcf7d305125784b5b98dd740cdd8a3a4125304 | b5a7fe4e1cd69e016934dabc754adb9f99f36859 | Repro for nonproblematic unreachable code
This case is specific to early return inside an inlined IIFE (which can often
occur as a result of dropping manual memoization). When we inline IIFEs, as a
reminder we wrap the body in a labeled block and convert returns to assignment
of a temporary + break out of the labe... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/repro-unreachable-code-early-return-in-useMemo.expect.md",
"patch": "@@ -0,0 +1,163 @@\n+\n+## Input\n+\n+```javascript\n+// @enableAssumeHooksFollowRulesOfReact @enableTransitivelyFreezeFunctionExpressions\n+import { use... | 2024-03-19T20:28:46 |
vercel/next.js | 84e9332399c6a62f4245ec06b0f2c826484bbf88 | f6193b35bee3fbbd27d862e9ff49a909f7f30e9d | Turbopack: print failing module during panic (#82938)
Include the actual module in the panic, not only the merged chunk item.
Particularly with the "scope hoisting bit width issue".
Well, and also make it a bail instead of a panic. | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -42,7 +42,7 @@ use std::{\n sync::Arc,\n };\n \n-use anyhow::{Context, Result, bail};\n+use anyhow::{Context, Result, anyhow, bail};\n use chunk::EcmascriptChunkItem;\n use code_gen::{CodeGeneration, CodeGenerationHoistedStmt};\n... | 2025-08-22T17:13:32 |
facebook/react | b5a7fe4e1cd69e016934dabc754adb9f99f36859 | 9358aeab34e750c3d1e3fe86fd504a0450a43cbd | [hir] Improve error message for mutating state | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/Globals.ts",
"patch": "@@ -261,6 +261,7 @@ const BUILTIN_HOOKS: Array<[string, BuiltInType]> = [\n calleeEffect: Effect.Read,\n hookKind: \"useState\",\n returnValueKind: ValueKind.Frozen,\n+ returnValueReason: ValueReason... | 2024-03-19T17:06:17 |
golang/go | d4c6effaa7b95a2ea149ece4a400c0ace2773839 | 7fa2c736b3dbcc741b4575f4df758532aaee34f7 | cmd/compile: add up-to-date test for generated files
This runs the ssa/_gen generator writing files into
a temporary directory, and then checks that there are
no differences with what is currently in the ssa directory,
and also checks that any file with the "generated from
_gen/..." header was actually generated, and ... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/README",
"patch": "@@ -9,3 +9,8 @@ more information.\n \n To regenerate everything, run \"go generate\" on the ssa package\n in the parent directory.\n+\n+The parent directory contains a test in generate_test.go that will fail\n+if the generated files are not up-... | 2025-06-10T18:15:46 |
nodejs/node | 4b48f9b63307b41c1a7ec872aaa82f74f95d2be7 | 7270f845964ed86e8bd70fa24dbc6616b3333b3a | build: fix GN arg used in generate_config_gypi.py
PR-URL: https://github.com/nodejs/node/pull/55530
Reviewed-By: Cheng Zhao <zcbenz@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "tools/generate_config_gypi.py",
"patch": "@@ -19,11 +19,7 @@\n \n # Regex used for parsing results of \"gn args\".\n GN_RE = re.compile(r'(\\w+)\\s+=\\s+(.*?)$', re.MULTILINE)\n-\n-if sys.platform == 'win32':\n- GN = 'gn.exe'\n-else:\n- GN = 'gn'\n+GN = 'gn.bat' if sys.platform == 'win32' else ... | 2024-10-28T09:27:31 |
electron/electron | 08a51f333902247be7ee7528f2192e3bf4c2c045 | 890a557eed6a6917e7854b76e5a691eff1f5e9ae | chore: bump chromium to 121.0.6159.0 (main) (#40632)
* chore: bump chromium in DEPS to 121.0.6154.0
* chore: bump chromium in DEPS to 121.0.6155.0
* fix patches
* chore: update patches
* patch out reference to GetOcclusionTracker
* un-flag PIPOcclusionTracker
* chore: bump chromium in DEPS to 121.0.6... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '121.0.6147.0',\n+ '121.0.6159.0',\n 'node_version':\n 'v20.10.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "chromi... | 2023-12-11T20:58:26 |
vercel/next.js | c40e71fa58330096ea22468307df19730ea73da6 | 08bf0e08f74304afb3a9f79e521e5148b77bf96e | fix(edge-runtime): clone requests properly (#82878) | [
{
"path": "packages/next/src/server/web/sandbox/context.test.ts",
"patch": "@@ -0,0 +1,72 @@\n+import { getModuleContext } from './context'\n+import { validateURL } from '../utils'\n+\n+jest.mock('../utils', () => ({\n+ ...jest.requireActual('../utils'),\n+ validateURL: jest.fn(jest.requireActual('../util... | 2025-08-22T14:36:02 |
rust-lang/rust | ad5108eaad22d9a23100e1faa03dafc7f1f2deea | dfbfbf785f46d10103e80735a9ccb4765bd6dfe2 | tail calls: fix copying non-scalar arguments to callee | [
{
"path": "compiler/rustc_const_eval/src/const_eval/machine.rs",
"patch": "@@ -236,7 +236,7 @@ impl<'tcx> CompileTimeInterpCx<'tcx> {\n if self.tcx.is_lang_item(def_id, LangItem::PanicDisplay)\n || self.tcx.is_lang_item(def_id, LangItem::BeginPanic)\n {\n- let args = s... | 2025-12-28T23:54:17 |
facebook/react | 0aab065eb3250a9714a62dc05587cbb571da7f71 | 7959a1dd28a8b0df9c80dc36bb51a4fa25123d3e | Add `alwaysThrottleDisappearingFallbacks` Flag (#28550)
## Summary
Creates a new `alwaysThrottleDisappearingFallbacks` feature flag that
gates the changes from https://github.com/facebook/react/pull/26802
(instead of being controlled by `alwaysThrottleRetries`). The values of
this new flag mirror the current val... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -40,6 +40,7 @@ import type {\n } from './ReactFiberTracingMarkerComponent';\n \n import {\n+ alwaysThrottleDisappearingFallbacks,\n enableCreateEventHandleAPI,\n enableProfilerTimer,\n enableProfilerCommitHooks,\n@@ -53,7... | 2024-03-18T18:16:47 |
golang/go | 7fa2c736b3dbcc741b4575f4df758532aaee34f7 | 281cfcfc1b15fbb87fd32660b0a1d50be996d108 | os: disallow Root.Remove(".") on Plan 9, js, and Windows
Windows already forbids this, since removing the root causes a
sharing violation (can't delete the directory while the os.Root
has a handle open to it), but add a more explicit check for
attempts to delete "." and return EINVAL.
Note that this change to Windows... | [
{
"path": "src/internal/syscall/windows/at_windows.go",
"patch": "@@ -192,6 +192,11 @@ func Mkdirat(dirfd syscall.Handle, name string, mode uint32) error {\n }\n \n func Deleteat(dirfd syscall.Handle, name string, options uint32) error {\n+\tif name == \".\" {\n+\t\t// NtOpenFile's documentation isn't expli... | 2025-06-05T21:27:45 |
nodejs/node | c35cbcde4b7c8821587ad96d0e69942c01ace23d | 5d4fee8975aabd04fdfba0ff407e4dbd18d94411 | build: fix GN build for sqlite and nghttp2
PR-URL: https://github.com/nodejs/node/pull/55529
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Cheng Zhao <zcbenz@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "deps/nghttp2/unofficial.gni",
"patch": "@@ -34,6 +34,9 @@ template(\"nghttp2_gn_build\") {\n if (is_clang || !is_win) {\n cflags_c = [\n \"-Wno-implicit-fallthrough\",\n+ # Ref https://github.com/nghttp2/nghttp2/pull/2258\n+ # This can be removed when the above PR ... | 2024-10-27T09:21:39 |
vercel/next.js | 08bf0e08f74304afb3a9f79e521e5148b77bf96e | 9436dce61f1a3ff9478261dc2eba47e0527acf3d | Add special marker in terminal if all error stack frames are ignore-listed (#82915) | [
{
"path": "packages/next/src/server/patch-error-inspect.ts",
"patch": "@@ -12,7 +12,7 @@ import {\n import { parseStack, type StackFrame } from './lib/parse-stack'\n import { getOriginalCodeFrame } from '../next-devtools/server/shared'\n import { workUnitAsyncStorage } from './app-render/work-unit-async-sto... | 2025-08-22T07:35:17 |
rust-lang/rust | 195b849ea7367ba36c3a68a9689381896b499fcd | d1a11b670b617f1370f7b1cdf86e225a4e070f15 | remove the explicit error for old `rental` versions | [
{
"path": "compiler/rustc_expand/src/base.rs",
"patch": "@@ -2,12 +2,11 @@ use std::any::Any;\n use std::default::Default;\n use std::iter;\n use std::path::Component::Prefix;\n-use std::path::{Path, PathBuf};\n+use std::path::PathBuf;\n use std::rc::Rc;\n use std::sync::Arc;\n \n use rustc_ast::attr::Marke... | 2026-02-17T12:28:23 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.