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 |
|---|---|---|---|---|---|
electron/electron | d5d162b62237705e804831f49e738c987d99b2f9 | b39ebb8625b714d1369552d865643c98c624b9f8 | fix: InAppPurchase pre-emptive deallocation (#40938)
* fix: InAppPurchase pre-emptive deallocation
* test: try re-enabling IAP tests | [
{
"path": "shell/browser/mac/in_app_purchase.mm",
"patch": "@@ -26,6 +26,7 @@ @interface InAppPurchase : NSObject <SKProductsRequestDelegate> {\n in_app_purchase::InAppPurchaseCallback callback_;\n NSInteger quantity_;\n NSString* username_;\n+ InAppPurchase __strong* self_;\n }\n \n - (id)initWithCa... | 2024-01-11T12:32:29 |
facebook/react | 85923690e96ed5c03a419550d5db9c035e864f2d | f74c5ccf9469d3389ce3a1ee3b54988049e235f7 | compiler: Improve ValidateNoRefAccessInRender to ignore access in effects
Improves ValidateNoRefAccessInRender (still disabled by default) to properly ignore ref access within effects. This includes allowing ref access within functions that are only transitively called from an effect.
While I was here I also added so... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts",
"patch": "@@ -19,6 +19,7 @@ import {\n eachTerminalOperand,\n } from \"../HIR/visitors\";\n import { Err, Ok, Result } from \"../Utils/Result\";\n+import { isEffectHook } from \"./ValidateMemoizedEffect... | 2024-05-17T21:35:47 |
vercel/next.js | 28802386cac905047600f36b6cca9565c1a7f288 | 970a0554bfb6cecd9ec2af61257c1acc7193f80e | fix: validation return types of pages API routes (#83069)
## For Contributors
### Fixing a bug
- Updates the (previously incorrect) API route handler type definition
in the validator
- Changes the return type from `Promise<Response | void> | Response |
void` to `unknown | Promise<unknown>`
- Updates the test route e... | [
{
"path": "packages/next/src/server/lib/router-utils/typegen.ts",
"patch": "@@ -565,7 +565,7 @@ export function generateValidatorFile(\n \n if (pagesApiRouteValidations) {\n typeDefinitions += `type ApiRouteConfig = {\n- default: (req: any, res: any) => Promise<Response | void> | Response | void\n+ ... | 2025-08-27T23:02:40 |
golang/go | d168ad18e15c4e052260bb8c3446c90ab46fdde0 | 27ad1f50135c6de20c2afd593cdd17f47c2388e0 | slices: update TestIssue68488 to avoid false positives
Fixes #74387
Even tho we are abusing unsafe.SliceData a bit here it's probably fine;
in case this test fail, it means some memory alias is happening
which is not good for GC purposes.
We don't care about false keep alives for stack locations tho.
Change-Id: I94... | [
{
"path": "src/slices/slices_test.go",
"patch": "@@ -1454,13 +1454,16 @@ func TestRepeatPanics(t *testing.T) {\n \t}\n }\n \n+var leak *int\n+\n func TestIssue68488(t *testing.T) {\n \ts := make([]int, 3)\n \tclone := Clone(s[1:1])\n \tswitch unsafe.SliceData(clone) {\n \tcase &s[0], &s[1], &s[2]:\n \t\tt.E... | 2025-06-28T00:20:22 |
nodejs/node | 4d6d7d644be4f10f90e5c9c66563736112fffbff | d458b933ed67d20670906b8796f7dda0198e4541 | assert: make assertion_error use Myers diff algorithm
Fixes: https://github.com/nodejs/node/issues/51733
Co-Authored-By: Pietro Marchini <pietro.marchini94@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/54862
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Matteo Collina <matteo.collina@gma... | [
{
"path": "lib/internal/assert/assertion_error.js",
"patch": "@@ -3,29 +3,23 @@\n const {\n ArrayPrototypeJoin,\n ArrayPrototypePop,\n+ ArrayPrototypeSlice,\n Error,\n ErrorCaptureStackTrace,\n- MathMax,\n ObjectAssign,\n ObjectDefineProperty,\n ObjectGetPrototypeOf,\n String,\n- StringPr... | 2024-10-17T16:02:54 |
facebook/react | 1052a5f2dd1c7e73b74661e70283fc825012ef67 | 38d961f8ff94f1290953e07e255ef82f00e7b509 | [compiler:publish] Don't check branch in debug mode
ghstack-source-id: 465f5a358096c55310ebf5a0beef581646ab553e
Pull Request resolved: https://github.com/facebook/react/pull/29153 | [
{
"path": "compiler/scripts/release/publish-manual.js",
"patch": "@@ -70,13 +70,6 @@ async function getDateStringForCommit(commit) {\n * the command only report what it would have done, instead of actually publishing to npm.\n */\n async function main() {\n- const currBranchName = await execHelper(\"git ... | 2024-05-17T21:55:47 |
vercel/next.js | 2b5c714b577031840b1ecec6ea59c4ab591a169b | a4fe3db9337aa46615330a919b3268472d34cdff | fix: use ESM import instead of triple-slash reference for routes.d.ts (#82867)
## What?
Replace `/// <reference path="./.next/types/routes.d.ts" />` with
`import type {} from './.next/types/routes.d.ts'` in generated
`next-env.d.ts` files.
## Why?
The current implementation uses triple-slash reference directives wh... | [
{
"path": "packages/create-next-app/templates/app-api/ts/next-env.d.ts",
"patch": "@@ -1,6 +1,6 @@\n /// <reference types=\"next\" />\n /// <reference types=\"next/image-types/global\" />\n-/// <reference path=\"./.next/types/routes.d.ts\" />\n+import \"./.next/types/routes.d.ts\";\n \n // NOTE: This file s... | 2025-08-27T21:57:43 |
electron/electron | 2e4e6f10de3b0814916f61c3cca44dc578652649 | f36ceae0242f3b54cfe7e7712219f410b7beff81 | chore: bump chromium to 122.0.6236.2 (main) (#40871)
* chore: bump chromium in DEPS to 122.0.6223.0
* 5129828: Removes special cases for selenium-atoms dependencies.
https://chromium-review.googlesource.com/c/chromium/src/+/5129828
* chore: fixup patch indices
* 5139789: Deduplicate BrowserContext's Resour... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '122.0.6194.0',\n+ '122.0.6236.2',\n 'node_version':\n 'v20.10.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "docs/b... | 2024-01-11T06:33:40 |
golang/go | 27ad1f50135c6de20c2afd593cdd17f47c2388e0 | 86fca3dcb63157b8e45e565e821e7fb098fcf368 | internal/abi: fix comment on NonEmptyInterface
Change-Id: Ia3f4e844049caf11ae67d1bd6dd48350f51c532f
Reviewed-on: https://go-review.googlesource.com/c/go/+/684375
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Keith Ra... | [
{
"path": "src/internal/abi/iface.go",
"patch": "@@ -26,7 +26,7 @@ type EmptyInterface struct {\n \tData unsafe.Pointer\n }\n \n-// EmptyInterface describes the layout of an interface that contains any methods.\n+// NonEmptyInterface describes the layout of an interface that contains any methods.\n type Non... | 2025-06-26T21:36:14 |
nodejs/node | d458b933ed67d20670906b8796f7dda0198e4541 | cf7406927fa29bb24bd321feb694308352bb8e49 | meta: change color to blue notify review-wanted
The current colour seems something went wrong when in fact
it's just someone asking for a review.
PR-URL: https://github.com/nodejs/node/pull/55423
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Filip Skokan <panva.ip@gmail.com> | [
{
"path": ".github/workflows/notify-on-review-wanted.yml",
"patch": "@@ -32,7 +32,7 @@ jobs:\n - name: Slack Notification\n uses: rtCamp/action-slack-notify@4e5fb42d249be6a45a298f3c9543b111b02f7907 # 2.3.0\n env:\n- SLACK_COLOR: '#DE512A'\n+ SLACK_COLOR: '#3d85c6'\n ... | 2024-10-17T15:45:46 |
facebook/react | 1d6eebfb7ff44b24627ef404112bb151f683efe7 | 640017231599b42b4c2436395e11c72fefe9015d | [Compiler][script] Dedupe error report counts before reporting in healthcheck (#29085)
Certain compiler passes currently may collect a few error events before
reporting (see
https://github.com/facebook/react/blob/main/compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts#L101-L107) | [
{
"path": "compiler/packages/react-compiler-healthcheck/src/checks/reactCompiler.ts",
"patch": "@@ -13,15 +13,18 @@ import BabelPluginReactCompiler, {\n type CompilerErrorDetailOptions,\n type PluginOptions,\n } from \"babel-plugin-react-compiler/src\";\n-import { LoggerEvent } from \"babel-plugin-react... | 2024-05-17T18:58:15 |
vercel/next.js | a4fe3db9337aa46615330a919b3268472d34cdff | 70e5f225721125f2f45615dabc10102345ccc5f3 | fix: relative paths in dev in validator.ts (#83073)
Fixes #83063
- **Problem**: `next dev` produced overly deep relative imports in
`validator.ts` that differed from `next typegen`/`next build`.
- **Cause**: Dev pre-relativized page file paths and didn’t pass
`validatorFilePath`, causing incorrect relative path comp... | [
{
"path": "packages/next/src/server/lib/router-utils/setup-dev-bundler.ts",
"patch": "@@ -576,10 +576,7 @@ async function startWatcher(\n ''\n )\n ),\n- filePath: path.relative(\n- path.dirname(validatorFilePath),\n- ... | 2025-08-27T21:02:56 |
nodejs/node | 123982d11dee50a471f73a64462720eb36b75595 | 70fcb87af4c41be4f480b213d8b3edfc49629c9f | dns: honor the order option
Fixes: https://github.com/nodejs/node/issues/55391
PR-URL: https://github.com/nodejs/node/pull/55392
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Tim Perry <pimterry@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
R... | [
{
"path": "lib/dns.js",
"patch": "@@ -193,7 +193,7 @@ function lookup(hostname, options, callback) {\n }\n if (options?.order != null) {\n validateOneOf(options.order, 'options.order', ['ipv4first', 'ipv6first', 'verbatim']);\n- dnsOrder = options.dnsOrder;\n+ dnsOrder = options.orde... | 2024-10-17T13:18:28 |
golang/go | 0710cce6eb0d75db1fc6c45807773f40edb14d73 | 59846af331228b28e69326412011b26b62f0c74d | [dev.simd] runtime: remove write barrier in xRegRestore
Currently, there's a write barrier in xRegRestore when it assigns
pp.xRegs.cache = gp.xRegs.state. This is bad because that gets called
on the asyncPreempt return path, where we have really limited stack
space, and we don't currently account for this write barrie... | [
{
"path": "src/runtime/mkpreempt.go",
"patch": "@@ -160,7 +160,7 @@ func writeXRegs(arch string, l *layout) {\n \tfmt.Fprintf(g.w, `\n package runtime\n \n-type xRegState struct {\n+type xRegs struct {\n `)\n \tpos := 0\n \tfor _, reg := range l.regs {",
"additions": 1,
"deletions": 1,
"language... | 2025-06-30T20:42:19 |
electron/electron | f36ceae0242f3b54cfe7e7712219f410b7beff81 | 892c9d78a394f256b361d019abd50d3f8c7a2366 | chore: migrate base::StringPiece to std::string_view (#40915)
* chore: migrate from base::StringPiece to std::string_view in keyboard_util.cc
* chore: migrate from base::StringPiece to std::string_view in error_thrower.cc
* chore: migrate from base::StringPiece to std::string_view in electron_api_web_contents.cc... | [
{
"path": "shell/app/electron_content_client.cc",
"patch": "@@ -5,6 +5,7 @@\n #include \"shell/app/electron_content_client.h\"\n \n #include <string>\n+#include <string_view>\n #include <utility>\n #include <vector>\n \n@@ -106,12 +107,12 @@ bool IsWidevineAvailable(\n }\n #endif // BUILDFLAG(ENABLE_WIDEVI... | 2024-01-11T01:00:37 |
vercel/next.js | f64dc1c382468ee5bc4854d988a00d81f6d4595c | 8657188505ada96024068b44c6caa5ebd89f3867 | fix global not found canont static shell with sync io (#83111) | [
{
"path": "crates/next-core/src/app_structure.rs",
"patch": "@@ -1462,16 +1462,13 @@ async fn directory_tree_to_entrypoints_internal_untraced(\n parallel_routes: FxIndexMap::default(),\n modules: if use_global_not_found {\n ... | 2025-08-27T20:04:21 |
facebook/react | ecddf3cb077d6d1b542b3d0cd8f87d30fb2030be | be6712f72ccfe3e3b9388e169f6f9e261d78637b | Add issue template for React Compiler
Adds a GitHub issue template form so we can automatically categorize
issues and get more information upfront. I mostly referenced the
DevTools bug report template and made some tweaks.
ghstack-source-id: 5bfc728a625f367932fc21263e82681079d3ac65
Pull Request resolved: https://gith... | [
{
"path": ".github/ISSUE_TEMPLATE/compiler_bug_report.yml",
"patch": "@@ -0,0 +1,57 @@\n+name: \"⚛️ ✨ Compiler bug report\"\n+description: \"Report a problem with React Compiler. Please provide enough information that we can reproduce the problem.\"\n+title: \"[Compiler Bug]: \"\n+labels: [\"Component: Opti... | 2024-05-17T17:29:29 |
nodejs/node | 70fcb87af4c41be4f480b213d8b3edfc49629c9f | 5e5af2947f3ddbdde208a19e8a0d16ebdd123d2c | build: fix path concatenation
- The `Path` class does not support concatenation with the `+`
operator, so use the `/` operator instead.
- When concatenating paths, if the operand is an absolute path the
previous path is ignored, so change `/include` to `include`.
PR-URL: https://github.com/nodejs/node/pull/55387
Revi... | [
{
"path": "configure.py",
"patch": "@@ -1356,7 +1356,7 @@ def configure_zos(o):\n o['variables']['node_static_zoslib'] = b(True)\n if options.static_zoslib_gyp:\n # Apply to all Node.js components for now\n- o['variables']['zoslib_include_dir'] = Path(options.static_zoslib_gyp).parent + '/include... | 2024-10-17T13:05:02 |
golang/go | e46d586eddfdd2186d77a5e996bbd6415cfcf2f5 | 479b51ee1f78a884a45b517c1e993d91c9774e29 | cmd/compile/internal/escape: add debug hash for literal allocation optimizations
Several CLs earlier in this stack added optimizations to reduce
user allocations by recognizing and taking advantage of literals,
including CL 649555, CL 649079, and CL 649035.
This CL adds debug hashing of those changes, which enables u... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -40,6 +40,7 @@ type DebugFlags struct {\n \tInlFuncsWithClosures int `help:\"allow functions with closures to be inlined\" concurrent:\"ok\"`\n \tInlStaticInit int `help:\"allow static initialization of inlined calls\" concurren... | 2025-06-28T20:53:37 |
rust-lang/rust | 3cb093af1fae3eb5370c702a32ca5e334e84dbde | c043085801b7a884054add21a94882216df5971c | interpret: fix comment typo | [
{
"path": "compiler/rustc_const_eval/src/interpret/validity.rs",
"patch": "@@ -647,8 +647,9 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValidityVisitor<'rt, 'tcx, M> {\n }\n } else {\n // This is not CTFE, so it's Miri with recursive checking.\n- // FIXME:... | 2026-02-18T17:22:26 |
electron/electron | c2c64d27fd2e96064b648128967d25436fb04de1 | d5c658545ac8580cf5e64790a506f615adf5cd18 | ci: fix missing inputs for release project board automation (#40726) | [
{
"path": ".github/workflows/branch-created.yml",
"patch": "@@ -116,8 +116,10 @@ jobs:\n id: find-prev-release-board\n with:\n title: ${{ steps.generate-project-metadata.outputs.prev-prev-major }}-x-y\n+ token: ${{ steps.generate-token.outputs.token }}\n - name: Clos... | 2024-01-10T12:25:11 |
vercel/next.js | 589065d7884456180b991d4bd57da0e5bdb7fbff | 7494f9ac8477e228d620f15bdc0f11ce161974ce | Fix flakey multiple-lockfiles tests (#83103)
Writing to `join(next.testDir, '../package-lock.json')` breaks test isolation. | [
{
"path": "test/development/project-directory-with-styled-jsx-suffix/index.test.ts",
"patch": "@@ -14,7 +14,7 @@ describe('project directory with styled-jsx suffix', () => {\n } \n `,\n },\n- dirSuffix: '-styled-jsx',\n+ subDir: 'test-styled-jsx',\n })\n })\n afterA... | 2025-08-27T13:46:53 |
rust-lang/rust | 61c9af20c7d36fc4f33e0a90fbb86ce5b519a468 | 3f6250a7bb79e600d9036bbc7c8f65af43933643 | avoid delayed-bug ICE for malformed diagnostic attrs
remove -Znext-solver from ui tests | [
{
"path": "compiler/rustc_attr_parsing/src/parser.rs",
"patch": "@@ -522,6 +522,13 @@ impl<'a, 'sess> MetaItemListParserContext<'a, 'sess> {\n return self.parser.dcx().create_err(err);\n }\n \n+ if let ShouldEmit::ErrorsAndLints { recovery: Recovery::Forbidden } = self.should_emit... | 2026-02-18T16:08:35 |
facebook/react | be6712f72ccfe3e3b9388e169f6f9e261d78637b | af3a55e67f0fc9c981b5fe63162b2770ca9548b1 | compiler: Workaround Babel bug with unicode in jsx string attrs
Workaround for a bug in older versions of Babel, where strings with unicode are incorrectly escaped when emitted as JSX attributes, causing double-escaping by later processing.
Closes #29120
Closes #29124
ghstack-source-id: 065440d4fb97e164beb8a8f15f252... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -6,6 +6,7 @@\n */\n \n import * as t from \"@babel/types\";\n+import { createHmac } from \"crypto\";\n import { pruneHoistedContexts, pruneUnusedLValues, pruneUnusedLabels } from \".\";\n i... | 2024-05-17T17:38:56 |
golang/go | 479b51ee1f78a884a45b517c1e993d91c9774e29 | 8002d283e8dc3d02f087a3885894c2c29fac93fa | cmd/compile/internal/escape: stop disabling literal allocation optimizations when coverage is enabled
CL 649079 and CL 649035 updated escape analysis to rewrite certain
expressions in OMAKE and OCONVIFACE nodes as optimizations to
reduce user allocations.
Part of the change in CL 649079 disabled those optimzations wh... | [
{
"path": "src/cmd/compile/internal/escape/escape.go",
"patch": "@@ -534,10 +534,6 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \tif n.Op() != ir.OMAKESLICE && n.Op() != ir.OCONVIFACE {\n \t\treturn\n \t}\n-\tif base.Flag.Cfg.CoverageInfo != nil {\n-\t\t// Avoid altering coverage resul... | 2025-06-27T22:46:27 |
electron/electron | d5c658545ac8580cf5e64790a506f615adf5cd18 | ebf9a49fba73875bee1712b767db40f8b0a4f488 | chore: fix content tracing flake (#40939)
* chore: fix contentTracing test
* cry | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -1631,6 +1631,9 @@ commands:\n echo \"Piping output to ASAN_SYMBOLIZE ($ASAN_SYMBOLIZE)\"\n (cd electron && (circleci tests glob \"spec/*-spec.ts\" | xargs -I@ -P4 bash -c \"echo $(pwd)/@\" | circleci tests run --command=\"xargs... | 2024-01-10T12:13:36 |
nodejs/node | fa8f149c0a4f1d7f9b1de64ea2a6e2d2e38143af | 019efe1453ba2c3f3cb6d6cd99d18bb72c16b84f | 2024-10-16, Version 23.0.0 (Current)
Semver-Major Commits:
assert,util:
* (SEMVER-MAJOR) change WeakMap and WeakSet comparison handling (Cristian Barlutiu) https://github.com/nodejs/node/pull/53495
buffer:
* (SEMVER-MAJOR) throw when writing beyond buffer" (Robert Nagy) https://github.com/nodejs/node/pull/54588
... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -2,6 +2,7 @@\n \n Select a Node.js version below to view the changelog history:\n \n+* [Node.js 23](doc/changelogs/CHANGELOG_V23.md) **Current**\n * [Node.js 22](doc/changelogs/CHANGELOG_V22.md) **Current**\n * [Node.js 21](doc/changelogs/CHANGELOG_V21.md) End-of-Life\... | 2024-10-09T17:48:01 |
vercel/next.js | 7dc7c98e028e68508371c0c60b71a58fb6c480f2 | 8f7f2fed8595a6430f377811dce6e12088b11429 | fix dynamic param extraction in edge-ssr-app (#83081)
Fixes edge runtime pages with dynamic routes returning 500 errors when
the URL segment literally contains bracket syntax that matches the
folder name (e.g., accessing `/[id]` for a route defined as
`/[id]/page.tsx`).
The removal of web-server.ts in #81389 modified... | [
{
"path": "packages/next/src/server/route-modules/route-module.ts",
"patch": "@@ -598,8 +598,13 @@ export abstract class RouteModule<\n }\n }\n \n+ // Normalize the page path for route matching. The srcPage contains the\n+ // internal page path (e.g., /app/[slug]/page), but route matchers ex... | 2025-08-27T13:26:59 |
rust-lang/rust | 6a1537830e393dfb937caf2e97d1c2f80049620f | 9ddb7fc60a596492db05b3ed846c0dc5f1ebbf23 | Fix broken merge | [
{
"path": "src/abi/mod.rs",
"patch": "@@ -58,9 +58,6 @@ pub(crate) fn conv_to_call_conv(\n // Cranelift doesn't currently have anything for this.\n CanonAbi::RustPreserveNone => default_call_conv,\n \n- // Cranelift doesn't currently have anything for this.\n- CanonAbi::RustPre... | 2026-02-18T15:10:37 |
facebook/react | af3a55e67f0fc9c981b5fe63162b2770ca9548b1 | 477a3d1ef5207370df611856702b7d796d478ec1 | Lazily freeze in case anything in the currently initializing chunk is blocked (#29139)
Fixed #29129.
---------
Co-authored-by: Hendrik Liebau <mail@hendrik-liebau.de> | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -641,7 +641,12 @@ function createElement(\n }\n // TODO: We should be freezing the element but currently, we might write into\n // _debugInfo later. We could move it into _store which remains mutable.\n- Object.freeze(el... | 2024-05-17T17:58:42 |
golang/go | 8002d283e8dc3d02f087a3885894c2c29fac93fa | fdd7713fe5a7bc054fe08f79a1877f90c7188e53 | crypto/tls: update bogo version
This commit updates the pinned revision of BoringSSL that's used for the
BoGo integration test.
Doing this requires a few categories of config changes:
* ignoring a few new tests for features crypto/tls doesn't implement
* ignoring a few new tests that require further
investigation/... | [
{
"path": "src/crypto/tls/bogo_config.json",
"patch": "@@ -74,6 +74,9 @@\n \"BadRSAClientKeyExchange-5\": \"crypto/tls doesn't check the version number in the premaster secret - see processClientKeyExchange comment\",\n \"SupportTicketsWithSessionID\": \"We don't support session ID resumptio... | 2025-06-23T19:48:57 |
nodejs/node | c0aebed4b3395bd65d54b18d1fd00f071002ac20 | 4dc76a990f0037401b6bf8c982d7401c2533f23b | esm: fix inconsistency with `importAssertion` in `resolve` hook
As the documentation states, the `context.importAssertion` should be
still supported and emit a warning. This is true for the `load` hook,
but not correct for context of the `resolve` hook.
This commit fixes the inconsistency.
PR-URL: https://github.com... | [
{
"path": "lib/internal/modules/esm/hooks.js",
"patch": "@@ -237,7 +237,7 @@ class Hooks {\n \n const nextResolve = nextHookFactory(chain[chain.length - 1], meta, { validateArgs, validateOutput });\n \n- const resolution = await nextResolve(originalSpecifier, context);\n+ const resolution = await ... | 2024-10-15T19:02:07 |
rust-lang/rust | fb635505491c0e5dbdb8d4349a395c14664638b8 | 87ba622af7b5517e8bfdf8f66de0dbe187093414 | Fix broken merge | [
{
"path": "compiler/rustc_codegen_cranelift/src/abi/mod.rs",
"patch": "@@ -58,9 +58,6 @@ pub(crate) fn conv_to_call_conv(\n // Cranelift doesn't currently have anything for this.\n CanonAbi::RustPreserveNone => default_call_conv,\n \n- // Cranelift doesn't currently have anything for ... | 2026-02-18T15:10:37 |
vercel/next.js | 8f7f2fed8595a6430f377811dce6e12088b11429 | d28c942d4fa4270e7736ff7c18ef705a9f2e8f84 | fix(turbopack) Fix handling of intercept route segments (#82694)
## Fix handling of intercept route segments in HMR
### What?
- Made the routes in `resolve-routes.ts` get lazily initialized, and
only recalculated in development mode to preserve
performance
- Added a test case for HMR with intercept routes
### Why... | [
{
"path": "packages/next/src/server/lib/router-utils/resolve-routes.ts",
"patch": "@@ -71,37 +71,40 @@ export function getResolveRoutes(\n } & Partial<Header> &\n Partial<Redirect>\n \n- const routes: Route[] = [\n- // _next/data with middleware handling\n- { match: () => ({}), name: 'middlewar... | 2025-08-27T13:19:57 |
electron/electron | 3afb012ad178922ef9a642d2fe0af9851c2196eb | c184b93fc52f578b559511ec059bab4098d1404c | build: add infra for reclient support (#40850)
* chore: add patch to always set macos platform for x-build
* build: add infra for reclient support
* build: override reclient version
* build: use RBE in CI
* chore: hardcode reclient fix version
* build: lower process count on macOS
* build: use large ... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -335,46 +335,26 @@ step-setup-env-for-build: &step-setup-env-for-build\n # To find `gn` executable.\n echo 'export CHROMIUM_BUILDTOOLS_PATH=\"'\"$PWD\"'/src/buildtools\"' >> $BASH_ENV\n \n-step-setup-goma-for-build: &step-setup-goma-for-build\n... | 2024-01-09T21:19:42 |
facebook/react | 3f1436cca1f8dd80a19fd52b97b6ff71a4d9ce82 | 5ab54718a52d738dcbd03fcb43a556993b445ed4 | [compiler:playground] Fix broken builds
Now that the compiler is public, the `*` version was grabbing the latest
version of the compiler off of npm and was resolving to my very first
push to npm (an empty package containing only a single package.json).
This was breaking the playground as it would attempt to load the
c... | [
{
"path": "compiler/apps/playground/package.json",
"patch": "@@ -25,7 +25,6 @@\n \"@monaco-editor/react\": \"^4.4.6\",\n \"@playwright/test\": \"^1.42.1\",\n \"@use-gesture/react\": \"^10.2.22\",\n- \"babel-plugin-react-compiler\": \"*\",\n \"hermes-eslint\": \"^0.14.0\",\n \"invarian... | 2024-05-17T06:08:17 |
golang/go | fdd7713fe5a7bc054fe08f79a1877f90c7188e53 | 740857f529ce4074c7f9aa1d6f38db8c4a00246c | internal/goexperiment: fix godoc formatting
In internal/goexperiment fix godoc formatting (list indent, add godoc
links).
In internal/buildcfg fix godoc for Experiment.baseline.
Change-Id: I30eaba60cbf3978a375b50dda19dbb2830903bdb
Reviewed-on: https://go-review.googlesource.com/c/go/+/595915
Reviewed-by: Austin Clem... | [
{
"path": "src/internal/buildcfg/exp.go",
"patch": "@@ -25,7 +25,7 @@ type ExperimentFlags struct {\n // (This is not necessarily the set of experiments the compiler itself\n // was built with.)\n //\n-// experimentBaseline specifies the experiment flags that are enabled by\n+// Experiment.baseline specifie... | 2024-06-30T22:49:11 |
nodejs/node | 231d5e4437163a2b99e87793d2766bf1ae283f38 | 0f375db9c6434c49dd3c738e85ab9fc91ee4e7a3 | buffer: make Buffer work with resizable ArrayBuffer
Fixes: https://github.com/nodejs/node/issues/52195
PR-URL: https://github.com/nodejs/node/pull/55377
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Ruben ... | [
{
"path": "lib/buffer.js",
"patch": "@@ -504,9 +504,7 @@ function fromArrayBuffer(obj, byteOffset, length) {\n if (maxLength < 0)\n throw new ERR_BUFFER_OUT_OF_BOUNDS('offset');\n \n- if (length === undefined) {\n- length = maxLength;\n- } else {\n+ if (length !== undefined) {\n // Convert l... | 2024-10-15T17:22:15 |
rust-lang/rust | b0c4cbaa69f9282a29439309f143c6d36b00cdc3 | e299e18e546bee90c64eba55f4276cd62633b4c0 | Fix stale metadata output comment in compile-test
DiagnosticCollector currently writes util/gh-pages/index.html, but the
doc comment still said util/gh-pages/lints.json.
The drift came from the switch to HTML generation in b522e7a94
("Generate lint list in HTML directly instead of JS"), which changed
the output fi... | [
{
"path": "tests/compile-test.rs",
"patch": "@@ -466,7 +466,7 @@ enum DiagnosticOrMessage {\n }\n \n /// Collects applicabilities from the diagnostics produced for each UI test, producing the\n-/// `util/gh-pages/lints.json` file used by <https://rust-lang.github.io/rust-clippy/>\n+/// `util/gh-pages/index.... | 2026-02-18T14:54:28 |
vercel/next.js | 7aaf8ce50e2df076190e9c72384d82e14c41af6f | 43d4532a32f8b92aa0efcad2867f8f38a9f70eda | Turbopack: NFT debugging (#83094) | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/references/node.rs",
"patch": "@@ -1,5 +1,6 @@\n use anyhow::Result;\n use either::Either;\n+use tracing::Instrument;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{ResolvedVc, ValueToString, Vc};\n use turbo_tasks_fs::FileSystemPath;\n@@ -156,7 +... | 2025-08-27T11:53:53 |
facebook/react | 7a149aa1623d8973defd1d9b3f8f702eabd86f20 | 91e88f94ccb3e58db1c133942ba704fa0e3a139d | docs: fix typo DESIGN_GOALS.md (#29102)
## Summary
Fixes typo DESIGN_GOALS.md in react compiler docs
## How did you test this change?
it's document fix, so no tests needed. | [
{
"path": "compiler/docs/DESIGN_GOALS.md",
"patch": "@@ -6,7 +6,7 @@ This document describes the goals, design principles, and high-level architectur\n \n The idea of React Compiler is to allow developers to use React's familiar declarative, component-based programming model, while ensuring that apps are fa... | 2024-05-16T23:11:22 |
electron/electron | c184b93fc52f578b559511ec059bab4098d1404c | 7b4d490bfed9bf1b14b160132ae45c03eb946496 | fix: crash using `powerMonitor` before ready event (#40888)
* fix: crash using powerMonitor before ready event
* refactor: continue using DBusBluezManagerWrapperLinux | [
{
"path": "shell/browser/electron_browser_main_parts.cc",
"patch": "@@ -81,6 +81,7 @@\n #include \"base/environment.h\"\n #include \"chrome/browser/ui/views/dark_mode_manager_linux.h\"\n #include \"device/bluetooth/bluetooth_adapter_factory.h\"\n+#include \"device/bluetooth/dbus/bluez_dbus_manager.h\"\n #in... | 2024-01-09T08:41:42 |
nodejs/node | 0f375db9c6434c49dd3c738e85ab9fc91ee4e7a3 | 5e76c40b27f440b5b80ad57021e59dc8ebbd2594 | tools: fix typos
PR-URL: https://github.com/nodejs/node/pull/55061
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "tools/actions/commit-queue.sh",
"patch": "@@ -57,7 +57,7 @@ for pr in \"$@\"; do\n fi\n \n git node land --autorebase --yes $MULTIPLE_COMMIT_POLICY \"$pr\" >output 2>&1 || echo \"Failed to land #${pr}\"\n- # cat here otherwise we'll be supressing the output of git node land\n+ # cat here ot... | 2024-10-15T13:59:49 |
vercel/next.js | 43d4532a32f8b92aa0efcad2867f8f38a9f70eda | c071e85277cfaf49dc3172797941cdc6b8012d74 | docs: clarify the location of middleware.ts (#83056)
<!-- 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 Contributor... | [
{
"path": "docs/01-app/01-getting-started/15-route-handlers-and-middleware.mdx",
"patch": "@@ -164,7 +164,7 @@ Using fetch with `options.cache`, `options.next.revalidate`, or `options.next.ta\n \n ### Convention\n \n-Use the file `middleware.ts` (or `.js`) in the root of your project to define Middleware. F... | 2025-08-27T08:13:06 |
facebook/react | 94896cb8c5b1dfc80aa947ac9b273b6b9447571f | e8779a9a9add1131ccbd1c84aac8df4467c763e5 | [React Compiler] Fix rule name for ESLint plugin (#29096)
/cc @poteto
<!--
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 submitti... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/README.md",
"patch": "@@ -34,7 +34,7 @@ Then configure the rules you want to use under the rules section.\n ```json\n {\n \"rules\": {\n- \"react-compiler/rule-name\": 2\n+ \"react-compiler/react-compiler\": \"error\"\n }\n }\n ... | 2024-05-16T16:36:22 |
electron/electron | 7b4d490bfed9bf1b14b160132ae45c03eb946496 | 37630a61282af710a1efc4828e7c2e907485a104 | perf: use fixed-size arrays for the font cache (#40898)
refactor: use fixed-size arrays for the font cache
Since we know at compile time which [family x script] combos we want to
cache, we can hold the cache in fixed std::arrays instead of in nested
std::unordered_maps. | [
{
"path": "shell/browser/font_defaults.cc",
"patch": "@@ -4,11 +4,12 @@\n \n #include \"shell/browser/font_defaults.h\"\n \n+#include <array>\n #include <string>\n-#include <unordered_map>\n+#include <string_view>\n \n #include \"base/stl_util.h\"\n-#include \"base/strings/stringprintf.h\"\n+#include \"base... | 2024-01-08T09:31:02 |
nodejs/node | 51d81466efc00417711558a08d0ff4206d8bf174 | 87da1f39298b1b1ea7b05a88e4c9ba956df54020 | src: fix winapi_strerror error string
Fixes: https://github.com/nodejs/node/issues/23191
PR-URL: https://github.com/nodejs/node/pull/55207
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "src/api/exceptions.cc",
"patch": "@@ -157,14 +157,14 @@ Local<Value> UVException(Isolate* isolate,\n static const char* winapi_strerror(const int errorno, bool* must_free) {\n char* errmsg = nullptr;\n \n- FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM |\n- ... | 2024-10-15T06:41:38 |
golang/go | 426cf36b4d0c672dc88fc5cef9b0d5db0d2f4fe5 | ead249a2e2989c6775235058d38f0e33afdf752a | [dev.simd] runtime: save scalar registers off stack in amd64 async preemption
Asynchronous preemption must save all registers that could be in use
by Go code. Currently, it saves all of these to the goroutine stack.
As a result, the stack frame requirements of asynchronous preemption
can be rather high. On amd64, this... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -555,6 +555,8 @@ type G = g\n \n type Sudog = sudog\n \n+type XRegPerG = xRegPerG\n+\n func Getg() *G {\n \treturn getg()\n }",
"additions": 2,
"deletions": 0,
"language": "Go"
},
{
"path": "src/runtime/lockrank.go",
"patch": "@@ -... | 2025-04-30T02:55:40 |
vercel/next.js | 71d1e9728d660cc52d7903c1e1fc063cede892e9 | 2acaecfd3cd539c55ec02c44e9d6de3fa5ff1959 | docs: next lint post 15.5 release adjustments (#82933)
Update installation guide, now we have Biome as an option to
create-next-app, and next lint is deprecated.
Also addresses: https://github.com/vercel/next.js/issues/82916
---------
Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com>
Co-au... | [
{
"path": "docs/01-app/01-getting-started/01-installation.mdx",
"patch": "@@ -63,7 +63,7 @@ On installation, you'll see the following prompts:\n ```txt filename=\"Terminal\"\n What is your project named? my-app\n Would you like to use TypeScript? No / Yes\n-Would you like to use ESLint? No / Yes\n+Which lin... | 2025-08-26T22:33:00 |
rust-lang/rust | b7d95aab1606edcec11255fb60fd573d3ce75b5c | e1fa34ec2fba5ee3488fe608d33521fbd8463695 | internal: Add flycheck test for custom check command and debounce
This adds an integration test for flycheck with a custom check
command.
On its own, the test actually fails due to an issue with the debounce
logic. We would trigger a flycheck when the workspace is loaded, but
the check command references $saved_file ... | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs",
"patch": "@@ -559,17 +559,37 @@ impl FlycheckActor {\n self.cancel_check_process();\n }\n Event::RequestStateChange(StateChange::Restart {\n- generation,\n- ... | 2026-02-17T18:26:39 |
electron/electron | 37630a61282af710a1efc4828e7c2e907485a104 | 3a22fd32164e02864395a46dc777ce32333c6de4 | fix: wide string concatenation (#40892)
* fix: wide string concatenation
* Use wstring_views to keep length in context
* forgot a space, oopsies | [
{
"path": "shell/browser/browser_win.cc",
"patch": "@@ -19,8 +19,8 @@\n #include \"base/files/file_path.h\"\n #include \"base/logging.h\"\n #include \"base/path_service.h\"\n+#include \"base/strings/strcat_win.h\"\n #include \"base/strings/string_util.h\"\n-#include \"base/strings/stringprintf.h\"\n #includ... | 2024-01-08T06:02:20 |
nodejs/node | 80b56bbab0f3962b1ee21d8fdd6b8f94ca0adf0f | 488ce99d7632cd59729a5debe18d662bd0678ae6 | diagnostics_channel: fix unsubscribe during publish
PR-URL: https://github.com/nodejs/node/pull/55116
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Claudio Wunder <cwunder@gnome.org> | [
{
"path": "lib/diagnostics_channel.js",
"patch": "@@ -4,6 +4,8 @@ const {\n ArrayPrototypeAt,\n ArrayPrototypeIndexOf,\n ArrayPrototypePush,\n+ ArrayPrototypePushApply,\n+ ArrayPrototypeSlice,\n ArrayPrototypeSplice,\n ObjectDefineProperty,\n ObjectGetPrototypeOf,\n@@ -97,6 +99,7 @@ function w... | 2024-10-14T10:55:39 |
facebook/react | e8779a9a9add1131ccbd1c84aac8df4467c763e5 | 149b917c8a4022aeaa170c4fb826107dd2333c68 | [React Compiler] use `filename` instead of `context.filename` in ESLint plugin (#29104)
<!--
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": "compiler/packages/eslint-plugin-react-compiler/src/rules/ReactCompilerRule.ts",
"patch": "@@ -114,10 +114,7 @@ const rule: Rule.RuleModule = {\n }\n \n let babelAST;\n- if (\n- context.filename.endsWith(\".tsx\") ||\n- context.filename.endsWith(\".ts\")\n- ) {\n+ if (fi... | 2024-05-16T16:35:52 |
golang/go | 740857f529ce4074c7f9aa1d6f38db8c4a00246c | 9ae38be3025fa71ec2967111e0a184f886876cb1 | runtime: stash allpSnapshot on the M
findRunnable takes a snapshot of allp prior to dropping the P because
afterwards procresize may mutate allp without synchronization.
procresize is careful to never mutate the contents up to cap(allp), so
findRunnable can still safely access the Ps in the slice.
Unfortunately, grow... | [
{
"path": "src/runtime/proc.go",
"patch": "@@ -1059,6 +1059,28 @@ func (mp *m) becomeSpinning() {\n \tsched.needspinning.Store(0)\n }\n \n+// Take a snapshot of allp, for use after dropping the P.\n+//\n+// Must be called with a P, but the returned slice may be used after dropping\n+// the P. The M holds a ... | 2025-06-27T21:21:20 |
vercel/next.js | c9d4a97433c5417fcbbf78dc265f12ff6292d365 | b352f9bb889c3a894290c62fd48ef16d1af4ee3e | revert: add ?dpl to fonts in `/_next/static/media` (#83062)
This change is causing double font loading due to CSS loading without a
`dpl` while they are preloaded with a `dpl` param. Reverting until a
proper fix can be implemented.
Reverts:
- #82384
- #82488 | [
{
"path": "packages/font/src/google/loader.test.ts",
"patch": "@@ -124,7 +124,6 @@ describe('next/font/google loader', () => {\n mockFetchResource.mockResolvedValue(Buffer.from('OK'))\n const { css } = await nextFontGoogleFontLoader({\n functionName,\n- deploymentId: undef... | 2025-08-26T21:34:57 |
electron/electron | cc1b64e01c334dc9b27cea7c90a066645f983190 | 22970f573b3ced41ad6b0e2c3e124e3a4ed6b40e | fix: macOS maximize button shouldn't be disabled just because the window is non-fullscreenable (#40705)
* fix: macOS maximize button shouldn't be disabled just because the window is non-fullscreenable
* add test
* fix test by enabling maximize button if `resizable && (maximizable || fullscreenable)` instead of `... | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -235,6 +235,8 @@ class NativeWindowMac : public NativeWindow,\n void InternalSetParentWindow(NativeWindow* parent, bool attach);\n void SetForwardMouseMessages(bool forward);\n \n+ void UpdateZoomButton();\n+\n ElectronNSWindow* window_; //... | 2024-01-05T17:15:35 |
nodejs/node | 488ce99d7632cd59729a5debe18d662bd0678ae6 | f97865fab436fba24b46dad14435ec4b482243a2 | events: optimize EventTarget.addEventListener
PR-URL: https://github.com/nodejs/node/pull/55312
Fixes: https://github.com/nodejs/node/issues/55311
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.... | [
{
"path": "benchmark/events/eventtarget-add-remove-abort.js",
"patch": "@@ -0,0 +1,25 @@\n+'use strict';\n+const common = require('../common.js');\n+\n+const bench = common.createBenchmark(main, {\n+ n: [1e5],\n+ nListener: [1, 5, 10],\n+});\n+\n+function main({ n, nListener }) {\n+ const target = new Ev... | 2024-10-14T10:24:32 |
facebook/react | 7f22c5243e89f5bcbbfcd5daaa4ee3d601f6fd1e | 5052bfba8b55c355cbf749c118525ebfa7f9269c | [compiler:publish] Specify https for registry
Uses https for the npm registry so the publishing script isn't rejected.
Fixes:
```
Beginning October 4, 2021, all connections to the npm registry - including for package installation - must use TLS 1.2 or higher. You are currently using plaintext http to connect. Please ... | [
{
"path": "compiler/scripts/publish.js",
"patch": "@@ -203,7 +203,7 @@ async function main() {\n try {\n await spawnHelper(\n \"npm\",\n- [...opts, \"--registry=http://registry.npmjs.org\"],\n+ [...opts, \"--registry=https://registry.npmjs.org\"],\n {\n ... | 2024-05-16T00:40:24 |
golang/go | 9ae38be3025fa71ec2967111e0a184f886876cb1 | 4731832342f6430d6eb4cb13a00b97c3db5da993 | sync: disassociate WaitGroups from bubbles on Wait
Fix a race condition in disassociating a WaitGroup in a synctest
bubble from its bubble. We previously disassociated the WaitGroup
when count becomes 0, but this causes problems when an Add call
setting count to 0 races with one incrementing the count.
Instead, disas... | [
{
"path": "src/internal/synctest/synctest_test.go",
"patch": "@@ -654,6 +654,17 @@ func TestWaitGroupInBubble(t *testing.T) {\n \t})\n }\n \n+// https://go.dev/issue/74386\n+func TestWaitGroupRacingAdds(t *testing.T) {\n+\tsynctest.Run(func() {\n+\t\tvar wg sync.WaitGroup\n+\t\tfor range 100 {\n+\t\t\twg.Go... | 2025-06-27T15:46:28 |
vercel/next.js | b352f9bb889c3a894290c62fd48ef16d1af4ee3e | 7040dd6e85a7a3b7af67beabe10f19b3727d7f84 | fix: instead of throwing a warning for "noUnknownAtRules", disable the rule entirely (#83059)
<!-- 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... | [
{
"path": "packages/create-next-app/templates/app-tw-empty/js/biome.json",
"patch": "@@ -19,7 +19,7 @@\n \"rules\": {\n \"recommended\": true,\n \"suspicious\": {\n- \"noUnknownAtRules\": \"warn\"\n+ \"noUnknownAtRules\": \"off\"\n }\n },\n \"domains\": {",
"a... | 2025-08-26T20:54:52 |
electron/electron | 50860712943da0feabcb668b264c35b7837286c0 | 8c71e2adc9b47f8d9e9ad07be9e6a9b3a764a670 | feat: add `transparent` webpreference to webview (#40301)
* feat: add transparent option to WebContents
* feat: add transparent attribute to webview
* test: add tests for webview transparent attribute
* docs: add transparent attribute to webview docs
* fix: run tests on macOS only
* refactor: remove unn... | [
{
"path": "docs/api/webview-tag.md",
"patch": "@@ -221,7 +221,9 @@ windows. Popups are disabled by default.\n ```\n \n A `string` which is a comma separated list of strings which specifies the web preferences to be set on the webview.\n-The full list of supported preference strings can be found in [BrowserW... | 2024-01-05T04:00:27 |
facebook/react | 5052bfba8b55c355cbf749c118525ebfa7f9269c | 50c999eb0e1a583cc4e5309aa8f976d8376f866b | chore(docs): fix typo (plugion => plugin) in DESIGN_GOALS.md (#29086)
<!--
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 ... | [
{
"path": "compiler/docs/DESIGN_GOALS.md",
"patch": "@@ -41,7 +41,7 @@ React Compiler has two primary public interfaces: a Babel plugin for transformin\n \n The core of the compiler is largely decoupled from Babel, using its own intermediate representations. The high-level flow is as follows:\n \n-- **Babel... | 2024-05-16T00:41:05 |
golang/go | 03ad694dcbe8d981d644c9878326bd086d056af0 | 9d1cd0b8816654ac36f2122b52dd8335aae86b26 | runtime: update skips for TestGdbBacktrace
We encountered a new type of "no such process" error on loong64, it's like this
"Couldn't get NT_PRSTATUS registers: No such process.", I checked the source code
of gdb, NT_PRSTATUS is not fixed, it may be another name, so I use regular
expression here to match possible cases... | [
{
"path": "src/runtime/runtime-gdb_test.go",
"patch": "@@ -528,11 +528,12 @@ func TestGdbBacktrace(t *testing.T) {\n \tgot, err := cmd.CombinedOutput()\n \tt.Logf(\"gdb output:\\n%s\", got)\n \tif err != nil {\n+\t\tnoProcessRE := regexp.MustCompile(`Couldn't get [a-zA-Z_ -]* ?registers: No such process\\.`... | 2025-06-13T03:48:44 |
vercel/next.js | a67357c892727322e1e6f8691d33f7f9de3a075d | c09c5f9e278e46b0923c96ef5cf8a6bd9edbaf80 | [turbopack] Ammend the error message for module not found errors (#83011)
Just add 'file not found' to the error message. | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -1826,7 +1826,7 @@ async fn process_parse_result(\n }\n ParseResult::NotFound => {\n let path = ident.path().to_string().await?;\n- let msg = format!(\"Could not ... | 2025-08-26T17:09:13 |
facebook/react | a0eb2653b89179927d0567ef65d847a3dfb84bf8 | 5572edc929bca8d4248d579d7931ab79e3395d04 | [compiler] Check if current branch is main
This script needs to run from `main` since it commits version bumps for
packages, and those need to point to publicly available hashes. So,
throw an error if we're not already on main.
ghstack-source-id: ce0168e826b990fd55733e777ee8effe4f35400a
Pull Request resolved: https:/... | [
{
"path": "compiler/scripts/publish.js",
"patch": "@@ -69,6 +69,13 @@ async function getDateStringForCommit(commit) {\n * the command only report what it would have done, instead of actually publishing to npm.\n */\n async function main() {\n+ const currBranchName = await execHelper(\"git rev-parse --abb... | 2024-05-15T23:13:35 |
electron/electron | 8c71e2adc9b47f8d9e9ad07be9e6a9b3a764a670 | f229201f41d7cfe241e584d5ba801bf406666e55 | feat: add net module to utility process (#40017)
* chore: initial prototype of net api from utility process
* chore: update url loader to work on both browser and utility processes
* chore: add net files to utility process bundle
* chore: re-add app ready check but only on main process
* chore: replace bro... | [
{
"path": "docs/api/client-request.md",
"patch": "@@ -2,7 +2,7 @@\n \n > Make HTTP/HTTPS requests.\n \n-Process: [Main](../glossary.md#main-process)<br />\n+Process: [Main](../glossary.md#main-process), [Utility](../glossary.md#utility-process)<br />\n _This class is not exported from the `'electron'` modul... | 2024-01-04T21:20:37 |
rust-lang/rust | cc3115d386eb4836f84b3fba0971c1780ed76bd4 | cf246bd45dcb8b702ae5409df999a8a2c9f19a1d | Enable debug printing on more types | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs",
"patch": "@@ -382,6 +382,7 @@ enum FlycheckCommandOrigin {\n ProjectJsonRunnable,\n }\n \n+#[derive(Debug)]\n enum StateChange {\n Restart {\n generation: DiagnosticsGeneration,\n@@ -435,6 +436,7 @@ enum DiagnosticsRec... | 2026-02-17T14:37:45 |
golang/go | acb914f2c2a3ec3dd227812ba6b119480d6400cd | b51f1cdb8752c2fdd6a2bf06224aab0b5c07caac | cmd/doc: fix -http on Windows
On Windows, GOMODCACHE almost never starts with a slash, and
"go doc -http" constructs a GOPROXY URL by doing "file://" + GOMODCACHE,
resulting in an invalid file URI.
For example, if GOMODCACHE is "C:\foo", then the file URI should be
"file:///C:/foo", but it becomes "file://C:/foo" ins... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -405,6 +405,8 @@\n //\n //\tgo doc\n //\t\tShow documentation for current package.\n+//\tgo doc -http\n+//\t\tServe HTML documentation over HTTP for the current package.\n //\tgo doc Foo\n //\t\tShow documentation for Foo in the current package.\n //\t\t(Foo s... | 2025-06-27T10:45:22 |
facebook/react | 5572edc929bca8d4248d579d7931ab79e3395d04 | cf7d895db6aa48fb63e6a11d2ef2ae3ea5c48169 | [compiler] Various fixes for publishing script
- Specify a registry for npm publish because otherwise it tries to use
the yarn registry
- `packages` option actually works
This _should_ work now (note last line of output), will test it once we
land this since i want to publish a new version of the eslint plugin
with... | [
{
"path": "compiler/scripts/publish.js",
"patch": "@@ -24,7 +24,7 @@ const spawnHelper = util.promisify(_spawn);\n function execHelper(command, options, streamStdout = false) {\n return new Promise((resolve, reject) => {\n const proc = cp.exec(command, options, (error, stdout) =>\n- error ? rejec... | 2024-05-15T23:13:35 |
vercel/next.js | 6f1f49ebbe808da0cab3ce64c147813b95360a3c | 516b28270effb646554c20865430f23d3db4ad40 | docs: typed routes manual tsconfig includes (#83031)
Docs fix to: https://github.com/vercel/next.js/issues/83010 | [
{
"path": "docs/01-app/03-api-reference/05-config/02-typescript.mdx",
"patch": "@@ -131,6 +131,15 @@ export default nextConfig\n \n Next.js will generate a link definition in `.next/types` that contains information about all existing routes in your application, which TypeScript can then use to provide feedb... | 2025-08-26T10:46:27 |
electron/electron | f229201f41d7cfe241e584d5ba801bf406666e55 | 3a06047e6153ef494b134970892665c55c32931e | refactor: make NativeWindow getter methods const (#40804)
* refactor: make NativeWindow getter methods const
* fixup! refactor: make NativeWindow getter methods const
make GetZOrderLevel() const
* fixup! refactor: make NativeWindow getter methods const
fix oops | [
{
"path": "shell/browser/api/electron_api_base_window.cc",
"patch": "@@ -332,7 +332,7 @@ void BaseWindow::Blur() {\n window_->Focus(false);\n }\n \n-bool BaseWindow::IsFocused() {\n+bool BaseWindow::IsFocused() const {\n return window_->IsFocused();\n }\n \n@@ -351,11 +351,11 @@ void BaseWindow::Hide() ... | 2024-01-04T15:51:59 |
rust-lang/rust | fb94e5883ed1b648ae00fd3bc85e3dc002068a78 | 8387095803f21a256a9a772ac1f9b41ed4d5aa0a | Fix an ICE while checking param env shadowing on an erroneous trait impl | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs",
"patch": "@@ -299,6 +299,12 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n let trait_def_id = alias.trait_def_id(tcx);\n let rebased_args = alias.args.rebase_onto(tcx, trait_def_id, impl_substs);\n \n+ ... | 2026-02-18T10:12:34 |
golang/go | b51f1cdb8752c2fdd6a2bf06224aab0b5c07caac | f1e6ae2f6f5424f9f5c6dc915866d4f457c1483e | runtime: remove arbitrary 5-second timeout in TestNeedmDeadlock
The NeedmDeadlock test program currently has a 5-second timeout,
which is sort of arbitrary. It is long enough in regular mode
(which usually takes 0.0X seconds), but not quite so for
configurations like ASAN. Instead of using an arbitrary timeout,
just u... | [
{
"path": "src/runtime/testdata/testprogcgo/needmdeadlock.go",
"patch": "@@ -70,8 +70,6 @@ import \"C\"\n \n import (\n \t\"fmt\"\n-\t\"os\"\n-\t\"time\"\n )\n \n func init() {\n@@ -84,12 +82,8 @@ func GoNeedM() {\n \n func NeedmDeadlock() {\n \t// The failure symptom is that the program hangs because of a\... | 2025-06-27T23:45:22 |
nodejs/node | 6d36199c5f955ee41d8ad370eb84d9776daa752c | 129ca9e319f6aad91161e393d47a3e0512421f23 | build: fix make errors that occur in Makefile
fix make errors that occur in
coverage-clean case and coverage-test in Makefile
PR-URL: https://github.com/nodejs/node/pull/55287
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "Makefile",
"patch": "@@ -243,7 +243,7 @@ coverage-clean: ## Remove coverage artifacts.\n \t$(RM) -r coverage/tmp\n \t@if [ -d \"out/Release/obj.target\" ]; then \\\n \t\t$(FIND) out/$(BUILDTYPE)/obj.target \\( -name \"*.gcda\" -o -name \"*.gcno\" \\) \\\n-\t\t\t-type f -exec $(RM) {};\\\n+\t\t\t-... | 2024-10-14T06:41:11 |
vercel/next.js | 40ad4fa548dc9ecc5d79645996e0a2defd7ac016 | d023213c7dd80b50df276f8193641ce9b2c71ade | Turbopack: fix route format for NFT globs (#82997)
These are effectively the tests for https://github.com/vercel/next.js/pull/82906
`outputFileTracingIncludes` and `outputFileTracingExcludes` match not against the pathname of the routes, but also include the app/pages prefix, e.g. `app/route1` for `src/app/route1/rou... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -34,10 +34,7 @@ use next_core::{\n },\n next_server_utility::{NEXT_SERVER_UTILITY_MERGE_TAG, NextServerUtilityTransition},\n parse_segment_config_from_source,\n- util::{\n- NextRuntime, app_middleware_function_name, module_styles_rul... | 2025-08-26T07:23:12 |
facebook/react | cf7d895db6aa48fb63e6a11d2ef2ae3ea5c48169 | 3adca7a477f7dd025ea02599b59433b86ac8fd59 | [compiler:eslint] Fix false positive with TS type param syntax
Previously we would attempt to parse code in the eslint plugin with the
HermesParser first as it can handle some TS syntax. However, this was
leading to a mis-parse of React hook calls with type params (eg,
`useRef<null>()` as a BinaryExpression rather tha... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/__tests__/ReactCompilerRuleTypescript-test.ts",
"patch": "@@ -34,24 +34,18 @@ const tests: CompilerTestCases = {\n }\n `,\n },\n- ],\n- invalid: [\n {\n- name: \"[FALSE POSITIVE] Repro for hooks as normal values\",\n+ ... | 2024-05-15T22:36:27 |
electron/electron | 3a06047e6153ef494b134970892665c55c32931e | 84ba0c6c7d248d7121d1103d2844e7a124b59e3f | docs: note accelerator case insensitivity (#40783)
* Fix PR#38673
As requested in PR#38673 , a line has been added that explicitly states that accelerators are case sensitive
* Update docs/api/accelerator.md
Co-authored-by: Erick Zhao <erick@hotmail.ca>
* Update accelerator.md
---------
Co-authored-b... | [
{
"path": "docs/api/accelerator.md",
"patch": "@@ -4,7 +4,7 @@\n \n Accelerators are strings that can contain multiple modifiers and a single key code,\n combined by the `+` character, and are used to define keyboard shortcuts\n-throughout your application.\n+throughout your application. Accelerators are ca... | 2024-01-04T15:06:12 |
rust-lang/rust | 39edacad9cc0efa63f0ba798d233fbc478a6f454 | 8387095803f21a256a9a772ac1f9b41ed4d5aa0a | Fix incorrect target
The target was `-musl`, but should be `-gnu`. | [
{
"path": "src/doc/rustc/src/platform-support/aarch64-unknown-linux-gnu.md",
"patch": "@@ -29,7 +29,7 @@ If cross-compiling, make sure your C compiler is included in `$PATH`, then add i\n `bootstrap.toml`:\n \n ```toml\n-[target.aarch64-unknown-linux-musl]\n+[target.aarch64-unknown-linux-gnu]\n cc = \"aarch... | 2026-02-18T09:14:28 |
golang/go | f1e6ae2f6f5424f9f5c6dc915866d4f457c1483e | e81c624656e415626c7ac3a97768f5c2717979a4 | reflect: fix TypeAssert on nil interface values
In the Go language a type assertion of a nil interface value
will always report false:
var err error
v, ok := err.(error) // always reports (nil, false)
Consequently, assertion on a reflect.Value.Interface()
will also report false:
var err error
rv := ValueOf(&err... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -8719,6 +8719,11 @@ func TestTypeAssert(t *testing.T) {\n \ttestTypeAssert(t, any(int(1)), int(1), true)\n \ttestTypeAssert(t, any(int(1)), byte(0), false)\n \ttestTypeAssert(t, fmt.Stringer(vv), vv, true)\n+\n+\ttestTypeAssert(t, any(nil), any(nil), false)\... | 2025-06-27T17:59:44 |
nodejs/node | 19c1b9dff5eef0a969222fb8531696cac10ffd51 | 50b4ada55108b553530b785030ff2832b66578ea | doc: fix ambasador markdown list
PR-URL: https://github.com/nodejs/node/pull/55361
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Benjamin Gru... | [
{
"path": "doc/contributing/advocacy-ambasador-program.md",
"patch": "@@ -45,9 +45,9 @@ If there is no objection within 14 days, the nomination is approved.\n \n To onboard an ambassador, a member of the TSC will:\n \n-* \\[] Add the ambassador to the nodejs/ambassadors team.\n-* \\[] Add the ambassador to ... | 2024-10-13T19:14:48 |
facebook/react | 3adca7a477f7dd025ea02599b59433b86ac8fd59 | 5e11e7fc203754cf95e27baed957c581b9ba44b8 | compiler: fix jsx text attributes with double quotes (#29079)
Fixes #29069 by detecting the presence of double-quotes in JSX attribute
strings and falling back to using an expression container. | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -2040,6 +2040,9 @@ function codegenJsxAttribute(\n switch (innerValue.type) {\n case \"StringLiteral\": {\n value = innerValue;\n+ if (value.value.indexOf('\... | 2024-05-15T21:40:33 |
electron/electron | 84ba0c6c7d248d7121d1103d2844e7a124b59e3f | 0672f59f2648df29294d507e3789ca6a87877b8a | fix: BrowserView and <webview> should be transparent by default (#40866) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -3778,15 +3778,17 @@ void WebContents::SetImageAnimationPolicy(const std::string& new_policy) {\n }\n \n void WebContents::SetBackgroundColor(absl::optional<SkColor> maybe_color) {\n- web_contents()->SetPageBaseBackgroundColor(maybe_c... | 2024-01-04T15:04:56 |
vercel/next.js | badf4b6c17255ecfe8f0ff16f8108c7254dd83ac | 8cd4251f0741b2b1ccb35788ebdd20f19aaf6d85 | feat(build): add client param parsing support for PPR routes (#82621)
### What?
This PR introduces comprehensive type-aware parameter tracking and
fallback handling for dynamic routes in PPR scenarios, with enhanced
client-side parameter resolution capabilities.
### Why?
When using client segment cache with dynamic... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -784,5 +784,12 @@\n \"783\": \"Expected document.currentScript to be a <script> element. Received %s instead.\",\n \"784\": \"Expected document.currentScript src to contain '/_next/'. Received %s instead.\",\n \"785\": \"Expected webSocket to be defi... | 2025-08-25T23:57:53 |
rust-lang/rust | 0a6961d2e002bd7730c427c18c8e65e84a5991c0 | 6de75dcc05cc41b46f7687f9c19c651a2cfa9cc0 | fix: prevent path transformation of parameter names matching modules | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_missing_impl_members.rs",
"patch": "@@ -2534,6 +2534,86 @@ impl Test for () {\n ${0:todo!()}\n }\n }\n+\"#,\n+ );\n+ }\n+\n+ #[test]\n+ fn test_param_name_not_qualified() {\n+ check_assist(\n+ ... | 2026-02-18T06:46:34 |
nodejs/node | 50b4ada55108b553530b785030ff2832b66578ea | ac49b20c75696d893149a4b6ca675d591fb4e57a | lib: convert transfer sequence to array in js
This commit lets `tranfer` passed to `structuredClone` get validated at
JS layer by doing webidl conversion. This avoids the C++ to JS function
call overhead in the native implementaiton of `structuredClone`
PR-URL: https://github.com/nodejs/node/pull/55317
Fixes: https:/... | [
{
"path": "lib/internal/bootstrap/web/exposed-window-or-worker.js",
"patch": "@@ -38,8 +38,11 @@ const {\n } = require('internal/process/task_queues');\n defineOperation(globalThis, 'queueMicrotask', queueMicrotask);\n \n-const { structuredClone } = internalBinding('messaging');\n-defineOperation(globalThis... | 2024-10-13T18:11:21 |
golang/go | e81c624656e415626c7ac3a97768f5c2717979a4 | 2a22aefa1f7befb0ac7a95c918b75b05919c1907 | os: use minimal file permissions when opening parent directory in RemoveAll
On Windows, the process might not have read permission on the parent
directory, but still can delete files in it. This change allows
RemoveAll to open the parent directory with minimal permissions, which
is sufficient for deleting child files.... | [
{
"path": "src/os/removeall_at.go",
"patch": "@@ -8,6 +8,7 @@ package os\n \n import (\n \t\"io\"\n+\t\"runtime\"\n \t\"syscall\"\n )\n \n@@ -34,7 +35,15 @@ func removeAll(path string) error {\n \t// its parent directory\n \tparentDir, base := splitPath(path)\n \n-\tparent, err := Open(parentDir)\n+\tflag :... | 2025-06-27T09:16:54 |
facebook/react | 5e11e7fc203754cf95e27baed957c581b9ba44b8 | c93c30f9d4c6339708636c3fbf9189acfe96443f | [heathcheck] Check for namespaced StrictMode (#29076)
Previously, we only checked for StrictMode by searching for
`<StrictMode>` but we should also check for the namespaced version,
`<React.StrictMode>`.
Fixes https://github.com/facebook/react/issues/29075 | [
{
"path": "compiler/packages/react-compiler-healthcheck/src/checks/strictMode.ts",
"patch": "@@ -8,7 +8,7 @@\n import chalk from \"chalk\";\n \n const JsFileExtensionRE = /(js|ts|jsx|tsx)$/;\n-const StrictModeRE = /\\<StrictMode\\>/;\n+const StrictModeRE = /<(React\\.StrictMode|StrictMode)>/;\n let StrictMo... | 2024-05-15T21:15:32 |
vercel/next.js | af62463a97f6f45e290f2ba5a3efb5bb84d5f466 | 69d604b86b10cce0e5ee95e356865a95e930b360 | fix: add '.next/types/**/*.ts' to the pages router TSConfig (#83029)
See #83010
Previously, typed links only worked in App Router. Now they work in
Pages Router too, but we forgot to update the templates. | [
{
"path": "packages/create-next-app/templates/default-empty/ts/tsconfig.json",
"patch": "@@ -17,6 +17,6 @@\n \"@/*\": [\"./*\"]\n }\n },\n- \"include\": [\"next-env.d.ts\", \"**/*.ts\", \"**/*.tsx\"],\n+ \"include\": [\"next-env.d.ts\", \"**/*.ts\", \"**/*.tsx\", \".next/types/**/*.ts\"],\n ... | 2025-08-25T23:09:20 |
electron/electron | dfce1a9eb4de3a5789536cd511e81c6dfd81e393 | baca2e302db0356b3039ab9f1fadf6b725afc04d | fix: ignore all NODE_ envs from foreign parent in node process (#40770)
* fix: ignore all NODE_ envs from foreign parent
* fix: recognize ad-hoc signed binary | [
{
"path": "filenames.gni",
"patch": "@@ -656,6 +656,7 @@ filenames = {\n \"shell/common/node_includes.h\",\n \"shell/common/node_util.cc\",\n \"shell/common/node_util.h\",\n+ \"shell/common/node_util_mac.mm\",\n \"shell/common/options_switches.cc\",\n \"shell/common/options_switches.h... | 2024-01-04T07:34:08 |
nodejs/node | ac49b20c75696d893149a4b6ca675d591fb4e57a | d881fcba86f72ff506eea53a5eca9a0ab2e4a02f | assert: fix deepEqual always return true on URL
PR-URL: https://github.com/nodejs/node/pull/50853
Fixes: https://github.com/nodejs/node/issues/50836
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "lib/internal/util/comparisons.js",
"patch": "@@ -27,6 +27,7 @@ const {\n \n const { compare } = internalBinding('buffer');\n const assert = require('internal/assert');\n+const { isURL } = require('internal/url');\n const types = require('internal/util/types');\n const {\n isAnyArrayBuffer,\n@@ ... | 2024-10-13T14:01:47 |
golang/go | 2a22aefa1f7befb0ac7a95c918b75b05919c1907 | 742fda95246958076e439bbcf71fedda43a894bb | encoding/json: add security section to doc
Add a section to the package doc which details the security
considerations of using encoding/json, in particular with respect to
parser misalignment issues.
Additionally, clarify previously ambiguous statement in the Unmarshal
doc about how case is used when matching keys in... | [
{
"path": "src/encoding/json/decode.go",
"patch": "@@ -43,11 +43,14 @@ import (\n // and the input is a JSON quoted string, Unmarshal calls\n // [encoding.TextUnmarshaler.UnmarshalText] with the unquoted form of the string.\n //\n-// To unmarshal JSON into a struct, Unmarshal matches incoming object\n-// ke... | 2025-06-26T19:19:23 |
facebook/react | c93c30f9d4c6339708636c3fbf9189acfe96443f | cfeb491ee74073a48372c04d31142f5cacf2d5ec | Fix ESLint and Prettier configs for React Compiler (#29073)
Fixes the top-level ESLint and Prettier configs to ignore the compiler.
For now the compiler has its own prettier and linting setup with
different versions/configs. | [
{
"path": ".eslintignore",
"patch": "@@ -13,6 +13,9 @@ scripts/bench/benchmarks/**/*.js\n # React repository clone\n scripts/bench/remote-repo/\n \n+# Compiler uses its own lint setup\n+compiler/\n+\n packages/react-devtools-core/dist\n packages/react-devtools-extensions/chrome/build\n packages/react-devtoo... | 2024-05-15T21:02:57 |
vercel/next.js | 1e0f9d489880c4744a9d203f41c8c8ebcf0e8f2f | 78459a2a7def02e2706ee38dd647572f5b32c4c0 | Turbopack: fix NFT tracing of sharp 0.34 (#82340)
We need a special case for this shared library loading | [
{
"path": "turbopack/crates/turbopack-core/src/lib.rs",
"patch": "@@ -25,6 +25,7 @@ pub mod introspect;\n pub mod issue;\n pub mod module;\n pub mod module_graph;\n+pub mod node_addon_module;\n pub mod output;\n pub mod package_json;\n pub mod proxied_asset;",
"additions": 1,
"deletions": 0,
"la... | 2025-08-25T15:18:57 |
golang/go | fdc076ce762326fc19ef1b6de01da6ce50f55926 | d9d2cadd635f3b8fdfba0ab6369604f5e78643b0 | net/http: fix RoundTrip context cancellation for js/wasm
The existing js/wasm implementation of RoundTrip calls abort() on the
fetch() call when the context is canceled but does not wait for for the
resulting promise to be rejected. The result is the failure callback for the
promise will be called at some later point ... | [
{
"path": "src/net/http/roundtrip_js.go",
"patch": "@@ -236,6 +236,14 @@ func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n \t\tif !ac.IsUndefined() {\n \t\t\t// Abort the Fetch request.\n \t\t\tac.Call(\"abort\")\n+\n+\t\t\t// Wait for fetch promise to be rejected prior to exiting. See\n+\t... | 2025-06-10T15:09:35 |
facebook/react | cfeb491ee74073a48372c04d31142f5cacf2d5ec | 71565a932cfc877a42bdc6ad3ffc72bab0788ca5 | Add a `main` field to `eslint-plugin-react-compiler`, fixes #29068. (#29072)
## Summary
The main field is missing, this fixes it.
Fixes #29068.
## How did you test this change?
Manually patched the package and tried it in my codebase. | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/package.json",
"patch": "@@ -2,6 +2,7 @@\n \"name\": \"eslint-plugin-react-compiler\",\n \"version\": \"0.0.0-experimental-e04a001-20240515\",\n \"description\": \"ESLint plugin to display errors found by the React compiler.\",\n+ \"main\": \"... | 2024-05-15T21:02:20 |
nodejs/node | fdf838aee69939db91bdaf7192a2cf176e3e5fb0 | e9904fe49af2b08ea317da93f5684bd0da76582e | node-api: add napi_create_buffer_from_arraybuffer method
PR-URL: https://github.com/nodejs/node/pull/54505
Fixes: https://github.com/nodejs/node/issues/54440
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Gabriel Schulhof <gabrielschulhof@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -2696,6 +2696,37 @@ is raised.\n JavaScript `TypedArray` objects are described in\n [Section 22.2][] of the ECMAScript Language Specification.\n \n+#### `node_api_create_buffer_from_arraybuffer`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> Stability: 1 - Experime... | 2024-10-11T15:21:57 |
golang/go | d9d2cadd635f3b8fdfba0ab6369604f5e78643b0 | 0f8ab2db177baee7b04182f5641693df3b212aa9 | encoding/json: fix typo in hotlink for jsontext.PreserveRawStrings
Updates #71845
Change-Id: Ie099e7ac77293696fd9e69559487e27f4b70ab3f
Reviewed-on: https://go-review.googlesource.com/c/go/+/684416
Auto-Submit: Joseph Tsai <joetsai@digital-static.net>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.ia... | [
{
"path": "src/encoding/json/v2_options.go",
"patch": "@@ -221,7 +221,7 @@ type Options = jsonopts.Options\n // - [jsontext.AllowInvalidUTF8]\n // - [jsontext.EscapeForHTML]\n // - [jsontext.EscapeForJS]\n-// - [jsontext.PreserveRawString]\n+// - [jsontext.PreserveRawStrings]\n //\n // All other b... | 2025-06-27T01:18:32 |
vercel/next.js | 78459a2a7def02e2706ee38dd647572f5b32c4c0 | 3596c0334303f464e201d74941a49d2fbe650ecf | Turbopack: support pattern into exports field (#82757)
Support patterns into `exports` field mappings
- for exact mappings (such as `"./foo": "./src/foo/index.js"`), all patterns work
- for wildcard mappings (such as `"./*": "./src/*/index.js"`), only basic patterns of `prefix<dynamic>suffix` are supported. | [
{
"path": "turbopack/crates/turbopack-core/src/resolve/alias_map.rs",
"patch": "@@ -1,9 +1,10 @@\n use std::{\n+ borrow::Cow,\n collections::BTreeMap,\n fmt::{Debug, Formatter},\n- future::Future,\n };\n \n+use anyhow::Result;\n use patricia_tree::PatriciaMap;\n use serde::{\n Deserialize,... | 2025-08-25T14:36:57 |
electron/electron | 8c89137ecd1ad23b69ffc03d40385bc219977119 | be4e4ff11b31ef2d6caf322eae947df4bdaf1a16 | chore: bump chromium to 122.0.6194.0 (main) (#40750)
* chore: bump chromium in DEPS to 122.0.6180.0
* chore: update render_widget_host_view_base.patch
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/5079532
minor manual changes to match upstream changes
* chore: update printing.patch
Xre... | [
{
"path": "BUILD.gn",
"patch": "@@ -492,6 +492,7 @@ source_set(\"electron_lib\") {\n \"//third_party/webrtc_overrides:webrtc_component\",\n \"//third_party/widevine/cdm:headers\",\n \"//third_party/zlib/google:zip\",\n+ \"//ui/base:ozone_buildflags\",\n \"//ui/base/idle\",\n \"//ui/co... | 2024-01-03T08:52:49 |
facebook/react | ecccaf6e017911cd0b39e4f54cc570ff1ba29824 | 6457343cd3c22a9eedbd943ec0ff61d7b7134d08 | Fix CI for compiler paths
ghstack-source-id: 43bb0c8c957fc550203445868c90fa706e3a8d11
Pull Request resolved: https://github.com/facebook/react-forget/pull/2968 | [
{
"path": ".github/workflows/compiler-playground.yml",
"patch": "@@ -5,7 +5,7 @@ on:\n branches: [main]\n pull_request:\n paths:\n- - compiler/\n+ - \"compiler/**\"\n - .github/workflows/compiler-playground.yml\n \n defaults:",
"additions": 1,
"deletions": 1,
"language"... | 2024-05-14T15:01:18 |
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.