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 |
|---|---|---|---|---|---|
vercel/next.js | 7a43540b0dcb3ab2ba0a9b195801c9904cce9d6f | 70ece6ef7856c816ee3e200b62228d44286376c0 | cna: fix typo (#83121)
<!-- 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
### Improving Documentation... | [
{
"path": "packages/create-next-app/templates/app-api/ts/gitignore",
"patch": "@@ -29,7 +29,7 @@ npm-debug.log*\n yarn-debug.log*\n yarn-error.log*\n \n-# env files (can opt-in for commiting if needed)\n+# env files (can opt-in for committing if needed)\n .env*\n \n # vercel",
"additions": 1,
"delet... | 2025-09-08T20:06:21 |
nodejs/node | 5ba3b540d459a60c7edff5074073fb397be81e8a | d8947721570b007aed24d8de523129dc03a87fa3 | build: fix GN build for sqlite
PR-URL: https://github.com/nodejs/node/pull/55912
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigipi... | [
{
"path": "deps/sqlite/unofficial.gni",
"patch": "@@ -7,6 +7,10 @@\n template(\"sqlite_gn_build\") {\n config(\"sqlite_config\") {\n include_dirs = [ \".\" ]\n+ defines = [\n+ \"SQLITE_ENABLE_SESSION\",\n+ \"SQLITE_ENABLE_PREUPDATE_HOOK\",\n+ ]\n }\n \n gypi_values = exec_script(\"... | 2024-11-21T00:33:35 |
facebook/react | fe5ce4e3e969aca4705b9973a6fdb5f132e03025 | 90499a730ed53c29c2321faaf19e77b4ebeeada4 | fix[react-devtools/store-test]: fork the test to represent current be… (#29777)
## Summary
The test started to fail after
https://github.com/facebook/react/pull/29088.
Fork the test and the expected store state for:
- React 18.x, to represent the previous behavior
- React >= 19, to represent the current RDT b... | [
{
"path": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -1915,8 +1915,12 @@ describe('Store', () => {\n });\n });\n \n- // @reactVersion >= 18.0\n- it('from react get counted', () => {\n+ // In React 19, JSX warnings were moved into the renderer - https://gith... | 2024-06-06T19:01:15 |
golang/go | c876bf9346f1afb5471947a65fb1e105caeff433 | b4309ece66ca989a38ed65404850a49ae8f92742 | cmd/internal/obj/wasm: use 64-bit instructions for indirect calls
Currently, on Wasm, an indirect call is compiled to
// function index = PC>>16, PC is already on stack
I32WrapI64
I32Const $16
ShrU
// set PC_B to 0
...
// actual call
CallIndirect
Specifically, the function index is extracted from bits 16-31 ... | [
{
"path": "src/cmd/internal/obj/wasm/wasmobj.go",
"patch": "@@ -465,9 +465,9 @@ func preprocess(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n \n \t\t\tcase obj.TYPE_NONE:\n \t\t\t\t// (target PC is on stack)\n+\t\t\t\tp = appendp(p, AI64Const, constAddr(16)) // only needs PC_F bits (16-63), PC_B b... | 2024-02-29T19:27:57 |
electron/electron | b468b5e6e883a39ceaba6417ed8be1ece6ee281f | d89ad1106f3dd45dc8c2ed9e0de9336ee7706348 | build: print error and retry on symstore fail (#41452) | [
{
"path": "script/release/uploaders/upload-symbols.py",
"patch": "@@ -80,8 +80,14 @@ def main():\n \n \n def run_symstore(pdb, dest, product):\n- execute(['symstore', 'add', '/r', '/f', pdb, '/s', dest, '/t', product])\n-\n+ for attempt in range(2):\n+ try:\n+ execute(['symstore', 'add', '/r', '/f... | 2024-02-27T23:40:42 |
rust-lang/rust | fba1ca8b9f841ea5e43a0790e2e45576a74c9541 | 86d0e71947d0309723e3546869e2599ae28549ab | fix: correctly parenthesize inverted condition in convert_if_to_bool_then
The convert_if_to_bool_then assist was producing incorrect code when
the Some branch was in the else arm and the condition was a method call
expression (e.g. is_empty()).
Before:
if test.is_empty() { None } else { Some(()) }
was incorrectly... | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_bool_then.rs",
"patch": "@@ -102,6 +102,11 @@ pub(crate) fn convert_if_to_bool_then(acc: &mut Assists, ctx: &AssistContext<'_>\n ast::Expr::BlockExpr(block) => unwrap_trivial_block(block),\n e => e,\n ... | 2026-02-21T05:33:20 |
vercel/next.js | cdefea9874423d5f54faa2481ecd1df32bd5e352 | 17d80397814086029b8b22269dd7f5dda9eca4f2 | fix: transpile-config should await import before return (#83566)
The fallback didn't work because it didn't await the import when
returning.
x-ref:
https://github.com/vercel/next.js/actions/runs/17548458762/job/49837846122
---------
Co-authored-by: Hendrik Liebau <mail@hendrik-liebau.de> | [
{
"path": "packages/next/src/build/next-config-ts/transpile-config.ts",
"patch": "@@ -123,7 +123,8 @@ export async function transpileConfig({\n // Value is 'strip' or 'transform' based on how the feature is enabled.\n // https://nodejs.org/api/process.html#processfeaturestypescript\n ... | 2025-09-08T15:03:41 |
nodejs/node | cb7d855f88d4caad63d6563bb78e2772382b4c0b | f270462c09ddfd770291a7c8a2cd204b2c63d730 | 2024-11-20, Version 23.3.0 (Current)
Notable changes:
doc:
* enforce strict policy to semver-major releases (Rafael Gonzaga) https://github.com/nodejs/node/pull/55732
src:
* (SEMVER-MINOR) add cli option to preserve env vars on dr (Rafael Gonzaga) https://github.com/nodejs/node/pull/55697
util:
* (SEMVER-MINOR)... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -38,7 +38,8 @@ release.\n <th title=\"LTS Until 2025-04\"><a href=\"doc/changelogs/CHANGELOG_V18.md\">18</a> (LTS)</th>\n </tr>\n <tr>\n-<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.2.0\">23.2.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.3.0\">... | 2024-11-19T13:43:37 |
facebook/react | 90499a730ed53c29c2321faaf19e77b4ebeeada4 | 29b12787902acff714466e5eb656a7ab0f978836 | Fix RN version string in builds (#29787)
The version was set for React but not the renderers | [
{
"path": "scripts/rollup/build-all-release-channels.js",
"patch": "@@ -168,12 +168,19 @@ function processStable(buildDir) {\n );\n }\n \n+ const rnVersionString =\n+ ReactVersion + '-native-fb-' + sha + '-' + dateString;\n if (fs.existsSync(buildDir + '/facebook-react-native')) {\n- ... | 2024-06-06T18:07:16 |
electron/electron | 3394ee71f008d4655dde3acf883d6c89b994b218 | 12d7a8ff6605cca218e3e0a507de9a8f530c2abd | chore: fix import from patches.py in script/lib/git.py (#41430) | [
{
"path": "script/lib/git.py",
"patch": "@@ -13,7 +13,10 @@\n import subprocess\n import sys\n \n-from .patches import PATCH_FILENAME_PREFIX, is_patch_location_line\n+SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))\n+sys.path.append(SCRIPT_DIR)\n+\n+from patches import PATCH_FILENAME_PREFIX, is_patc... | 2024-02-26T02:36:30 |
golang/go | b4309ece66ca989a38ed65404850a49ae8f92742 | 75a19dbcd7e69dc619fd57b9ed32f697121160ba | cmd/internal/doc: upgrade godoc pkgsite to 01b046e
Increase the dependency on the doc tool to bring in the fixes to
CL 687918 and CL 687976.
Fixes golang/go#74459
Change-Id: I9cdefdfd9792a142ad14bae3d4f7bb9d8256a246
Reviewed-on: https://go-review.googlesource.com/c/go/+/687997
Reviewed-by: Jonathan Amsterdam <jba@go... | [
{
"path": "src/cmd/internal/doc/main.go",
"patch": "@@ -243,7 +243,7 @@ func doPkgsite(urlPath string) error {\n \t\tenv = append(env, \"GOPROXY=\"+gomodcache+\",\"+goproxy)\n \t}\n \n-\tconst version = \"v0.0.0-20250608123103-82c52f1754cd\"\n+\tconst version = \"v0.0.0-20250714212547-01b046e81fe7\"\n \tcmd... | 2025-07-15T15:26:39 |
vercel/next.js | 17d80397814086029b8b22269dd7f5dda9eca4f2 | 90c5a66bfaaa0391d9d6734dedc1459792e0281b | Turbopack: Remove 20ms overhead on bootup (#83554)
## What?
This fetch, even though not awaited, was kicked off eagerly and the
first `fetch()` in Node.js loads the SSL certificate store which takes
roughly 20ms. Made sure that it's only fetched when the version is
needed, which is the first time errors happen, and t... | [
{
"path": "packages/next/src/server/dev/hot-reloader-turbopack.ts",
"patch": "@@ -690,7 +690,17 @@ export async function createHotReloaderTurbopack(\n }),\n ]\n \n- const versionInfoPromise = getVersionInfo()\n+ let versionInfoCached: ReturnType<typeof getVersionInfo> | undefined\n+ // This fetch, ... | 2025-09-08T14:47:30 |
nodejs/node | f270462c09ddfd770291a7c8a2cd204b2c63d730 | 81f7c769e123803a6e93ffa1b8555c27ca240f09 | test: fix determining lower priority
PR-URL: https://github.com/nodejs/node/pull/55908
Fixes: https://github.com/NixOS/nixpkgs/issues/355919
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "test/parallel/test-os.js",
"patch": "@@ -84,7 +84,8 @@ assert.ok(hostname.length > 0);\n // IBMi process priority is different.\n if (!common.isIBMi) {\n const { PRIORITY_BELOW_NORMAL, PRIORITY_LOW } = os.constants.priority;\n- const LOWER_PRIORITY = os.getPriority() > PRIORITY_BELOW_NORMAL ? ... | 2024-11-20T18:25:05 |
facebook/react | 70194be4038158f5ba8e55e27f7ffd02be13bbca | 1e1e5cd25223fddbce0e3fb7889b06df0d93a950 | fix<compiler>: reread the testfilter file if filter enabled during the watch process (#29775)
Resolve #29720
In the above PR, I overlooked that we can change the filter mode during the watch process. Now it's fixed. | [
{
"path": "compiler/packages/snap/src/runner-watch.ts",
"patch": "@@ -189,14 +189,15 @@ function subscribeKeyEvents(\n state: RunnerState,\n onChange: (state: RunnerState) => void\n ) {\n- process.stdin.on(\"keypress\", (str, key) => {\n+ process.stdin.on(\"keypress\", async (str, key) => {\n if (... | 2024-06-06T17:48:24 |
golang/go | 7dceabd3be3d119bb2539030e0e824ad85a10202 | d826bf4d7440ee07f865e5852638b5a2468687ff | runtime/maps: fix typo in group.go comment (instrinsified -> intrinsified)
Several comments refer to bitset as 'instrinsified', which is likely
a typo, because it refers to the output of the intrinsics implemented
with SIMD.
Change-Id: I00f26b8d8128592ee0e9dc8a1b1480c93a9542d6
GitHub-Last-Rev: 8a4236710979f2f969210e0... | [
{
"path": "src/internal/runtime/maps/group.go",
"patch": "@@ -157,7 +157,7 @@ func (g ctrlGroup) matchH2(h uintptr) bitset {\n // Portable implementation of matchH2.\n //\n // Note: On AMD64, this is an intrinsic implemented with SIMD instructions. See\n-// note on bitset about the packed instrinsified retu... | 2025-07-15T12:21:38 |
electron/electron | 26131b23b81a661fb65d37437b9a1f63b4408fae | 136762b45ff371d1dcfbc4c8ec730aa395ea5da2 | feat: add support for configuring system network context proxies (#41335)
* feat: add support for configuring system network context proxies
* chore: add specs
* chore: fix lint
* fix: address review feedback | [
{
"path": "docs/api/app.md",
"patch": "@@ -1468,6 +1468,24 @@ details.\n \n **Note:** Enable `Secure Keyboard Entry` only when it is needed and disable it when it is no longer needed.\n \n+### `app.setProxy(config)`\n+\n+* `config` [ProxyConfig](structures/proxy-config.md)\n+\n+Returns `Promise<void>` - Res... | 2024-02-22T17:08:25 |
vercel/next.js | 646c9ab4471e07da82d3c0d1b9a08e235bf07ddc | d165670ed1656f86b239ccf44988c880007a915d | Disable React debug channel by default (#83552)
While dogfooding the debug channel in internal applications, we found
bugs (most likely in React) that trigger runtime errors, when the debug
channel is used to transport debug information. Those need to be
investigated and fixed first, before we can enable the feature b... | [
{
"path": "packages/next/src/server/config-shared.ts",
"patch": "@@ -852,8 +852,6 @@ export interface ExperimentalConfig {\n /**\n * When enabled, in dev mode, Next.js will send React's debug info through the\n * WebSocket connection, instead of including it in the main RSC payload.\n- *\n- * @d... | 2025-09-08T09:49:14 |
facebook/react | 99da76f23ac85d279457470f8fb19a9b2f173ed0 | 704aeed022f4277cd5604bf6d76199a6cfe4707f | fix[react-devtools] remove native inspection button when it can't be used (#29779)
## Summary
There's no native inspection available in any of the React-Native
devtools:
* **React DevTools in Fusebox**
* **React DevTools standalone**
Besides, **React DevTools Inline** can't really open the devtools and
point... | [
{
"path": "packages/react-devtools-core/src/standalone.js",
"patch": "@@ -279,7 +279,7 @@ function initialize(socket: WebSocket) {\n // $FlowFixMe[incompatible-call] found when upgrading Flow\n store = new Store(bridge, {\n checkBridgeProtocolCompatibility: true,\n- supportsNativeInspection: true... | 2024-06-06T16:10:40 |
nodejs/node | eb1cb369fe6647acca73aaf262e0715ce69797f6 | 2c11d6e61cd34c40a23ec09912dffc1c2d37a6b1 | src: fix kill signal on Windows
Fixes: https://github.com/nodejs/node/issues/42923
PR-URL: https://github.com/nodejs/node/pull/55514
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> | [
{
"path": "doc/api/child_process.md",
"patch": "@@ -1700,8 +1700,8 @@ may not actually terminate the process.\n See kill(2) for reference.\n \n On Windows, where POSIX signals do not exist, the `signal` argument will be\n-ignored, and the process will be killed forcefully and abruptly (similar to\n-`'SIGKIL... | 2024-11-20T12:14:20 |
electron/electron | ddd93529d59002288699c5fc16be4843265e7f89 | e72f4f7f267fffb95aa62841c662fe2746775871 | fix: use ScreenCaptureKit exclusively on macOS 14.4 and higher (#41397)
This fixes a nasty warning / permission dialog that pops up to end-users
when consuming legacy APIs. Chrome has flipped these flags via field trials
as have other Electron apps. It should just be the default. | [
{
"path": "filenames.gni",
"patch": "@@ -383,6 +383,7 @@ filenames = {\n \"shell/browser/extended_web_contents_observer.h\",\n \"shell/browser/feature_list.cc\",\n \"shell/browser/feature_list.h\",\n+ \"shell/browser/feature_list_mac.mm\",\n \"shell/browser/file_select_helper.cc\",\n ... | 2024-02-21T20:59:49 |
golang/go | d826bf4d7440ee07f865e5852638b5a2468687ff | bb07e55aff3041032ac8c851f4fefbd038783240 | os: remove useless error check
Change-Id: Ifeb5fecc6e28b79ac03e7dc2ce9531fe5eed3097
GitHub-Last-Rev: 087cf95965920c96befad5adb9e481bdf913d50a
GitHub-Pull-Request: golang/go#66260
Reviewed-on: https://go-review.googlesource.com/c/go/+/570895
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUC... | [
{
"path": "src/os/os_windows_test.go",
"patch": "@@ -64,9 +64,6 @@ func TestSameWindowsFile(t *testing.T) {\n \t}\n \n \tp := filepath.VolumeName(path) + filepath.Base(path)\n-\tif err != nil {\n-\t\tt.Fatal(err)\n-\t}\n \tia3, err := os.Stat(p)\n \tif err != nil {\n \t\tt.Fatal(err)",
"additions": 0,
... | 2024-03-12T07:37:52 |
vercel/next.js | d165670ed1656f86b239ccf44988c880007a915d | 85a2a029bcffe64aacf5c5872db43b70d8c660f9 | feat: use Node.js native TS resolver for `next.config.ts` (#83240)
### Why?
Since `next.config.ts` was resolved via require-hook, it had a
restriction with Native ESM syntax, like top-level await, dynamic
import, and Node.js ESM APIs like `import.meta.url`. There were previous
attempts to resolve this via the ESM loa... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -521,6 +521,50 @@ jobs:\n \n secrets: inherit\n \n+ # TODO: Remove this once we bump minimum Node.js version to v22\n+ test-next-config-ts-native-ts-dev:\n+ name: test next-config-ts-native-ts dev\n+ needs: ['changes', 'build-next', ... | 2025-09-08T08:56:12 |
rust-lang/rust | ca3d3b7f719defbc5009ddc0ee56ab55f9966b64 | aa2da37260def88070d1c6d3567b605d7677a8fa | fix: remove redundant comment | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/generate_function.rs",
"patch": "@@ -146,7 +146,7 @@ fn gen_method(acc: &mut Assists, ctx: &AssistContext<'_>) -> Option<()> {\n if !is_editable_crate(target_module.krate(ctx.db()), ctx.db()) {\n return None;\n }\n- //Chan... | 2026-02-21T01:54:22 |
facebook/react | 704aeed022f4277cd5604bf6d76199a6cfe4707f | 3730b40e9bbacef0279f6d120b344c1544cb38ba | feat<Compiler>: consider that the dispatch function from `useReducer` is non-reactive (#29705)
Summary
The dispatch function from useReducer is stable, so it is also non-reactive.
the related PR: #29665
the related comment: #29674 (comment)
I am not sure if the location of the new test file is appropriate😅.
... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts",
"patch": "@@ -13,6 +13,7 @@ import {\n BuiltInUseInsertionEffectHookId,\n BuiltInUseLayoutEffectHookId,\n BuiltInUseOperatorId,\n+ BuiltInUseReducerId,\n BuiltInUseRefId,\n BuiltInUseStateId,\n ShapeRegistry,\n@@ -265... | 2024-06-05T23:51:09 |
golang/go | 3f789721d6298b7f4406a0106670c4d4ad70a28d | b69622b83e38b58a461938163fdef03683a2a871 | [dev.simd] cmd/compile: mark SIMD types non-fat
This CL fixes the merge locals error.
The culprit is that liveness analysis wrongly mark SIMD structs fat,
hence making `StoreReg` of SIMD vectors not a varkill effect, making the
liveness range of SIMD vectors not closed correctly, further making
mergelocals merged 2 co... | [
{
"path": "src/cmd/compile/internal/liveness/plive.go",
"patch": "@@ -1534,6 +1534,9 @@ func isfat(t *types.Type) bool {\n \t\t\t}\n \t\t\treturn true\n \t\tcase types.TSTRUCT:\n+\t\t\tif t.IsSIMD() {\n+\t\t\t\treturn false\n+\t\t\t}\n \t\t\t// Struct with 1 field, check if field is fat\n \t\t\tif t.NumFiel... | 2025-07-12T08:13:04 |
nodejs/node | f4cd4d97497757cdbc44c27a511e16e9d2b22367 | 172841c2ef59428bcc55cde66b43e7edc2ffc5e4 | doc: fix relative path mention in --allow-fs
PR-URL: https://github.com/nodejs/node/pull/55791
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -208,23 +208,18 @@ The valid arguments for the `--allow-fs-read` flag are:\n * Multiple paths can be allowed using multiple `--allow-fs-read` flags.\n Example `--allow-fs-read=/folder1/ --allow-fs-read=/folder1/`\n \n-Paths delimited by comma (`,`) are no longer al... | 2024-11-19T18:31:29 |
electron/electron | e72f4f7f267fffb95aa62841c662fe2746775871 | f350cce64f2d1f0a11de0c89b64dbf26ecb0b269 | chore: bump chromium to 123.0.6312.5 (main) (#41337)
* chore: bump chromium in DEPS to 123.0.6300.2
* chore: bump chromium in DEPS to 123.0.6301.2
* chore: update patches
* chore: bump chromium in DEPS to 123.0.6302.0
* chore: bump chromium in DEPS to 123.0.6304.0
* chore: update patches
* chore: bum... | [
{
"path": "BUILD.gn",
"patch": "@@ -744,7 +744,7 @@ source_set(\"electron_lib\") {\n \"//chrome/browser/resources/pdf:resources\",\n \"//components/pdf/browser\",\n \"//components/pdf/browser:interceptors\",\n- \"//components/pdf/common\",\n+ \"//components/pdf/common:constants\"... | 2024-02-21T20:27:05 |
vercel/next.js | 85a2a029bcffe64aacf5c5872db43b70d8c660f9 | 21085310c39e9fa10a3e9f8d798bb9de52747830 | Fix/msw-issue-68521 (#83482)
### Fix: [68521](https://github.com/vercel/next.js/issues/68521)
Updating outdated with-msw example
The
[with-msw](https://github.com/vercel/next.js/tree/canary/examples/with-msw)
is outdated and doesn't work with the latest msw version.
### What?
The
[with-msw](https://github.com/vercel/... | [
{
"path": "examples/with-msw/mocks/browser.ts",
"patch": "@@ -1,4 +1,4 @@\n-import { setupWorker } from \"msw\";\n+import { setupWorker } from \"msw/browser\";\n import { handlers } from \"./handlers\";\n \n export const worker = setupWorker(...handlers);",
"additions": 1,
"deletions": 1,
"langu... | 2025-09-08T07:11:34 |
facebook/react | 8d87e374ac69904012530af702af1cd51d90e07d | 1df34bdf626af3e4566364dcdf7f1c387d2f4252 | Fix #29724: `ip` dependency update for CVE-2024-29415 (#29725)
## Summary
This version update of `ip` dependency solves the CVE-2024-29415
vulnerability. | [
{
"path": "packages/react-devtools/package.json",
"patch": "@@ -25,7 +25,7 @@\n \"dependencies\": {\n \"cross-spawn\": \"^5.0.1\",\n \"electron\": \"^23.1.2\",\n- \"ip\": \"^1.1.4\",\n+ \"ip\": \"^2.0.1\",\n \"minimist\": \"^1.2.3\",\n \"react-devtools-core\": \"5.2.0\",\n \"upda... | 2024-06-05T10:17:35 |
golang/go | 9159cd4ec6b0e9475dc9c71c830035c1c4c13483 | c6556b8eb3444b6d5473762ed1082039db7e03b5 | encoding/json: decompose legacy options
WARNING: This commit contains breaking changes
for those already using GOEXPERIMENT=jsonv2.
This decomposes FormatBytesWithLegacySemantics as:
* FormatBytesWithLegacySemantics
* FormatByteArrayAsArray
* ParseBytesWithLooseRFC4648
This decomposes FormatTimeWithLegacySemantics a... | [
{
"path": "src/encoding/json/internal/jsonflags/flags.go",
"patch": "@@ -58,11 +58,14 @@ const (\n \t\tFormatNilSliceAsNull |\n \t\tMatchCaseInsensitiveNames |\n \t\tCallMethodsWithLegacySemantics |\n+\t\tFormatByteArrayAsArray |\n \t\tFormatBytesWithLegacySemantics |\n-\t\tFormatTimeWithLegacySemantics |\n... | 2025-07-01T22:39:49 |
nodejs/node | 1d01ad67737ce8b88a67850e45340377413b0c11 | d1830685b450c03f236c8f734a066304677b3d10 | doc,lib,src,test: unflag sqlite module
This commit allows the node:sqlite module to be used without
starting Node with a CLI flag. The module is still experimental.
Fixes: https://github.com/nodejs/node/issues/55854
PR-URL: https://github.com/nodejs/node/pull/55890
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -1065,14 +1065,6 @@ added:\n \n Use this flag to enable [ShadowRealm][] support.\n \n-### `--experimental-sqlite`\n-\n-<!-- YAML\n-added: v22.5.0\n--->\n-\n-Enable the experimental [`node:sqlite`][] module.\n-\n ### `--experimental-strip-types`\n \n <!-- YAML\n@@ -16... | 2024-11-19T03:23:18 |
electron/electron | 136d7e7e6ab1d62ceb1c390ceccf7ddf0225b912 | 7cd23a4900642c5f2eb83c1fd5af42da20e05102 | fix: check for draggable regions outside of main frame (#41377) | [
{
"path": "shell/renderer/electron_render_frame_observer.cc",
"patch": "@@ -66,10 +66,10 @@ ElectronRenderFrameObserver::ElectronRenderFrameObserver(\n // Initialise resource for directory listing.\n net::NetModule::SetResourceProvider(NetResourceProvider);\n \n- // App regions are only supported in th... | 2024-02-21T03:10:43 |
vercel/next.js | f9f3afc66418f3cc6b206ee50b632f9dd4128dd5 | 3ef17684e75bfed780f178022a3e9267879c0385 | fix: route handlers should validate invalid exports (#83500)
When using an unsupported API in a route handler (eg, `export const
dynamic` with `cacheComponents` enabled), we were not erroring in dev or
failing the build. This is because the transform only asserted on pages
& layouts, and not route handlers.
This upda... | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -805,10 +805,10 @@ impl ReactServerComponentValidator {\n return;\n }\n static RE: Lazy<Regex> =\n- Lazy::new(|| Regex::new(r\"[\\\\/](page|layout)\\.(ts|js)x?$\").unwrap(... | 2025-09-06T14:38:49 |
facebook/react | 1df34bdf626af3e4566364dcdf7f1c387d2f4252 | d2767c96e80a6fdc35b002f1518d01d90e2a8528 | [Flight] Override prepareStackTrace when reading stacks (#29740)
This lets us ensure that we use the original V8 format and it lets us
skip source mapping. Source mapping every call can be expensive since we
do it eagerly for server components even if an error doesn't happen.
In the case of an error being thrown ... | [
{
"path": ".eslintrc.js",
"patch": "@@ -486,6 +486,7 @@ module.exports = {\n $ReadOnlyArray: 'readonly',\n $ArrayBufferView: 'readonly',\n $Shape: 'readonly',\n+ CallSite: 'readonly',\n ConsoleTask: 'readonly', // TOOD: Figure out what the official name of this will be.\n ReturnType: ... | 2024-06-05T07:41:37 |
nodejs/node | bdaa898ceaf61840d030ee83b2e9adf40973544d | f8c9ab46947b2ba8289d36c919f23d3622ffebec | tools: fix riscv64 build failed
PR-URL: https://github.com/nodejs/node/pull/52888
Reviewed-By: Stewart X Addison <sxa@redhat.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "tools/v8_gypfiles/v8.gyp",
"patch": "@@ -1176,6 +1176,23 @@\n 'sources': [\n '<!@pymod_do_main(GN-scraper \"<(V8_ROOT)/BUILD.gn\" \"\\\\\"v8_base_without_compiler.*?v8_enable_wasm_gdb_remote_debugging.*?v8_current_cpu == \\\\\"riscv64\\\\\".*?sources \\\\+= \")',\n ... | 2024-11-18T15:41:23 |
electron/electron | 995f3dc120281a5e364ff1624ea77ee58ce89947 | d0b4489b7d3fcbf789dea215d4e93a0e2ea4a894 | fix: revert to legacyMainResolve in JavaScript for asar compatibility (#41367) | [
{
"path": "patches/node/.patches",
"patch": "@@ -45,3 +45,4 @@ test_make_test-node-output-v8-warning_generic.patch\n test_match_wpt_streams_transferable_transform-stream-members_any_js.patch\n build_ensure_v8_pointer_compression_sandbox_is_enabled_on_64bit.patch\n src_preload_function_for_environment.patch\... | 2024-02-19T07:21:13 |
rust-lang/rust | f4dcfa2e7f0f354220114069bc45c867cd2ee36f | c8d56aa26a0061c02aa23f337041c7cf72ccccde | fix: offer block `.let` in ref-expr in match arm
Example
---
```rust
fn main() {
match 2 {
bar => &bar.l$0
}
}
```
**Before this PR**
```text
sn deref *expr
sn match match expr {}
```
**After this PR**
```text
sn deref *expr
sn let let
sn letm let mut
sn match mat... | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs",
"patch": "@@ -16,7 +16,7 @@ use itertools::Itertools;\n use stdx::never;\n use syntax::{\n SmolStr,\n- SyntaxKind::{BLOCK_EXPR, EXPR_STMT, STMT_LIST},\n+ SyntaxKind::{EXPR_STMT, STMT_LIST},\n T, TextRange, Te... | 2026-02-17T15:09:29 |
vercel/next.js | 0accb03cbedad6db79d1c82c46f006e3cbb37292 | 437e5ef2289b9854dc8a20826a848cf51066a46b | Use React's debug channel to transport debug info via WebSocket connection (#82748)
In dev mode, React is sending debug info (owners, stacks, console logs
etc.) from the server to the client so that they can be displayed in dev
tools. By default, this info is sent as part of the main RSC payload
(inlined into the HTML... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -801,5 +801,12 @@\n \"800\": \"`experimental.rdcForNavigations` is enabled, but `experimental.ppr` is not.\",\n \"801\": \"> `pages` and `app` directories should be under the same folder\",\n \"802\": \"Image with src \\\"%s\\\" has both \\\"preload\... | 2025-09-05T21:10:29 |
golang/go | b69622b83e38b58a461938163fdef03683a2a871 | 4993a91ae18f0e0f0edf6d86ff5bb26fd9182731 | [dev.simd] cmd/compile, simd: adjust Shift.* operations
This CL does:
1. Removes ShiftRightSignExtended, default signed vectors to shift
arithmetic, and unsigned to shift logical.
2. Add the missing Shifts which were left out by YAML error in the
generator.
This CL is generated by CL 687595.
Change-Id: I663115... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -273,15 +273,6 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPSLLVQ128,\n \t\tssa.OpAMD64VPSLLVQ256,\n \t\tssa.OpAMD64VPSLLVQ512,\n-\t\tssa.OpAMD64VPSRLVW128,\n-\t\tssa.OpAMD64VPSRLVW256,\n-\t\tssa.OpAMD64V... | 2025-07-11T17:56:22 |
nodejs/node | 775a10039a8eaa6c7d2784701c91eac1a17ba47c | b648d37ad76072f380d167baf84863507975f0ad | test_runner: error on mocking an already mocked date
Fixes #55849
PR-URL: https://github.com/nodejs/node/pull/55858
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "lib/internal/test_runner/mock/mock_timers.js",
"patch": "@@ -328,6 +328,9 @@ class MockTimers {\n #createDate() {\n kMock ??= Symbol('MockTimers');\n const NativeDateConstructor = this.#nativeDateDescriptor.value;\n+ if (NativeDateConstructor.isMock) {\n+ throw new ERR_INVALID_S... | 2024-11-17T10:25:12 |
electron/electron | d0b4489b7d3fcbf789dea215d4e93a0e2ea4a894 | ca0920872d2f8f180fecfbb321ecdb77a7f0e677 | ci: fix helperPath calls in ci configs (#41363)
* ci: fix helperPath calls in ci configs
Co-authored-by: codebytere <codebytere@electronjs.org>
* ci: fix helperPaths harder
---------
Co-authored-by: codebytere <codebytere@electronjs.org> | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -353,10 +353,10 @@ step-setup-rbe-for-build: &step-setup-rbe-for-build\n mkdir third_party\n # Pull down credential helper and print status\n node -e \"require('./src/utils/reclient.js').downloadAndPrepare({})\"\n- HELPER=$(node -p \... | 2024-02-17T23:04:36 |
rust-lang/rust | d6ff921cd940e6500f4e477c164627e129535b72 | b6bed6f2d9f27e15d425958bbd288138ecdff61c | Fixed ByteStr not padding within its Display trait when no specific alignment is not mentioned (e.g. ':10' instead of ':<10', ':>10', or ':^1') | [
{
"path": "library/core/src/bstr/mod.rs",
"patch": "@@ -174,39 +174,38 @@ impl fmt::Debug for ByteStr {\n #[unstable(feature = \"bstr\", issue = \"134915\")]\n impl fmt::Display for ByteStr {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n- fn fmt_nopad(this: &ByteStr, f: &mut fmt:... | 2026-02-19T19:53:10 |
facebook/react | 9185b9b1e4a716f90774c4c5501fe3925bc7c402 | a26e90c29cfa841d3e2bc08876c5929d5680fb6d | Remove startTransition and useActionState from react-server condition of react (#29753)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
... | [
{
"path": "packages/react/src/ReactServer.js",
"patch": "@@ -22,19 +22,11 @@ import {\n isValidElement,\n } from './jsx/ReactJSXElement';\n import {createRef} from './ReactCreateRef';\n-import {\n- use,\n- useId,\n- useCallback,\n- useDebugValue,\n- useMemo,\n- useActionState,\n-} from './ReactHooks... | 2024-06-04T16:23:36 |
vercel/next.js | a9cb9eca115afb0ad6431abd859bd45c98fa043d | ede8d1b861378b4b8aa7ff77ad2cacd583d9b21d | Include prerender interrupted error in unstable_rethrow (#83463)
Prerender interrupted errors are part of the control flow for Next.js
applications and aren't intended to be caught by user code. Since we
can't avoid it we need to include it in the rethrow API. | [
{
"path": "packages/next/src/client/components/unstable-rethrow.server.ts",
"patch": "@@ -2,7 +2,10 @@ import { isHangingPromiseRejectionError } from '../../server/dynamic-rendering-u\n import { isPostpone } from '../../server/lib/router-utils/is-postpone'\n import { isBailoutToCSRError } from '../../shared... | 2025-09-05T16:06:40 |
golang/go | bbb6dccd8486d1dc0b3042865e7bc0fce54137fc | 1440ff70362f85c86b54b5c428fd95cb6cb35d91 | [dev.simd] simd: fix documentations
This CL is generated by CL 687415.
Change-Id: I2d778717013af613c442116658f42a4a4cc5d734
Reviewed-on: https://go-review.googlesource.com/c/go/+/687376
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: David Chase <drchase@google.c... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules",
"patch": "@@ -380,12 +380,12 @@\n (GaloisFieldAffineTransformUint8x16 ...) => (VGF2P8AFFINEQB128 ...)\n (GaloisFieldAffineTransformUint8x32 ...) => (VGF2P8AFFINEQB256 ...)\n (GaloisFieldAffineTransformUint8x64 ...) => (VGF2P8AFFINEQB512 ...)\n-(... | 2025-07-11T02:11:22 |
nodejs/node | 9f2885ad21f6cdc3352b3cbc777af1f0e8a2e318 | 7fa2a134af35fb794f7e618d823b3df38b104719 | Revert "src: migrate `String::Value` to `String::ValueView`"
This reverts commit 45c6a9e1f6e165eb0ab2f7b5635662aa1875c171.
PR-URL: https://github.com/nodejs/node/pull/55828
Fixes: https://github.com/nodejs/node/issues/55826
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Antoine du Hamel <duhamelanto... | [
{
"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-\n- TwoByteValue task_name_buffer(args.GetIsolate(), args[0]);\n- S... | 2024-11-16T23:42:26 |
rust-lang/rust | 7c011122e9053f6f71b297cd69ad9d2422600f4c | fd20f16ffcfc9d19ae191ebef7dbc9469ad1d1c6 | Fix copy_and_clone.rs | [
{
"path": "tests/mir-opt/pre-codegen/copy_and_clone.rs",
"patch": "@@ -1,4 +1,3 @@\n-//@ [COPY] compile-flags: --cfg=copy\n //@ revisions: COPY CLONE\n \n // Test case from https://github.com/rust-lang/rust/issues/128081.",
"additions": 0,
"deletions": 1,
"language": "Rust"
}
] | 2026-02-20T21:18:10 |
facebook/react | 408258268edb5acdfdbf77bc6e0b0dc6396c0e6f | 8b677b1e6ea6cd0f7a5c3b32164c127f1fceb360 | fix<compiler>: only call readTestFilter if the filter option is enabled (#29720)
Following the instructions in the compiler/docs/DEVELOPMENT_GUIDE.md, we are stuck on the command `yarn snap --watch` because it calls readTestFilter even though the filter option is not enabled. | [
{
"path": "compiler/packages/snap/src/runner-watch.ts",
"patch": "@@ -153,8 +153,8 @@ function subscribeFilterFile(\n } else if (\n events.findIndex((event) => event.path.includes(FILTER_FILENAME)) !== -1\n ) {\n- state.filter = await readTestFilter();\n if (state.mode.filter) {\n+ ... | 2024-06-03T23:09:58 |
electron/electron | 80906c0adb1e1b8103dcdfb8340c4b660b330c25 | d4413a8e53590b43d622ad9dce4259be89acbb8c | fix: properly stream `uploadData` in `protocol.handle()` (#41052)
* refactor(protocol): extract file stream factory
Increase readability by moving the file stream creation logic out of the
`uploadData` to request body conversion function.
* fix: properly flatten streams in `protocol.handle()`
Refs: electron/... | [
{
"path": "lib/browser/api/protocol.ts",
"patch": "@@ -29,6 +29,21 @@ function makeStreamFromPipe (pipe: any): ReadableStream {\n });\n }\n \n+function makeStreamFromFileInfo ({\n+ filePath,\n+ offset = 0,\n+ length = -1\n+}: {\n+ filePath: string;\n+ offset?: number;\n+ length?: number;\n+}): Reada... | 2024-02-16T19:29:29 |
vercel/next.js | fe19e10c399da66987c6d16322208f4c56949905 | 900d344fea928761b63e51e48a54d8ccc6f00a2e | Turbopack: Don't resolve tsconfig relative to file (#83484)
## What?
Changes in #83331 accidentally changed behavior of how `tsconfig.json`
is resolved. When using Next.js we don't want it to be resolved relative
to the current file being compiled. It should only use the application
root.
This PR fixes the behavior ... | [
{
"path": "crates/next-core/src/next_client/context.rs",
"patch": "@@ -188,6 +188,9 @@ pub async fn get_client_resolve_options_context(\n .typescript_tsconfig_path()\n .await?\n .as_ref()\n+ // Fall back to tsconfig only for resolving. This is because we don't want Turbopack t... | 2025-09-05T13:49:44 |
golang/go | 1e48ca7020adf13e0fa4a6c2053f210b869bfa24 | a0a99cb22b2045b15509d1002a655db407a44a50 | encoding/json: remove legacy option to EscapeInvalidUTF8
In the presence of invalid UTF-8, the AllowInvalidUTF8 option
allows such bytes to be present, but silently mangles them
using the Unicode replacement character.
The v2 default is to emit the replacement character verbatim
(which is valid UTF-8 and exactly what... | [
{
"path": "src/encoding/json/internal/jsonflags/flags.go",
"patch": "@@ -52,7 +52,6 @@ const (\n \t\tAllowInvalidUTF8 |\n \t\tEscapeForHTML |\n \t\tEscapeForJS |\n-\t\tEscapeInvalidUTF8 |\n \t\tPreserveRawStrings |\n \t\tDeterministic |\n \t\tFormatNilMapAsNull |\n@@ -77,7 +76,7 @@ const (\n \tWhitespaceFla... | 2025-07-10T00:08:49 |
nodejs/node | c91ce2120c5c292f28685b364f2e3a897da751ea | 293386626aa0f7429ffef39ac6fa80f25c8fdf2f | fs: fix `getDirent().parentPath` when type is `UV_DIRENT_UNKNOWN`
PR-URL: https://github.com/nodejs/node/pull/55553
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "lib/internal/fs/utils.js",
"patch": "@@ -301,7 +301,7 @@ function getDirent(path, name, type, callback) {\n callback(err);\n return;\n }\n- callback(null, new DirentFromStats(name, stats, filepath));\n+ callback(null, new DirentFromStats(name, stats, path... | 2024-11-16T23:23:58 |
rust-lang/rust | fd20f16ffcfc9d19ae191ebef7dbc9469ad1d1c6 | 0376d43d443cba463a0b6a6ec9140ea17d7b7130 | Always check compile_flags for revision
Previously, `self.props.compile_flags.windows(2)` would return an empty
iterator in the case where `self.props.compile_flags` was 1 or 0 length.
This created incorrectness where tests like
`tests/mir-opt/pre-codegen/copy_and_clone.rs` would pass when they should fail. | [
{
"path": "src/tools/compiletest/src/runtest.rs",
"patch": "@@ -504,12 +504,10 @@ impl<'test> TestCx<'test> {\n let normalized_revision = normalize_revision(revision);\n let cfg_arg = [\"--cfg\", &normalized_revision];\n let arg = format!(\"--cfg={normalized_revision}\");... | 2026-02-20T21:12:31 |
facebook/react | 8c3697a849b7e9ceeb47642ba61c270b7e6dd176 | 4dcdf21325028d7ae9bb3c2172dbbe9647a744ac | Fix xplat sync to ignore @generated header (#29738)
Use some clever git diffing to ignore lines that only change the
`@generated` header. We can't do this for the version string because the
version string can be embedded in lines with other changes, but this
header is always on one line. | [
{
"path": ".github/workflows/commit_artifacts.yml",
"patch": "@@ -329,7 +329,9 @@ jobs:\n git status\n echo \"====================\"\n echo \"Checking for changes\"\n- if git status --porcelain | grep -qv '/REVISION'; then\n+ # Check if there are changes in th... | 2024-06-03T20:39:38 |
electron/electron | 7d6a754d474c278e13d025f752baa7da04b86065 | 0dad99561b4232418dcf7ae48877bab35d633927 | fix: skip the first two invalid updates when SCK is enabled (#41340) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -128,4 +128,4 @@ feat_allow_code_cache_in_custom_schemes.patch\n build_run_reclient_cfg_generator_after_chrome.patch\n fix_suppress_clang_-wimplicit-const-int-float-conversion_in.patch\n fix_getcursorscreenpoint_wrongly_returns_0_0.patch\n-fix_add_support_... | 2024-02-14T19:56:29 |
vercel/next.js | 900d344fea928761b63e51e48a54d8ccc6f00a2e | c32327042a15ee0abdcf290a0ed4a3d25cc17a85 | [metadata] not add suffix to sitemap.xml in group routes (#83486) | [
{
"path": "crates/next-core/src/next_app/metadata/mod.rs",
"patch": "@@ -302,7 +302,7 @@ fn format_radix(mut x: u32, radix: u32) -> String {\n /// /(post)/sitemap -> /sitemap\n fn get_metadata_route_suffix(page: &str) -> Option<String> {\n // skip sitemap\n- if page.ends_with(\"/sitemap\") {\n+ if... | 2025-09-05T13:44:17 |
nodejs/node | b67986f57a17030afc3beee7bdfa3fed30d25ba2 | 7d28de9a7991ce83e304600458e26dc958f55aa2 | doc: add `node:sqlite` to mandatory `node:` prefix list
PR-URL: https://github.com/nodejs/node/pull/55846
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/modules.md",
"patch": "@@ -519,6 +519,7 @@ modules from having a conflict with user land packages that already have\n taken the name. Currently the built-in modules that requires the `node:` prefix are:\n \n * [`node:sea`][]\n+* [`node:sqlite`][]\n * [`node:test`][]\n * [`node:test/report... | 2024-11-16T04:05:45 |
golang/go | a0a99cb22b2045b15509d1002a655db407a44a50 | 9d04122d240db4de36bf9ef4f5627e0025201bd9 | encoding/json/v2: report wrapped io.ErrUnexpectedEOF
In the event that the input is just JSON whitespace,
the underlying jsontext.Decoder treats this as an empty stream
and reports io.EOF.
The logic in unmarshalFull simply casted io.EOF as io.ErrUnexpectedEOF,
which is inconsistent with how all other io.ErrUnexpected... | [
{
"path": "src/encoding/json/decode_test.go",
"patch": "@@ -12,6 +12,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"image\"\n+\t\"io\"\n \t\"maps\"\n \t\"math\"\n \t\"math/big\"\n@@ -469,11 +470,13 @@ var unmarshalTests = []struct {\n \t{CaseName: Name(\"\"), in: `{\"alphabet\": \"xyz\"}`, ptr: new(U), err:... | 2025-07-09T23:55:14 |
facebook/react | 4dcdf21325028d7ae9bb3c2172dbbe9647a744ac | bf3a29d097a5d457e85a58a183fb9e12714fbece | [Fiber] Prefix owner stacks with the current stack at the console call (#29697)
This information is available in the regular stack but since that's
hidden behind an expando and our appended stack to logs is not hidden,
it hides the most important frames like the name of the current
component.
This is closer to w... | [
{
"path": "packages/react-reconciler/src/ReactCurrentFiber.js",
"patch": "@@ -44,7 +44,7 @@ export function getCurrentParentStackInDev(): string {\n return '';\n }\n \n-function getCurrentFiberStackInDev(): string {\n+function getCurrentFiberStackInDev(stack: Error): string {\n if (__DEV__) {\n if (... | 2024-06-03T16:26:38 |
vercel/next.js | 2a9e842602c5b8095434a4a3cbbb769612ab8497 | 6d34793866be9e06a29c171ee5ce268586f3bd11 | [turbopack] RFC: Serialize turbopack objects as u16s instead of fully qualified symbol names (#83193)
Change the serialization strategy for `ValueTypeId`, `TraitTypeId` and `NativeFunction` to use `u16` values instead of the `global_name` (a fully qualified name of the object).
For all these objects the value is the ... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -36,7 +36,7 @@ use turbo_tasks::{\n },\n event::{Event, EventListener},\n message_queue::TimingEvent,\n- registry::{self, get_value_type_global_name},\n+ registry::get_value_type,\n task_statistics::TaskS... | 2025-09-05T07:12:00 |
golang/go | 1ca23682dd7b2706daa94e428b3b82cc85a752c0 | 4bc3373c8e2cad24a779698477704306548949cb | crypto/rsa: fix documentation formatting
Change-Id: I6a6a696422f9ab73b9ddee131b17d3c177fefc4e
Reviewed-on: https://go-review.googlesource.com/c/go/+/687615
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Roland Shoemaker <roland@golang.org>
Reviewed-by: Carlos Ame... | [
{
"path": "src/crypto/rsa/rsa.go",
"patch": "@@ -30,14 +30,15 @@\n // with a key smaller than 1024 bits. Such keys are insecure and should not be\n // used.\n //\n-// The `rsa1024min=0` GODEBUG setting suppresses this error, but we recommend\n-// doing so only in tests, if necessary. Tests can use [testing.... | 2025-07-10T15:06:05 |
facebook/react | 9598c41a20162c8a9d57ccf6a356aa183b00b61a | 67b05be0d216c4efebc4bb5acb12c861a18bd87c | useActionState: On error, cancel remaining actions (#29695)
Based on
- #29694
---
If an action in the useActionState queue errors, we shouldn't run any
subsequent actions. The contract of useActionState is that the actions
run in sequence, and that one action can assume that all previous
actions have comp... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMForm-test.js",
"patch": "@@ -1237,14 +1237,12 @@ describe('ReactDOMForm', () => {\n \n // @gate enableAsyncActions\n test('useActionState: error handling (sync action)', async () => {\n- let resetErrorBoundary;\n class ErrorBoundary extends Reac... | 2024-06-03T15:25:43 |
electron/electron | 0dad99561b4232418dcf7ae48877bab35d633927 | 7e241eef7c2e77edd882c25ccc6c38d1f29367ea | chore: bump chromium to 123.0.6296.0 (main) (#41204)
* chore: bump chromium in DEPS to 123.0.6273.0
* chore: update patches
* chore: bump chromium in DEPS to 123.0.6274.0
* chore: update patches
* chore: bump chromium in DEPS to 123.0.6276.0
* chore: update patches
* WIP: 5239586: Change View::Layout... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '123.0.6272.0',\n+ '123.0.6296.0',\n 'node_version':\n 'v20.11.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "filena... | 2024-02-14T17:33:32 |
vercel/next.js | 6d34793866be9e06a29c171ee5ce268586f3bd11 | 6316c4bd11c38384ac560ca2b8c487e085815782 | [turbopack] Attempt #2 at making rust-analyzer happy with our macros (#83461)
We are experiencing https://github.com/rust-lang/rust-analyzer/issues/19993 and Rust Analyzer is complaining about our macro gencode. After some trial and error i determined the issue was our use of the `concat!` and specifically the inclus... | [
{
"path": "turbopack/crates/turbo-tasks-macros/src/global_name.rs",
"patch": "@@ -5,7 +5,7 @@ use quote::quote;\n ///\n /// The name is prefixed with the current crate name and module path\n pub(crate) fn global_name(local_name: impl quote::ToTokens) -> TokenStream {\n- let crate_name =\n- std::en... | 2025-09-05T06:59:46 |
nodejs/node | d9540b51ebc1a97bbb109fff0825c2f0090aefa2 | 8a29648ff5604477778b279744b6df0fcc837c6a | fs: remove `dirent.path`
PR-URL: https://github.com/nodejs/node/pull/55548
Fixes: https://github.com/nodejs/node/issues/55538
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Ethan Arrowood <ethan@arrowood.d... | [
{
"path": "benchmark/fs/bench-opendirSync.js",
"patch": "@@ -8,7 +8,7 @@ tmpdir.refresh();\n \n const testFiles = fs.readdirSync('test', { withFileTypes: true })\n .filter((f) => f.isDirectory())\n- .map((f) => path.join(f.path, f.name));\n+ .map((f) => path.join(f.parentPath, f.name));\n const bench = ... | 2024-10-26T08:27:24 |
golang/go | 4bc3373c8e2cad24a779698477704306548949cb | 88cf0c5d55a8c18da515485f4a3fcf008b96cb07 | runtime: turn off large memmove tests under asan/msan
Just like we do for race mode. They are just too slow when running
with the sanitizers.
Fixes #59448
Change-Id: I86e3e3488ec5c4c29e410955e9dc4cbc99d39b84
Reviewed-on: https://go-review.googlesource.com/c/go/+/687535
Reviewed-by: Keith Randall <khr@google.com>
LUC... | [
{
"path": "src/runtime/memmove_test.go",
"patch": "@@ -8,6 +8,8 @@ import (\n \t\"crypto/rand\"\n \t\"encoding/binary\"\n \t\"fmt\"\n+\t\"internal/asan\"\n+\t\"internal/msan\"\n \t\"internal/race\"\n \t\"internal/testenv\"\n \t. \"runtime\"\n@@ -102,8 +104,8 @@ func TestMemmoveLarge0x180000(t *testing.T) {\... | 2025-07-11T16:10:53 |
electron/electron | 79147e4dd825aa26ea0242470c2bad47c3998fe3 | 32920af4b78213b4479f20796e989d4cc56ce9db | fix: Ignore `-webkit-app-region: drag;` when window is in full screen mode. (#41307)
Co-authored-by: Mikhail Leliakin <lelyakin.aus@gmail.com> | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -757,6 +757,11 @@ int NativeWindow::NonClientHitTest(const gfx::Point& point) {\n }\n #endif\n \n+ // This is to disable dragging in HTML5 full screen mode.\n+ // Details: https://github.com/electron/electron/issues/41002\n+ if (GetWidget()->IsFu... | 2024-02-14T10:12:41 |
facebook/react | def67b9b329c8aa204e611cd510c5a64680aee58 | 47d0c30246134ad9ce04abdcf0977cf2d49d00ce | Fix stylesheet typo in 29693 (#29732)
stylehsheet -> stylesheet | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2442,7 +2442,7 @@ export function getResource(\n + ${describeLinkForResourceErrorDEV(pendingProps)}`;\n }\n throw new Error(\n- 'Expected <link> not to update to be updated to a stylehsh... | 2024-06-03T14:51:21 |
nodejs/node | be5a500ae39baba2747be1b94972ef8d224fcb49 | b52a49bfb1871181b6160606b1a434373602fcbe | doc: fix history info for `URL.prototype.toJSON`
PR-URL: https://github.com/nodejs/node/pull/55818
Fixes: https://github.com/nodejs/node/issues/55806
Refs: https://github.com/nodejs/node/pull/11236
Refs: https://github.com/nodejs/node/pull/17365
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Luigi ... | [
{
"path": "doc/api/url.md",
"patch": "@@ -600,6 +600,12 @@ value returned is equivalent to that of [`url.href`][] and [`url.toJSON()`][].\n \n #### `url.toJSON()`\n \n+<!-- YAML\n+added:\n+ - v7.7.0\n+ - v6.13.0\n+-->\n+\n * Returns: {string}\n \n The `toJSON()` method on the `URL` object returns the seri... | 2024-11-13T16:47:28 |
vercel/next.js | 38c4caf22a570868b8c1689c843044807560b4a7 | a270b00e4c29f1829ed887e459f69a71ef488ea2 | [turbopack] Don't execute inventory_submit in rust analyzer (#83447)
### What?
In #83074 we changed how turbo task objects were registered to use the `inventory` crate.
This PR adds a new `inventory_submit!` macro that wraps the existing `inventory::submit` function with a `#[cfg(not(rust_analyzer))]` attribute to pre... | [
{
"path": "turbopack/crates/turbo-tasks-backend/fuzz/Cargo.toml",
"patch": "@@ -32,3 +32,7 @@ path = \"afl_targets/graph.rs\"\n test = false\n doc = false\n bench = false\n+\n+\n+[lints]\n+workspace = true",
"additions": 4,
"deletions": 0,
"language": "Unknown"
},
{
"path": "turbopack/cr... | 2025-09-04T20:31:50 |
electron/electron | 32920af4b78213b4479f20796e989d4cc56ce9db | 0218af9af0e4a8896e01b4272013b46d43fb4d6c | fix: add capability to use ScreenCaptureKit for thumbnail generation (#41328)
This aligns us with Chromiums flags / capabilities in regards to using SCK for
everything. Currently on 14.4 Electron apps will pop warnings for usage of
deprecated APIs. With this change and a few "enable-features" toggles.
`--enable-... | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -242,6 +242,8 @@ static_library(\"chrome\") {\n \"//chrome/browser/media/webrtc/system_media_capture_permissions_mac.mm\",\n \"//chrome/browser/media/webrtc/system_media_capture_permissions_stats_mac.h\",\n \"//chrome/browser/media/webrtc/sys... | 2024-02-14T04:46:51 |
facebook/react | 47d0c30246134ad9ce04abdcf0977cf2d49d00ce | b421783110fb20f139adf4c4f9a8911dc63f9c68 | [Fiber][Float] Error when a host fiber changes "flavor" (#29693)
Host Components can exist as four semantic types
1. regular Components (Vanilla obv)
2. singleton Components
2. hoistable components
3. resources
Each of these component types have their own rules related to mounting
and reconciliation however ... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2358,6 +2358,7 @@ export function getResource(\n type: string,\n currentProps: any,\n pendingProps: any,\n+ currentResource: null | Resource,\n ): null | Resource {\n const resourceRoot = getCurrentResourceRoot... | 2024-06-03T14:47:45 |
nodejs/node | bd0c4f80e4a7e54070f991bc6d1a7bf03f0ac4fc | 2310409a89d2d76fdc87289b99011750203b79fb | test: fix permission fixtures lint
PR-URL: https://github.com/nodejs/node/pull/55819
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/fixtures/permission/main-module.js",
"patch": "@@ -1 +1 @@\n-require('./required-module');\n\\ No newline at end of file\n+require('./required-module');",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
},
{
"path": "test/fixtures/permission/main-module.mjs",
... | 2024-11-12T16:39:24 |
vercel/next.js | a270b00e4c29f1829ed887e459f69a71ef488ea2 | 74c3745608a87cc49a204ba381c05134e328f183 | [turbopack] Add an execution test for the behavior when a module throws an error (#83451)
Confirms that we don't re-evaluate modules after an error
Clearing the require.cache allows us to re-evaluate | [
{
"path": "turbopack/crates/turbopack-tests/tests/execution/turbopack/evaluation-errors/basic/input/index.js",
"patch": "@@ -0,0 +1,23 @@\n+it('module evaluation rethrows but does not re-evaluate', async () => {\n+ expect(globalThis.evalCounter).toBeUndefined()\n+ await assertThrowsThrows()\n+ expect(glo... | 2025-09-04T20:04:46 |
golang/go | 88cf0c5d55a8c18da515485f4a3fcf008b96cb07 | 7a38975a48ac735e62b389957bfc898437d628dc | cmd/link: do size fixups after symbol references are loaded
When we do a size fixup, we need to clone the symbol to an
external symbol so we can modify it. This includes cloning the
relocations, which includes resolving the relocations. If the
symbol being fixed has a relocation referencing a non-Go symbol,
that symbo... | [
{
"path": "src/cmd/link/internal/loader/loader.go",
"patch": "@@ -2298,17 +2298,17 @@ func (l *Loader) LoadSyms(arch *sys.Arch) {\n \t\tst.preloadSyms(r, hashedDef)\n \t\tst.preloadSyms(r, nonPkgDef)\n \t}\n-\tfor _, sf := range l.sizeFixups {\n-\t\tpp := l.cloneToExternal(sf.sym)\n-\t\tpp.size = int64(sf.s... | 2025-07-10T04:46:00 |
electron/electron | 0218af9af0e4a8896e01b4272013b46d43fb4d6c | 6a616ab70cfbc1483308af022ae6459e8e3fa7c8 | fix: work around `unarchivedObjectOfClass` requiring `secureCoding` (#41319) | [
{
"path": "patches/squirrel.mac/refactor_use_non-deprecated_nskeyedarchiver_apis.patch",
"patch": "@@ -11,23 +11,33 @@ Several NSKeyedArchiver methods have been deprecated and replaced as of macOS 10\n - archivedDataWithRootObject -> archivedDataWithRootObject:requiringSecureCoding:error:\n \n diff --git a/... | 2024-02-14T03:08:03 |
facebook/react | ba099e442b602b9414693dab9cfa67e19051037c | d77dd31a329df55a051800fc76668af8da8332b4 | [Flight] Add findSourceMapURL option to get a URL to load Server source maps from (#29708)
This lets you click a stack frame on the client and see the Server
source code inline.
<img width="871" alt="Screenshot 2024-06-01 at 11 44 24 PM"
src="https://github.com/facebook/react/assets/63648/581281ce-0dce-40c0-a084-... | [
{
"path": "fixtures/flight/config/webpack.config.js",
"patch": "@@ -199,7 +199,7 @@ module.exports = function (webpackEnv) {\n ? shouldUseSourceMap\n ? 'source-map'\n : false\n- : isEnvDevelopment && 'cheap-module-source-map',\n+ : isEnvDevelopment && 'source-map',\n // T... | 2024-06-03T02:58:24 |
nodejs/node | 2310409a89d2d76fdc87289b99011750203b79fb | 03d414ed9add84541e71d180fed1b7b0609ff6c8 | report: fix network queries in getReport libuv with exclude-network
PR-URL: https://github.com/nodejs/node/pull/55602
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Vinícius Lourenço Claro Cardoso <cont... | [
{
"path": "doc/api/report.md",
"patch": "@@ -35,7 +35,7 @@ is provided below for reference.\n ```json\n {\n \"header\": {\n- \"reportVersion\": 3,\n+ \"reportVersion\": 4,\n \"event\": \"exception\",\n \"trigger\": \"Exception\",\n \"filename\": \"report.20181221.005011.8974.0.001.json\"... | 2024-11-12T15:57:59 |
vercel/next.js | 963655735d4eb47cbcfc121a3a5a7fc4eaa5b9a2 | 818e83515c62ccce2c306651d972a55a6f9dd16c | [turbopack] Improve handling of symlink resolution errors in track_glob and read_glob (#83357)
# Improve symlink handling in turbo-tasks-fs
This PR enhances symlink handling in the filesystem layer to better handle error cases and provide more detailed error messages. The key changes include:
- Refactored `realpath_... | [
{
"path": "crates/next-core/src/pages_structure.rs",
"patch": "@@ -106,11 +106,11 @@ pub async fn find_pages_structure(\n page_extensions: Vc<Vec<RcStr>>,\n next_mode: Vc<crate::mode::NextMode>,\n ) -> Result<Vc<PagesStructure>> {\n- let pages_root = project_root.join(\"pages\")?.realpath().owned... | 2025-09-04T17:41:48 |
golang/go | 7a38975a48ac735e62b389957bfc898437d628dc | aa5de9ebb55bbd5e0a38304f8f8e603b2ec03238 | os: trivial comment fix
"Geese" here looks like an autocorrect-o of "oses", I think writing it out
makes more sense.
Change-Id: Iba89a6c0b94657e2e93937cc153f07aea1d04e04
GitHub-Last-Rev: 4f3a780f327d6c807e9b154d781ee69a10d391e4
GitHub-Pull-Request: golang/go#74332
Reviewed-on: https://go-review.googlesource.com/c/go/... | [
{
"path": "src/os/file.go",
"patch": "@@ -616,7 +616,7 @@ func UserHomeDir() (string, error) {\n \tif v := Getenv(env); v != \"\" {\n \t\treturn v, nil\n \t}\n-\t// On some geese the home directory is not always defined.\n+\t// On some operating systems the home directory is not always defined.\n \tswitch r... | 2025-06-22T17:16:36 |
electron/electron | 4ded4d16a83b3fb714df5b60003812456097f298 | c894645ac68af14183d617570a2d51336a2578ad | fix: destroy `NodeService` message pipe last (#41277)
refactor: destroy NodeService message pipe last | [
{
"path": "shell/services/node/node_service.h",
"patch": "@@ -61,6 +61,12 @@ class NodeService : public node::mojom::NodeService {\n void Initialize(node::mojom::NodeServiceParamsPtr params) override;\n \n private:\n+ // This needs to be initialized first so that it can be destroyed last\n+ // after th... | 2024-02-09T21:44:35 |
nodejs/node | 07e2819d5d3f9c1f0b71696a77cea3c6fc6f5c15 | 8531e072f3c70e26a4ba6fecd6ed0e099a898410 | esm: fix import.meta.resolve crash
PR-URL: https://github.com/nodejs/node/pull/55777
Fixes: https://github.com/nodejs/node/issues/55518
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "src/node_modules.cc",
"patch": "@@ -412,7 +412,10 @@ void BindingData::GetPackageScopeConfig(\n }\n \n auto file_url = url::FileURLToPath(realm->env(), *package_json_url);\n- CHECK(file_url);\n+ if (!file_url) {\n+ url::ThrowInvalidURL(realm->env(), resolved.ToStringView(), std... | 2024-11-11T16:29:16 |
facebook/react | 113c8e7f72bcf5d3bc285546da1508b45da3cf53 | adbec0c25aff07f04b0678679554505ba2813168 | [compiler:eslint] Don't crash if hermes parser fails to parse
Eslint rules should never throw, so if we fail to parse with Babel or
Hermes, we should just ignore the error. This should fix issues such as
trying to run the eslint rule on non tsx|ts|jsx|js files, Hermes parser
not supporting certain JS syntax, etc.
I d... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/src/rules/ReactCompilerRule.ts",
"patch": "@@ -124,12 +124,14 @@ const rule: Rule.RuleModule = {\n });\n } catch {}\n } else {\n- babelAST = HermesParser.parse(sourceCode, {\n- babel: true,\n- enableExperimentalCo... | 2024-05-31T00:18:26 |
rust-lang/rust | 6c6f5860f66c390f2477a3f713a9085ad49fe60e | fbd6934114e905d3cc61adbbd7e4a355eac5d0d7 | Fix warnings in rs{begin,end}.rs files
As can be seen locally and in CI logs (dist-i686-mingw) that code used
to trigger `static_mut_refs` warning. | [
{
"path": "library/rtstartup/rsbegin.rs",
"patch": "@@ -90,12 +90,12 @@ pub mod eh_frames {\n \n unsafe extern \"C\" fn init() {\n // register unwind info on module startup\n- __register_frame_info(&__EH_FRAME_BEGIN__ as *const u8, &mut OBJ as *mut _ as *mut u8);\n+ __register_fram... | 2026-02-19T21:28:52 |
vercel/next.js | 544f52126ed0f16b78044ea16e8e1170f6503179 | 1bfe63a6d01749c8917e298fe016d8d111bab8a2 | fix: Include CSP nonce in next/dynamic preload (#81999)
Co-authored-by: Jiachi Liu <inbox@huozhi.im> | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -1982,7 +1982,8 @@ export const renderToHTMLOrFlight: AppPageRender = (\n previewModeId: renderOpts.previewProps?.previewModeId,\n })\n \n- const { isPrefetchRequest, previouslyRevalidatedTags } = parsedRequestHeaders\n+ co... | 2025-09-04T16:18:44 |
golang/go | aa5de9ebb55bbd5e0a38304f8f8e603b2ec03238 | 63ec70d4e1350f44caf950cf3f675ae2cb7ea453 | synctest: fix comments for time.Now() in synctests
Also add a test case to make sure that time.Now() results in the
documented date.
Change-Id: Ic4cc577eba485b7c6e1a64122da06d7075bbe12e
Reviewed-on: https://go-review.googlesource.com/c/go/+/685677
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.g... | [
{
"path": "src/testing/synctest/example_test.go",
"patch": "@@ -21,7 +21,7 @@ import (\n \n func TestTime(t *testing.T) {\n \tsynctest.Test(t, func(t *testing.T) {\n-\t\tstart := time.Now() // always midnight UTC 2001-01-01\n+\t\tstart := time.Now() // always midnight UTC 2000-01-01\n \t\tgo func() {\n \t\t... | 2025-07-04T18:40:42 |
electron/electron | c894645ac68af14183d617570a2d51336a2578ad | 9655ae7d6ae9de4b467d197957bb3c7a152e3ddd | fix: crash on macOS non-programmatic close (#41264) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -439,11 +439,14 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n if ([window_ attachedSheet])\n [window_ endSheet:[window_ attachedSheet]];\n \n+ // window_ could be nil after performClose.\n+ bool should... | 2024-02-09T21:44:24 |
nodejs/node | 7bcc250799443dc955618d5e0ec1c4cbc6bfaed7 | 69f8794cbea5813ff9abb490c2cd875b8332f605 | tools: fix exclude labels for commit-queue
The `gh` cli doesn't recognise `--no-label`. Instead exclude labels
via the `--search` flag.
Refs: https://github.com/nodejs/node/pull/55781#issuecomment-2466782441
Refs: https://github.com/cli/cli/discussions/4142
PR-URL: https://github.com/nodejs/node/pull/55809
Reviewed-B... | [
{
"path": ".github/workflows/commit-queue.yml",
"patch": "@@ -37,17 +37,16 @@ jobs:\n --repo ${{ github.repository }} \\\n --base ${{ github.ref_name }} \\\n --label 'commit-queue' \\\n- --no-label 'blocked' \\\n --json... | 2024-11-10T15:59:05 |
facebook/react | adbec0c25aff07f04b0678679554505ba2813168 | ec6fe57a5027d60a959493a2e44b6872b8de0ab8 | Fix: `useTransition` after `use` gets stuck in pending state (#29670)
When a component suspends with `use`, we switch to the "re-render"
dispatcher during the subsequent render attempt, so that we can reuse
the work from the initial attempt. However, once we run out of hooks
from the previous attempt, we should swi... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -1083,20 +1083,49 @@ function useThenable<T>(thenable: Thenable<T>): T {\n thenableState = createThenableState();\n }\n const result = trackUsedThenable(thenableState, thenable, index);\n- if (\n- currentlyRenderingFiber.... | 2024-05-31T21:52:47 |
rust-lang/rust | 279b8cd8229a9a0a71d82d403962fa81e52d6a86 | 8387095803f21a256a9a772ac1f9b41ed4d5aa0a | Skip `Debug` on `use_existential_projection_new_instead` | [
{
"path": "compiler/rustc_type_ir/src/predicate.rs",
"patch": "@@ -420,6 +420,7 @@ pub struct ExistentialProjection<I: Interner> {\n \n /// This field exists to prevent the creation of `ExistentialProjection`\n /// without using [`ExistentialProjection::new_from_args`].\n+ #[derive_where(skip(Deb... | 2026-02-18T18:16:38 |
vercel/next.js | 1bfe63a6d01749c8917e298fe016d8d111bab8a2 | a225045924f20499e3368bc5f96db8c12d6f093c | auto-enable errors.json merge driver (#83420)
The merge driver for `errors.json` has been around for a while, and
seems to work without issues. This PR enables it by default by
installing it in `postinstall`(via the existing `git-configure.mjs`
script which is invoked from there already)
It also adds `scripts/merge-e... | [
{
"path": "scripts/git-configure.mjs",
"patch": "@@ -1,12 +1,19 @@\n+// @ts-check\n import execa from 'execa'\n \n // See https://github.com/vercel/next.js/pull/47375\n-const { stdout, stderr } = await execa(\n- 'git',\n- ['config', 'index.skipHash', 'false'],\n- {\n- reject: false,\n- }\n-)\n+await ... | 2025-09-04T16:08:47 |
golang/go | ab7f839280df8734c388046f957f7f37ae5b0998 | 47b07a87a65584f7b1c1efa26cf94e551e72dc2c | [dev.simd] cmd/compile: fix maskreg/simdreg chaos
This CL fixes some errors left by CL 685895.
Change-Id: I35ee36287fc964a82fd3c88764b688bd4491be65
Reviewed-on: https://go-review.googlesource.com/c/go/+/687095
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Cherr... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -1043,8 +1043,8 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tx := v.Args[0].Reg()\n \t\ty := v.Reg()\n \t\tif v.Type.IsSIMD() {\n-\t\t\tx = simdReg(v.Args[0])\n-\t\t\ty = simdReg(v)\n+\t\t\tx = simdOrMaskReg(v.Args[0])\n+\t\t\ty =... | 2025-07-09T22:33:25 |
electron/electron | 9655ae7d6ae9de4b467d197957bb3c7a152e3ddd | cee51785e1ed057fa5c78b2fc7bb1e8a5b91053d | fix: `GetCursorScreenpoint()` sometimes wrongly returns `(0,0)` (#41275) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -127,3 +127,4 @@ fix_restore_original_resize_performance_on_macos.patch\n feat_allow_code_cache_in_custom_schemes.patch\n build_run_reclient_cfg_generator_after_chrome.patch\n fix_suppress_clang_-wimplicit-const-int-float-conversion_in.patch\n+fix_getcurso... | 2024-02-09T15:44:46 |
facebook/react | ec6fe57a5027d60a959493a2e44b6872b8de0ab8 | 522d22f29904f2164210b3ae218b9b69b61e9a4c | [compiler] rfc: Include location information in identifiers and reactive scopes for debugging
Summary: Using the change detection code to debug codebases that violate the rules of react is a lot easier when we have a source location corresponding to the value that has changed inappropriately. I didn't see an easy way ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -124,7 +124,7 @@ export function lower(\n ) {\n const place: Place = {\n kind: \"Identifier\",\n- identifier: builder.makeTemporary(),\n+ identifier: builder.makeTemporary(param.node.l... | 2024-05-31T21:06:04 |
vercel/next.js | a225045924f20499e3368bc5f96db8c12d6f093c | 82cfc5efff9e81158a08b15ae68a7ca53e96af2f | Docs: Fix broken getImageProps sample code (#83436)
Co-authored-by: Jiachi Liu <inbox@huozhi.im> | [
{
"path": "docs/01-app/03-api-reference/02-components/image.mdx",
"patch": "@@ -891,7 +891,7 @@ The `getImageProps` function can be used to get the props that would be passed t\n ```jsx\n import { getImageProps } from 'next/image'\n \n-const props = getImageProps({\n+const { props } = getImageProps({\n sr... | 2025-09-04T15:18:12 |
golang/go | 63ec70d4e1350f44caf950cf3f675ae2cb7ea453 | 8131635e5a9c7ae2fd2c083bed9e841d27226500 | crypto/cipher: Fix comment punctuation
Change-Id: I7dc086a87d28ab847288eed13f719421420cd004
Reviewed-on: https://go-review.googlesource.com/c/go/+/686997
Reviewed-by: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> | [
{
"path": "src/crypto/cipher/cfb.go",
"patch": "@@ -86,7 +86,7 @@ func NewCFBDecrypter(block Block, iv []byte) Stream {\n func newCFB(block Block, iv []byte, decrypt bool) Stream {\n \tblockSize := block.BlockSize()\n \tif len(iv) != blockSize {\n-\t\t// stack trace will indicate whether it was de or encryp... | 2025-07-09T19:52:09 |
electron/electron | b253d52faf932d9613ad149fdaecabaf9c1c0218 | 4d060afc98dd2eef076dd415f2a03ea642a5baa7 | build: export matching patches (#41174)
* build: make patches/config.json an array of objects
This file was previously an object of patch_dir keys to repo values;
Now is an array of objects containing `patch_dir` and `repo` properties.
This makes other per-target properties (e.g. `grep`) possible.
* build: inc... | [
{
"path": "patches/config.json",
"patch": "@@ -1,27 +1,15 @@\n-{\n- \"src/electron/patches/chromium\": \"src\",\n-\n- \"src/electron/patches/boringssl\": \"src/third_party/boringssl/src\",\n-\n- \"src/electron/patches/devtools_frontend\": \"src/third_party/devtools-frontend/src\",\n-\n- \"src/electron/p... | 2024-02-08T18:47:59 |
vercel/next.js | eadcd5435d82c380db0742825281270be8f71b79 | e539ca1e48dd0e09bbd67fd1b809707ba5863b1e | [test] Improve debug logs for Playwright tests (#83431) | [
{
"path": "run-tests.js",
"patch": "@@ -463,7 +463,6 @@ ${ENDGROUP}`)\n '--runInBand',\n '--forceExit',\n '--verbose',\n- '--silent',\n ...(isTestJob\n ? ['--json', `--outputFile=${test.file}${RESULTS_EXT}`]\n : []),",
"additions": 0,
"delet... | 2025-09-04T13:19:17 |
facebook/react | 522d22f29904f2164210b3ae218b9b69b61e9a4c | c69211a9dfa683038b1a758aba2ca09c7862a6d3 | [compiler] Recompute values every time
Summary: This PR expands the analysis from the previous in the stack in order to also capture when a value can incorrectly change within a single render, rather than just changing between two renders. In the case where dependencies have changed and so a new value is being compute... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -461,6 +461,11 @@ function codegenReactiveScope(\n ): void {\n const cacheStoreStatements: Array<t.Statement> = [];\n const cacheLoadStatements: Array<t.Statement> = [];\n+ const cacheL... | 2024-05-31T21:06:02 |
golang/go | 47b07a87a65584f7b1c1efa26cf94e551e72dc2c | 08cd62e9f50b10a19f96b94c1e75f868b958d113 | [dev.simd] cmd/compile, simd: fix Int64x2 Greater output type to mask
This CL is generated by CL 686821.
Change-Id: I4bc4fa717ff858299b13955a40e750709a796fba
Reviewed-on: https://go-review.googlesource.com/c/go/+/686998
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj... | [
{
"path": "src/simd/ops_amd64.go",
"patch": "@@ -2248,7 +2248,7 @@ func (x Int32x8) Greater(y Int32x8) Mask32x8\n // Greater compares for greater than.\n //\n // Asm: VPCMPGTQ, CPU Feature: AVX\n-func (x Int64x2) Greater(y Int64x2) Int64x2\n+func (x Int64x2) Greater(y Int64x2) Mask64x2\n \n // Greater compa... | 2025-07-09T21:16:03 |
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.