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 |
|---|---|---|---|---|---|
golang/go | 1e756dc5f73dc19eb1cbf038807d18ef1cc54ebc | 29595ffeca93390dc9c03753b01406c4470c1490 | cmd/compile: relax tighten register-pressure heuristic slightly
Sometimes a value has multiple args, but they are the same
dependency. Relax the regalloc heuristic for those.
No measurable compile-time regression according to compilebench,
maybe even a small improvement.
name old time/op new time/op delta
StdCm... | [
{
"path": "src/cmd/compile/internal/ssa/tighten.go",
"patch": "@@ -27,6 +27,8 @@ func tighten(f *Func) {\n \tdefer f.Cache.freeValueSlice(startMem)\n \tendMem := f.Cache.allocValueSlice(f.NumBlocks())\n \tdefer f.Cache.freeValueSlice(endMem)\n+\tdistinctArgs := f.newSparseSet(f.NumValues())\n+\tdefer f.retS... | 2025-04-19T11:27:31 |
electron/electron | f6bbc3465888a113db91e16647e54a2aa4650606 | 2b3902e526d57a37c68f8f7c5dd370358c5c06f7 | fix: set supported scale factors on startup (#38836) | [
{
"path": "shell/browser/browser.cc",
"patch": "@@ -203,13 +203,6 @@ void Browser::DidFinishLaunching(base::Value::Dict launch_info) {\n }\n for (BrowserObserver& observer : observers_)\n observer.OnFinishLaunching(launch_info.Clone());\n-\n-#if BUILDFLAG(IS_MAC)\n- if (dock_icon_) {\n- DockSetI... | 2023-06-20T16:24:03 |
facebook/react | 746890329452cbec8685eb3466847c5f17d9dc77 | 7508dcd5cc245e376860d65402972e418199264d | [Static][Fizz] bootstrap scripts should only emit once (#27674)
I introduced a bug in a recent change to how bootstrap scripts are
handled. Rather than clearing out the bootstrap script state from
ResumableState on completion of the prerender I did it during the
flushing phase which comes later after the postponed ... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -690,6 +690,13 @@ export function resetResumableState(\n resumableState.moduleScriptResources = {};\n }\n \n+export function completeResumableState(resumableState: ResumableState): void {\n+ // This function is called ... | 2023-11-09T01:51:47 |
rust-lang/rust | 40a264cd454e791f478dae1488bb67ed7d7d058d | c69e1a04db484db8974904e6f8eb1e8df21a39ba | fix: rhs_span to rhs_span_new | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs",
"patch": "@@ -1695,7 +1695,7 @@ fn suggest_ampmut<'tcx>(\n && let Either::Left(rhs_stmt_new) = body.stmt_at(*assign)\n && let StatementKind::Assign(box (_, rvalue_new)) = &rhs_stmt_new.kind\n ... | 2026-02-09T14:16:36 |
nodejs/node | e35902cddb8ae5e0335f4c26588834245ec4cb68 | 8b0c699f2aafdf81bc4834b9bd2a4923741d3a6f | module: fix discrepancy between .ts and .js
PR-URL: https://github.com/nodejs/node/pull/54461
Fixes: https://github.com/nodejs/node/issues/54457
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Zeyu "Alex... | [
{
"path": "lib/internal/modules/esm/get_format.js",
"patch": "@@ -161,14 +161,14 @@ function getFileProtocolModuleFormat(url, context = { __proto__: null }, ignoreE\n default: { // The user did not pass `--experimental-default-type`.\n // `source` is undefined when this is called from `default... | 2024-08-22T08:48:33 |
vercel/next.js | 43b64ccdb53eba5589a36b657aa9935dd2367750 | 7efeae3de8f1edee9a20f8e17a5306388b798b48 | Ignore pending revalidations during prerendering (#81621)
When reading a cache entry, we usually check its tags against the recently revalidated tags, and dismiss it, if it has any of those tags. However, this is only needed during dynamic requests, specifically during the rendering that follows a revalidating server ... | [
{
"path": "packages/next/src/server/use-cache/use-cache-wrapper.ts",
"patch": "@@ -1004,6 +1004,7 @@ export function cache(\n shouldDiscardCacheEntry(\n entry,\n workStore,\n+ workUnitStore,\n implicitTags,\n implicitTagsExpira... | 2025-07-16T12:12:03 |
golang/go | 29595ffeca93390dc9c03753b01406c4470c1490 | b386b628521780c048af14a148f373c84e687b26 | doc: fix grammar and spelling
Minor typo fixes in the docs
Change-Id: I56b5d0318936aecc7775fb5bc70534456707da49
GitHub-Last-Rev: b4d042f8a997aa0d3824d8f9350dd24090b21073
GitHub-Pull-Request: golang/go#73531
Reviewed-on: https://go-review.googlesource.com/c/go/+/668815
Reviewed-by: Keith Randall <khr@golang.org>
LUCI-... | [
{
"path": "doc/godebug.md",
"patch": "@@ -370,7 +370,7 @@ certificate policy OIDs with components larger than 31 bits. By default this\n field is only used during parsing, when it is populated with policy OIDs, but\n not used during marshaling. It can be used to marshal these larger OIDs, instead\n of the e... | 2025-04-29T11:46:09 |
facebook/react | 88b00dec4778ffa230cceca81af3328f49e1efd9 | 52d542ad6d410008c495084f511247f43387055f | Update stack diffing algorithm in describeNativeComponentFrame (#27132)
## Summary
There's a bug with the existing stack comparison algorithm in
`describeNativeComponentFrame` — specifically how it attempts to find a
common root frame between the control and sample stacks. This PR
attempts to fix that bug by inj... | [
{
"path": "packages/shared/ReactComponentStackFrame.js",
"patch": "@@ -60,6 +60,17 @@ if (__DEV__) {\n componentFrameCache = new PossiblyWeakMap<Function, string>();\n }\n \n+/**\n+ * Leverages native browser/VM stack frames to get proper details (e.g.\n+ * filename, line + col number) for a single compon... | 2023-11-08T16:45:31 |
electron/electron | b693f884916a290a4cfaa82a42ddb24dfd02d7f6 | 97132ece33bd32660a5f26612a14232875f4fbdf | fix: crash on nativeTheme change during context menu close (#38824) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -127,3 +127,4 @@ chore_defer_usb_service_getdevices_request_until_usb_service_is.patch\n fix_remove_profiles_from_spellcheck_service.patch\n chore_patch_out_profile_methods_in_chrome_browser_pdf.patch\n chore_patch_out_profile_methods_in_titlebar_config.pa... | 2023-06-19T09:26:54 |
nodejs/node | 8b0c699f2aafdf81bc4834b9bd2a4923741d3a6f | 612e4577ef5b67f017e1d1c233d21767946f22c2 | 2024-08-21, Version 20.17.0 'Iron' (LTS)
Notable changes:
http:
* (SEMVER-MINOR) add diagnostics channel `http.client.request.error` (Kohei Ueno) https://github.com/nodejs/node/pull/54054
meta:
* add jake to collaborators (jakecastelli) https://github.com/nodejs/node/pull/54004
module:
* (SEMVER-MINOR) support ... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -64,7 +64,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V21.md#21.0.0\">21.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.16.0\">20.16.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.17.0\">20.17.0... | 2024-08-19T08:01:30 |
vercel/next.js | 08209b9bf46a05d625292b9c0d7150dd61a8c483 | 152dc29c9441efe12709d9addfcbf322cc053541 | Improve error message for sync server functions (#81705)
When a server action or `'use cache'` function is defined as a
synchronous function, the error message now only marks the function name
for better clarity. Previously, the entire function body was marked,
which looks fine in small test fixtures, but is pretty me... | [
{
"path": "crates/next-custom-transforms/src/transforms/server_actions.rs",
"patch": "@@ -998,9 +998,14 @@ impl<C: Comments> VisitMut for ServerActions<C> {\n }\n \n if let Some(directive) = directive {\n+ let fn_name = self\n+ .fn_decl_ident\n+ .clon... | 2025-07-16T11:33:20 |
golang/go | b386b628521780c048af14a148f373c84e687b26 | 760f22848de788806cb4ed25383cd92ea9091eef | cmd/internal/obj/loong64: fix the error parameters when calling UnspillRegisterArgs
This bug was introduced in CL 648518.
Fixes #73518.
Change-Id: I4988dd0b636c6a6a48d2aa2e2ae868e43f69995a
Reviewed-on: https://go-review.googlesource.com/c/go/+/668475
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.i... | [
{
"path": "src/cmd/internal/obj/loong64/obj.go",
"patch": "@@ -836,7 +836,7 @@ func (c *ctxt0) stacksplit(p *obj.Prog, framesize int32) *obj.Prog {\n \t}\n \tcall.Mark |= BRANCH\n \n-\tunspill := c.cursym.Func().UnspillRegisterArgs(pcdata, c.newprog)\n+\tunspill := c.cursym.Func().UnspillRegisterArgs(call, ... | 2025-04-28T11:35:38 |
facebook/react | 52d542ad6d410008c495084f511247f43387055f | 2c8a139a593e0294c3a6953d74b451bd05fdcfca | Enable enableUnifiedSyncLane (#27646)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please make sure... | [
{
"path": "packages/shared/ReactFeatureFlags.js",
"patch": "@@ -151,7 +151,7 @@ export const enableUseRefAccessWarning = false;\n // Enables time slicing for updates that aren't wrapped in startTransition.\n export const forceConcurrentByDefaultForTesting = false;\n \n-export const enableUnifiedSyncLane = _... | 2023-11-08T00:45:33 |
rust-lang/rust | 389294dcde4f50e9c910e5da6aca0582ced13796 | 15e0ce9d69340dc83fd8a37ba2c1596354bea6bc | Fix documentation for `indexing_slicing`
Replace typo'd name with link to the lint. | [
{
"path": "clippy_lints/src/indexing_slicing.rs",
"patch": "@@ -44,7 +44,7 @@ declare_clippy_lint! {\n /// Checks for usage of indexing or slicing that may panic at runtime.\n ///\n /// This lint does not report on indexing or slicing operations\n- /// that always panic, clippy's `out_of_boun... | 2026-02-09T12:35:09 |
electron/electron | 46fb0d8f5f3a33c5b9bba2329ac5de946cd66a3c | d78f37ec8faae9a3677037e1b40baea81fc93b6c | fix: `webContents.print({ silent: true })` not working correctly (#38741)
fix: webContents.print({ silent: true }) not working correctly | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -91,7 +91,7 @@ index 3a66a52b8d3c6da9cd8d7e9afdc8d59f528ec3d5..facaa6fbca8ee7c04f83607e62b81b95\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/... | 2023-06-15T14:46:38 |
facebook/react | 2c8a139a593e0294c3a6953d74b451bd05fdcfca | 2983249dd2bb1a295f27939e36ab0de9e4bfab76 | Generate sourcemaps for production build artifacts (#26446)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull req... | [
{
"path": "scripts/rollup/build.js",
"patch": "@@ -11,6 +11,7 @@ const stripBanner = require('rollup-plugin-strip-banner');\n const chalk = require('chalk');\n const resolve = require('@rollup/plugin-node-resolve').nodeResolve;\n const fs = require('fs');\n+const path = require('path');\n const argv = requi... | 2023-11-07T18:59:27 |
nodejs/node | 6b6b97766cab11d9d798097498d0f5248fc02825 | e3f909ecb0d216c3f6577c1982c0ca0dc72e8f76 | deps: sqlite: fix Windows compilation
This is equivalent to the following upstream change:
https://sqlite.org/src/info/6c103aee6f146869
Original commit message:
Change constant expressions to pre-computed constants, because apparently
MSVC on ARM requires that.
[forum:/forumpost/4feb1685cced0a8e|Forum th... | [
{
"path": "deps/sqlite/sqlite3.c",
"patch": "@@ -24886,8 +24886,8 @@ static const struct {\n /* 1 */ { 6, \"minute\", 7.7379e+12, 60.0 },\n /* 2 */ { 4, \"hour\", 1.2897e+11, 3600.0 },\n /* 3 */ { 3, \"day\", 5373485.0, 86400.0 },\n- /* 4 */ { 5, \"month\", 176546.0,... | 2024-06-12T00:40:08 |
electron/electron | 10852b3fd50865c00e5a62fa934b96973ba5c643 | dc2e822dc7cd4554ba08bbb67e68e377ac936251 | fix: `preferCSSPageSize` error type (#38761)
fix: preferCSSPageSize error type | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -317,7 +317,7 @@ WebContents.prototype.printToPDF = async function (options) {\n \n if (options.preferCSSPageSize !== undefined) {\n if (typeof options.preferCSSPageSize !== 'boolean') {\n- return Promise.reject(new Error('footerTemplate m... | 2023-06-14T14:49:00 |
golang/go | c8b589e26643f83cf5469e5bcb06af40c10932e2 | f9ce1dddc264cb30e68bfedbabf159b32bb6a719 | cmd/list: fix -retracted flag description
Change-Id: Ia1ab220485af2f38c3ddcd4c5d5bca1b195a33ed
GitHub-Last-Rev: fb9933427d852518c93efbc4f2c2e4d4ee9b9197
GitHub-Pull-Request: golang/go#59847
Reviewed-on: https://go-review.googlesource.com/c/go/+/489175
Auto-Submit: Sam Thanawalla <samthanawalla@google.com>
LUCI-TryBot-... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1071,8 +1071,8 @@\n //\n // The -retracted flag causes list to report information about retracted\n // module versions. When -retracted is used with -f or -json, the Retracted\n-// field will be set to a string explaining why the version was retracted.\n-// T... | 2023-05-29T09:23:27 |
vercel/next.js | af74b4a36f32d3037d002570800e75217e2199b4 | d8fdb6ffa85269a9696ca905a5ee39d8ae737701 | Include `use-cache` test suite in the Cache Components tests (#81610)
We're splitting the test app routes between two root layouts, one for (partially) static pages that does not wrap its children in a Suspense boundary, and one for dynamic pages that adds a Suspense boundary above `body`, which opts those pages into ... | [
{
"path": "test/cache-components-tests-manifest.json",
"patch": "@@ -27,6 +27,12 @@\n \"searchparams-reuse-loading should re-use loading from \\\"full\\\" prefetch for param-less URL when navigating to param-full route\"\n ]\n },\n+ \"test/e2e/app-dir/use-cache/use-cache.test.ts\": {\n+... | 2025-07-16T11:05:25 |
facebook/react | c897260cffb6a237d5ad707a6043f68ddf9ab014 | ce2bc58a9f6f3b0bfc8c738a0d8e2a5f3a332ff5 | refactor[react-devtools-shared]: minor parsing improvements and modifications (#27661)
Had these stashed for some time, it includes:
- Some refactoring to remove unnecessary `FlowFixMe`s and type castings
via `any`.
- Optimized version of parsing component names. We encode string names
to utf8 and then pass it ser... | [
{
"path": "packages/react-devtools-shared/src/backend/renderer.js",
"patch": "@@ -439,7 +439,6 @@ export function getInternalReactConstants(version: string): {\n return 'Cache';\n case ClassComponent:\n case IncompleteClassComponent:\n- return getDisplayName(resolvedType);\n ... | 2023-11-07T16:39:34 |
nodejs/node | cc26951180e629d131a4dd2211b96781c1af18cf | 385ca623e452d4b4eb671ab5d7d1a267b99b8da0 | test_runner: support running tests in process
This commit introduces a new --experimental-test-isolation flag
that, when set to 'none', causes the test runner to execute all
tests in the same process. By default, this is the main test
runner process, but if watch mode is enabled, it spawns a separate
process that runs... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -1091,6 +1091,20 @@ generated as part of the test runner output. If no tests are run, a coverage\n report is not generated. See the documentation on\n [collecting code coverage from tests][] for more details.\n \n+### `--experimental-test-isolation=mode`\n+\n+<!-- YA... | 2024-07-13T15:10:59 |
facebook/react | 956c1ee7e22dfd401f3e9dfa3d38989c6c74d670 | ab0f6985852219ec5e708b694f5da44e96c3c4c7 | Repro for bug with incorrectly using context variables when name overlaps | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.repro-uninitialized-value-kind-with-function-expression-params.expect.md",
"patch": "@@ -0,0 +1,24 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ // This `x` uses a context variable:\n+ const... | 2023-11-02T00:42:14 |
electron/electron | dc2e822dc7cd4554ba08bbb67e68e377ac936251 | 46458ab517aebe8fe9573250c62ee814bf2f67ff | fix: asar integration for require('node:child_process') (#38742) | [
{
"path": "lib/asar/fs-wrapper.ts",
"patch": "@@ -838,7 +838,7 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n const originalModuleLoad = Module._load;\n Module._load = (request: string, ...args: any[]) => {\n const loadResult = originalModuleLoad(request, ...args);\n- i... | 2023-06-14T09:03:53 |
rust-lang/rust | 0cf7b94bf52f45996776d8b27708516928b12e0d | 3f3d11c6edb1acf939e480359df124cdd5a44d5f | fix Nix setup description | [
{
"path": "src/doc/rustc-dev-guide/src/building/suggested.md",
"patch": "@@ -426,7 +426,7 @@ You can then use that rust2 folder as a separate workspace for modifying and bui\n \n Several nix configurations are defined in `src/tools/nix-dev-shell`.\n \n-If you're using direnv, you can create a symbol link to... | 2025-11-13T14:44:20 |
vercel/next.js | 386afcd423999915958c237f6c4532f150463b18 | 01e1854f2a4334fb830c132bfeab85872ad61ddf | docs: Update redirects i18n documentation for App Router (#81347)
### What?
Updated the documentation to clarify that App Router requires manual
locale handling through dynamic route segments and middleware, with
examples showing how to implement i18n redirects correctly.
### Why?
The App Router doesn't use the i18n ... | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/redirects.mdx",
"patch": "@@ -250,16 +250,49 @@ module.exports = {\n \n <AppOnly>\n \n-When leveraging [`i18n` support](/docs/app/guides/internationalization) with redirects each `source` and `destination` is automatically prefixed to handl... | 2025-07-16T07:22:07 |
golang/go | eb55b985a1b75bd796883a7a22dd41e76f0a45ba | 3f3782feed6e0726ddb08afd32dad7d94fbb38c6 | cmd/dist: add "devel" substring check to isRelease computation
Non-release versions that are built from source without a VERSION file
specifying any particular version end up with a development version like
"devel go1.25-67e0681aef Thu Apr 24 12:17:27 2025 -0700". Right now
those versions are correctly determined to b... | [
{
"path": "src/cmd/dist/build.go",
"patch": "@@ -274,7 +274,8 @@ func xinit() {\n \ttooldir = pathf(\"%s/pkg/tool/%s_%s\", goroot, gohostos, gohostarch)\n \n \tgoversion := findgoversion()\n-\tisRelease = strings.HasPrefix(goversion, \"release.\") || strings.HasPrefix(goversion, \"go\")\n+\tisRelease = (str... | 2025-04-24T21:07:04 |
nodejs/node | 385ca623e452d4b4eb671ab5d7d1a267b99b8da0 | 821ffab0f78972d6e63bafa598b0c6d92550072b | test_runner: defer inheriting hooks until run()
This commit updates the way the test runner computes inherited
hooks. Instead of computing them when the Test/Suite is
constructed, they are now computed just prior to running the
Test/Suite. The reason is because when multiple test files are
run in the same process, it ... | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -408,14 +408,6 @@ class Test extends AsyncResource {\n this.childNumber = 0;\n this.timeout = kDefaultTimeout;\n this.entryFile = entryFile;\n- this.hooks = {\n- __proto__: null,\n- before: [],\n- after: [... | 2024-07-19T18:56:35 |
facebook/react | 127b5df7ca491bafe42f370374b7a4b1a7a688a6 | 6f2fe1e7e97a18992c9aefe86d9f2242535f65cb | [be] Group fbt fixtures in directory | [
{
"path": "compiler/packages/sprout/src/SproutTodoFilter.ts",
"patch": "@@ -82,7 +82,7 @@ const skipFilter = new Set([\n \"escape-analysis-not-switch-test\",\n \"expression-with-assignment-dynamic\",\n \"extend-scopes-if\",\n- \"fbt-params\",\n+ \"fbt/fbt-params\",\n \"for-empty-update-with-contin... | 2023-11-10T19:21:07 |
vercel/next.js | 8b7f4c50d19ccfce10837f6ca5a0e952e8ae57e0 | d884398da6c55f662115cd1b3ff19e72fb6bb8d5 | Update NextAdapter type and re-export (#81692)
Just fixes up the type and re-exports it so it can be imported directly
from `next`. Also fixes test file not being type checked which didn't
catch missing optional fields. | [
{
"path": "packages/next/src/server/config-shared.ts",
"patch": "@@ -51,10 +51,10 @@ export type AdapterOutputs = Array<{\n \n export interface NextAdapter {\n name: string\n- modifyConfig(\n+ modifyConfig?: (\n config: NextConfigComplete\n- ): Promise<NextConfigComplete> | NextConfigComplete\n- o... | 2025-07-15T23:51:16 |
electron/electron | ab49e9840184d7efd82d9c5eecf0f4158def51b3 | fa6d14c22d6a028b5f1134b7eba3b642b3d54b43 | perf: prefer base::StringPiece over std::string for build-time strings (#38717)
* perf: use base::StringPiece in InclusionStatusToString()
The strings are all build-time constants and this is a private function
* perf: use base::StringPiece in ErrorCodeToString()
The strings are all build-time constants and t... | [
{
"path": "shell/browser/api/electron_api_cookies.cc",
"patch": "@@ -169,7 +169,7 @@ base::Time ParseTimeProperty(const absl::optional<double>& value) {\n return base::Time::FromDoubleT(*value);\n }\n \n-std::string InclusionStatusToString(net::CookieInclusionStatus status) {\n+base::StringPiece Inclusion... | 2023-06-12T07:55:22 |
golang/go | da64b60c7eea880ccdeda2dfdf1b9af9a4a6fcc7 | 67e0681aef41cfd9794d3f7819450acd08a67905 | runtime: fix typo in comment
Change-Id: I85f518e36c18f4f0eda8b167750b43cd8c48ecff
Reviewed-on: https://go-review.googlesource.com/c/go/+/622675
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Austin Clements <austin@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserv... | [
{
"path": "src/runtime/mheap.go",
"patch": "@@ -431,12 +431,12 @@ type mspan struct {\n \t// indicating a free object. freeindex is then adjusted so that subsequent scans begin\n \t// just past the newly discovered free object.\n \t//\n-\t// If freeindex == nelem, this span has no free objects.\n+\t// If fr... | 2024-10-25T15:46:35 |
facebook/react | 6f2fe1e7e97a18992c9aefe86d9f2242535f65cb | 82ed13b8b421faf0c5b24c73442f3d5ed6a9e458 | Fix FBT whitespace handling (again (again))
Nice find, @mofeiZ! I really tried to thoroughly test all the examples I could
think of for FBT whitespace but i missed the newline case. Initially Mofei found
[this code potentially related to whitespace
handling](https://github.com/facebook/fbt/blob/main/packages/babel... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -1902,10 +1902,6 @@ function lowerExpression(\n const expr = exprPath as NodePath<t.JSXElement>;\n const opening = expr.get(\"openingElement\");\n const tag = lowerJsxElementName(builder, opening.get(... | 2023-11-10T18:21:10 |
rust-lang/rust | ae24fdaccc71600ec540ff018208c5d592ad016a | 5ad44f28c67818641f40b78167c92a9ebb1311c4 | fix: Fix `set_top_subtree_delimiter_span` using wrong index for close span | [
{
"path": "src/tools/rust-analyzer/crates/tt/src/storage.rs",
"patch": "@@ -488,7 +488,7 @@ impl TopSubtree {\n unreachable!()\n };\n *open_span = S::new(span.open.range, 0);\n- *close_span = S::new(span.close.range, 0);\n+ *close_span = S::new(s... | 2026-02-09T11:45:01 |
nodejs/node | 821ffab0f78972d6e63bafa598b0c6d92550072b | 5376e6906edb79a10f12d74b162630b00a1460c8 | test_runner: account for newline in source maps
This commit updates the source mapping logic in the test runner
to account for newline characters that are not included in line
length calculations.
Co-authored-by: Simon Chan <1330321+yume-chan@users.noreply.github.com>
Fixes: https://github.com/nodejs/node/issues/5424... | [
{
"path": "lib/internal/test_runner/coverage.js",
"patch": "@@ -340,8 +340,8 @@ class TestCoverage {\n const { data, lineLengths } = sourceMapCache[url];\n let offset = 0;\n const executedLines = ArrayPrototypeMap(lineLengths, (length, i) => {\n- const coverageLine = new CoverageLin... | 2024-08-21T02:38:55 |
vercel/next.js | d884398da6c55f662115cd1b3ff19e72fb6bb8d5 | 2b3728f901a5a189fc09f23353b5c94747739049 | feat(build): optimize filterUniqueParamsCombinations to generate sub-combinations (#81321)
### What?
Optimizes the `generateParamPrefixCombinations` function (previously
`filterUniqueRootParamsCombinations`) to generate all unique
sub-combinations of route parameters while ensuring partial shells
include complete set... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -719,5 +719,6 @@\n \"718\": \"Invariant: projectDir is required for node runtime\",\n \"719\": \"Failed to get source map for '%s'. This is a bug in Next.js\",\n \"720\": \"A client prerender store should not be used for a route handler.\",\n- \"721... | 2025-07-15T23:32:31 |
electron/electron | fa6d14c22d6a028b5f1134b7eba3b642b3d54b43 | 5d123765d9fc44849de8c6cbdeaa788610dcd9e7 | fix: `webContents.print()` cancellation callback (#38709)
fix: webContents.print() cancellation callback | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -91,7 +91,7 @@ index 3a66a52b8d3c6da9cd8d7e9afdc8d59f528ec3d5..facaa6fbca8ee7c04f83607e62b81b95\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/... | 2023-06-12T07:42:18 |
golang/go | 67e0681aef41cfd9794d3f7819450acd08a67905 | 3672a09a48464d18d0c669cc3590d13091a2e77a | cmd/compile: put constant value on node inside parentheses
That's where the unified IR writer expects it.
Fixes #73476
Change-Id: Ic22bd8dee5be5991e6d126ae3f6eccb2acdc0b19
Reviewed-on: https://go-review.googlesource.com/c/go/+/667415
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <gol... | [
{
"path": "src/cmd/compile/internal/types2/range.go",
"patch": "@@ -37,6 +37,16 @@ func (check *Checker) rangeStmt(inner stmtContext, rangeStmt *syntax.ForStmt, no\n \n \tif isTypes2 && x.mode != invalid && sValue == nil && !check.hasCallOrRecv {\n \t\tif t, ok := arrayPtrDeref(under(x.typ)).(*Array); ok {\... | 2025-04-22T22:14:17 |
rust-lang/rust | 8cd47adab253c6ec0eea949563215fa7fdbc7241 | 3d0989266de7d312a17ffac4e8251eb7a710358f | libm: Fix tests for lgamma
The tests were using `rug::ln_gamma` as a reference for `libm::lgamma`,
which actually computes the natural logarithm *of the absolute value* of
the Gamma function.
This changes the range of inputs used for the icount-benchmarks of these
functions, which causes false regressions in [1].
[1... | [
{
"path": "library/compiler-builtins/libm-test/src/domain.rs",
"patch": "@@ -207,7 +207,7 @@ impl<F: Float, I: Int> EitherPrim<Domain<F>, Domain<I>> {\n .into_prim_float()];\n \n /// Domain for `loggamma`\n- const LGAMMA: [Self; 1] = Self::STRICTLY_POSITIVE;\n+ const LGAMMA: [Self; 1] = Self::... | 2026-02-09T10:32:04 |
nodejs/node | 5376e6906edb79a10f12d74b162630b00a1460c8 | 68e94c1e75f7807d2d4db6fb75a454f87fedbcdf | module: add sourceURL magic comment hinting generated source
Source map is not necessary in strip-only mode. However, to map the
source file in debuggers to the original TypeScript source, add a
sourceURL magic comment to hint that it is a generated source.
PR-URL: https://github.com/nodejs/node/pull/54402
Reviewed-B... | [
{
"path": "lib/internal/modules/helpers.js",
"patch": "@@ -371,7 +371,10 @@ function stripTypeScriptTypes(source, filename) {\n const base64SourceMap = Buffer.from(map).toString('base64');\n return `${code}\\n\\n//# sourceMappingURL=data:application/json;base64,${base64SourceMap}`;\n }\n- return ... | 2024-08-20T19:45:17 |
vercel/next.js | 43b4364f7cbf1b9578a0b2cf4676a7e7de282d98 | 8659d47c0995f004550c9e521dd4e180b5c23f45 | Turbopack: Generalize `ImportedBinding` effect creation to avoid as much special-casing of SimpleAssignTarget (#81653)
There was some logic here that checked for the existence of `SimpleAssignTarget`, and using that to bail out of `visit_ident`. That doesn't scale well to pattern assignments, but it turns out that we ... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs",
"patch": "@@ -1312,6 +1312,14 @@ impl Analyzer<'_> {\n }\n \n impl VisitAstPath for Analyzer<'_> {\n+ fn visit_import_specifier<'ast: 'r, 'r>(\n+ &mut self,\n+ _import_specifier: &'ast ImportSpecifier,\n+ _ast_p... | 2025-07-15T23:00:32 |
facebook/react | e35df45eaf0ffb79cb9b1c738bafc972f3aaeb9d | cdf39e79563d65b5376b846532fe455d347a779e | Test component name access in gated setup
Jesse flagged this as a potential bug internally but this looks correct to me.
Adding a test case so that we don't regress in the future. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/gating-access-function-name-in-component.expect.md",
"patch": "@@ -0,0 +1,47 @@\n+\n+## Input\n+\n+```javascript\n+// @gating\n+function Component() {\n+ const name = Component.name;\n+ return <div>{name}</div>;\n+}\n+\... | 2023-11-09T10:30:54 |
electron/electron | 5d123765d9fc44849de8c6cbdeaa788610dcd9e7 | fd5e6fbc140975218d990e14afef2dba85a3558d | feat: support `node:` prefixed requires in sandboxed renderer preloads (#38567)
feat: support node: prefixed requires in sandboxed renderer preloads | [
{
"path": "docs/tutorial/sandbox.md",
"patch": "@@ -51,6 +51,12 @@ but can only import a subset of Electron and Node's built-in modules:\n * [`timers`](https://nodejs.org/api/timers.html)\n * [`url`](https://nodejs.org/api/url.html)\n \n+[node: imports](https://nodejs.org/api/esm.html#node-imports) are supp... | 2023-06-10T18:36:16 |
golang/go | 3672a09a48464d18d0c669cc3590d13091a2e77a | 3452d80da3cf4f08da0f5905b1aa19cec475936e | runtime/debug: update SetCrashOutput example to not pass parent env vars
Fixes #73490
Change-Id: I500fa73f4215c7f490779f53c1c2c0d775f51a95
Reviewed-on: https://go-review.googlesource.com/c/go/+/667775
Reviewed-by: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.... | [
{
"path": "src/runtime/debug/example_monitor_test.go",
"patch": "@@ -84,7 +84,10 @@ func monitor() {\n \t\tlog.Fatal(err)\n \t}\n \tcmd := exec.Command(exe, \"-test.run=^ExampleSetCrashOutput_monitor$\")\n-\tcmd.Env = append(os.Environ(), monitorVar+\"=1\")\n+\t// Be selective in which variables we allow th... | 2025-04-24T14:38:58 |
nodejs/node | ef4bdbfb76b92c2d8ff1febdd925eedd9dd82291 | 561bc87c7607208f0d3db6dcd9231efeb48cfe2f | test_runner: finish build phase before running tests
This commit updates the test runner to wait for suites to finish
building before starting any tests. This is necessary when test
filtering is enabled, as suites may transition from filtered to
not filtered depending on what is inside of them.
Fixes: https://github.... | [
{
"path": "lib/internal/test_runner/harness.js",
"patch": "@@ -1,9 +1,11 @@\n 'use strict';\n const {\n ArrayPrototypeForEach,\n+ ArrayPrototypePush,\n FunctionPrototypeBind,\n PromiseResolve,\n SafeMap,\n+ SafePromiseAllReturnVoid,\n } = primordials;\n const { getCallerLocation } = internalBindin... | 2024-08-20T07:14:01 |
facebook/react | 6c327b0f3ed7be5c39f36730b9b1e885ced4561c | 59ddf537ed2b4672ce3ca3f330c360d05e5c9e9e | [repro] Repro for fbt preserve whitespace bug
Current sprout output (if you remove the line in `SproutTodoFilter`):
```
Failures:
FAIL: bug-fbt-preserve-whitespace
Difference in forget and non-forget results.
Expected result: {
"kind": "ok",
"value": "Before text hello world",
"logs": []
}
Found: ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug-fbt-preserve-whitespace.expect.md",
"patch": "@@ -0,0 +1,65 @@\n+\n+## Input\n+\n+```javascript\n+import fbt from \"fbt\";\n+/**\n+ * TODO: remove this from SproutTodoFilter when fixed.\n+ */\n+\n+function Component({... | 2023-11-09T23:55:06 |
vercel/next.js | d0ea7129747a045450c646cc0e4ea4f84348bd32 | e210360bb9d66870f69d35512a3d317cb68147ec | fix patch-next by adding missing script (#81430)
The `patch-next.cjs` script is failing because two of its dependencies,
`pack-util` and `build-native`, are missing their CommonJS versions,
which are required for compatibility with the current Node.js
environment. To fix this, i added the transpiled `pack-util.js` and... | [
{
"path": "package.json",
"patch": "@@ -70,7 +70,7 @@\n \"prepare\": \"husky\",\n \"sync-react\": \"node ./scripts/sync-react.js\",\n \"update-google-fonts\": \"node ./scripts/update-google-fonts.js\",\n- \"patch-next\": \"node scripts/patch-next.cjs\",\n+ \"patch-next\": \"tsx scripts/pat... | 2025-07-15T22:15:05 |
rust-lang/rust | eb2ba7d6b9429297c582fed42fd5da5e5a51cd8f | 930ecbcdf8905c5c8549056c73fcabdd8d6e1b3d | fix ICE in supertrait_vtable_slot when supertrait has missing generics | [
{
"path": "compiler/rustc_trait_selection/src/traits/vtable.rs",
"patch": "@@ -434,7 +434,16 @@ pub(crate) fn supertrait_vtable_slot<'tcx>(\n }\n };\n \n- prepare_vtable_segments(tcx, source_principal, vtable_segment_callback).unwrap()\n+ prepare_vtable_segments(tcx, source_principal, vtab... | 2026-02-09T09:18:24 |
golang/go | 3452d80da3cf4f08da0f5905b1aa19cec475936e | 3009566a46f19e9c94df4cf51cc374763698cba0 | cmd/compile: add cast in range loop final value computation
When replacing a loop where the iteration variable has a named type,
we need to compute the last iteration value as i = T(len(a)-1), not
just i = len(a)-1.
Fixes #73491
Change-Id: Ic1cc3bdf8571a40c10060f929a9db8a888de2b70
Reviewed-on: https://go-review.goog... | [
{
"path": "src/cmd/compile/internal/walk/range.go",
"patch": "@@ -605,7 +605,7 @@ func arrayClear(wbPos src.XPos, a ir.Node, nrange *ir.RangeStmt) ir.Node {\n \n \t// For array range clear, also set \"i = len(a) - 1\"\n \tif nrange != nil {\n-\t\tidx := ir.NewAssignStmt(base.Pos, nrange.Key, ir.NewBinaryExp... | 2025-04-24T15:38:56 |
electron/electron | fd5e6fbc140975218d990e14afef2dba85a3558d | a3448376a1f9d3a381e03277fddf6c46b76c9104 | chore: bump chromium to 116.0.5817.0 (main) (#38465)
* chore: bump chromium in DEPS to 116.0.5793.3
* chore: update patches
* chore: bump chromium in DEPS to 116.0.5795.0
* chore: update patches
* chore: bump chromium in DEPS to 116.0.5797.0
* chore: update patches
* chore: bump chromium in DEPS to 1... | [
{
"path": "BUILD.gn",
"patch": "@@ -540,6 +540,7 @@ source_set(\"electron_lib\") {\n \n if (is_mac) {\n deps += [\n+ \":chrome_lib_arc\",\n \":electron_lib_arc\",\n \"//components/remote_cocoa/app_shim\",\n \"//components/remote_cocoa/browser\",\n@@ -769,6 +770,32 @@ source_set(... | 2023-06-09T23:08:36 |
facebook/react | 59ddf537ed2b4672ce3ca3f330c360d05e5c9e9e | 372696c541015163c77a131f02f77a4591e023a4 | [tests][fixtures] Enable sprout on basic existing fbt tests
---
Output:
```
$ yarn sprout:build && yarn sprout --verbose
...
PASS fbt-call-complex-param-value
ok <div>Hello, Sathya!</div>
PASS fbt-call
ok <div>2 items</div>
PASS fbt-template-string-same-scope
ok <div>{"children":"for 3 experien... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/fbt-call-complex-param-value.expect.md",
"patch": "@@ -3,30 +3,37 @@\n \n ```javascript\n import fbt from \"fbt\";\n+import { identity } from \"shared-runtime\";\n \n function Component(props) {\n const text = fbt(\n- ... | 2023-11-09T23:55:05 |
nodejs/node | b246f225549625e49534492e99921b5d33748573 | 4f943976508713aafc9acbfc52f11a219f9d847e | src: update compile cache storage structure
This refactors the compile cache handler in preparation for the
JS API, and updates the compile cache storage structure into:
- $NODE_COMPILE_CACHE_DIR
- $NODE_VERION-$ARCH-$CACHE_DATA_VERSION_TAG-$UID
- $FILENAME_AND_MODULE_TYPE_HASH.cache
This also adds a magic num... | [
{
"path": "src/compile_cache.cc",
"patch": "@@ -1,4 +1,5 @@\n #include \"compile_cache.h\"\n+#include <string>\n #include \"debug_utils-inl.h\"\n #include \"env-inl.h\"\n #include \"node_file.h\"\n@@ -27,15 +28,19 @@ uint32_t GetHash(const char* data, size_t size) {\n return crc32(crc, reinterpret_cast<co... | 2024-08-19T11:54:36 |
rust-lang/rust | 51affa03942074a84ccce448ea6b7b9e02a4f4a6 | 2b1dc3144bd38e3f655bcc991b685d824f4176f6 | add tests for s390x-unknown-none-softfloat
tests will check:
- correct emit of assembly for softfloat target
- incompatible set features will emit warnings/errors
- incompatible target tripples in crates will not link | [
{
"path": "tests/assembly-llvm/s390x-softfloat-abi.rs",
"patch": "@@ -0,0 +1,64 @@\n+//@ add-minicore\n+//@ revisions: enable-softfloat disable-softfloat\n+//@ assembly-output: emit-asm\n+//@ compile-flags: -Copt-level=3 --crate-type=lib\n+//@[enable-softfloat] compile-flags: --target=s390x-unknown-none-sof... | 2026-01-22T12:50:54 |
vercel/next.js | 3c2a1959047f668dfffcd6344aeaa4acb531eccf | 1a0c4d089739800c34f825c85d27bf79741f7c0b | Also enforce experimental features when there's no next config file (#81679)
When running `next build --debug-prerender`, we also want to set the experimental features even if there is no next.config.js file present.
This PR also fixes the `cloneObject` function to better handle nested optional object properties, a... | [
{
"path": "packages/next/src/server/config-shared.ts",
"patch": "@@ -1283,7 +1283,7 @@ export interface NextConfig extends Record<string, any> {\n htmlLimitedBots?: RegExp\n }\n \n-export const defaultConfig = {\n+export const defaultConfig = Object.freeze({\n env: {},\n webpack: null,\n eslint: {\n... | 2025-07-15T20:25:32 |
golang/go | 3009566a46f19e9c94df4cf51cc374763698cba0 | 8a8f506516e1210c9ca3a352d76bd1d570c407fd | runtime: fix tag pointers on aix
Clean up tagged pointers a bit. I got the shifts wrong
for the weird aix case.
Change-Id: I21449fd5973f4651fd1103d3b8be9c2b9b93a490
Reviewed-on: https://go-review.googlesource.com/c/go/+/667715
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Keith Randall <khr@google.c... | [
{
"path": "src/runtime/malloc.go",
"patch": "@@ -455,8 +455,8 @@ func mallocinit() {\n \t\tthrow(\"max pointer/scan bitmap size for headerless objects is too large\")\n \t}\n \n-\tif minTagBits > taggedPointerBits {\n-\t\tthrow(\"taggedPointerBits too small\")\n+\tif minTagBits > tagBits {\n+\t\tthrow(\"tag... | 2025-04-24T06:23:53 |
electron/electron | c0d9764de9d00968a8c9d5ab74ef3b9840aebc09 | e8fd5fd3a8250d44a0665ca18da34cb09ea30677 | fix: `webContents.print` parameter validation error (#38614) | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -337,10 +337,9 @@ WebContents.prototype.printToPDF = async function (options) {\n \n // TODO(codebytere): deduplicate argument sanitization by moving rest of\n // print param logic into new file shared between printToPDF and print\n-WebContents.proto... | 2023-06-09T19:41:01 |
nodejs/node | 18f455b50f0d28fbb75eaa1f356956e7b086a4f1 | 9e83853294321e792cafdcd8384f1bf4c95610c9 | doc: fix error description of the max header size
PR-URL: https://github.com/nodejs/node/pull/54125
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -3189,7 +3189,7 @@ changes:\n -->\n \n Too much HTTP header data was received. In order to protect against malicious or\n-malconfigured clients, if more than 8 KiB of HTTP header data is received then\n+malconfigured clients, if more than `maxHeaderSize` of HTTP h... | 2024-08-18T13:09:11 |
vercel/next.js | c432d07a595b5edbd6d2ce6c50a065e7115e1622 | a0d15704e1c7f5571c1435bf9536592b33690cbd | Fix before interactive incorrectly render css (#81146)
Fixing a bug
- Related issues linked using fixes #81130
- Tests added. See:
https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs
- Errors have a helpful link attached, see
https://github.com/vercel/next.js/blob/can... | [
{
"path": "packages/next/src/client/app-bootstrap.ts",
"patch": "@@ -5,6 +5,8 @@\n * - next/script with `beforeInteractive` strategy\n */\n \n+import { setAttributesFromProps } from './set-attributes-from-props'\n+\n const version = process.env.__NEXT_VERSION\n \n window.next = {\n@@ -27,11 +29,7 @@ funct... | 2025-07-15T19:29:26 |
golang/go | 8a8f506516e1210c9ca3a352d76bd1d570c407fd | c1fc209c41c18806b7cef1cf114f1ca9b3731eb9 | os,internal/poll: disassociate handle from IOCP in File.Fd
Go 1.25 will gain support for overlapped IO on handles passed to
os.NewFile thanks to CL 662236. It was previously not possible to add
an overlapped handle to the Go runtime's IO completion port (IOCP),
and now happens on the first call the an IO method.
This... | [
{
"path": "src/internal/poll/fd_plan9.go",
"patch": "@@ -36,10 +36,6 @@ type FD struct {\n \tisFile bool\n }\n \n-func (fd *FD) initIO() error {\n-\treturn nil\n-}\n-\n // We need this to close out a file descriptor when it is unlocked,\n // but the real implementation has to live in the net package because... | 2025-04-10T15:45:47 |
electron/electron | e8fd5fd3a8250d44a0665ca18da34cb09ea30677 | d95ae19edf08f8df15357925abf4b7c0c6769c88 | fix: WCO transparent background (#38693)
* fix: WCO transparency
* doc: wco color transparency
* fix: transparent buttons when calling setTitleBarOverlay | [
{
"path": "docs/tutorial/window-customization.md",
"patch": "@@ -115,7 +115,7 @@ const win = new BrowserWindow({\n })\n ```\n \n-On either platform `titleBarOverlay` can also be an object. On both macOS and Windows, the height of the overlay can be specified with the `height` property. On Windows, the color... | 2023-06-09T16:57:57 |
nodejs/node | 415bc750a5e1409cc687e3a220fb1563a6900bad | 28f3e5c9d13e7435fbccc19d30fcda3f052a28f3 | deps: V8: cherry-pick 35888fee7bba
Original commit message:
[base] fix builds with GCC 12 on certain Linux distributions
With GCC 12 on certain Linux distributions (at least Debian 12,
Alpine 3.18, Fedora 37, that ships GCC 12.2),
std::is_trivially_copyable is broken
and as a result, V8 fails to ... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ... | 2024-07-25T10:08:09 |
vercel/next.js | 5a7cec1e570d73699a7e6c31790b46eb5c1706d6 | 16011fe88a09eff4914682a9d535bc50e2b692da | fix(router): Prevent redirect loop on root data requests with basePath (#81096)
Fixes #64910
This PR resolves an issue where a client-side navigation to the root
page fails when both `basePath` and `middleware` are active. This is
caused by an incorrect redirect loop on the `/_next/data` request.
The sequence of eve... | [
{
"path": "packages/next/src/server/lib/router-utils/resolve-routes.ts",
"patch": "@@ -423,7 +423,10 @@ export function getResolveRoutes(\n // base path.\n if (updated) {\n if (hadBasePath) {\n- normalized = path.posix.join(config.basePath, normalized)\n+... | 2025-07-15T17:36:54 |
golang/go | c1fc209c41c18806b7cef1cf114f1ca9b3731eb9 | 9d0320de2574586f3b0610c1b5fd15b8f9c85dec | runtime: use precise bounds of Go data/bss for race detector
We only want to call into the race detector for Go global variables.
By rounding up the region bounds, we can include some C globals.
Even worse, we can include only *part* of a C global, leading to
race{read,write}range calls which straddle the end of shado... | [
{
"path": "src/runtime/race.go",
"patch": "@@ -455,7 +455,6 @@ func raceinit() (gctx, pctx uintptr) {\n \n \tracecall(&__tsan_init, uintptr(unsafe.Pointer(&gctx)), uintptr(unsafe.Pointer(&pctx)), abi.FuncPCABI0(racecallbackthunk), 0)\n \n-\t// Round data segment to page boundaries, because it's used in mmap... | 2025-04-23T21:15:51 |
electron/electron | 9d8da7839efd9ac298158458d7347921fa457198 | 95d6a932cae62be3cdf72613ad68f52ac9b04b4d | fix: dangling pointer warning when updating menus (#38643) | [
{
"path": "shell/browser/api/electron_api_base_window.cc",
"patch": "@@ -706,15 +706,15 @@ void BaseWindow::SetMenu(v8::Isolate* isolate, v8::Local<v8::Value> value) {\n v8::Local<v8::Object> object;\n if (value->IsObject() && value->ToObject(context).ToLocal(&object) &&\n gin::ConvertFromV8(isola... | 2023-06-08T14:29:32 |
rust-lang/rust | f394d1e6c617439e027fe2fae2b9d581709639db | 36058bfc0fc4439c6ce2a741e4c896a0e61dbb6d | Fix lockfile | [
{
"path": "src/tools/rust-analyzer/Cargo.lock",
"patch": "@@ -3754,15 +3754,3 @@ dependencies = [\n \"memchr\",\n \"time\",\n ]\n-\n-[[patch.unused]]\n-name = \"salsa\"\n-version = \"0.25.2\"\n-\n-[[patch.unused]]\n-name = \"salsa-macro-rules\"\n-version = \"0.25.2\"\n-\n-[[patch.unused]]\n-name = \"salsa... | 2026-02-09T05:21:53 |
facebook/react | 372696c541015163c77a131f02f77a4591e023a4 | b25c14feb133ffad247cf5cb8358ecaebd75d962 | [sprout] Add support for fbt
Fbt + typescript [seems](https://github.com/facebook/fbt/issues/49) [to
be](https://github.com/facebook/sfbt/issues/72) a non-blessed workflow. We do
want to allow for both flow and typescript tests, so I followed some
instructions [from a
guide](https://dev.to/retyui/how-to-add-suppo... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/tsconfig.json",
"patch": "@@ -16,7 +16,10 @@\n \"paths\": {\n // Editor integration for sprout shared runtime files\n \"shared-runtime\": [\"../../../../sprout/src/shared-runtime.ts\"]\n- }\n+ },\n+ \"verb... | 2023-11-09T23:55:05 |
vercel/next.js | 16011fe88a09eff4914682a9d535bc50e2b692da | 465c2218356371ef217ae3fa82f663efef4a3253 | Fix build-native.ts on Windows (#81673) | [
{
"path": "scripts/build-native.ts",
"patch": "@@ -2,6 +2,7 @@\n \n import { promises as fs } from 'node:fs'\n import path from 'node:path'\n+import url from 'node:url'\n import execa from 'execa'\n import { NEXT_DIR, logCommand, execFn } from './pack-util'\n \n@@ -31,7 +32,7 @@ export default async functio... | 2025-07-15T16:33:10 |
golang/go | 702f164ed1a4a64cfa60e10723b9b7344bd3f601 | fca5832607d7c1afa20b82ca00ba4a27e28c0d0a | cmd/vet: add hostport analyzer
+ test, release note
Fixes #28308
Change-Id: I190e2fe513eeb6b90b0398841f67bf52510b5f59
Reviewed-on: https://go-review.googlesource.com/c/go/+/667596
Auto-Submit: Alan Donovan <adonovan@google.com>
Commit-Queue: Alan Donovan <adonovan@google.com>
Reviewed-by: Jonathan Amsterdam <jba@goo... | [
{
"path": "doc/next/3-tools.md",
"patch": "@@ -26,10 +26,17 @@ specifying the command's current version.\n \n ### Vet {#vet}\n \n+The `go vet` command includes new analyzers:\n+\n <!-- go.dev/issue/18022 -->\n \n-The `go vet` command now includes the\n-[waitgroup](https://pkg.go.dev/golang.org/x/tools/go/an... | 2025-04-23T18:23:45 |
facebook/react | b25c14feb133ffad247cf5cb8358ecaebd75d962 | 2726484823e9690e207c435a7523f058f640c651 | [tests][be] Clean up fixture selection logic
---
Refactor selection logic to be easier to read; add support for .jsx test files
(feels a bit weird adding a `.jsx` fixture and not seeing it get run) | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/tsconfig.json",
"patch": "@@ -20,6 +20,7 @@\n },\n \"include\": [\n \"./compiler/**/*.js\",\n+ \"./compiler/**/*.jsx\",\n \"./compiler/**/*.ts\",\n \"./compiler/**/*.tsx\"\n ]",
"additions": 1,
"deleti... | 2023-11-09T21:50:00 |
electron/electron | c8bdd014c87b5c33b77c845f853b7e52bb31de8f | 5ee890fb6f7c6acbcfd8e6e765334e6f9aa61850 | fix: menu bar visibility when exiting full screen (#38599) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -731,10 +731,14 @@ void NativeWindowViews::SetFullScreen(bool fullscreen) {\n gfx::Rect());\n \n // Auto-hide menubar when in fullscreen.\n- if (fullscreen)\n+ if (fullscreen) {\n+ menu_bar_visi... | 2023-06-08T10:19:34 |
rust-lang/rust | 81fb703664280626c03428c384695d766be10031 | c69e1a04db484db8974904e6f8eb1e8df21a39ba | Fix copy-paste bug: use sub_trace.cause instead of sup_trace.cause in report_sub_sup_conflict
In `report_sub_sup_conflict`, when calling `values_str` for
`sub_trace.values`, the code was incorrectly passing `sup_trace.cause`
instead of `sub_trace.cause`. This is a copy-paste error from the
preceding line which correct... | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/infer/region.rs",
"patch": "@@ -1020,7 +1020,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n && let Some((sup_expected, sup_found)) =\n self.values_str(sup_trace.values, &sup_trace.cause, err.long_ty_path())\n ... | 2026-02-08T03:44:50 |
vercel/next.js | 465c2218356371ef217ae3fa82f663efef4a3253 | 92a9d2840db6521190f28755c3905c3000caeb4b | Improve reliability of owner stacks for async I/O errors (#81501)
When running the following test isolated, and not as part of the full
test suite, the owner stacks for async I/O errors were missing the
top-most stack frame that's pointing at the `fetch` call.
```
pnpm test-dev test/e2e/app-dir/dynamic-io-errors/dyna... | [
{
"path": "packages/next/src/server/lib/patch-fetch.ts",
"patch": "@@ -559,7 +559,7 @@ export function createPatchedFetcher(\n cacheSignal = null\n }\n \n- return makeHangingPromise<Response>(\n+ return await makeHangingPromise<Response>(\n ... | 2025-07-15T16:14:42 |
facebook/react | bb92520ba5639fcf81dbf3189a68703b34459a9d | 973ec414bd78fc458f995ef865ec3ab1d7c2a37d | Some existing InvalidConfig errors should be invariants
Now that we have validation of the compiler config, these old errors weren't
categorized correctly. Readjusted them to be invariants instead. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Imports.ts",
"patch": "@@ -23,22 +23,21 @@ export function addImportsToProgram(\n * Codegen currently does not rename import specifiers, so we do additional\n * validation here\n */\n- if (identifiers.has(importSpecifier... | 2023-11-08T19:10:18 |
golang/go | 93e4e26d5b909c3dbeeb638534461155f06ecf5c | 489917fc400ee25d34dfb06306da3b3cef126963 | runtime: fix typos in comments
Change-Id: Id169b68cc93bb6eb4cdca384efaaf971fcfa32b7
Reviewed-on: https://go-review.googlesource.com/c/go/+/666316
Reviewed-by: abner chenc <chenguoqi@loongson.cn>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser... | [
{
"path": "src/runtime/mkduff.go",
"patch": "@@ -179,8 +179,8 @@ func copyARM64(w io.Writer) {\n \n func zeroLOONG64(w io.Writer) {\n \t// R0: always zero\n-\t// R19 (aka REGRT1): ptr to memory to be zeroed\n-\t// On return, R19 points to the last zeroed dword.\n+\t// R20: ptr to memory to be zeroed\n+\t// ... | 2025-04-17T12:21:29 |
electron/electron | 5ee890fb6f7c6acbcfd8e6e765334e6f9aa61850 | 9a9d8ae5ea61e17fd01e8975e81ed2a137a5fef6 | fix: reparenting UAF crash on macOS (#38603) | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -157,6 +157,7 @@ class NativeWindowMac : public NativeWindow,\n bool IsActive() const override;\n // Remove the specified child window without closing it.\n void RemoveChildWindow(NativeWindow* child) override;\n+ void RemoveChildFromParentW... | 2023-06-08T10:18:37 |
nodejs/node | 28f3e5c9d13e7435fbccc19d30fcda3f052a28f3 | a41c381cded954f453e23fea36f5907fb0a65ebd | deps: always define V8_NODISCARD as no-op
It's causing compiler errors with some classes on Xcode 11
and the attribute should have no runtime effect.
PR-URL: https://github.com/nodejs/node/pull/54077
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Joyee Cheun... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-08-08T04:53:41 |
facebook/react | 7aca04a0d677f2a4adcaff18c951992016f4605b | 4e7d4378804d982105bd35cf43dc8c6dcb779521 | [babel] Refactor handleError to pass the error first
Pass the most important and required argument as the first parameter. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -66,9 +66,9 @@ type CompileResult = {\n };\n \n function handleError(\n+ err: CompilerError,\n pass: CompilerPass,\n- fnLoc: t.SourceLocation | null,\n- err: CompilerError\n+ fnLoc: t.SourceLocation | null\... | 2023-11-08T16:09:19 |
vercel/next.js | 5c090e81a97d9af54e8ec95b21d5c8d06787462b | f1b88b4cfa63a6560a04baa209c09065c419969c | [segment explorer] fix content overflow styling (#81649)
* The bottom reset button should cover the content
* No need for transparent button background
| After | Before |
|:--|:--|
| <video src="https://github.com/user-attachments/assets/598a6474-315a-4ed5-819b-dd49306125ef"> | <video src="https://github.com/use... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-explorer.css",
"patch": "@@ -3,7 +3,7 @@\n padding: 0 8px;\n width: 100%;\n height: 100%;\n- overflow: auto;\n+ overflow-y: hidden;\n }\n \n .segment-explorer-page-route-bar {\n@@ -156,7 +156,6 @@\n }\n \n .segment-ex... | 2025-07-15T08:58:08 |
golang/go | 8a85a2e70a97773ac96e899df7411eda4f5da2cb | 7d0cb2a2adec493b8ad9d79ef35354c8e20f0213 | runtime, internal/runtime/maps: speed-up empty/zero map lookups
This lets the inliner do a better job optimizing the mapKeyError call.
goos: linux
goarch: amd64
pkg: runtime
cpu: AMD Ryzen 5 4600G with Radeon Graphics
│ /tmp/before2 │ /tmp/after3 │
... | [
{
"path": "src/cmd/link/internal/loader/loader.go",
"patch": "@@ -2359,8 +2359,8 @@ var blockedLinknames = map[string][]string{\n \t\"crypto/internal/sysrand.fatal\": {\"crypto/internal/sysrand\"},\n \t\"crypto/rand.fatal\": {\"crypto/rand\"},\n \t\"internal/runtime/maps.errNilAs... | 2025-04-07T13:21:16 |
facebook/react | 4e7d4378804d982105bd35cf43dc8c6dcb779521 | 0beeb1e7ad283a718fbf7a8ff67d8dff3be90dfd | [babel] Remove unused PipelineError
Most of the use cases are already handled with ErrorSeverity.InvalidConfig | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts",
"patch": "@@ -138,11 +138,6 @@ export type LoggerEvent =\n fnLoc: t.SourceLocation | null;\n fnName: string | null;\n memoSlots: number;\n- }\n- | {\n- kind: \"PipelineError\";\n- fnLoc: t.Sour... | 2023-11-08T16:09:18 |
nodejs/node | a41c381cded954f453e23fea36f5907fb0a65ebd | 16c9348e6089238cf266aa2dedf678a7729687a4 | deps: fix FP16 bitcasts.h
PR-URL: https://github.com/nodejs/node/pull/53134
Refs: https://github.com/nodejs/node/issues/52809
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: https://github.com/nodejs/node/pul... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.7',\n+ 'v8_embedder_string': '-node.8',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-05-28T07:10:52 |
electron/electron | bbfba4fc244e5749366c0becad629bb0be5f9775 | be45614f6f0928dfac6248efaa042a5e5bf8322d | build: fix semver/none label on appveyor update PR (#38647) | [
{
"path": ".github/workflows/update_appveyor_image.yml",
"patch": "@@ -68,7 +68,7 @@ jobs:\n delete-branch: true\n reviewers: electron/wg-releases\n title: 'build: update appveyor image to latest version'\n- labels: semver-none,no-backport\n+ labels: semver/none,no-back... | 2023-06-08T06:52:05 |
golang/go | 7a177114df3e26f4362378e907a869c4fbbf38b7 | 7ce45a014c52375d6a3da577828c9f035a72857a | runtime: commit to spinbitmutex GOEXPERIMENT
Use the "spinbit" mutex implementation always (including on platforms
that need to emulate atomic.Xchg8), and delete the prior "tristate"
implementations.
The exception is GOARCH=wasm, where the Go runtime does not use multiple
threads.
For #68578
Change-Id: Ifc29bbfa050... | [
{
"path": "src/internal/buildcfg/exp.go",
"patch": "@@ -67,8 +67,6 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {\n \t\tregabiSupported = true\n \t}\n \n-\thaveThreads := goarch != \"wasm\"\n-\n \t// Older versions (anything before V16) of dsymutil don't handle\n \t// the ... | 2025-03-14T19:38:34 |
facebook/react | 8b12f179d3350d6719b0dacc83d4153d9cc3da23 | 3f7b9e23e38e9338a66e313cd5842a25e23a5668 | Add tests to make sure our config validation error message doesn't regress | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/envConfig-test.ts",
"patch": "@@ -0,0 +1,29 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source t... | 2023-11-08T16:09:15 |
nodejs/node | 16c9348e6089238cf266aa2dedf678a7729687a4 | dc4e702a45719d9728ef1f16e4e24c5b56a73bdf | deps: V8: revert CL 5331688
On Windows debug builds, it is not allowed to dereference empty
iterators.
Refs: https://chromium-review.googlesource.com/c/v8/v8/+/5331688
PR-URL: https://github.com/nodejs/node/pull/52465
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotm... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-04-21T12:06:27 |
electron/electron | 1f08e46bcaae7bb9e1b44347f7c84e9e9fb9ea06 | 714402b08e95f53283ea7220ee2a259ea3932ee7 | docs: use local img for contents.adjustSelection api (#38655)
* docs: use local img for contents.adjustSelection api
* fixup | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -1466,11 +1466,11 @@ For a call of `win.webContents.adjustSelection({ start: 1, end: 5 })`\n \n Before:\n \n-<img width=\"487\" alt=\"Image Before Text Selection Adjustment\" src=\"https://user-images.githubusercontent.com/2036040/231761306-cd4e7b15-c2ed-46... | 2023-06-08T06:49:19 |
golang/go | 7ce45a014c52375d6a3da577828c9f035a72857a | 95611c0eb4436102ab0dad3a705acff5f5eb7aca | runtime: fix test of when a mutex is contended
This is used only in tests that verify reports of runtime-internal mutex
contention.
For #66999
For #70602
Change-Id: I72cb1302d8ea0524f1182ec892f5c9a1923cddba
Reviewed-on: https://go-review.googlesource.com/c/go/+/667095
Reviewed-by: Michael Knyszek <mknyszek@google.co... | [
{
"path": "src/runtime/lock_spinbit.go",
"patch": "@@ -143,7 +143,7 @@ func mutexPreferLowLatency(l *mutex) bool {\n }\n \n func mutexContended(l *mutex) bool {\n-\treturn atomic.Loaduintptr(&l.key) > mutexLocked\n+\treturn atomic.Loaduintptr(&l.key)&^mutexMMask != 0\n }\n \n func lock(l *mutex) {",
"ad... | 2025-04-08T18:34:56 |
facebook/react | 3f7b9e23e38e9338a66e313cd5842a25e23a5668 | 42497b60f5935c14fdbcd4b6250d507aa3149e63 | Don't allow null to be passed to validateEnvironmentConfig
zod will throw an error if we pass null, so let's not do this.
Adding a temporary workaround until we start validating PluginOptions. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -257,7 +257,11 @@ export function compileProgram(\n \n let compiledFn: CodegenFunction;\n try {\n- const config = validateEnvironmentConfig(pass.opts.environment);\n+ /*\n+ * TODO(lauren):... | 2023-11-08T16:09:14 |
nodejs/node | ed029bded7cb31a19c8a369ee9058705feab2f85 | e600de93cf443f057bd6d1135d1768ba5a39d110 | deps: avoid compilation error with ASan
Refs: https://bugs.chromium.org/p/v8/issues/detail?id=14221
PR-URL: https://github.com/nodejs/node/pull/49639
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.2',\n+ 'v8_embedder_string': '-node.3',\n \n ##### V8 defaults for Node.js #####\n "... | 2023-07-31T09:51:27 |
electron/electron | 714402b08e95f53283ea7220ee2a259ea3932ee7 | 08ab45535df4548504befcfb9987b57baf65b29a | build: improve error output in release.js (#38658) | [
{
"path": "script/release/release.js",
"patch": "@@ -77,7 +77,7 @@ async function validateReleaseAssets (release, validatingRelease) {\n } else {\n await verifyShasumsForRemoteFiles(downloadUrls)\n .catch(err => {\n- console.log(`${fail} error verifyingShasums`, err);\n+ ... | 2023-06-07T23:49:12 |
facebook/react | 42497b60f5935c14fdbcd4b6250d507aa3149e63 | 33ffde4836d5e72f8109282e8f97af20179313dc | [error] Prefix side-effecting function names with throw
I did a double take when I thought we didn't handle returning the
error when reading the code and when I edited the code, typescript told
me that there's no need to return as creating the error will throw.
This PR makes it clear from the name of the functi... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts",
"patch": "@@ -116,15 +116,17 @@ export class CompilerError extends Error {\n }\n }\n \n- static todo(options: Omit<CompilerErrorDetailOptions, \"severity\">): never {\n+ static throwTodo(\n+ options: Omit<CompilerErrorD... | 2023-11-08T16:09:13 |
vercel/next.js | e54a837ebaad5c8f08291dc5f202e74e2886a57d | 0a220665f5ddd4104e42ccb5db3e1166f1970c1b | feat: new detachable panel UI (#81483)
This PR updates the devtool overlay to use a new detachable panel based
system for rendering content. Each panel can be configured to:
- drag
- resize
- close on click outside
- have min/max sizes if resizable, size if fixed
https://github.com/user-attachments/assets/982ecee3-5... | [
{
"path": "packages/next/.storybook/main.ts",
"patch": "@@ -9,6 +9,8 @@ import { fileURLToPath } from 'url'\n function getAbsolutePath(value: string): any {\n return dirname(require.resolve(join(value, 'package.json')))\n }\n+import { createRequire } from 'module'\n+const require = createRequire(import.me... | 2025-07-15T04:47:40 |
nodejs/node | e600de93cf443f057bd6d1135d1768ba5a39d110 | cc36db7c06a16d2e9ae34b94f2e0d4d0c39a4168 | deps: disable V8 concurrent sparkplug compilation
It introduces process hangs on some platforms because Node.js doesn't
tear down V8 correctly.
Disable it while we work on a solution.
Refs: https://github.com/nodejs/node/issues/47297
Refs: https://bugs.chromium.org/p/v8/issues/detail?id=13902
PR-URL: https://github.c... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "... | 2023-04-06T12:50:56 |
facebook/react | 702aadd82b2548f87c579fead92476e3efc64ac7 | 64dffe9e78607dda0977b72f77cadf17c404a57b | Fix to only add imports if we compiled something
We should only add imports if we actually compiled anything, this is what caused
the internal issue despite the file in question not having any functions
opted-in to compilation. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -356,9 +356,8 @@ export function compileProgram(\n // Forget compiled the component, we need to update existing imports of unstable_useMemoCache\n if (compiledFns.length > 0) {\n updateUseMemoCacheImport(... | 2023-11-08T00:22:03 |
vercel/next.js | 0a220665f5ddd4104e42ccb5db3e1166f1970c1b | af42dadd69070c6d34d0f711697fd0fc76775325 | [dynamicIO] Do not use `React.unstable_postpone()` (#81652)
dynamicIO does not rely on Postponing for any prerender reason. This is
an experimental only API with no clear path to stailization. To make
dynamicIO supportable with stable React we should eliminate use of this
API.
This change replaces the postpone value ... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -718,5 +718,6 @@\n \"717\": \"Unsupported environment condition \\\"%s\\\" and react condition \\\"%s\\\". This is a bug in Next.js.\",\n \"718\": \"Invariant: projectDir is required for node runtime\",\n \"719\": \"Failed to get source map for '%s'.... | 2025-07-15T03:28:25 |
electron/electron | 08ab45535df4548504befcfb9987b57baf65b29a | 69790f4b2a3d386230480c00ba9653febba2b78b | build: use m1 hosts to build apple silicon binaries (#38258)
* build: try m1 speed test
* yolo?
* build: fix gn binary on m1
* build: remove arm64 snapshot logic
* build: strip x64 on arm64 hosts...
* if is fi
* build: no more GENERATE_CROSS_ARCH_SNAPSHOT
* build: chromedriver inline on arm64 darw... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -52,7 +52,7 @@ executors:\n size:\n description: \"macOS executor size\"\n type: enum\n- enum: [\"macos.x86.medium.gen2\"]\n+ enum: [\"macos.x86.medium.gen2\", \"macos.m1.medium.gen1\"]\n version:\n descrip... | 2023-06-07T23:34:02 |
nodejs/node | e020dd8610978f752ff014b3d5558a3fadee69c9 | fd76646e74cc33ec7d09c39d23db7b83939cf3f3 | doc: correct peformance entry types
Fixes: https://github.com/nodejs/node/issues/54212
Fixes: https://github.com/nodejs/node/issues/50290
PR-URL: https://github.com/nodejs/node/pull/54263
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Trivikram Kamat ... | [
{
"path": "doc/api/perf_hooks.md",
"patch": "@@ -509,13 +509,16 @@ changes:\n \n The type of the performance entry. It may be one of:\n \n-* `'node'` (Node.js only)\n-* `'mark'` (available on the Web)\n-* `'measure'` (available on the Web)\n-* `'gc'` (Node.js only)\n+* `'dns'` (Node.js only)\n * `'function'... | 2024-08-15T11:11:08 |
facebook/react | 64dffe9e78607dda0977b72f77cadf17c404a57b | 9d5ff320badcb81c914a010105fc033c2a595d4c | repro for gating error despite no compiled functions | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.gating-with-no-compiled-functions.expect.md",
"patch": "@@ -0,0 +1,19 @@\n+\n+## Input\n+\n+```javascript\n+// @gating\n+import { isForgetEnabled_Fixtures } from \"ReactForgetFeatureFlag\";\n+\n+export default 42;\n... | 2023-11-08T00:09:29 |
golang/go | 04a9b16f3d69aa66f3aaab44dcd322e4a02a82aa | c0245b31fb157590b69245f7dff27f0605b73138 | cmd/compile/internal/escape: avoid reading ir.Node during inner loop of walkOne
Broadly speaking, escape analysis has two main phases. First, it
traverses the AST while building a data-flow graph of locations and
edges. Second, during "solve", it repeatedly walks the data-flow graph
while carefully propagating informa... | [
{
"path": "src/cmd/compile/internal/escape/graph.go",
"patch": "@@ -75,6 +75,8 @@ type location struct {\n \tcaptured bool // has a closure captured this variable?\n \treassigned bool // has this variable been reassigned?\n \taddrtaken bool // has this variable's address been taken?\n+\tparam bool /... | 2025-03-12T18:45:17 |
vercel/next.js | d48daff8c6efd73f7e546ae4da584b1cb1dcafc8 | de52c00b930f6b791604ff77df959b92aa416d4c | fix(next/image): bump sharp to 0.34.3 (#81556)
This fixes a handful of issues including:
- https://github.com/lovell/sharp/issues/4393
- https://github.com/lovell/sharp/issues/4382
- https://github.com/lovell/sharp/issues/4398
- https://github.com/lovell/sharp/issues/4374
- https://github.com/lovell/sharp/issues/4417... | [
{
"path": "packages/next/package.json",
"patch": "@@ -129,7 +129,7 @@\n }\n },\n \"optionalDependencies\": {\n- \"sharp\": \"^0.34.1\"\n+ \"sharp\": \"^0.34.3\"\n },\n \"devDependencies\": {\n \"@ampproject/toolbox-optimizer\": \"2.8.3\",",
"additions": 1,
"deletions": 1,
"... | 2025-07-14T19:24:13 |
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.