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
e9082ea57a0df6b0e9adf5161857bf99f1d420b8
5623c96dd74acfccee2d2688121c8c1713809b2b
docs: fix capitalization for `InputEvent.modifiers` (#46130)
[ { "path": "docs/api/structures/input-event.md", "patch": "@@ -12,6 +12,6 @@\n `pointerDown`, `pointerUp`, `pointerMove`, `pointerRawUpdate`,\n `pointerCancel` or `pointerCausedUaAction`.\n * `modifiers` string[] (optional) - An array of modifiers of the event, can\n- be `shift`, `control`, `ctrl`, `alt...
2025-03-23T21:38:15
rust-lang/rust
f3f4ab9205af504e9f58268645b41b743587a965
d27207d3d64a1399f90344d6ef3c5743204b3fd3
Remove `QueryInfo`. `CycleError` has one field containing a `(Span, QueryStackFrame<I>)` and another field containing a `QueryInfo`, which is a struct containing just a `Span` and a `QueryStackFrame<I>`. We already have the `Spanned` type for adding a span to something. This commit uses it for both fields in `CycleEr...
[ { "path": "compiler/rustc_middle/src/query/job.rs", "patch": "@@ -7,17 +7,8 @@ use parking_lot::{Condvar, Mutex};\n use rustc_span::Span;\n \n use crate::query::plumbing::CycleError;\n-use crate::query::stack::QueryStackFrame;\n use crate::ty::TyCtxt;\n \n-/// Represents a span and a query key.\n-#[derive(C...
2026-03-10T00:57:05
facebook/react
18eaf51bd51fed8dfed661d64c306759101d0bfd
829401dc173d79994a3401fce24084670f55fb5c
Support eslint 8+ flat plugin syntax out of the box for eslint-plugin-react-compiler (#32120) ## Summary The current docs for the react compiler eslint plugin is based on integrating with the old-style eslint config format. This is generally fine, but most plugins (and the [official docs](https://eslint.org/docs/late...
[ { "path": "compiler/packages/eslint-plugin-react-compiler/README.md", "patch": "@@ -18,7 +18,24 @@ npm install eslint-plugin-react-compiler --save-dev\n \n ## Usage\n \n-Add `react-compiler` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:\n+### Flat c...
2025-01-18T22:41:34
nodejs/node
6ea421a3d349693c7bcb4f2245ef7b1d613f23fd
a7999c602cf7d70095dab3e5201d8c2f4b6a1867
module: fix conditions override in synchronous resolve hooks 1. Make sure that the conditions are converted into arrays when being passed into user hooks. 2. Pass the conditions from user hooks into the ESM resolution so that it takes effect. PR-URL: https://github.com/nodejs/node/pull/59011 Fixes: https://github...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -51,6 +51,7 @@ const {\n ReflectSet,\n RegExpPrototypeExec,\n SafeMap,\n+ SafeSet,\n String,\n StringPrototypeCharAt,\n StringPrototypeCharCodeAt,\n@@ -154,6 +155,7 @@ const internalFsBinding = internalBinding('fs');\n const { safeGet...
2025-07-26T09:13:11
golang/go
4fef9f8b5596d42a2997fd8b74185d53fb7d0e43
33529db142dab098d4687f99e27e6284c31fa039
go/types, types2: fix object path for grouped declaration statements CL 715840 deferred popping from the object path during handling of grouped declaration statements, which leaves extra objects on the path since this executes in a loop. Surprisingly, no test exercised this. This change fixes this small bug and adds ...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -876,8 +876,8 @@ func (check *Checker) declStmt(list []syntax.Decl) {\n \t\t\tscopePos := s.Name.Pos()\n \t\t\tcheck.declare(check.scope, s.Name, obj, scopePos)\n \t\t\tcheck.push(obj) // mark as grey\n-\t\t\tdefer check.pop()\n \t\t\tcheck.t...
2025-11-19T20:10:24
electron/electron
6723bfbe327da6b447f7cefed4e02bc9d7a74eea
603057b198415cec42bb42d1367e38829158b999
refactor: reduce coupling in `electron::api::Protocol` (#46122) * refactor: decouple api::Protocol from ElectronBrowserContext now they do not know about each other * refactor: make electron::api::ProtocolError private * refactor: remove unused isolate arg in Protocol constructor * refactor: use =default for trivi...
[ { "path": "shell/browser/api/electron_api_protocol.cc", "patch": "@@ -14,7 +14,6 @@\n #include \"gin/handle.h\"\n #include \"gin/object_template_builder.h\"\n #include \"shell/browser/browser.h\"\n-#include \"shell/browser/electron_browser_context.h\"\n #include \"shell/browser/protocol_registry.h\"\n #incl...
2025-03-21T12:33:25
vercel/next.js
4cd3ca26d71fc7904ea7030ee8355071efc9502d
a39366938a9bb669ef775404b3547a876ec2f0d4
perf: improve stats action reliability and reduce CI noise (#87945) ## Summary Comprehensive improvements to the PR stats action for more reliable benchmarks and reduced CI noise. ### Vercel KV Integration - Add `@vercel/kv` for historical data persistence - Track metrics over time with `loadHistory()` / `saveToHist...
[ { "path": ".github/actions/next-stats-action/action.yml", "patch": "@@ -0,0 +1,10 @@\n+name: 'Next.js PR Stats'\n+description: 'Compare PR stats with canary'\n+inputs:\n+ bundler:\n+ description: 'Bundler to benchmark (webpack|turbopack|both)'\n+ default: 'both'\n+ required: false\n+runs:\n+ usin...
2026-01-06T11:36:41
facebook/react
829401dc173d79994a3401fce24084670f55fb5c
fd2d2799840d9066a752bb32bbbb07c93f64a891
[Flight] Transport custom error names in dev mode (#32116) Typed errors is not a feature that Flight currently supports. However, for presentation purposes, serializing a custom error name is something we could support today. With this PR, we're now transporting custom error names through the server-client boundary, ...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2123,8 +2123,15 @@ function resolveErrorProd(response: Response): Error {\n \n function resolveErrorDev(\n response: Response,\n- errorInfo: {message: string, stack: ReactStackTrace, env: string, ...},\n+ errorInfo: {\n+ name: ...
2025-01-17T22:48:57
nodejs/node
5e86ad9c6c64deb0c813f3c9c85f8e9654f8a76f
ad81548bf5e6e243940d468a61acc794a124c891
test: fix flaky test-worker-message-port-transfer-filehandle test PR-URL: https://github.com/nodejs/node/pull/59158 Fixes: https://github.com/nodejs/node/issues/59145 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeas...
[ { "path": "test/parallel/test-worker-message-port-transfer-filehandle.js", "patch": "@@ -86,6 +86,7 @@ const { once } = require('events');\n });\n \n assert.deepStrictEqual(await readPromise, await fs.readFile(__filename));\n+ await fh.close();\n })().then(common.mustCall());\n \n (async function() {",...
2025-07-26T07:44:26
golang/go
dc42565a202694731945421c1fd58815f12423b5
e64023dcbf40af59a637a982cba58ee8272d61c4
cmd/compile: fix control flow for unsigned divisions proof relations The continue used to make sense since I first wrote this patch with a loop, for testing the commutativity of the add. This was refactored to just try both but I forgot to fix the continue. Change-Id: I91466a052d5d8ee7193084a71faf69bd27e36d2a Review...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2503,15 +2503,13 @@ func addLocalFacts(ft *factsTable, b *Block) {\n \t\t\t\txl := ft.limits[x.ID]\n \t\t\t\ty := add.Args[1]\n \t\t\t\tyl := ft.limits[y.ID]\n-\t\t\t\tif unsignedAddOverflows(xl.umax, yl.umax, add.Type) {\n-\t\t\t\t\tcontinue\...
2025-11-18T00:26:01
electron/electron
603057b198415cec42bb42d1367e38829158b999
9ccc63d6821f948d4b320eeca9b8110468963452
fix: remove `File.path` from types (#46005)
[ { "path": "docs/api/web-utils.md", "patch": "@@ -16,7 +16,7 @@ Returns `string` - The file system path that this `File` object points to. In th\n \n This method superseded the previous augmentation to the `File` object with the `path` property. An example is included below.\n \n-```js\n+```js @ts-nocheck\n...
2025-03-21T07:40:49
vercel/next.js
a39366938a9bb669ef775404b3547a876ec2f0d4
502a3d1f9648a276fce797c2940895129cb35ea7
chore: add dev boot profiling and benchmark scripts (#87940) ## Summary Development scripts for profiling and benchmarking Next.js dev server boot time. ### Benchmarking Scripts - `benchmark-boot-time.sh` - Wall-clock benchmarking with two metrics: - **Listen time**: When TCP port accepts connections - **Ready t...
[ { "path": "scripts/analyze-dev-server-bundle.js", "patch": "@@ -0,0 +1,142 @@\n+#!/usr/bin/env node\n+/**\n+ * Dev Server Bundle Analyzer\n+ *\n+ * Generates a bundle analyzer report for the dev server bundle.\n+ *\n+ * Usage:\n+ * node scripts/analyze-bundle.js [options]\n+ *\n+ * Options:\n+ * --open ...
2026-01-06T11:18:01
nodejs/node
a480d998d99b23ec37624845197c53cc4f3020be
daa9e4bb8e3005af00417f8c4a14c4303771bcc1
process: make execve's args argument optional Align the code with the documentation and similar methods used to execute os commands - the `args` argument should be optional, and if omitted, treated as an empty array (`[]`). Fixes: https://github.com/nodejs/node/issues/58411 PR-URL: https://github.com/nodejs/node/pull...
[ { "path": "lib/internal/process/per_thread.js", "patch": "@@ -279,7 +279,7 @@ function wrapProcessMethods(binding) {\n return true;\n }\n \n- function execve(execPath, args, env) {\n+ function execve(execPath, args = [], env) {\n emitExperimentalWarning('process.execve');\n \n const { isMain...
2025-07-26T02:35:57
facebook/react
b25bcd460f98a0b89e5a7199a6c88112163d961f
77656c557a05951643ffecdf4efdf43b8bc73d84
[Fizz] Support Suspense boundaries anywhere (#32069) Suspense is meant to be composable but there has been a lonstanding limitation with using Suspense above the `<body>` tag of an HTML document due to peculiarities of how HTML is parsed. For instance if you used Suspense to render an entire HTML document and had a...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -135,8 +135,7 @@ export type RenderState = {\n // be null or empty when resuming.\n \n // preamble chunks\n- htmlChunks: null | Array<Chunk | PrecomputedChunk>,\n- headChunks: null | Array<Chunk | PrecomputedChunk>,...
2025-01-17T18:54:11
golang/go
489d3dafb791df8297f71ecf4e2c3c84ea11f6f2
8c41a482f9b7a101404cd0b417ac45abd441e598
math: switch s390x math.Pow to generic implementation The s390x assembly implementation of math.Pow incorrectly handles certain subnormal cases. This change switches the function to use the generic implementation instead. Updates #76247 Cq-Include-Trybots: luci.golang.try:gotip-linux-s390x Change-Id: I794339080d5a7a...
[ { "path": "src/math/arith_s390x.go", "patch": "@@ -129,7 +129,7 @@ func archExpm1(x float64) float64\n func expm1TrampolineSetup(x float64) float64\n func expm1Asm(x float64) float64\n \n-const haveArchPow = true\n+const haveArchPow = false\n \n func archPow(x, y float64) float64\n func powTrampolineSetup(x...
2025-11-14T13:21:37
electron/electron
9ccc63d6821f948d4b320eeca9b8110468963452
4d7161f36edacf8d708bc3cb73099db378508bd7
fix: add missing `cpp_heap` to Node.js worker `CreateParams` (#46104)
[ { "path": "patches/node/refactor_attach_cppgc_heap_on_v8_isolate_creation.patch", "patch": "@@ -165,10 +165,20 @@ index 4119ac1b002681d39711eac810ca2fcc2702ffc7..790347056cde949ffe6cf8498a7eca0c\n \n ExitCode NodeMainInstance::Run() {\n diff --git a/src/node_worker.cc b/src/node_worker.cc\n-index 1fc37749...
2025-03-21T07:40:28
rust-lang/rust
1bc2c442870a669669880b7487d46f4ce90e71b0
d4e76b7cb893ae3dfa6a128acc0d78726cdfcf55
fix: remove empty angle brackets in inline type alias code assist. fixes https://github.com/rust-lang/rust-analyzer/issues/21769
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/inline_type_alias.rs", "patch": "@@ -12,7 +12,7 @@ use itertools::Itertools;\n use syntax::ast::syntax_factory::SyntaxFactory;\n use syntax::syntax_editor::SyntaxEditor;\n use syntax::{\n- AstNode, NodeOrToken, SyntaxNode,\n+ AstNode, ...
2026-03-08T15:21:00
vercel/next.js
502a3d1f9648a276fce797c2940895129cb35ea7
0f2bbc9a2d07adbcfa5ec1ebe22e3e2f61a2a63a
[strict-route-types] Switch to `satisfies` when validating page and route modules (#87398) Reverts https://github.com/vercel/next.js/pull/83239 flagged behind `experimental.strictRouteTypes`. Makes the error messages a bit friendlier since we no longer need these `__*` helper types which made it harder to grok what...
[ { "path": "packages/next/src/server/lib/router-utils/typegen.ts", "patch": "@@ -688,18 +688,12 @@ export function generateValidatorFileStrict(\n ? `${type}<${JSON.stringify(route)}>`\n : type\n \n- // NOTE: we previously used `satisfies` here, but it's not supported by TypeScr...
2026-01-06T10:18:20
facebook/react
313c8c55de39cd5f009ebb033eec1666b3daa59e
d46b04a27dc9fb4c7baaa379f5a6aec1449883a1
Fix moveBefore feature detection (#32087) `moveBefore` was moved to the `ParentNode` mixin as per https://github.com/whatwg/dom/pull/1307#discussion_r1881981120 _(and was committed in https://github.com/whatwg/dom/commit/3f3e94c5beda922962dacaeb606087f57bd7f7be)_ As a result, its existence can no longer be checked on...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -780,7 +780,7 @@ const supportsMoveBefore =\n // $FlowFixMe[prop-missing]: We're doing the feature detection here.\n enableMoveBefore &&\n typeof window !== 'undefined' &&\n- typeof window.Node.prototype.moveBefor...
2025-01-17T16:42:30
nodejs/node
7d6ce7765ca5cae13422fe8cbb82dff4dddd270d
ad07ae6ac2293fe5261c2150be0b55a82cb10b70
tools: clarify README linter error message PR-URL: https://github.com/nodejs/node/pull/59160 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com>
[ { "path": "tools/lint-readme-lists.mjs", "patch": "@@ -6,7 +6,7 @@ import assert from 'node:assert';\n import { open } from 'node:fs/promises';\n import { argv } from 'node:process';\n \n-const ghHandleLine = /^\\* \\[(.+)\\]\\(https:\\/\\/github\\.com\\/\\1\\) -$/;\n+const ghHandleLine = /^\\* \\[(.+)\\]\\...
2025-07-25T15:15:22
golang/go
e912618bd2de2121d6c9fed3473b5e0a47da138c
2cf9d4b62f167cbef01469d625dabefdd783c0e8
runtime: add hexdumper Currently, we have a simple hexdumpWords facility for debugging. It's useful but pretty limited. This CL adds a much more configurable and capable "hexdumper". It can be configured for any word size (including bytes), handles unaligned data, includes an ASCII dump, and accepts data in multiple ...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -2029,3 +2029,36 @@ func (head *ListHeadManual) Pop() unsafe.Pointer {\n func (head *ListHeadManual) Remove(p unsafe.Pointer) {\n \thead.l.remove(p)\n }\n+\n+func Hexdumper(base uintptr, wordBytes int, mark func(addr uintptr, start func()), data ...[]byte...
2025-06-10T23:19:08
electron/electron
86cc9f626f90eaa4df5fb916ba6706f825687517
09a3bcf0f03a86bc9caa7c4b5e7770e5f3306a5c
fix: APNS token ids are lowercase ASCII (#46101)
[ { "path": "docs/api/push-notifications.md", "patch": "@@ -46,4 +46,7 @@ See: https://developer.apple.com/documentation/appkit/nsapplication/1428476-regi\n ### `pushNotifications.unregisterForAPNSNotifications()` _macOS_\n \n Unregisters the app from notifications received from APNS.\n+\n+Apps unregistered t...
2025-03-20T06:57:50
rust-lang/rust
774f23201523e60fd729c654061f82492760adec
35f1109ece895199e4b8d755b101e9a481d18243
Provide better suggestions for inference errors on `.collect()?` When encountering an inference error when calling `.collect()` followed by `?`, detect the return type of the enclosing function and suggest `.collect::<Result<_, _>>()?` instead of `.collect::<Vec<_>>()?`: ``` error[E0283]: type annotations needed --...
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/infer/need_type_info.rs", "patch": "@@ -555,6 +555,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n def_id: _,\n generic_args,\n have_turbofish,\n+ hir_id,\n } => {\n ...
2026-03-15T17:39:06
facebook/react
d46b04a27dc9fb4c7baaa379f5a6aec1449883a1
5f38ef671958a2fb054cb999d68faa8ffdc79e54
[ci] Fix maintainer output condition check (#32111) It appears GH actions treats outputs from workflow_calls to [always be strings](https://github.com/orgs/community/discussions/9343) so we need to do an explicit comparison.
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -12,7 +12,7 @@ jobs:\n uses: facebook/react/.github/workflows/shared_check_maintainer.yml@main\n \n notify:\n- if: ${{ needs.check_maintainer.outputs.is_core_team }}\n+ if: ${{ needs.check_maintainer.outputs.is_core_team == ...
2025-01-17T15:35:25
vercel/next.js
0f2bbc9a2d07adbcfa5ec1ebe22e3e2f61a2a63a
b7e4c6a0118628ffc6b2a563e07a07cdc8714f73
[strict-route-types] Enforce common React Component return types in App Router (#87389) Flagged behind `experimental.strictRouteTypes`. Most notably this disallows `void`. We generally treat `void` as "forgot to add return" in React e.g. ```tsx async function Page() { <div />; } ``` which is a common begin...
[ { "path": "packages/next/src/server/lib/router-utils/typegen.ts", "patch": "@@ -739,7 +739,7 @@ export function generateValidatorFileStrict(\n \n if (appPageValidations) {\n typeDefinitions += `type AppPageConfig<Route extends AppRoutes = AppRoutes> = {\n- default: React.ComponentType<PageProps<Route...
2026-01-06T09:56:19
golang/go
4d0658bb0871806a8c5551063d1ef1d205916ceb
ba634ca5c7f19105c853db5752cc0f6d3ca76e45
cmd/compile: prefer fixed registers for values For this code: func f() (int, int) { return 0, 0 } We currently generate on arm64: MOVD ZR, R0 MOVD R0, R1 This CL changes that to MOVD ZR, R0 MOVD ZR, R1 Probably not a big performance difference, but it makes the generated code clearer. A followup-is...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -596,17 +596,18 @@ func (s *regAllocState) allocValToReg(v *Value, mask regMask, nospill bool, pos\n \tvar c *Value\n \tif vi.regs != 0 {\n \t\t// Copy from a register that v is already in.\n-\t\tr2 := pickReg(vi.regs)\n \t\tvar current *Val...
2025-11-17T23:33:01
electron/electron
09a3bcf0f03a86bc9caa7c4b5e7770e5f3306a5c
bf64967b68f28eef913383d104b869a3203cc257
fix: `webContents.print()` crash on Linux (#46087)
[ { "path": "shell/browser/feature_list.cc", "patch": "@@ -27,6 +27,10 @@\n #include \"pdf/pdf_features.h\"\n #endif\n \n+#if BUILDFLAG(IS_LINUX)\n+#include \"printing/printing_features.h\"\n+#endif\n+\n namespace electron {\n \n void InitializeFeatureList() {\n@@ -56,6 +60,14 @@ void InitializeFeatureList() ...
2025-03-20T05:41:00
facebook/react
5f38ef671958a2fb054cb999d68faa8ffdc79e54
61e713c1d31976175316c8256f4be14ba8bbdb29
Fix maintainer check condition (#32110) <!-- 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 the...
[ { "path": ".github/workflows/shared_label_core_team_prs.yml", "patch": "@@ -13,7 +13,7 @@ jobs:\n uses: facebook/react/.github/workflows/shared_check_maintainer.yml@main\n \n label:\n- if: ${{ needs.check_maintainer.outputs.is_core_team }}\n+ if: ${{ needs.check_maintainer.outputs.is_core_team =...
2025-01-17T15:22:34
nodejs/node
ad07ae6ac2293fe5261c2150be0b55a82cb10b70
5f3aa57210d111ac5beb949d88d356f071740760
test: remove timeout in test-https-proxy-request-handshake-failure The timeout is unnecessary since we are testing for certificate failure. It can cause flakes on very slow machines where the request cannot be finished in 1 second. PR-URL: https://github.com/nodejs/node/pull/59165 Fixes: https://github.com/nodejs/nod...
[ { "path": "test/client-proxy/test-https-proxy-request-handshake-failure.mjs", "patch": "@@ -33,7 +33,6 @@ const requestUrl = `https://${serverHost}/test`;\n const { code, signal, stderr, stdout } = await runProxiedRequest({\n NODE_USE_ENV_PROXY: 1,\n REQUEST_URL: requestUrl,\n- REQUEST_TIMEOUT: 1000,\n...
2025-07-25T14:54:55
golang/go
9461db5c5945472b0ba9d3ef75e802bb861f214d
4004ff3523f03a6e42e60e47b41d8954dfa3a001
[dev.simd] simd: fix comment in file generator the comment was accidentally updated in the generated file, and the update was good. So update the generator, too. Change-Id: I6a76aa3bdb7fb78378508b95248939567bff69e4 Reviewed-on: https://go-review.googlesource.com/c/go/+/721341 LUCI-TryBot-Result: Go LUCI <golang-scop...
[ { "path": "src/simd/genfiles.go", "patch": "@@ -912,6 +912,7 @@ type SIMDLogicalOP uint8\n const (\n \t// boolean simd operations, for reducing expression to VPTERNLOG* instructions\n \t// sloInterior is set for non-root nodes in logical-op expression trees.\n+\t// the operations are even-numbered.\n \tsloI...
2025-11-17T20:37:47
electron/electron
e4d660af86b95254b8b49de948923d4e1f4769f6
2efd75e2cad222b60b6b0d6a431587a49cf9d6c0
docs: fix code example in breaking-changes.md (#46093)
[ { "path": "docs/breaking-changes.md", "patch": "@@ -22,7 +22,7 @@ rejection occurs instead of crashing the process.\n To restore the previous behavior, you can use:\n \n ```js\n-process.on('uncaughtException', () => {\n+process.on('unhandledRejection', () => {\n process.exit(1)\n })\n ```", "additions...
2025-03-19T10:20:22
rust-lang/rust
461038f0c9fd7a403b29d3ac0e384d410ab16f07
798a011ace1c2b5be80767ba1d97a4dff0546f93
improve `#[track_caller]` invalid ABI error
[ { "path": "compiler/rustc_ast_passes/src/ast_validation.rs", "patch": "@@ -1487,6 +1487,15 @@ impl<'a> Visitor<'a> for AstValidator<'a> {\n ident,\n sig,\n );\n+\n+ if let Some(attr) = attr::find_by_name(fi.attrs(), sym::track_caller)\n+...
2026-03-15T16:04:38
facebook/react
91add7bbdc1a06f9c6b71f3b41590266481b56cc
5a274a37e05ba627e3e9c8a1000bee881aeaef1c
Fix outdated maintainers list (#32102) I made a few mistakes while adding the initial list --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32102). * #32103 * __->__ #32102
[ { "path": "MAINTAINERS", "patch": "@@ -1,5 +1,4 @@\n acdlite\n-bvaughn\n eps1lon\n gaearon\n gnoff\n@@ -13,7 +12,9 @@ kassens\n lunaleaps\n mattcarrollcode\n mofeiZ\n+mvitousek\n noahlemen\n+pieterv\n poteto\n rickhanlonii\n sebmarkbage", "additions": 2, "deletions": 1, "language": "Unknown" }...
2025-01-16T20:05:40
vercel/next.js
b7e4c6a0118628ffc6b2a563e07a07cdc8714f73
6ae1e1b3f4e40f4d5aa807273616429b8fd3c8a5
Turbopack: transpile CHUNK_SUFFIX (#88128) This automatically transpiles this code with the browserslist config, since it's in the runtime as opposed to a generated snippet [swc minifies this to the same output](https://play.swc.rs/?version=1.15.8&code=H4sIAAAAAAAAA919bVfcRrLwd35Fh%2BTcmbEHDTix14GLWYzxLolt%2FABe7z0...
[ { "path": "turbopack/crates/turbopack-ecmascript-runtime/js/src/browser/runtime/base/runtime-base.ts", "patch": "@@ -1,6 +1,6 @@\n /**\n * This file contains runtime types and functions that are shared between all\n- * Turbopack *development* ECMAScript runtimes.\n+ * Turbopack *browser* ECMAScript runtime...
2026-01-06T09:45:21
nodejs/node
5f3aa57210d111ac5beb949d88d356f071740760
d5b815c9ea59ef508c19281584f9276b1a4ef178
benchmark: add --track to benchmark This option will measure how long the benchmark takes to run. Example: ``` $ ./node benchmark/run.js --track assert assert/assertion-error.js assert/assertion-error.js size=2 n=200: 22,987.24012781365 assert/assertion-error.js size=75 n=200: 296.2362823364434 [740ms] assert/assert...
[ { "path": "benchmark/run.js", "patch": "@@ -3,6 +3,7 @@\n const path = require('path');\n const { spawn, fork } = require('node:child_process');\n const CLI = require('./_cli.js');\n+const { styleText } = require('node:util');\n \n const cli = new CLI(`usage: ./node run.js [options] [--] <category> ...\n ...
2025-07-25T13:22:26
golang/go
8806d53c106ba9d797a4383b2a49418c509a42c2
c93766007dbb9c975d2f18b7c741f4804ce911c0
cmd/link: align sections, not symbols after DWARF compress After DWARF compression, we recompute the symbol and section addresses. On Windows, we need to align the sections to PEFILEALIGN. But the code actually apply the alignment to every symbol. This works mostly fine as after compression a section usually contains ...
[ { "path": "src/cmd/link/internal/ld/dwarf.go", "patch": "@@ -2507,19 +2507,19 @@ func dwarfcompress(ctxt *Link) {\n \tvar prevSect *sym.Section\n \tfor _, si := range dwarfp {\n \t\tfor _, s := range si.syms {\n-\t\t\tldr.SetSymValue(s, int64(pos))\n \t\t\tsect := ldr.SymSect(s)\n \t\t\tif sect != prevSect ...
2025-11-17T22:27:21
facebook/react
35dcf02b04b3b5c539f666b86dd1910ddcee9c89
e5fdd994bf5262a6fbed5d08e93999bf0a7d234e
[rcr] Always target node (#32091) Alternative to #32071. As a follow up to #31993, the `platform` target was incorrectly being set to `browser` since it was the default argument for the build script. This corrects it to `node` and `cjs` which I think should resolve node 20 issues.
[ { "path": "compiler/packages/react-compiler-runtime/scripts/build.js", "patch": "@@ -13,11 +13,6 @@ const path = require('path');\n const {Generator} = require('npm-dts');\n \n const argv = yargs(process.argv.slice(2))\n- .options('p', {\n- alias: 'platform',\n- default: 'browser',\n- choices: ['b...
2025-01-16T18:37:13
vercel/next.js
5cddef4fd4227a8eddc8f300c7bfb5c887801158
7c40cde272761107b7b95fcdec75c3095ee6a337
Turbopack: fix order of breadth first edges (#88117) ### What? It's a VecDeque and we are calling pop_front() so we don't want to reverse the roots
[ { "path": "turbopack/crates/turbo-tasks/src/graph/adjacency_map.rs", "patch": "@@ -136,12 +136,7 @@ where\n pub fn into_breadth_first_edges(self) -> IntoBreadthFirstEdges<T, E> {\n IntoBreadthFirstEdges {\n adjacency_map: self.adjacency_map,\n- queue: self\n- ...
2026-01-06T06:22:31
nodejs/node
d5b815c9ea59ef508c19281584f9276b1a4ef178
f389aae2d0218fe98b9d19b7388ac8286acb0183
benchmark: small lint fix on _cli.js PR-URL: https://github.com/nodejs/node/pull/59172 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
[ { "path": "benchmark/_cli.js", "patch": "@@ -140,8 +140,8 @@ CLI.prototype.getCpuCoreSetting = function() {\n const isValid = /^(\\d+(-\\d+)?)(,\\d+(-\\d+)?)*$/.test(value);\n if (!isValid) {\n throw new Error(`\n- Invalid CPUSET format: \"${value}\". Please use a single core number (e.g., \"...
2025-07-24T17:17:52
golang/go
c93766007dbb9c975d2f18b7c741f4804ce911c0
9859b436430aac382b337964a1b380bc4bfcda70
runtime: do not print recovered when double panic with the same value Show the "[recovered, repanicked]" message only when it is repanicked after recovered. For the duplicated panics that not recovered, do not show this message. Fixes #76099 Change-Id: I87282022ebe44c6f6efbe3239218be4a2a7b1104 Reviewed-on: https://g...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -413,6 +413,15 @@ func TestRepanickedPanicSandwich(t *testing.T) {\n \t}\n }\n \n+func TestDoublePanicWithSameValue(t *testing.T) {\n+\toutput := runTestProg(t, \"testprog\", \"DoublePanicWithSameValue\")\n+\twant := `panic: message\n+`\n+\tif !strings.Has...
2025-10-29T05:11:48
facebook/react
4749dcb7c586bc82133136d0847449123b0df600
5b51a2b9e249f264b1345cc35b275464ae3ef6eb
React DevTools 6.0.1 -> 6.1.0 (#32090) List of changes in this release: * fix[DevTools]: fix HostComponent naming in filters for Native ([hoxyq](https://github.com/hoxyq) in [#32086](https://github.com/facebook/react/pull/32086)) * Fix copy functionality in Firefox ([V3RON](https://github.com/V3RON) in [#32077]...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"6.0.1\",\n+ \"version\": \"6.1.0\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2025-01-16T17:07:03
nodejs/node
92095048d1273b96aa1871bbbd68bf55c5004725
91a131e81af76b6356e9e150e8a012c86de8257d
benchmark: fix sqlite-is-transaction The variable deadCodeElimination is declared but not initialized, making it undefined by default. When using the &&= operator with an undefined left operand, the result will always remain undefined regardless of how many iterations run. ```js let deadCodeElimination; deadCodeElimi...
[ { "path": "benchmark/sqlite/sqlite-is-transaction.js", "patch": "@@ -16,7 +16,7 @@ function main(conf) {\n }\n \n let i;\n- let deadCodeElimination;\n+ let deadCodeElimination = true;\n \n bench.start();\n for (i = 0; i < conf.n; i += 1)", "additions": 1, "deletions": 1, "language": "J...
2025-07-24T17:05:56
vercel/next.js
7c40cde272761107b7b95fcdec75c3095ee6a337
98644a13090e4d8dae04efc5a715bc5967957339
[turbopack] Populate the `names` field of sourcemaps (#87911) Ensure that turbopack produces sourcemaps with the `names` field populated. SWC has support for this but because we are using lower level APIs we need to collect identifiers ourself. This follows the pattern that SWC uses internally in APIs like `Compiler...
[ { "path": "turbopack/crates/turbopack-css/src/module_asset.rs", "patch": "@@ -445,7 +445,7 @@ fn generate_minimal_source_map(filename: String, source: String) -> Result<Rope>\n }\n let sm: Arc<SourceMap> = Default::default();\n sm.new_source_file(FileName::Custom(filename).into(), source);\n- ...
2026-01-06T03:21:31
golang/go
9859b436430aac382b337964a1b380bc4bfcda70
b9ef0633f6117c74fabcd7247a76b4feb86df086
cmd/asm,cmd/compile,cmd/internal/obj/riscv: use compressed instructions on riscv64 Make use of compressed instructions on riscv64 - add a compress pass to the end of the assembler, which replaces non-compressed instructions with compressed alternatives if possible. Provide a `compressinstructions` compiler and assemb...
[ { "path": "src/cmd/asm/internal/flags/flags.go", "patch": "@@ -29,8 +29,9 @@ var (\n )\n \n var DebugFlags struct {\n-\tMayMoreStack string `help:\"call named function before all stack growth checks\"`\n-\tPCTab string `help:\"print named pc-value table\\nOne of: pctospadj, pctofile, pctoline, pctoin...
2025-09-25T19:05:49
facebook/react
5b51a2b9e249f264b1345cc35b275464ae3ef6eb
6093f1862a1995d8c7447d5c4d803ea0bdfb9292
fix[DevTools]: support useResourceEffect (#32088) Since we've started experimenting with it, I've started seeing a spike in errors: ``` Unsupported hook in the react-debug-tools package: Missing method in Dispatcher: useResourceEffect ``` Adding missing hook to the `Dispatcher` that is proxied by React DevTool...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -731,6 +731,24 @@ function useHostTransitionStatus(): TransitionStatus {\n return status;\n }\n \n+function useResourceEffect(\n+ create: () => mixed,\n+ createDeps: Array<mixed> | void | null,\n+ update: ((resource: mixed) => ...
2025-01-16T15:42:53
nodejs/node
91a131e81af76b6356e9e150e8a012c86de8257d
ee36b86ba38773869852a3a44b621c6ae4d7bf65
doc: fix broken sentence in `URL.parse` PR-URL: https://github.com/nodejs/node/pull/59164 Refs: https://developer.mozilla.org/en-US/docs/Web/API/URL/parse_static#return_value Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewe...
[ { "path": "doc/api/url.md", "patch": "@@ -720,7 +720,7 @@ added: v22.1.0\n \n Parses a string as a URL. If `base` is provided, it will be used as the base\n URL for the purpose of resolving non-absolute `input` URLs. Returns `null`\n-if `input` is not a valid.\n+if the parameters can't be resolved to a vali...
2025-07-24T11:48:38
electron/electron
dcbab692c08822602c51e7e12de9f96c5dfead49
71f3ff6bf289745c74d48cf54c254120a70804b4
test: fix `app.dock` for corrected type (#46110) test: fix app.dock for corrected type
[ { "path": "spec/api-app-spec.ts", "patch": "@@ -1668,19 +1668,19 @@ describe('app module', () => {\n \n ifdescribe(process.platform === 'darwin')('dock APIs', () => {\n after(async () => {\n- await app.dock.show();\n+ await app.dock?.show();\n });\n \n describe('dock.setMenu', () => ...
2025-03-18T21:44:39
golang/go
b9ef0633f6117c74fabcd7247a76b4feb86df086
a087dea8692eee879e8226b70eb691dea7758b0b
cmd/internal/sys,internal/goarch,runtime: enable the use of compressed instructions on riscv64 Enable the use of compressed instructions on riscv64 by reducing the PC quantum to two bytes and reducing the minimum instruction length to two bytes. Change gostartcall on riscv64 to land at two times the PC quantum into go...
[ { "path": "src/cmd/internal/obj/riscv/obj.go", "patch": "@@ -4799,10 +4799,17 @@ func assemble(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\tv := pcAlignPadLength(p.Pc, alignedValue)\n \t\t\toffset := p.Pc\n \t\t\tfor ; v >= 4; v -= 4 {\n-\t\t\t\t// NOP\n-\t\t\t\tcursym.WriteBytes(ctxt,...
2023-08-27T09:35:33
facebook/react
6093f1862a1995d8c7447d5c4d803ea0bdfb9292
89dbd487fc2a47262a5e0d95b0dbb2779bbe4f97
Fix local react usage in DOM fixture (#32080) The DOM fixture hasn't worked on local builds since the UMD support was removed in https://github.com/facebook/react/pull/28735 Here we update the fixture to set the local experimental builds to window. Some of the pages are still broken, such as hydration. But these bugs...
[ { "path": ".github/workflows/runtime_build_and_test.yml", "patch": "@@ -416,7 +416,6 @@ jobs:\n - name: Ensure clean build directory\n run: rm -rf build\n - run: yarn install --frozen-lockfile\n- - run: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn\n working-di...
2025-01-16T15:33:24
vercel/next.js
c5b19eb7f5cf48dffa1b8bf87cd089f079fb031a
3c47bd99afb7babc202898f71a815a8663db42b1
test: reduce flakiness in opentelemetry test for prod mode (#88102) ## Summary Reduces flakiness in the OpenTelemetry e2e test (`test/e2e/opentelemetry/instrumentation/opentelemetry.test.ts`) for production mode. ### Root Cause In production mode, Next.js generates additional spans from: - RSC prefetch requests (wit...
[ { "path": "test/e2e/opentelemetry/instrumentation/instrumentation-test.ts", "patch": "@@ -71,13 +71,13 @@ class TestExporter implements SpanExporter {\n code: ExportResultCode.FAILED,\n error: new Error(`http status ${response.status}`),\n })\n+ return\n }\n+ re...
2026-01-05T12:42:32
nodejs/node
7215d9b37f3ffdff1a068ffeb926f7da62a93771
38c2b926afedace78a0be5b48001144c456d3241
cli: support `${pid}` placeholder in --cpu-prof-name PR-URL: https://github.com/nodejs/node/pull/59072 Fixes: https://github.com/nodejs/node/issues/57418 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -538,13 +538,16 @@ $ ls *.cpuprofile\n CPU.20190409.202950.15293.0.0.cpuprofile\n ```\n \n-If `--cpu-prof-name` is specified, the provided value will be used as-is; patterns such as\n-`${hhmmss}` or `${pid}` are not supported.\n+If `--cpu-prof-name` is specified, the...
2025-07-24T10:28:18
electron/electron
71f3ff6bf289745c74d48cf54c254120a70804b4
ff0a14a7c63bb913da67f3d8660eac32bf29dd92
docs: fix types of `app.dock` (#46073)
[ { "path": "docs/api/app.md", "patch": "@@ -1559,8 +1559,8 @@ command line arguments that Chromium uses.\n \n ### `app.dock` _macOS_ _Readonly_\n \n-A [`Dock`](./dock.md) `| undefined` object that allows you to perform actions on your app icon in the user's\n-dock on macOS.\n+A `Dock | undefined` property ([...
2025-03-18T12:14:08
facebook/react
89dbd487fc2a47262a5e0d95b0dbb2779bbe4f97
87276ef1efb340467563c107f24248653d7f7f00
fix[DevTools]: fix HostComponent naming in filters for Native (#32086) Right now we mention DOM elements as Host elements for React Native, which doesn't make sense.
[ { "path": ".eslintrc.js", "patch": "@@ -496,6 +496,7 @@ module.exports = {\n {\n files: [\n 'packages/react-devtools-extensions/**/*.js',\n+ 'packages/react-devtools-shared/src/devtools/views/**/*.js',\n 'packages/react-devtools-shared/src/hook.js',\n 'packages/react...
2025-01-16T14:17:06
golang/go
a087dea8692eee879e8226b70eb691dea7758b0b
e1a12c781f55da85a30fd63471f8adcba908acd2
debug/elf: sync new loong64 relocation types up to LoongArch ELF psABI v20250521 Add several new relocation types defined in newer versions of LoongArch ELF psABI v20250521, part of the v2.40 spec bundle. The new relocations are seeing increased adoption because distributions are moving to newer GNU/LLVM toolchain ver...
[ { "path": "api/next/75562.txt", "patch": "@@ -0,0 +1,38 @@\n+pkg debug/elf, const R_LARCH_TLS_DESC32 = 13 #75562\n+pkg debug/elf, const R_LARCH_TLS_DESC32 R_LARCH #75562\n+pkg debug/elf, const R_LARCH_TLS_DESC64 = 14 #75562\n+pkg debug/elf, const R_LARCH_TLS_DESC64 R_LARCH #75562\n+pkg debug/elf, const R_LA...
2025-09-13T07:57:12
vercel/next.js
3c47bd99afb7babc202898f71a815a8663db42b1
c74cb2ae25bbe515c600b85f1e974f7eb26db576
chore: add Claude Code configuration (#87943) adding basic config with graphite/repo instructions <!-- 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...
[ { "path": ".alexignore", "patch": "@@ -1,3 +1,5 @@\n CODE_OF_CONDUCT.md\n examples/\n **/*/LICENSE.md\n+.claude/\n+CLAUDE.md", "additions": 2, "deletions": 0, "language": "Unknown" }, { "path": ".claude/commands/ci-failures.md", "patch": "@@ -0,0 +1,161 @@\n+# Check CI Failures\n+\n+...
2026-01-05T12:32:27
nodejs/node
58b5dc3eb2675e4f0f9807f3b5f5e119cd3e0792
6bb08f7f8e4c984eeccbd0692410cd88ebc2b528
util: respect nested formats in styleText Co-authored-by: Jordan Harband <ljharb@gmail.com> PR-URL: https://github.com/nodejs/node/pull/59098 Fixes: https://github.com/nodejs/node/issues/59035 Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Moshe Atlo...
[ { "path": "lib/util.js", "patch": "@@ -25,6 +25,7 @@ const {\n ArrayIsArray,\n ArrayPrototypePop,\n ArrayPrototypePush,\n+ ArrayPrototypeReduce,\n Error,\n ErrorCaptureStackTrace,\n FunctionPrototypeBind,\n@@ -36,6 +37,8 @@ const {\n ObjectSetPrototypeOf,\n ObjectValues,\n ReflectApply,\n...
2025-07-23T19:33:51
electron/electron
bea7d618f1916d196e0a68c05f17a7ada286056f
4ad20ccb396a3354d99b8843426bece2b28228bf
fix: warning in file picker UI (#46067)
[ { "path": "shell/browser/file_system_access/file_system_access_permission_context.cc", "patch": "@@ -825,13 +825,7 @@ std::u16string FileSystemAccessPermissionContext::GetPickerTitle(\n ? IDS_FILE_SYSTEM_ACCESS_CHOOSER_OPEN_WRITABLE_DIRECTORY_TITLE\n : IDS_FILE_SYSTEM_ACCESS_CHOO...
2025-03-17T01:49:15
facebook/react
f13abbbb4466572afdb3932760ae64e12354a3c3
43d18bc2d3d31f43706f513a996ef9b4a7495237
Fix copy functionality in Firefox (#32077) ## Summary This pull request addresses an issue where the copy functionality was not working in Firefox. The root cause was the absence of the 'clipboardWrite' permission in the manifest. To ensure consistency across all supported browsers, the 'clipboardWrite' permissi...
[ { "path": "packages/react-devtools-extensions/chrome/manifest.json", "patch": "@@ -43,7 +43,8 @@\n \"permissions\": [\n \"scripting\",\n \"storage\",\n- \"tabs\"\n+ \"tabs\",\n+ \"clipboardWrite\"\n ],\n \"host_permissions\": [\n \"<all_urls>\"", "additions": 2, "deletions...
2025-01-15T18:41:22
vercel/next.js
c74cb2ae25bbe515c600b85f1e974f7eb26db576
f3ccca39c7b093561ce16b6a3b24772bfe14287e
Redesign default error pages with cleaner, more user-friendly UI (#87988) - redesigns the default global + default error boundaries. removing the WSOD forever :/ - adds dark mode support - unifies a bit of the styling - add the digest for the server error - adds a return button on the client errors <img width="3328" ...
[ { "path": "packages/next/src/client/components/builtin/app-error.tsx", "patch": "@@ -1,75 +1,31 @@\n import React from 'react'\n+import { errorStyles, errorThemeCss, ErrorIcon } from './error-styles'\n \n-const styles: Record<string, React.CSSProperties> = {\n- error: {\n- // https://github.com/sindreso...
2026-01-05T12:30:06
golang/go
6caab99026a496107e903469d8c906be66a71896
eda2e8c683798e435e725f60f0bb580eb4aa9686
runtime: relax TestMemoryLimit on darwin a bit more Add 8MB more. Covers most of the failures watchflakes has seen. Fixes #73136 Change-Id: I593c599a9519b8b31ed0f401d4157d27ac692587 Reviewed-on: https://go-review.googlesource.com/c/go/+/708617 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser...
[ { "path": "src/runtime/testdata/testprog/gc.go", "patch": "@@ -396,7 +396,7 @@ func gcMemoryLimit(gcPercent int) {\n \t\t// should do considerably better than this bound.\n \t\tbound := int64(myLimit + 16<<20)\n \t\tif runtime.GOOS == \"darwin\" {\n-\t\t\tbound += 16 << 20 // Be more lax on Darwin, see issu...
2025-10-02T20:09:03
rust-lang/rust
5030e8119f40ea31e1f2c78719baf39b02d3dd76
f441cc675bfa7bc98630a21f8f9b3a63d2e19c20
rename min/maxnum intrinsics to min/maximum_number and fix their LLVM lowering
[ { "path": "src/intrinsics/mod.rs", "patch": "@@ -1266,7 +1266,7 @@ fn codegen_regular_intrinsic_call<'tcx>(\n ret.write_cvalue(fx, val);\n }\n \n- sym::minnumf16 => {\n+ sym::minimum_number_nsz_f16 => {\n intrinsic_args!(fx, args => (a, b); intrinsic);\n ...
2026-03-03T11:35:41
facebook/react
43d18bc2d3d31f43706f513a996ef9b4a7495237
b158439a5bfac90289e63cd51e8064c455bea27c
[internal] fix console patch, add RN (#32075) The forking for `shared/ReactFeatureFlags` doesn't work in the console patches. Since they're already forked, we can import the internal ReactFeatureFlags files directly. Would have caught this in testing a PR sync, but the PR syncs are broken right now.
[ { "path": "packages/shared/forks/consoleWithStackDev.rn.js", "patch": "@@ -6,9 +6,15 @@\n */\n \n import ReactSharedInternals from 'shared/ReactSharedInternals';\n+import * as dynamicFlagsUntyped from 'ReactNativeInternalFeatureFlags';\n+const enableRemoveConsolePatches =\n+ dynamicFlagsUntyped && dynamic...
2025-01-15T16:20:44
nodejs/node
5e70d836d6f1ea7b24c9e9328bbbda87c54c94a9
5fe16bc6bf0ffa685c47b7a521178a8ccec09e64
deps: update amaro to 1.1.1 PR-URL: https://github.com/nodejs/node/pull/59141 Fixes: https://github.com/nodejs/node/issues/59102 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "deps/amaro/dist/package.json", "patch": "@@ -4,7 +4,7 @@\n \"강동윤 <kdy1997.dev@gmail.com>\"\n ],\n \"description\": \"wasm module for swc\",\n- \"version\": \"1.12.1\",\n+ \"version\": \"1.13.1\",\n \"license\": \"Apache-2.0\",\n \"repository\": {\n \"type\": \"git\",", "addi...
2025-07-23T12:59:19
electron/electron
2d8a5476921a8681c9d678578da917a369d4621f
5f0603ed2863d7cb1327efa6e704cba91edf68d0
build: fix compound bash conditional in patchup (#46047)
[ { "path": ".github/actions/checkout/action.yml", "patch": "@@ -99,7 +99,7 @@ runs:\n fi\n \n ELECTRON_USE_THREE_WAY_MERGE_FOR_PATCHES=1 e d gclient sync --with_branch_heads --with_tags -vv\n- if [ \"${{ inputs.is-release }}\" != \"true\" && -n \"${{ env.PATCH_UP_APP_CREDS }}\" ]; then\n+ ...
2025-03-15T08:57:59
vercel/next.js
f3ccca39c7b093561ce16b6a3b24772bfe14287e
40a4c11b078e199a3654cff633f7cd3d905079c5
chore: warn when running tests against stale build (#88001) i got bit by this often :p <!-- 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": "jest.config.js", "patch": "@@ -7,6 +7,7 @@ const createJestConfig = nextJest()\n const customJestConfig = {\n displayName: process.env.IS_WEBPACK_TEST ? 'webpack' : 'Turbopack',\n testMatch: ['**/*.test.js', '**/*.test.ts', '**/*.test.jsx', '**/*.test.tsx'],\n+ globalSetup: '<rootDir>/jest-g...
2026-01-05T12:26:58
rust-lang/rust
c7220f423b335974509b603b8e1dcbb08a92184d
79d2026ae87386ccbe8fc729d130e5e298959a48
rename min/maxnum intrinsics to min/maximum_number and fix their LLVM lowering
[ { "path": "compiler/rustc_codegen_cranelift/src/intrinsics/mod.rs", "patch": "@@ -1266,7 +1266,7 @@ fn codegen_regular_intrinsic_call<'tcx>(\n ret.write_cvalue(fx, val);\n }\n \n- sym::minnumf16 => {\n+ sym::minimum_number_nsz_f16 => {\n intrinsic_args!(fx, args...
2026-03-03T11:35:41
golang/go
934dbcea1a806c198a7870b1808fb8e41b568984
e4d94842207a7f29fb473ecece2acdc5a2a207f7
[dev.simd] simd: update CPU feature APIs This CL also updates the internal uses of these APIs. This CL also fixed a instable output issue left by previous CLs. Change-Id: Ibc38361d35e2af0c4943a48578f3c610b74ed14d Reviewed-on: https://go-review.googlesource.com/c/go/+/720020 Reviewed-by: Cherry Mui <cherryyz@google.c...
[ { "path": "src/simd/_gen/simdgen/gen_simdTypes.go", "patch": "@@ -146,21 +146,25 @@ type {{.Name}} struct {\n const simdFeaturesTemplate = `\n import \"internal/cpu\"\n \n+type X86Features struct {}\n+\n+var X86 X86Features\n+\n {{range .}}\n {{- if eq .Feature \"AVX512\"}}\n-// Has{{.Feature}} returns whet...
2025-11-12T19:56:09
facebook/react
f0edf41e3ee00fbc97873b72b66d62d0f26185b1
f9f17f6c8d1e747a3e242b36aa35feae31c55f75
Fix Flight fixture CI (#32070)
[ { "path": "fixtures/flight/package.json", "patch": "@@ -65,7 +65,7 @@\n \"webpack-manifest-plugin\": \"^4.0.2\"\n },\n \"devDependencies\": {\n- \"@playwright/test\": \"^1.41.2\"\n+ \"@playwright/test\": \"^1.49.1\"\n },\n \"scripts\": {\n \"predev\": \"cp -r ../../build/oss-experiment...
2025-01-14T23:29:37
nodejs/node
97dbb79c8bde342dbd7877e5c58d69b939ec4192
96c507aa27329fc0dfa09589aca3b2a52a75f3d6
doc: add Aditi-1400 to collaborators Fixes: https://github.com/nodejs/node/issues/59064 PR-URL: https://github.com/nodejs/node/pull/59157 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
[ { "path": "README.md", "patch": "@@ -289,6 +289,8 @@ For information about the governance of the Node.js project, see\n **Abdirahim Musse** <<abdirahim.musse@ibm.com>>\n * [addaleax](https://github.com/addaleax) -\n **Anna Henningsen** <<anna@addaleax.net>> (she/her)\n+* [Aditi-1400](https://github.com/...
2025-07-22T07:42:38
electron/electron
5f0603ed2863d7cb1327efa6e704cba91edf68d0
afca4e271e354c7fcbd1378cd08e030259b8de57
fix: `ElectronBrowserContext` `raw_ptr` bug + remove dead code (#46030) refactor: remove unused ElectronBrowserContext::extension_system() Last use removed on Jul 21, 2020 by 2fb14f5 in PR #24575 This fixes a raw_ptr warning by letting us remove the raw_ptr field `ElectronBrowserContext::extension_system_`.
[ { "path": "shell/browser/electron_browser_context.cc", "patch": "@@ -365,10 +365,10 @@ ElectronBrowserContext::ElectronBrowserContext(\n BrowserContextDependencyManager::GetInstance()\n ->CreateBrowserContextServices(this);\n \n- extension_system_ = static_cast<extensions::ElectronExtensionSy...
2025-03-15T04:35:10
vercel/next.js
fa56f2c1fa02fcaeca08358725a9565a7a5997ac
8aa9feb379334d02bd6968c19fbf0eb97b6e9eca
fix: revalidateTag with profile should not trigger client cache invalidation (#88069) ## Summary Fixes a bug where calling `revalidateTag(tag, profile)` incorrectly triggers client-side cache invalidation, causing read-your-own-writes behavior that violates stale-while-revalidate semantics. ### The Problem When `re...
[ { "path": "packages/next/src/server/app-render/action-handler.ts", "patch": "@@ -160,7 +160,14 @@ function addRevalidationHeader(\n // TODO-APP: Currently paths are treated as tags, so the second element of the tuple\n // is always empty.\n \n- const isTagRevalidated = workStore.pendingRevalidatedTags?...
2026-01-04T16:30:32
rust-lang/rust
ed15a20647524f82c0f75a4666af002dfcc146d2
687b82e1e13eb8d1d592b86f10d9306e2b9999ab
fix: fill match arms on last comma and empty expr Example --- ```rust fn foo() { match Some(2) { Some(_) => ()$0, } } ``` **Before this PR** Assist not applicable **After this PR** ```rust fn foo() { match Some(2) { Some(_) => (), None => ${1:todo!()},$0 } } ```
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_missing_match_arms.rs", "patch": "@@ -245,14 +245,7 @@ pub(crate) fn add_missing_match_arms(acc: &mut Assists, ctx: &AssistContext<'_>)\n .arms()\n .filter(|arm| {\n if matches!(arm.pat...
2026-03-15T11:45:38
golang/go
e4d94842207a7f29fb473ecece2acdc5a2a207f7
d7a0c45642fef106b5443aa16937fd4bffb51d12
[dev.simd] cmd/compile: fix unstable output This CL fixed an error left by CL 718160. Change-Id: I442ea59bc1ff0dda2914d1858dd5ebe93e2818dc Reviewed-on: https://go-review.googlesource.com/c/go/+/720281 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <d...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -42,32 +42,50 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPBROADCASTW512,\n \t\tssa.OpAMD64VPBROADCASTD512,\n \t\tssa.OpAMD64VPBROADCASTQ512,\n-\t\tssa.OpAMD64VPMOVWB128,\n+\t\tssa.OpAMD64VPMOVWB128_128,\...
2025-11-13T17:07:16
facebook/react
453f5052569dafb52e82e875a8976cf348ed16d4
b3a95caf61bc716fb618997e6e9f3a0c8c9c8374
[DevTools] Prevent crash when starting consecutive profiling sessions (#32066) <!-- 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 su...
[ { "path": "packages/react-devtools-shared/src/devtools/ProfilerStore.js", "patch": "@@ -191,6 +191,8 @@ export default class ProfilerStore extends EventEmitter<{\n }\n \n startProfiling(): void {\n+ this.clear();\n+\n this._bridge.send('startProfiling', {\n recordChangeDescriptions: this._s...
2025-01-14T20:23:42
nodejs/node
3983ef6e0dcc3793ec016076927e59cb9d42db1d
0d14c954f9e774ff13263e9e1ffe3e115f695ed2
doc: fix typo in writing-test.md Corrects the misspelling of "optimial" to "optimal". PR-URL: https://github.com/nodejs/node/pull/59123 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Rafael Gonzaga <rafael....
[ { "path": "doc/contributing/writing-tests.md", "patch": "@@ -24,7 +24,7 @@ See [directory structure overview][] for outline of existing test and locations.\n \n ## How to write a good test\n \n-A good test should be written in a style that is optimial for debugging\n+A good test should be written in a style...
2025-07-21T11:17:30
electron/electron
c0e180758bc2701cc9efd6f72671559f25e57243
5817d27429827e162c00c0fad523ed309238256b
fix: don't crash Utility Processes on unhandled rejections (#45921) * fix: don't crash on unhandled rejections * Update docs/breaking-changes.md Co-authored-by: Niklas Wenzel <dev@nikwen.de> --------- Co-authored-by: Niklas Wenzel <dev@nikwen.de>
[ { "path": "docs/breaking-changes.md", "patch": "@@ -14,6 +14,19 @@ This document uses the following convention to categorize breaking changes:\n \n ## Planned Breaking API Changes (36.0)\n \n+### Utility Process unhandled rejection behavior change\n+\n+Utility Processes will now warn with an error message w...
2025-03-14T14:09:02
rust-lang/rust
7ec77fd4d5cb035b81a8477c50763c727ceb09c1
e0a8361373c88bd791b5b1335c6cbf83cd68e4d5
Fix invalid suggestion on `for-loops-over-fallibles`
[ { "path": "compiler/rustc_lint/src/for_loops_over_fallibles.rs", "patch": "@@ -77,6 +77,8 @@ impl<'tcx> LateLintPass<'tcx> for ForLoopsOverFallibles {\n };\n \n let sub = if let Some(recv) = extract_iterator_next_call(cx, arg)\n+ && recv.span.can_be_used_for_suggestions()\n+ ...
2026-03-15T11:29:39
vercel/next.js
69ae2c10e72e20df6b098197364d354d20376864
d4c73df3c76c123fcc5b807323c9625057dc65b8
fix: normalize CRLF line endings in jscodeshift tests on Windows (#88008) ## Summary Fixes flaky jscodeshift codemod tests on Windows CI (e.g., `next-async-request-api-dynamic-apis.test.js`, `built-in-next-font.test.js`, `new-link.test.js`). ### Problem Windows CI runners have `core.autocrlf=true` by default, which...
[ { "path": ".gitattributes", "patch": "@@ -1,3 +1,6 @@\n+# Enforce LF line endings for all text files (fixes Windows CRLF test flakiness)\n+* text=auto eol=lf\n+\n .github/actions/*/dist/** -text linguist-vendored\n packages/next/bundles/** -text linguist-vendored\n packages/next/compiled/** -text linguist-v...
2026-01-03T08:15:48
facebook/react
b3a95caf61bc716fb618997e6e9f3a0c8c9c8374
6099351c768670246e8b47e702545d03ddc97320
fix(eslint-plugin-react-compiler): support v9 context api (#32045) ## Summary This change fixes a gap in the plugin's support of eslint v9. In one place that it's using the `SourceCode` api, it's correctly considering v9's api. But in the other place where `SourceCode` is used, it's only using the legacy api, which w...
[ { "path": "compiler/packages/eslint-plugin-react-compiler/src/rules/ReactCompilerRule.ts", "patch": "@@ -121,7 +121,7 @@ const rule: Rule.RuleModule = {\n },\n create(context: Rule.RuleContext) {\n // Compat with older versions of eslint\n- const sourceCode = context.sourceCode?.text ?? context.g...
2025-01-13T18:49:31
golang/go
8e734ec954ed25e4c41e7d5a6f59ed1c1072ea83
592775ec7d8bbc99ee0a1ada56c4490c855f9385
go/ast: fix BasicLit.End position for raw strings containing \r This CL causes the parser to record in a new field, BasicLit.EndPos, the actual end position of each literal token, and to use it in BasicLit.End. Previously, the End was computed heuristically as Pos + len(Value). This heuristic is incorrect for a multil...
[ { "path": "api/next/76031.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/ast, type BasicLit struct, ValueEnd token.Pos #76031", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/ast/76031.md", "patch": "@@ -0,0 +1,5 @@\n+The new [BasicLit.Va...
2025-11-12T22:13:40
nodejs/node
0d14c954f9e774ff13263e9e1ffe3e115f695ed2
3b5a5f243a7969ad9abb8c0e1d7d21204504a040
doc: add new environment variables doc page add a new doc page for environment variables, this would be the one-stop place for all evnrioment variables informations (often referring to other doc pages) the main purpose of this page would also to provide a standard Node.js specification for `.env` files PR-URL: https...
[ { "path": "doc/api/cli.md", "patch": "@@ -842,7 +842,7 @@ node --entry-url 'file.ts?query#hash'\n node --entry-url 'data:text/javascript,console.log(\"Hello\")'\n ```\n \n-### `--env-file-if-exists=config`\n+### `--env-file-if-exists=file`\n \n <!-- YAML\n added: v22.9.0\n@@ -853,7 +853,7 @@ added: v22.9.0\...
2025-07-20T20:53:54
electron/electron
5817d27429827e162c00c0fad523ed309238256b
4812b4e6c249a6ff346d435fcc21d8e03bfe5073
fix: take Snapped status into account when showing a window (#46006)
[ { "path": "patches/chromium/.patches", "patch": "@@ -142,3 +142,4 @@ feat_separate_content_settings_callback_for_sync_and_async_clipboard.patch\n fix_win32_synchronous_spellcheck.patch\n fix_enable_wrap_iter_in_string_view_and_array.patch\n fix_linter_error.patch\n+fix_take_snapped_status_into_account_when_...
2025-03-14T14:07:27
vercel/next.js
942eb14d7c82886b1f896713e6629108669b3105
754770add2df895fea3a12b7939ebe0d34be562d
misc: fix type check log for CI envs (#87838) this fixes the case where we would not show the typescritp check duration in a CI/non interactive env <!-- 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 sect...
[ { "path": "packages/next/src/build/type-check.ts", "patch": "@@ -136,12 +136,12 @@ export async function startTypeChecking({\n \n if (typeCheckingSpinner) {\n typeCheckingSpinner.stop()\n-\n- createSpinner(\n- `Finished TypeScript${ignoreTypeScriptErrors ? ' config validation' : ''} in...
2025-12-29T11:50:02
facebook/react
af8532f25121a6b4060e3edd7186f0a58812d771
cabd8a0e700713900d9573edb162e608268d09ac
[compiler][ez] Patch compilationMode:infer object method edge case (#32055) Fix for https://github.com/facebook/react/issues/31180
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts", "patch": "@@ -992,9 +992,11 @@ function returnsNonNode(\n }\n }\n },\n+ // Skip traversing all nested functions and their return statements\n ArrowFunctionExpression: skipNestedFunctions(node),\n ...
2025-01-13T17:18:59
golang/go
590cf18dafcad9f39a3bf2ecf9f1b7578471eff8
c12c33709923907348837e8131122ec4c45d2c83
crypto/mlkem/mlkemtest: add derandomized Encapsulate768/1024 Fixes #73627 Change-Id: I6a6a69649927e9b1cdff910832084fdc04ff5bc2 Reviewed-on: https://go-review.googlesource.com/c/go/+/703795 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Filippo Valsorda <filippo@...
[ { "path": "api/next/73627.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg crypto/mlkem/mlkemtest, func Encapsulate1024(*mlkem.EncapsulationKey1024, []uint8) ([]uint8, []uint8, error) #73627\n+pkg crypto/mlkem/mlkemtest, func Encapsulate768(*mlkem.EncapsulationKey768, []uint8) ([]uint8, []uint8, error) #73627", "a...
2025-09-05T17:37:45
electron/electron
4812b4e6c249a6ff346d435fcc21d8e03bfe5073
7c0b7b417bd7efbda774f76eeb428693c429408c
fix: prevent title change for within page navigation (#45981) * fix: prevent title change for on page navigation * add back and forward testing * update Chromium comment * remove errant script tag
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2057,6 +2057,17 @@ void WebContents::DidFinishNavigation(\n if (is_main_frame) {\n Emit(\"did-navigate\", url, http_response_code, http_status_text);\n }\n+\n+ content::NavigationEntry* entry = navigation_hand...
2025-03-14T11:10:23
nodejs/node
29626f8fb84316815a97367d5cf2dac8bd2ca830
bf2384f224ad6f7d7fe7c6ce410b9fb9134c6887
test: update `startCLI` to set `--port=0` by default update the `startCLI` debugging testing utility to set by default the port to use to `0` (i.e. a random port) PR-URL: https://github.com/nodejs/node/pull/59042 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "test/common/debugger.js", "patch": "@@ -20,10 +20,14 @@ function isPreBreak(output) {\n return /Break on start/.test(output) && /1 \\(function \\(exports/.test(output);\n }\n \n-function startCLI(args, flags = [], spawnOpts = {}) {\n+function startCLI(args, flags = [], spawnOpts = {}, opts = { ...
2025-07-20T17:37:28
rust-lang/rust
c455f7ce52f4faf522fc6b73e714bd180fc93691
7849496c17c9ef086ee23c5d7a56c5bde9cbfe8b
Refactors to `unnecessary_{option,result}_map_or_else`: - When checking if a function is an identity function, try to use existing functionalities. - Some cases are no longer supported, but they were buggy
[ { "path": "clippy_lints/src/methods/mod.rs", "patch": "@@ -134,9 +134,8 @@ mod unnecessary_join;\n mod unnecessary_lazy_eval;\n mod unnecessary_literal_unwrap;\n mod unnecessary_map_or;\n+mod unnecessary_map_or_else;\n mod unnecessary_min_or_max;\n-mod unnecessary_option_map_or_else;\n-mod unnecessary_resul...
2026-03-15T09:07:25
vercel/next.js
c68d18c507a278079581f54b13b2c98c79dc8374
2446efeaa631e3262c714c72695d7db63d20b283
fix(examples): resolve hydration mismatch in blog-starter (#87703) ## What? Add `suppressHydrationWarning` to the `<html>` element in the blog-starter example. ## Why? The ThemeSwitcher script runs before React hydration and adds `dark` class and `data-mode` attribute to the `<html>` element, causing a hydration mism...
[ { "path": "examples/blog-starter/src/app/layout.tsx", "patch": "@@ -23,7 +23,7 @@ export default function RootLayout({\n children: React.ReactNode;\n }>) {\n return (\n- <html lang=\"en\">\n+ <html lang=\"en\" suppressHydrationWarning>\n <head>\n <link\n rel=\"apple-touch-i...
2025-12-23T21:02:35
facebook/react
0bf1f39ec6906c666011c0c57aa56aa34a262daf
056073de4c50b65807cd77ae6715c9ea8ee64277
View Transition Refs (#32038) This adds refs to View Transition that can resolve to an instance of: ```js type ViewTransitionRef = { name: string, group: Animatable, imagePair: Animatable, old: Animatable, new: Animatable, } ``` Animatable is a type that has `animate(keyframes, options)` and `getAnimations...
[ { "path": ".eslintrc.js", "patch": "@@ -589,6 +589,11 @@ module.exports = {\n WheelEventHandler: 'readonly',\n FinalizationRegistry: 'readonly',\n Omit: 'readonly',\n+ Keyframe: 'readonly',\n+ PropertyIndexedKeyframes: 'readonly',\n+ KeyframeAnimationOptions: 'readonly',\n+ GetAnimat...
2025-01-10T16:51:37
golang/go
c12c33709923907348837e8131122ec4c45d2c83
bc159638135e751a291fe6753fc8c8c3d61be863
cmd/compile: teach prove about subtract idioms For v = x-y: if y >= 0 then v <= x if y <= x then v >= 0 (With appropriate guards against overflow/underflow.) Fixes #76304 Change-Id: I8f8f1254156c347fa97802bd057a8379676720ae Reviewed-on: https://go-review.googlesource.com/c/go/+/720740 Reviewed-by: Mark Free...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -1945,6 +1945,7 @@ func (ft *factsTable) flowLimit(v *Value) {\n \t\tft.newLimit(v, a.sub(b, uint(v.Type.Size())*8))\n \t\tft.detectMod(v)\n \t\tft.detectSliceLenRelation(v)\n+\t\tft.detectSubRelations(v)\n \tcase OpNeg64, OpNeg32, OpNeg16, OpN...
2025-11-14T23:26:36
nodejs/node
bf2384f224ad6f7d7fe7c6ce410b9fb9134c6887
ab694d566138586e9a7b41e80896e86e404eefda
fs: fix return value of fs APIs PR-URL: https://github.com/nodejs/node/pull/58996 Fixes: https://github.com/nodejs/node/issues/58747 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "src/node_file-inl.h", "patch": "@@ -287,21 +287,27 @@ FSReqBase* GetReqWrap(const v8::FunctionCallbackInfo<v8::Value>& args,\n int index,\n bool use_bigint) {\n v8::Local<v8::Value> value = args[index];\n+ FSReqBase* result = nullptr;\n if (value->...
2025-07-20T06:51:26
electron/electron
7c0b7b417bd7efbda774f76eeb428693c429408c
785fe5f3b631c9d451b1f787db1e524f648198a2
fix: emit `context-menu` event in Windows draggable regions (#45851) fix: emit context-menu event in Windows draggable regions
[ { "path": "shell/browser/native_window_views_win.cc", "patch": "@@ -10,6 +10,7 @@\n #include \"base/win/scoped_handle.h\"\n #include \"base/win/windows_version.h\"\n #include \"content/public/browser/browser_accessibility_state.h\"\n+#include \"shell/browser/api/electron_api_web_contents.h\"\n #include \"sh...
2025-03-14T09:29:29
vercel/next.js
2446efeaa631e3262c714c72695d7db63d20b283
31b62520366aefef9d6800cd519157a16f958052
fix: Change Dockerfile.bun to use group/useradd instead of addgroup/user (#87443) <!-- 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'r...
[ { "path": "examples/with-docker/Dockerfile.bun", "patch": "@@ -37,8 +37,8 @@ ENV NODE_ENV=production \\\n PORT=3000 \\\n HOSTNAME=\"0.0.0.0\"\n \n-RUN addgroup --system --gid 1001 nodejs && \\\n- adduser --system --uid 1001 nextjs\n+RUN groupadd --system --gid 1001 nodejs && \\\n+ useradd --sy...
2025-12-23T17:34:44
facebook/react
d2a1b8854d5c4bed713e7e732b598d88e3cc4858
f2813ee33d37e20029c6698f34946d7f08eb7a95
fix[DevTools/Tree]: only scroll to item when panel is visible (#32018) Stacked on https://github.com/facebook/react/pull/31968. See commit on top. Fixes an issue with bank tree view, when we are scrolling to an item while syncing user DOM selection. This should only have an effect on browser extension. Added eve...
[ { "path": "packages/react-devtools-extensions/src/main/index.js", "patch": "@@ -206,8 +206,12 @@ function createComponentsPanel() {\n }\n });\n \n- // TODO: we should listen to createdPanel.onHidden to unmount some listeners\n- // and potentially stop highlighting\n+ createdPane...
2025-01-09T18:38:49
golang/go
1297fae7081a3116d2097ce7cfcc0f89ba2cf0fc
65c09eafdf316ef691f0f8eccbf860d2ef5f7c70
go/token: add (*File).End method Also, use it in a number of places. + test, api, relnote Fixes #75849 Change-Id: I44acf5b8190b964fd3975009aa407d7c82cee19b Reviewed-on: https://go-review.googlesource.com/c/go/+/720061 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed...
[ { "path": "api/next/75849.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/token, method (*File) End() Pos #75849", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/token/75849.md", "patch": "@@ -0,0 +1 @@\n+The new [File.End] convenience met...
2025-11-12T23:17:35
electron/electron
4a28e60e89919a569a24f1d37e0b0ad8ebc26071
a90d50e13f71b2371868b7b545e0ba28b38ca392
fix: package import existence verification (#45997)
[ { "path": "patches/node/fix_allow_passing_fileexists_fn_to_legacymainresolve.patch", "patch": "@@ -53,7 +53,7 @@ index 2879e5cf541fb4d226cfd7cc0fe367ca448fb926..03082f0ec4f91382933eec48e77331cd\n const maybeMain = resolvedOption <= legacyMainResolveExtensionsIndexes.kResolvedByMainIndexNode ?\n pack...
2025-03-13T19:51:43
nodejs/node
ab694d566138586e9a7b41e80896e86e404eefda
c8d5b394e44733aa3938eba01c73a3c0665d82e3
src,test: fix config file parsing for flags defaulted to true PR-URL: https://github.com/nodejs/node/pull/59110 Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> R...
[ { "path": "src/node_config_file.cc", "patch": "@@ -55,6 +55,10 @@ ParseResult ConfigReader::ProcessOptionValue(\n if (result) {\n // If the value is true, we need to set the flag\n output->push_back(option_name);\n+ } else {\n+ // Ensure negation is made putting the \"--no-...
2025-07-20T04:47:16
facebook/react
f2813ee33d37e20029c6698f34946d7f08eb7a95
d6345482430952306fc83e62d4c14e2622fb1752
[DevTools] feat[Tree]: set initial scroll offset when inspected element index is set (#31968) Stacked on https://github.com/facebook/react/pull/31956. See [commit on top](https://github.com/facebook/react/pull/31968/commits/ecb8df4175342cde7669cd4a6b008b3782eb5b61). Use `initialScrollOffset` prop for `FixedSizeLi...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/Tree.js", "patch": "@@ -47,6 +47,22 @@ export type ItemData = {\n treeFocused: boolean,\n };\n \n+function calculateInitialScrollOffset(\n+ inspectedElementIndex: number | null,\n+ elementHeight: number,\n+): number | void {\n+ if ...
2025-01-09T18:21:55
electron/electron
a90d50e13f71b2371868b7b545e0ba28b38ca392
962d8b325aa2ace6a72f0606ddc2e1ac65ee0907
fix: don't crash Web Workers on unhandled rejections (#45992)
[ { "path": "shell/renderer/web_worker_observer.cc", "patch": "@@ -85,6 +85,9 @@ void WebWorkerObserver::WorkerScriptReadyForEvaluation(\n }\n }\n \n+ // We do not want to crash Web Workers on unhandled rejections.\n+ env->options()->unhandled_rejections = \"warn-with-error-code\";\n+\n // Add Elect...
2025-03-13T18:09:23