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
facebook/react
d55420c430cee6338fcc63ad663cb4b778af55de
d0bb1fed61cba004f8014337488b3e8c398ab880
Allow prefixed hooks for compiling bundled code We're doing some internal benchmarking using a lightweight bundler that @pieterv wrote for experimentation purposes. It's designed to fully preserve Flow type annotations so we can experiment with type-driven compilation and test out what benefits we might get from "...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -376,11 +376,12 @@ function shouldVisitNode(fn: BabelFn, pass: CompilerPass): boolean {\n return false;\n }\n case \"infer\": {\n+ const hookPattern = pass.opts.environment?.hookPattern ?? null...
2024-01-31T03:11:17
nodejs/node
60b2754c87a0b4bed96b38d1f920ab41ef85ab9e
e55587e39835f493c835e09b2a45244f4fbdd7a3
build: fix mac build error of c-ares under GN PR-URL: https://github.com/nodejs/node/pull/53687 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "deps/cares/unofficial.gni", "patch": "@@ -62,7 +62,7 @@ template(\"cares_gn_build\") {\n sources += [ \"config/linux/ares_config.h\" ]\n }\n if (is_mac) {\n- sources += [ \"config/darwin/ares_config.h\" ]\n+ sources += gypi_values.cares_sources_mac\n }\n \n if (is_...
2024-07-05T00:51:00
rust-lang/rust
0bf2d005fdf653d61c8bb0a447679afa494e3972
08a4ce529f4ea17ad1c0fa2e39ca1f5e7cd047b6
fix: updated slice tests to pass for big endian hosts
[ { "path": "tests/codegen-llvm/issues/multiple-option-or-permutations.rs", "patch": "@@ -70,9 +70,9 @@ pub fn if_some_u8(opta: Option<u8>, optb: Option<u8>) -> Option<u8> {\n #[no_mangle]\n pub fn or_match_slice_u8(opta: Option<[u8; 1]>, optb: Option<[u8; 1]>) -> Option<[u8; 1]> {\n // CHECK: start:\n- ...
2026-01-28T12:12:00
golang/go
c386ed107e65f495acb6aacb0efcaade27da6a15
c558f017ef2a98fd625107d36271e184ae29c626
cmd/internal/obj/riscv: fix the encoding for REV8 and ORCB The instructions are currently encoded and validated using an iIIEncoding which is incorrect as these instructions do not take an immediate operand. Encode them instead using an rIIEncoding as is done for the other two register argument bitmanip instructions....
[ { "path": "src/cmd/internal/obj/riscv/obj.go", "patch": "@@ -2094,8 +2094,8 @@ var instructions = [ALAST & obj.AMask]instructionData{\n \tARORI & obj.AMask: {enc: iIIEncoding, ternary: true},\n \tARORIW & obj.AMask: {enc: iIIEncoding, ternary: true},\n \tARORW & obj.AMask: {enc: rIIIEncoding, immForm: ARO...
2024-12-11T17:09:32
facebook/react
d0bb1fed61cba004f8014337488b3e8c398ab880
69733c5ad8cfb66204c53a71eb9f2545ba937a73
[be] Explicit todo diagnostics for hoisting --- Currently, we error on non-hoisted identifiers in EnterSSA with a somewhat cryptic message. This PR changes `BuildHIR` hoisting logic to find ALL hoistable bindings, then error when we try to lower hoisting for unsupported declaration types. Two benefits to this ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -333,14 +333,9 @@ function lowerStatement(\n const hoistableIdentifiers: Set<t.Identifier> = new Set();\n \n for (const [, binding] of Object.entries(stmt.scope.bindings)) {\n- // TODO: support other...
2024-01-31T15:59:25
electron/electron
c326b0068e34f2cfebd4b5a1b86de2114461df51
c01dff8d8989c6015e4ab78f629451b6a372f666
fix: recommended `node-gyp` version in `node.h` error (#37829) fix: recommended node-gyp version in node.h error In https://github.com/electron/electron/blob/main/docs/tutorial/using-native-node-modules.md#using-npm, we recommend setting the `npm_config_disturl` variable but doing that does not work on node-gyp ...
[ { "path": "patches/node/allow_embedder_to_control_codegenerationfromstringscallback.patch", "patch": "@@ -30,7 +30,7 @@ index a994221445471b92d12ed9cb3bef9ffb70670ab6..d6c6fd9c257cb51ba387c4b4d07a24ff\n Mutex::ScopedLock lock(node::per_process::cli_options_mutex);\n if (per_process::cli_options->get_p...
2023-04-11T11:26:26
nodejs/node
e55587e39835f493c835e09b2a45244f4fbdd7a3
ba3aedc2083eaaaffeae87079091a67098b95901
test: un-set inspector-async-hook-setup-at-inspect-brk as flaky There was a commit that got merged that should have fixed the issue ref: https://github.com/nodejs/node/issues/50222#issuecomment-1962680957 PR-URL: https://github.com/nodejs/node/pull/53692 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: James M...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -101,10 +101,6 @@ test-http-pipeline-flood: SKIP\n # https://github.com/nodejs/node/issues/39655\n test-cluster-primary-error: PASS, FLAKY\n \n-[$arch==s390x]\n-# https://github.com/nodejs/node/issues/50222\n-test-inspector-async-hook-setup-at-inspect-...
2024-07-04T20:45:42
vercel/next.js
e358e301dc00e4d18e00da4bb80e53c9087af423
c66739e60fbd3d119e18ae00354e2dfcbb2a50bd
Format Turbopack NFT tests (#81199) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving ...
[ { "path": ".prettierignore", "patch": "@@ -59,7 +59,6 @@ test/e2e/async-modules/amp-validator-wasm.js\n # turbopack crates, disable for some tests and precompiled dependencies.\n /turbopack/crates/*/js/src/compiled\n /turbopack/crates/turbopack/bench.json\n-/turbopack/crates/turbopack/tests\n /turbopack/cra...
2025-07-03T05:19:33
golang/go
c558f017ef2a98fd625107d36271e184ae29c626
a20d583bb99cb2715dd412738c3c5f56e8700158
runtime/race: fix reversed conditional in test for fatal map access Change-Id: Icc4d90355d8af07fdec852b2adf720f7cfd1edd6 Reviewed-on: https://go-review.googlesource.com/c/go/+/659735 Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com...
[ { "path": "src/runtime/race/race_test.go", "patch": "@@ -193,7 +193,7 @@ func runTests(t *testing.T) ([]byte, error) {\n \t// A crash in the map concurrent access detector will cause other tests not to run.\n \t// Perhaps we should run tests with concurrent map access separately to avoid this,\n \t// but fo...
2025-03-20T22:03:43
facebook/react
69733c5ad8cfb66204c53a71eb9f2545ba937a73
c3e9cba0bb71c1fa315d75272c759081faad3599
[hoisting][patch] use Babel identifier apis in BuildHIR hoisting logic --- Three functional changes: - Instead of visiting all identifier references, explicitly traverse only function decls/exprs. This avoids bugs like accidentally hoisting inline references ```js // input const x = identity(y); const y...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -5,7 +5,7 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import { Binding, NodePath, Scope } from \"@babel/traverse\";\n+import { NodePath, Scope } from \"@babel/traverse\";\n import * as t ...
2024-01-31T15:59:25
nodejs/node
f1ac7df535e9e600929c04c4b5d92e0fcf1c2d5e
ce2faef3a70ae1b8336b2628b7f01b07d5402fbc
fs: fix typings PR-URL: https://github.com/nodejs/node/pull/53626 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/fs.js", "patch": "@@ -255,7 +255,7 @@ function exists(path, callback) {\n validateFunction(callback, 'cb');\n \n function suppressedCallback(err) {\n- callback(err ? false : true);\n+ callback(!err);\n }\n \n try {\n@@ -751,8 +751,8 @@ function readSync(fd, buffer, offsetOrOptio...
2024-07-04T11:04:37
electron/electron
c01dff8d8989c6015e4ab78f629451b6a372f666
c65632d4045fbbe4b37421b27f544e591cc1ef38
fix: exceptions during function/promise result conversions live in calling world (#37904)
[ { "path": "shell/renderer/api/electron_api_context_bridge.cc", "patch": "@@ -241,10 +241,29 @@ v8::MaybeLocal<v8::Value> PassValueToOtherContext(\n global_destination_context.IsEmpty())\n return;\n context_bridge::ObjectCache object_cache;\n- auto val = PassValue...
2023-04-11T09:57:48
vercel/next.js
c66739e60fbd3d119e18ae00354e2dfcbb2a50bd
2db64b485eb684212109a8e464382522c36db70a
Fix if condition in retry workflow (#81211) Fixes: https://github.com/vercel/next.js/actions/runs/16040442318
[ { "path": ".github/workflows/retry_deploy_test.yml", "patch": "@@ -18,7 +18,7 @@ jobs:\n # Retry the test-e2e-deploy-release workflow up to 2 times\n if: >-\n ${{ \n- github.event.workflow_run.display_title == 'test-e2e-deploy canary'\n+ github.event.workflow_run.display_title ==...
2025-07-03T03:07:42
golang/go
a20d583bb99cb2715dd412738c3c5f56e8700158
2ffda87f2dce71024f72ccff32cbfe29ee676bf8
cmd/compile/internal/abi: fix ComputePadding Fixes the ComputePadding calculation to take into account the padding added for the current offset. This fixes an issue where padding can be added incorrectly for certain structs. Related: https://github.com/go-delve/delve/issues/3923 Fixes #72053 Change-Id: I27762979916...
[ { "path": "src/cmd/compile/internal/abi/abiutils.go", "patch": "@@ -673,10 +673,9 @@ func (pa *ABIParamAssignment) ComputePadding(storage []uint64) []uint64 {\n \t\tpanic(\"internal error\")\n \t}\n \toffsets, _ := appendParamOffsets([]int64{}, 0, pa.Type)\n-\toff := int64(0)\n \tfor idx, t := range types {...
2025-03-19T01:54:41
rust-lang/rust
d3ec6a351a027a71bdfbd36429288c1357ccdbea
c69e1a04db484db8974904e6f8eb1e8df21a39ba
fix: add continue
[ { "path": "compiler/rustc_borrowck/src/diagnostics/region_errors.rs", "patch": "@@ -872,6 +872,7 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n for alias_ty in alias_tys {\n if alias_ty.span.desugaring_kind().is_some() {\n // Skip `async` desugari...
2026-02-08T03:40:56
facebook/react
407faf5a69955f23f3549cff77b1a37199daa95f
91212b09ed53c8d5a0f414ed93972681caa5ac7e
Remove ReactDOM.render tests in ReactDOMConsoleErrorReporting-test (#28053) Each it block here was duplicated to cover ReactDOM.render and ReactDOMClient.createRoot. Here we delete the ReactDOM.render coverage. Co-authored-by: Jack Pope <jackpope@meta.com>
[ { "path": "packages/react-dom/src/__tests__/ReactDOMConsoleErrorReporting-test.js", "patch": "@@ -10,7 +10,6 @@\n describe('ReactDOMConsoleErrorReporting', () => {\n let act;\n let React;\n- let ReactDOM;\n let ReactDOMClient;\n \n let ErrorBoundary;\n@@ -23,7 +22,6 @@ describe('ReactDOMConsoleErro...
2024-01-27T00:29:45
electron/electron
c65632d4045fbbe4b37421b27f544e591cc1ef38
adb1172066a72a22e7e1e83a04a3504b964f0cbb
fix: broken buttons in PDF viewer (#37856)
[ { "path": "shell/browser/extensions/api/resources_private/resources_private_api.cc", "patch": "@@ -9,6 +9,7 @@\n \n #include \"base/values.h\"\n #include \"chrome/browser/browser_process.h\"\n+#include \"chrome/browser/pdf/pdf_extension_util.h\"\n #include \"chrome/common/extensions/api/resources_private.h\...
2023-04-11T06:30:36
nodejs/node
056f055f38b0e89dd9ca335a911065cef9b6f789
8f71a1b248a485caf11e6855d2f88e0d31d966b9
2024-07-02, Version 22.4.0 (Current) Notable changes: deps,lib,src: * (SEMVER-MINOR) add experimental web storage (Colin Ihrig) https://github.com/nodejs/node/pull/52435 doc: * move `node --run` stability to rc (Yagiz Nizipli) https://github.com/nodejs/node/pull/53433 * mark WebSocket as stable (Matthew Aitken)...
[ { "path": "CHANGELOG.md", "patch": "@@ -38,7 +38,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.3.0\">22.3.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.4.0\">22.4.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V22.md#22.3.0\">2...
2024-06-25T11:54:15
golang/go
686128a9f3f112c2e103622190673656811dee5f
93fe8c0415a10d26143a3ec1349937b2d94d0ebd
runtime/race: don't complain about unrun tests when fatal map access happens Fixes #72964 Change-Id: I42c6994fec3b21774bddd1d4d65dc832d9149446 Reviewed-on: https://go-review.googlesource.com/c/go/+/659697 Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts....
[ { "path": "src/runtime/race/race_test.go", "patch": "@@ -190,6 +190,12 @@ func runTests(t *testing.T) ([]byte, error) {\n \t\t// in the map concurrent access detector).\n \t\treturn out, errors.New(\"runtime fatal error\")\n \t}\n+\t// A crash in the map concurrent access detector will cause other tests not...
2025-03-20T20:33:49
vercel/next.js
4cf90059c3ca91e8b2a4f718c98972b48aa08c2e
ac393c2658ea12a579a5c89d903696d104e3a6fc
Reuse resolvedPathname from prepare (#81194) This applies the fixed `resolvedPathname` from https://github.com/vercel/next.js/pull/81144 to the other route handlers that were trying to build this value as well so we use single source of truth. Validated against our deploy tests https://github.com/vercel/vercel/action...
[ { "path": "packages/next/src/build/templates/app-route.ts", "patch": "@@ -21,7 +21,6 @@ import {\n fromNodeOutgoingHttpHeaders,\n toNodeOutgoingHttpHeaders,\n } from '../../server/web/utils'\n-import { decodePathParams } from '../../server/lib/router-utils/decode-path-params'\n import { getCacheControlH...
2025-07-03T02:21:09
rust-lang/rust
7c5ea7ffd648cb1170510a7b50b0294a30891ffd
8c5605e130081cbff57f505c56466538039346b1
Fix bound var resolution for trait aliases Handle DefKind::TraitAlias in resolve_bound_vars so that associated item constraints and return type notation work through trait aliases.
[ { "path": "compiler/rustc_hir_analysis/src/collect/resolve_bound_vars.rs", "patch": "@@ -1695,7 +1695,8 @@ impl<'a, 'tcx> BoundVarContext<'a, 'tcx> {\n | DefKind::Union\n | DefKind::Enum\n | DefKind::TyAlias\n- | DefKind::Trait,\n+ ...
2026-02-07T17:57:53
facebook/react
766eac46bb52bda28f87c11740214a4444ca881b
37bdff675c28e247333ffe35055534ad94941e8c
Remove outdated enableSchedulerDebugging flag (#28101) This flag was moved to the scheduler feature flags, so these flags don't do anything.
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -34,11 +34,6 @@ export const enableClientRenderFallbackOnTextMismatch = true;\n export const enableFormActions = true;\n export const enableAsyncActions = true;\n \n-// Not sure if www still uses this. We don't have a replacement but whatever we...
2024-01-26T21:53:01
electron/electron
3c0c4d5c278e575691f9376483dc4f60a287c467
69586684484c05a0078e3b916239186a5c3d749a
fix: menus on Linux after window modification (#37798) * fix: menus on Linux after window modification * test: don't run on CI
[ { "path": "patches/chromium/.patches", "patch": "@@ -127,3 +127,4 @@ chore_patch_out_profile_methods_in_profile_selections_cc.patch\n add_gin_converter_support_for_arraybufferview.patch\n chore_defer_usb_service_getdevices_request_until_usb_service_is.patch\n revert_roll_clang_rust_llvmorg-16-init-17653-g39...
2023-04-11T06:17:45
nodejs/node
dda30f972ad8c304800edab3cba5d3a8533ee68a
c1dc3072213c49a57493a4d4396761ed921617ae
doc: fix module customization hook examples When running these examples, `node` fails to return as this `MessagePort` keeps the event loop active in the main thread unless it is `unref()`ed. Fixes: https://github.com/nodejs/node/issues/52846 PR-URL: https://github.com/nodejs/node/pull/53637 Reviewed-By: Antoine du Ha...
[ { "path": "doc/api/module.md", "patch": "@@ -327,6 +327,7 @@ const { port1, port2 } = new MessageChannel();\n port1.on('message', (msg) => {\n console.log(msg);\n });\n+port1.unref();\n \n register('./my-hooks.mjs', {\n parentURL: import.meta.url,\n@@ -347,6 +348,7 @@ const { port1, port2 } = new Messag...
2024-07-01T13:34:35
vercel/next.js
084825c2a548634cf660e98d8631d841f6b995a7
799b1be6652438dfd6ec71b25d51ac784f492aca
[segment explorer] fix route path in top navbar (#81195) * Remove the `app` prefix in top bar of route info as we only need to know the pathname. It's also removed in the new design * `state.page` was only passed for panel ui but missing in segment explorer of dock indicator
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/dev-tools-indicator.tsx", "patch": "@@ -64,6 +64,7 @@ export function DevToolsIndicator({\n isTurbopack={!!process.env.TURBOPACK}\n disabled={state.disableDevIndicator || !isDevToolsIndicatorVisible}\n ...
2025-07-02T23:10:08
golang/go
93fe8c0415a10d26143a3ec1349937b2d94d0ebd
b613d21ffd17c1dda480b205f0cce5031bdbd5dd
strings: don't assert on Replace's allocs for ASAN CL 657935 caused failures on the ASAN builder. Under ASAN, do not assert on the number of allocations incurred by Replace. Fixes #72973 Change-Id: I61536be6def6f2489d2a026c943c6e232865b723 GitHub-Last-Rev: 4aee3c2560c9a6fa6ba7c1950acc2172a7cfffe4 GitHub-Pull-Reques...
[ { "path": "src/strings/strings_test.go", "patch": "@@ -7,6 +7,7 @@ package strings_test\n import (\n \t\"bytes\"\n \t\"fmt\"\n+\t\"internal/asan\"\n \t\"io\"\n \t\"iter\"\n \t\"math\"\n@@ -1473,9 +1474,11 @@ var ReplaceTests = []struct {\n \n func TestReplace(t *testing.T) {\n \tfor _, tt := range ReplaceTe...
2025-03-20T20:33:46
facebook/react
788182f7099cf927a454ff0c37d25d94b4f0e895
4ec05660a2f56aa47d9d82eaeeb8a34df56f8dbc
[patch] Patch edge case: RenameVariables should visit lvalues --- This is likely a rare edge case, but it does produce a parse error. RenameVariables visits all identifier references to ensure we don't end up producing conflicting variable declarations, using a stack of block scopes to check "in scope variables...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/RenameVariables.ts", "patch": "@@ -16,6 +16,7 @@ import {\n ReactiveInstruction,\n ReactiveScopeBlock,\n } from \"../HIR/HIR\";\n+import { eachInstructionLValue } from \"../HIR/visitors\";\n import {\n ReactiveFunctionVisitor,\n...
2024-01-26T20:29:09
electron/electron
69586684484c05a0078e3b916239186a5c3d749a
1e206deec3ef142460c780307752a84782f9baed
fix: exceptions in nested conversions live in the target world (#37895)
[ { "path": "shell/renderer/api/electron_api_context_bridge.cc", "patch": "@@ -241,10 +241,10 @@ v8::MaybeLocal<v8::Value> PassValueToOtherContext(\n global_destination_context.IsEmpty())\n return;\n context_bridge::ObjectCache object_cache;\n- auto val =\n- ...
2023-04-10T21:58:27
nodejs/node
2e5fc8aa1aaf18bdee227dfc03380e9e60dd0cd5
d4a40fd1f77e4a3a7dff3b4cf654ce8557198846
doc: fix doc for correct usage with plan & TestContext Fixed section in the doc that describes a test that uses the ⁠plan feature in the test-runner. However, the test in this example fails. The fix use (Textcontext) and reduce the plan number to 1 since we have 1 assertion. PR-URL: https://github.com/nodejs/node/pu...
[ { "path": "doc/api/test.md", "patch": "@@ -3423,9 +3423,9 @@ behaves in the same fashion as the top level [`test()`][] function.\n test('top level test', async (t) => {\n await t.test(\n 'This is a subtest',\n- { only: false, skip: false, concurrency: 1, todo: false, plan: 4 },\n+ { only: false,...
2024-06-29T19:20:35
golang/go
b613d21ffd17c1dda480b205f0cce5031bdbd5dd
ba50de84299667dcaa2f4e6663078340bbae8c67
testing: allow manual timer control in testing.B.Loop Fixes #72922 Change-Id: I56610d2d11d151a8f95b6434bbedbfcd5c11c317 Reviewed-on: https://go-review.googlesource.com/c/go/+/658975 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Commit-Queue: Junyang Shao <shaojunyang@google...
[ { "path": "src/testing/benchmark.go", "patch": "@@ -368,16 +368,16 @@ func (b *B) ReportMetric(n float64, unit string) {\n }\n \n func (b *B) stopOrScaleBLoop() bool {\n-\ttimeElapsed := highPrecisionTimeSince(b.start)\n-\tif timeElapsed >= b.benchTime.d {\n+\tt := b.Elapsed()\n+\tif t >= b.benchTime.d {\n ...
2025-03-18T21:13:23
vercel/next.js
799b1be6652438dfd6ec71b25d51ac784f492aca
6111192f4ad08c79856497942d48028a604dc0e5
cleanup(turbopack) Show users an error message when Webpack loaders have a glob in only the extension (#81084) This PR adds validation for webpack loader rules in Next.js configuration to prevent a common issue where users define wildcard extensions without corresponding wildcard patterns in the `as` option. This situ...
[ { "path": "crates/next-core/src/next_config.rs", "patch": "@@ -9,11 +9,15 @@ use turbo_tasks::{\n trace::TraceRawVcs,\n };\n use turbo_tasks_env::EnvMap;\n+use turbo_tasks_fs::FileSystemPath;\n use turbopack::module_options::{\n ConditionItem, ConditionPath, LoaderRuleItem, OptionWebpackRules,\n ...
2025-07-02T20:39:14
rust-lang/rust
236dac8d0e41ae9d4e31908c9a0a3fdf2789f5f6
15e0ce9d69340dc83fd8a37ba2c1596354bea6bc
fix: remove unnecessary trailing commas in format strings This PR makes the new comma-removing lint PR less noisy, allowing it focus only on the new functionality
[ { "path": "clippy_dev/src/new_lint.rs", "patch": "@@ -167,9 +167,9 @@ fn add_lint(lint: &LintData<'_>, enable_msrv: bool) -> io::Result<()> {\n let camel_name = to_camel_case(lint.name);\n \n let new_lint = if enable_msrv {\n- format!(\"Box::new(move |{ctor_arg}| Box::new({module_name}::{came...
2026-02-07T19:02:33
facebook/react
9aef5d225b489ceeba753c5c86b236259baf816c
60f190a55948a7512d4e2a336f03b45fd38d6a80
Use modern rendering APIs for attribute-behavior fixture (#27883) The attribute-behavior fixture now uses `createRoot().render()` and `renderToReadableStream` instead of depdrecated APIs. This revealed some changes to the snapshots that I annotated for discussion. I also added some new tests related to upcomin...
[ { "path": "fixtures/attribute-behavior/.gitignore", "patch": "@@ -10,7 +10,7 @@\n /build\n /public/react.development.js\n /public/react-dom.development.js\n-/public/react-dom-server-legacy.browser.development.js\n+/public/react-dom-server.browser.development.js\n \n # misc\n .DS_Store", "additions": 1, ...
2024-01-26T18:03:42
golang/go
ba50de84299667dcaa2f4e6663078340bbae8c67
9dc572eab55b085b61877ecd4d7cc492e34dc3ab
os: skip atime checks in TestRootChtimes on plan9 Plan 9 doesn't permit setting arbitrary atimes. Fixes #72957 Change-Id: Ia4e14c75ed7dcdefd4669c0c21884d5ead9ab2fb Reviewed-on: https://go-review.googlesource.com/c/go/+/659615 Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Damien Neil <dneil@google.com>...
[ { "path": "src/os/root_test.go", "patch": "@@ -427,6 +427,9 @@ func TestRootChmod(t *testing.T) {\n }\n \n func TestRootChtimes(t *testing.T) {\n+\t// Don't check atimes if the fs is mounted noatime,\n+\t// or on Plan 9 which does not permit changing atimes to arbitrary values.\n+\tcheckAtimes := !hasNoatim...
2025-03-20T16:30:19
electron/electron
e8c87859c461ae2a541cb2625f0281066a9b3659
83e186fdbc99b3c999b8788eada9be24a51924bf
fix: showAboutPanel also on linux (#37828) showAboutPanel also on linux
[ { "path": "lib/browser/api/menu-item-roles.ts", "patch": "@@ -26,7 +26,7 @@ export const roleList: Record<RoleId, Role> = {\n get label () {\n return isLinux ? 'About' : `About ${app.name}`;\n },\n- ...(isWindows && { appMethod: () => app.showAboutPanel() })\n+ ...((isWindows || isLinux)...
2023-04-06T18:50:24
vercel/next.js
5dac44820cdb54bcffeb31fdf534bed75db93649
cd3f86815f3ffefff8bb2143a7339655fd93621a
Turbopack: fix and finish immutable tasks (#80996) ### What? Fixes the problems with the implementation of immutable tasks, adds tests and debug asserts to ensure it's working. * There was some confusion between children and dependencies. Children are not involved with immutablility, only dependencies are. * Opt out...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -431,7 +431,7 @@ impl ProjectContainer {\n \n #[turbo_tasks::value_impl]\n impl ProjectContainer {\n- #[turbo_tasks::function(invalidator)]\n+ #[turbo_tasks::function]\n pub async fn project(&self) -> Result<Vc<Project>> {\n let env_...
2025-07-02T13:18:41
golang/go
665af869920432879629c1d64cf59f129942dcd6
84e0061460d7c9a624a74e13f0212f443b079531
cmd/go: fail go clean command when failed to find go cache directory Currently, if computing of the go cache directory fails it does not expose the error. Commands like go clean, exec, modindex that use go cache directory continue execution producing incorrect or no result. This patch adds an error to the return value...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2343,7 +2343,7 @@\n //\t\tThe directory where 'go install' will install a command.\n //\tGOCACHE\n //\t\tThe directory where the go command will store cached\n-//\t\tinformation for reuse in future builds.\n+//\t\tinformation for reuse in future builds. Must ...
2025-03-18T20:02:03
facebook/react
60f190a55948a7512d4e2a336f03b45fd38d6a80
51c380d6ed303a54dad7b55258dd7aa8c6bb3fe1
Capture React.startTransition errors and pass to reportError (#28111) To make React.startTransition more consistent with the hook form of startTransition, we capture errors thrown by the scope function and pass them to the global reportError function. (This is also what we do as a default for onRecoverableError.) ...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -1983,15 +1983,14 @@ function runFormStateAction<S, P>(\n }\n try {\n const returnValue = action(prevState, payload);\n- notifyTransitionCallbacks(currentTransition, returnValue);\n-\n if (\n returnValue !== null...
2024-01-26T17:10:33
electron/electron
251e567eff35440e6a0e3812ab20a7bdc21e3065
6bfef67aaeae9613e85b3d5d3745da763b3ef7c4
fix: don't emit `did-fail-load` for MediaDocuments (#37824) * fix: don't emit did-fail-load for MediaDocuments * spec: add test
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -64,6 +64,7 @@\n #include \"gin/handle.h\"\n #include \"gin/object_template_builder.h\"\n #include \"gin/wrappable.h\"\n+#include \"media/base/mime_util.h\"\n #include \"mojo/public/cpp/bindings/associated_remote.h\"\n #include \"mojo/...
2023-04-06T08:23:34
rust-lang/rust
57650eeb9dd4d4af3cf265c360864716b2badc4f
06cafcbe08b1b0d4235685abd5f817ae1979cefa
fix: don't suggest replacing `env!("CARGO_BIN_NAME")` with itself
[ { "path": "compiler/rustc_builtin_macros/src/env.rs", "patch": "@@ -140,18 +140,21 @@ pub(crate) fn expand_env<'cx>(\n unreachable!(\"`expr_to_string` ensures this is a string lit\")\n };\n \n+ let var = var.as_str();\n let guar = match err {\n ...
2026-02-07T16:24:16
vercel/next.js
fa3e45ea158effc2e98800d349dfbddcbf21792d
5efef452262235a19baee2e35c9acdb0c1cbd7e7
build(turbopack): Update `swc_core` to `v30.0.1` (#81179) ### What? ChangeLog: https://github.com/swc-project/swc/compare/swc_core%40v29.4.2...swc_core%40v30.0.1 ### Why? Apply https://github.com/swc-project/swc/pull/10754 to fix preset-env
[ { "path": ".cargo/config.toml", "patch": "@@ -71,3 +71,6 @@ rustflags = [\n \n [target.armv7-unknown-linux-gnueabihf]\n linker = \"arm-linux-gnueabihf-gcc\"\n+\n+[target.wasm32-unknown-unknown]\n+rustflags = [\"-Zshare-generics=y\", \"--cfg\", 'getrandom_backend=\"wasm_js\"']\n\\ No newline at end of file",...
2025-07-02T12:02:12
golang/go
84e0061460d7c9a624a74e13f0212f443b079531
2fb5610c3a2f0b61714f167ff8f701518fbc9370
net/http/httputil: document ReverseProxy removal of response headers Fixes #30359 Change-Id: I5dfb2cd63c737959fd2f6a0dbf50ff8de18bb15d Reviewed-on: https://go-review.googlesource.com/c/go/+/658535 Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservi...
[ { "path": "src/net/http/httputil/reverseproxy.go", "patch": "@@ -102,6 +102,13 @@ func (r *ProxyRequest) SetXForwarded() {\n //\n // 1xx responses are forwarded to the client if the underlying\n // transport supports ClientTrace.Got1xxResponse.\n+//\n+// Hop-by-hop headers (see RFC 9110, section 7.6.1), inc...
2025-03-17T18:39:31
nodejs/node
8e5d88b6413558b6b4bc127f87fc8122311639ae
27f1306ee17b32db30ba9949d374482eb3b2c74c
stream: pipeline wait for close before calling the callback The pipeline should wait for close event to finish before calling the callback. The `finishCount` should not below 0 when calling finish function. Fixes: https://github.com/nodejs/node/issues/51540 Co-authored-by: wh0 <wh0@users.noreply.github.com> PR-URL:...
[ { "path": "lib/internal/streams/pipeline.js", "patch": "@@ -225,6 +225,10 @@ function pipelineImpl(streams, callback, opts) {\n finishImpl(err, --finishCount === 0);\n }\n \n+ function finishOnlyHandleError(err) {\n+ finishImpl(err, false);\n+ }\n+\n function finishImpl(err, final) {\n if (...
2024-06-27T11:29:35
facebook/react
763612647ceb66d95f728af896ca5e18a8181db8
6c64428d904f8339cddaa0f4850cba89acabe0bb
fix incorrect insertion order of stylesheets (#28108) ## Summary In the precendences Map every key is prefixed with `p`. This fixes one case where this is missing. ## How did you test this change? <!-- Demonstrate the code is solid. Example: The exact commands you ran and their output, screenshots / videos...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -3559,7 +3559,7 @@ function insertStylesheetIntoRoot(\n if (prior === last) {\n precedences.set('last', instance);\n }\n- precedences.set(precedence, instance);\n+ precedences.set('p' + precedence, instance);\n...
2024-01-26T15:54:58
rust-lang/rust
85ca098f55cade17d59dd625d2e9af724a73a33b
8c5605e130081cbff57f505c56466538039346b1
rustc_parse: improve the error diagnostic for "missing let" Signed-off-by: Usman Akinyemi <usmanakinyemi202@gmail.com>
[ { "path": "compiler/rustc_parse/src/errors.rs", "patch": "@@ -573,6 +573,24 @@ pub(crate) struct ExpectedExpressionFoundLet {\n pub comparison: Option<MaybeComparison>,\n }\n \n+#[derive(Diagnostic)]\n+#[diag(\"let-chain with missing `let`\")]\n+pub(crate) struct LetChainMissingLet {\n+ #[primary_spa...
2026-02-01T17:04:22
electron/electron
6bfef67aaeae9613e85b3d5d3745da763b3ef7c4
db27b9f433f6681c42c9f22910d5908e172a67fe
feat: session.resolveHost (#37690) * feat: session.resolveHost Expose Chromium's host resolution API through the Session object. * Update shell/browser/api/electron_api_session.cc Co-authored-by: Jeremy Rose <nornagon@nornagon.net> * address feedback * fix tests * address feedback * Add options ...
[ { "path": "docs/api/session.md", "patch": "@@ -690,6 +690,41 @@ The `proxyBypassRules` is a comma separated list of rules described below:\n Match local addresses. The meaning of `<local>` is whether the\n host matches one of: \"127.0.0.1\", \"::1\", \"localhost\".\n \n+#### `ses.resolveHost(host, [op...
2023-04-05T14:06:14
vercel/next.js
5efef452262235a19baee2e35c9acdb0c1cbd7e7
d41950dc96761d4b5f85e50462cd84ec3b35f498
Update caching.mdx (#81129) ### What? Fix misleading information in the docs about mixing cached and uncached `fetch` calls during dynamic rendering. ### Why? I followed the guide (using Next.js 15.3.2) and tried it out with this code: ```ts const joke = await fetch("https://api.chucknorris.io/jokes/random", { ...
[ { "path": "docs/01-app/02-guides/caching.mdx", "patch": "@@ -312,7 +312,7 @@ You can opt out of the Full Route Cache, or in other words, dynamically render c\n \n - **Using a [Dynamic API](#dynamic-apis)**: This will opt the route out from the Full Route Cache and dynamically render it at request time. The ...
2025-07-02T07:56:02
golang/go
b59b0580a164478877a684ff3c347a15b03b14fe
03cb8d408e0372693f165b63dff1410c47d9cd1b
os: don't wrap os.Getgroups error in tests The error returned is an os.PathError which already provides enough context. Change-Id: Ib9391c00afc56bca673b8086d5dc19cf9b99b285 Reviewed-on: https://go-review.googlesource.com/c/go/+/658957 Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Ian Lance Taylor <iant@g...
[ { "path": "src/os/os_unix_test.go", "patch": "@@ -64,7 +64,7 @@ func TestChown(t *testing.T) {\n \t// Then try all the auxiliary groups.\n \tgroups, err := Getgroups()\n \tif err != nil {\n-\t\tt.Fatalf(\"getgroups: %s\", err)\n+\t\tt.Fatal(err)\n \t}\n \tt.Log(\"groups: \", groups)\n \tfor _, g := range gr...
2025-03-18T23:33:22
nodejs/node
53ac448022b7cdfcc09296da88d9a1b59921f6bf
b40ff3afc5d26208dcfe96ab1c94472ad36eafac
test: fix OpenSSL version checks As per the original pull request that introduced the OpenSSL version check in `parallel/test-crypto-dh`: ``` Error message change is test-only and uses the right error message for versions >=3.0.12 in 3.0.x and >= 3.1.4 in 3.1.x series. ``` Fix the check so that: - The older message ...
[ { "path": "test/parallel/test-crypto-dh.js", "patch": "@@ -86,8 +86,9 @@ const crypto = require('crypto');\n }\n \n {\n- const hasOpenSSL3WithNewErrorMessage = (common.hasOpenSSL(3, 0, 12) && !common.hasOpenSSL(3, 1, 1)) ||\n- (common.hasOpenSSL(3, 1, 4) && !...
2024-06-26T19:45:54
electron/electron
db27b9f433f6681c42c9f22910d5908e172a67fe
be32740991785c066052d710ddabd7a928f9323a
chore: initial linting fixes for JS in docs/fiddles (#37689)
[ { "path": "docs/fiddles/features/drag-and-drop/main.js", "patch": "@@ -1,9 +1,9 @@\n-const { app, BrowserWindow, ipcMain, nativeImage, NativeImage } = require('electron')\n+const { app, BrowserWindow, ipcMain } = require('electron')\n const path = require('path')\n const fs = require('fs')\n const https = r...
2023-04-05T13:42:20
nodejs/node
2068c4083bd8672175a434bc0774d1be72a284a5
4c730aed7f825af1691740663d599e9de5958f89
tools: fix skip detection of test runner output Fix the Python test harness so that it no longer treats the `# skipped` part of the summary at the end of the built-in test runner output as marking the test as skipped. PR-URL: https://github.com/nodejs/node/pull/53545 Fixes: https://github.com/nodejs/node/issues/50346...
[ { "path": "tools/test.py", "patch": "@@ -83,7 +83,7 @@ def get_module(name, path):\n \n \n logger = logging.getLogger('testrunner')\n-skip_regex = re.compile(r'# SKIP\\S*\\s+(.*)', re.IGNORECASE)\n+skip_regex = re.compile(r'(?:\\d+\\.\\.\\d+|ok|not ok).*# SKIP\\S*\\s+(.*)', re.IGNORECASE)\n \n VERBOSE = Fal...
2024-06-24T13:05:56
electron/electron
be32740991785c066052d710ddabd7a928f9323a
b8a21dbcd7d784cc4999754b4826d62e0499307a
docs: fix `app.getPreferredSystemLanguages()` return type (#37821) docs: fix app.getPreferredSystemLanguages() return type
[ { "path": "docs/api/app.md", "patch": "@@ -751,14 +751,21 @@ This API can be used for purposes such as deciding what language to present the\n \n Here are some examples of return values of the various language and locale APIs with different configurations:\n \n-* For Windows, where the application locale is...
2023-04-05T13:31:53
rust-lang/rust
1ec5101f20cfffb67557692a5ec647133e2bcd19
7c9ae5b0213393660abe57add8d4b34c90c3430f
Bump the libm MSRV to 1.67 This gets us: * `saturating_sub_unsigned` * `<int>::ilog2` * Correct lexing of float literals with the `f16` or `f128` suffix Link: https://github.com/rust-lang/compiler-builtins/issues/1017
[ { "path": "library/compiler-builtins/libm/Cargo.toml", "patch": "@@ -13,7 +13,7 @@ keywords = [\"libm\", \"math\"]\n repository = \"https://github.com/rust-lang/compiler-builtins\"\n license = \"MIT\"\n edition = \"2021\"\n-rust-version = \"1.63\"\n+rust-version = \"1.67\"\n \n [dev-dependencies]\n # FIXME(...
2026-02-07T13:06:05
vercel/next.js
343c83807fd53a2052fce6f7ddccf8461edee8b8
3e022577f2cacfc5c5bb0553327b3e116a58f68d
[node-webstreams] Exhaustive React aliases in App Router (#81040) The previous logic relied heavily on default-fallthroughs which makes it hard to follow what alias we end up using in which bundle. The new logic has more duplication which is intended so that you think about each entrypoint. With the new factoring, ...
[ { "path": "crates/next-core/src/next_edge/context.rs", "patch": "@@ -147,7 +147,7 @@ pub async fn get_edge_resolve_options_context(\n .map(RcStr::from),\n );\n \n- if ty.supports_react_server() {\n+ if ty.should_use_react_server_condition() {\n custom_conditions.push(rcstr!(\"r...
2025-07-02T05:28:36
facebook/react
85b296e9b6ded4accd9ec3389297f95091fb1ac0
382190c595126837ee7e43b4fa953f4edd30e01c
Async action support for React.startTransition (#28097) This adds support for async actions to the "isomorphic" version of startTransition (i.e. the one exported by the "react" package). Previously, async actions were only supported by the startTransition that is returned from the useTransition hook. The interes...
[ { "path": "packages/react-reconciler/src/ReactFiberAsyncAction.js", "patch": "@@ -13,6 +13,7 @@ import type {\n RejectedThenable,\n } from 'shared/ReactTypes';\n import type {Lane} from './ReactFiberLane';\n+import type {BatchConfigTransition} from './ReactFiberTracingMarkerComponent';\n \n import {reques...
2024-01-26T02:54:45
nodejs/node
4c730aed7f825af1691740663d599e9de5958f89
296ce1ba2ac7728c6e1b016964b8fe6ba55a6ba4
deps: V8: cherry-pick 9ebca66a5740 Original commit message: [rab/gsab] Remove --harmony-rab-gsab (has been on by default for a while) Bug: v8:11111 Change-Id: Ie74e7737f3e2e8730820cf00f1cbc7ae02b515af Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5516580 Commit-Queue: Marja Hölt...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.15',\n+ 'v8_embedder_string': '-node.16',\n \n ##### V8 defaults for Node.js #####\n...
2024-06-23T22:31:33
vercel/next.js
3e022577f2cacfc5c5bb0553327b3e116a58f68d
3cb2f2737a48883f8c6de9f8d7013c5cd5a6554e
Fix resolvedPathname for middleware rewrite (#81144) This updates the handling of `resolvedPathname` to handle the case we don't know the `rewroteURL` for example when it's a middleware rewrite and we can't derive it since it's fully dynamic. Since we always know the `srcPage` we can always recreate the final URL usin...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -41,7 +41,6 @@ import {\n type ResponseCacheEntry,\n type ResponseGenerator,\n } from '../../server/response-cache'\n-import { decodePathParams } from '../../server/lib/router-utils/decode-path-params'\n import { FallbackMode, parse...
2025-07-02T03:53:54
facebook/react
b123b9c4f054a7def7ed84e350ccd46cc86672a6
8bb6ee1d33ca6c7e34342bc4b17aac0449ab6899
[Flight] Refactor the Render Loop to Behave More Like Fizz (#28065) This refactors the Flight render loop to behave more like Fizz with similar naming conventions. So it's easier to apply similar techniques across both. This is not necessarily better/faster - at least not yet. This doesn't yet implement serializa...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMEdge-test.js", "patch": "@@ -242,6 +242,20 @@ describe('ReactFlightDOMEdge', () => {\n expect(result).toEqual(resolvedChildren);\n });\n \n+ it('should execute repeated server components in a compact form', async () => {\n+ a...
2024-01-25T17:09:11
golang/go
af0d51c70fe18f860572767d6accdedb7f180358
b1ec5ad00ae6ddf2e022a90432547a96292098f0
os: fix typos in comments * peformed -> performed * reprots -> reports Found when reviewing Change-Id: I9474074199f6a610f40b4bcf798c6d77948f3d3c Reviewed-on: https://go-review.googlesource.com/c/go/+/658956 Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun...
[ { "path": "src/os/root.go", "patch": "@@ -57,7 +57,7 @@ func OpenInRoot(dir, name string) (*File, error) {\n // such as NUL and COM1.\n // - On Unix, [Root.Chmod], [Root.Chown], and [Root.Chtimes] are vulnerable to a race condition.\n // If the target of the operation is changed from a regular fil...
2025-03-18T23:28:31
electron/electron
3f42040a1b46f3c3bb338730f30f793ceadee386
e9d5c3517cf3a6090826d7e8ca91c2d059a7caca
fix: Fn+F fullscreen transitioning on macOS (#37803)
[ { "path": "shell/browser/api/electron_api_web_contents_mac.mm", "patch": "@@ -7,6 +7,8 @@\n #include \"shell/browser/ui/cocoa/event_dispatching_window.h\"\n #include \"shell/browser/web_contents_preferences.h\"\n #include \"ui/base/cocoa/command_dispatcher.h\"\n+#include \"ui/base/cocoa/nsmenu_additions.h\"...
2023-04-04T13:16:59
nodejs/node
cd8e61fe2630906fc53de6ff9b98ef8355533785
92a25abca9dd23a723008d88b1ccb63ff40ec9b7
test: extend env for `test-node-output-errors` Extend, rather than replace, `env` for `test-node-output-errors` so that `node` binaries that need `LD_LIBRARY_PATH`, `LIBPATH` or `DYLD_LIBRARY_PATH` can run. PR-URL: https://github.com/nodejs/node/pull/53535 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: ...
[ { "path": "test/parallel/test-node-output-errors.mjs", "patch": "@@ -6,8 +6,6 @@ import { describe, it } from 'node:test';\n import { pathToFileURL } from 'node:url';\n \n const skipForceColors =\n- process.config.variables.icu_gyp_path !== 'tools/icu/icu-generic.gyp' ||\n- process.config.variables.node_s...
2024-06-23T18:53:03
vercel/next.js
3cb2f2737a48883f8c6de9f8d7013c5cd5a6554e
e52d8c71f180a0791dec1b57f1129ee4571b14c4
Remove unneccesary step that's making workflow fail (#81164) This step was causing the front-sync job to fail. I'm not totally sure how it was working before, some other workflow must have logged logged in at some point. This is just a debug step anyway, so I think we can delete it. **I confirmed that the next step wo...
[ { "path": ".github/workflows/test_e2e_deploy_release.yml", "patch": "@@ -108,10 +108,6 @@ jobs:\n - id: test-result\n name: Set test result variable\n run: echo 'immediately-close=${{ needs.test-deploy.result != 'success' && 'true' || 'false' }}' >> \"$GITHUB_OUTPUT\"\n- - name: C...
2025-07-02T03:48:16
golang/go
57dac327d15b4debe33057b9ca785e303731e81c
4bc6c71ee013addb613c39dae364cf7a06694b47
misc/linkcheck: remove unused tool Fixes #72953 Change-Id: I8a0c8da3f8309841147412a078bc82095a93c5b9 Reviewed-on: https://go-review.googlesource.com/c/go/+/659275 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian ...
[ { "path": "misc/linkcheck/linkcheck.go", "patch": "@@ -1,191 +0,0 @@\n-// Copyright 2013 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-// The linkcheck command finds missing links in the godoc website.\n-...
2025-03-19T16:34:43
electron/electron
e9d5c3517cf3a6090826d7e8ca91c2d059a7caca
91f62ae73f18c567d19e42e3cfe8cb809160fd8a
fix: apply csp correctly when contextIsolation: false (#37756) * fix: apply csp correctly when contextIsolation: false * better comments
[ { "path": "shell/common/node_bindings.cc", "patch": "@@ -184,9 +184,10 @@ v8::ModifyCodeGenerationFromStringsResult ModifyCodeGenerationFromStrings(\n v8::Local<v8::Context> context,\n v8::Local<v8::Value> source,\n bool is_code_like) {\n- // If we're running with contextIsolation enabled in th...
2023-04-04T08:31:49
facebook/react
11c9fd0c53133f24f5270d36591b65b8fc2ebd25
2efb1426067322cdb08304432b3ac849dee52bd9
Batch async actions even if useTransition is unmounted (#28078) If there are multiple updates inside an async action, they should all be rendered in the same batch, even if they are separate by an async operation (`await`). We currently implement this by suspending in the `useTransition` hook to block the update fr...
[ { "path": "packages/react-reconciler/src/ReactFiberAsyncAction.js", "patch": "@@ -9,7 +9,6 @@\n \n import type {\n Thenable,\n- PendingThenable,\n FulfilledThenable,\n RejectedThenable,\n } from 'shared/ReactTypes';\n@@ -32,111 +31,32 @@ let currentEntangledListeners: Array<() => mixed> | null = null...
2024-01-25T04:54:53
nodejs/node
cba170d8833dbf05fa80df13fa95cceb72067a21
45c2e2514f8b1e4eee8b236199677e6910203449
lib: fix typo in comment Small update in a realm.js documentation comment to correct `js2c.py` which was ported to `js2c.cc` and removed. PR-URL: https://github.com/nodejs/node/pull/53543 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Paolo In...
[ { "path": "lib/internal/bootstrap/realm.js", "patch": "@@ -31,7 +31,7 @@\n // Internal JavaScript module loader:\n // - BuiltinModule: a minimal module system used to load the JavaScript core\n // modules found in lib/**/*.js and deps/**/*.js. All core modules are\n-// compiled into the node binary via ...
2024-06-22T14:46:07
rust-lang/rust
6af91c56d199851abfebbbab4745f34f229649f1
cee9cc6113b1c5ae3f47a87b73f546099d4b4296
Move tests from tests/crashes to tests/ui now that they don't ICE
[ { "path": "tests/crashes/137190-2.rs", "patch": "@@ -1,18 +0,0 @@\n-//@ known-bug: #137190\n-trait Supertrait<T> {\n- fn method(&self) {}\n-}\n-\n-trait Trait<P>: Supertrait<()> {}\n-\n-impl<P> Trait<P> for () {}\n-\n-const fn upcast<P>(x: &dyn Trait<P>) -> &dyn Supertrait<()> {\n- x\n-}\n-\n-const fn...
2026-02-07T11:42:59
vercel/next.js
e52d8c71f180a0791dec1b57f1129ee4571b14c4
0a67d1c701e1881a567b2ac226e7fb4938441e66
[dynamicIO] recognize prerender interrupted errors as well known (#81160) all Next.js errors should pass through the RSC boundary with an in tact digest
[ { "path": "packages/next/src/server/app-render/create-error-handler.tsx", "patch": "@@ -7,6 +7,7 @@ import { isAbortError } from '../pipe-readable'\n import { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\n import { isDynamicServerError } from '../../client/components/hooks-serve...
2025-07-02T02:59:22
golang/go
f23373985037221899b42cd8f33384f850ff89b4
48240ad3f927b593de69d9aa6b22f96db982c578
internal/syscall/unix: fix number of params for unlinkat This reverts the change to Unlinkat done in CL 659415, as it appears to be wrong. While at it, let's unify argument formatting for better readability (and also so those parameters are easier to count). Change-Id: I092105f85de107e0495afed3cd66c039343250f1 Revie...
[ { "path": "src/internal/syscall/unix/at_libc.go", "patch": "@@ -35,7 +35,11 @@ func Unlinkat(dirfd int, path string, flags int) error {\n \t\treturn err\n \t}\n \n-\t_, _, errno := syscall6(uintptr(unsafe.Pointer(&procUnlinkat)), 4, uintptr(dirfd), uintptr(unsafe.Pointer(p)), uintptr(flags), 0, 0, 0)\n+\t_,...
2025-03-19T23:56:21
facebook/react
c92ad38375fe0f0c99460583c7195e8ec74eafec
b2f44c103b45b3bdded2e140b14042101a59b829
Fix block scoping issues from MergeConsecutiveBlocks Fixes the issues from the previous PR. It's a simple fix — we don't merge consecutive blocks if the successor block is some terminal's fallthrough.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/MergeConsecutiveBlocks.ts", "patch": "@@ -14,7 +14,7 @@ import {\n Instruction,\n } from \"./HIR\";\n import { markPredecessors, removeUnreachableFallthroughs } from \"./HIRBuilder\";\n-import { mapOptionalFallthroughs } from \"./visitors\";\n...
2024-01-23T19:41:00
electron/electron
4c8583c36525b4fe0778eb6585881b6327737802
0b4ef2b1e51edb325bbbf8b7d15ece88be9d0e9e
test: remove workaround for fixed Menu.closePopup issue (#37802)
[ { "path": "spec/api-menu-spec.ts", "patch": "@@ -817,10 +817,7 @@ describe('Menu module', function () {\n it('should emit menu-will-close event', (done) => {\n menu.on('menu-will-close', () => { done(); });\n menu.popup({ window: w });\n- // https://github.com/electron/electron/issues/1...
2023-04-04T08:27:51
nodejs/node
6cb940a546c6229218277f35c2311f9781001b3d
d335487e3f39437a5e3cc5a4a07bf253b9d0d505
build: only generate specified build type files Release and Debug build configurations can not be shared, only generate specified configuration in `configure`. PR-URL: https://github.com/nodejs/node/pull/53511 Fixes: https://github.com/nodejs/node/issues/53446 Reviewed-By: Michaël Zasso <targos@protonmail.com> Review...
[ { "path": "configure.py", "patch": "@@ -2253,7 +2253,7 @@ def make_bin_override():\n gyp_args += ['-Dpython=' + python]\n \n if options.use_ninja:\n- gyp_args += ['-f', 'ninja-' + flavor]\n+ gyp_args += ['-f', 'ninja-' + flavor, '-G', 'config=' + config['BUILDTYPE']]\n elif flavor == 'win' and sys.platfor...
2024-06-22T08:36:36
rust-lang/rust
cee9cc6113b1c5ae3f47a87b73f546099d4b4296
06cafcbe08b1b0d4235685abd5f817ae1979cefa
Fix an ICE in the vtable iteration for a trait reference in const eval when a supertrait not implemented compiler/rustc_trait_selection/src/traits/vtable.rs@`vtable_entries`: The impossible predicates check in `vtable_entries` used `instantiate_own` which only includes the method's own where-clauses, not the parent tr...
[ { "path": "compiler/rustc_trait_selection/src/traits/vtable.rs", "patch": "@@ -12,7 +12,7 @@ use rustc_span::DUMMY_SP;\n use smallvec::{SmallVec, smallvec};\n use tracing::debug;\n \n-use crate::traits::{impossible_predicates, is_vtable_safe_method};\n+use crate::traits::is_vtable_safe_method;\n \n #[derive...
2026-02-07T11:37:00
golang/go
48240ad3f927b593de69d9aa6b22f96db982c578
cb0d767a1022ac3e1384761facd949ea00f3a761
internal/syscall/unix: use correct number of params in unlinkat, fchownat We were calling syscall6 with an incorrect parameter count, omitting the flags parameter. Change-Id: Ife606bd57c1e4b899c0340767e9197bbe0aa81a9 Reviewed-on: https://go-review.googlesource.com/c/go/+/659415 Auto-Submit: Damien Neil <dneil@google....
[ { "path": "src/internal/syscall/unix/at_libc.go", "patch": "@@ -35,7 +35,7 @@ func Unlinkat(dirfd int, path string, flags int) error {\n \t\treturn err\n \t}\n \n-\t_, _, errno := syscall6(uintptr(unsafe.Pointer(&procUnlinkat)), 3, uintptr(dirfd), uintptr(unsafe.Pointer(p)), uintptr(flags), 0, 0, 0)\n+\t_, ...
2025-03-19T20:13:51
facebook/react
b2f44c103b45b3bdded2e140b14042101a59b829
f9f084087f7eb8a6b56a89db850cb4dddef0ac66
Fixtures demonstrating incorrect block scoping due to MergeConsecutiveBlocks Fixtures from T173102122 and T173101739 demonstrating cases where MergeConsecutiveBlocks can move code out of its correct block scope, changing behavior or breaking the program, in cases where a control flow structure (such as switch) onl...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/block-scoping-switch-dead-code.expect.md", "patch": "@@ -0,0 +1,54 @@\n+\n+## Input\n+\n+```javascript\n+function useHook(a, b) {\n+ switch (a) {\n+ case 1:\n+ if (b == null) {\n+ return;\n+ }\n+ ...
2024-01-23T19:40:56
electron/electron
f40bd2da23ae04be32398f22eebfd558dec0068f
e31f101712ac7ce1c0e54671241695d5b8c57211
fix: record helper error messages in electron_main_mac (#37807)
[ { "path": "shell/app/electron_main_mac.cc", "patch": "@@ -18,13 +18,35 @@\n #include \"sandbox/mac/seatbelt_exec.h\" // nogncheck\n #endif\n \n+extern \"C\" {\n+// abort_report_np() records the message in a special section that both the\n+// system CrashReporter and Crashpad collect in crash reports. Using...
2023-04-03T20:14:19
nodejs/node
167ef1a621c964e270911115b811f0aa88945151
53e9106c4b89497bad343ce4eb7b12e4934f02e0
2024-06-20, Version 20.15.0 'Iron' (LTS) Notable changes: doc: * add pimterry to collaborators (Tim Perry) https://github.com/nodejs/node/pull/52874 inspector: * (SEMVER-MINOR) introduce the `--inspect-wait` flag (Kohei Ueno) https://github.com/nodejs/node/pull/52734 test_runner: * (SEMVER-MINOR) support test p...
[ { "path": "CHANGELOG.md", "patch": "@@ -59,7 +59,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V21.md#21.0.0\">21.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.14.0\">20.14.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.15.0\">20.15.0...
2024-06-17T12:18:32
golang/go
f9f5d1e8442e3268489f3cfab2f9b65922bd4b5b
011b7ce8d12c14e9bd9b95a2519a6513a407bfc9
runtime/race: detect when TestRace fails to run all tests, skip failures TestRace runs a collection of tests, some of which are expected to fail with data races. Make TestRace more robust at detecting when the test run is cut short, such as when a test causes an unhandled panic. Skip TestRaceRangeFuncIterator, which ...
[ { "path": "src/runtime/race/race_test.go", "patch": "@@ -14,6 +14,7 @@ package race_test\n import (\n \t\"bufio\"\n \t\"bytes\"\n+\t\"errors\"\n \t\"fmt\"\n \t\"internal/testenv\"\n \t\"io\"\n@@ -112,21 +113,21 @@ func processLog(testName string, tsanLog []string) string {\n \t\t\tgotRace = true\n \t\t\tbre...
2025-03-18T17:22:04
electron/electron
601217218759d088f12680a428fead8c8b26a5e0
a75b892e9080753dcc5e1344f2a59fa641a65be1
fix: set background color for menu bar on Windows (#37766)
[ { "path": "shell/browser/ui/views/menu_bar.cc", "patch": "@@ -35,12 +35,11 @@ const char MenuBar::kViewClassName[] = \"ElectronMenuBar\";\n MenuBar::MenuBar(NativeWindow* window, RootView* root_view)\n : background_color_(kDefaultColor), window_(window), root_view_(root_view) {\n const ui::NativeTheme...
2023-03-31T16:06:09
facebook/react
f9f084087f7eb8a6b56a89db850cb4dddef0ac66
a023a2da723b730149667d783b1e08aadccbfeae
Fixture for reactively-controlled context variables Mofei considered this case, it works thanks to the handling for function expressions earlier in the stack.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reactive-control-dependency-on-context-variable.expect.md", "patch": "@@ -0,0 +1,108 @@\n+\n+## Input\n+\n+```javascript\n+import { identity } from \"shared-runtime\";\n+\n+function Component(props) {\n+ let x;\n+ // Re...
2024-01-23T16:59:21
golang/go
011b7ce8d12c14e9bd9b95a2519a6513a407bfc9
1aa9c31ffc8af3fd33bfa995ecf55f08daf33f81
go/types, types2: fix silly logic error in commonUnder Fixes #72936. Change-Id: I79ed8d559c8565fa960b974f8c1207ee442f4c26 Reviewed-on: https://go-review.googlesource.com/c/go/+/659256 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Robert Griesemer <gri@google.co...
[ { "path": "src/cmd/compile/internal/types2/under.go", "patch": "@@ -112,11 +112,13 @@ func commonUnder(t Type, cond func(t, u Type) *typeError) (Type, *typeError) {\n \t\t\t\t}\n \t\t\t\t// If we have different channel directions, keep the restricted one\n \t\t\t\t// and complain if they conflict.\n-\t\t\t\...
2025-03-19T16:38:51
nodejs/node
c93e256ee7bb26cd10aee65e6349e605d56f9c80
0c1c33a2a3dec06b1cea4f9cff2f9bd757ba23f3
src: use `args.This()` instead of `Holder` The latter is deprecated in V8. Refs: http://crbug.com/333672197 PR-URL: https://github.com/nodejs/node/pull/53474 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: ...
[ { "path": "doc/api/addons.md", "patch": "@@ -923,7 +923,7 @@ void MyObject::New(const FunctionCallbackInfo<Value>& args) {\n void MyObject::PlusOne(const FunctionCallbackInfo<Value>& args) {\n Isolate* isolate = args.GetIsolate();\n \n- MyObject* obj = ObjectWrap::Unwrap<MyObject>(args.Holder());\n+ MyO...
2024-06-18T16:02:42
vercel/next.js
4a1b510fc100e0f18eeeb9f2358818528a8696bb
b8eb7314be7e1117a9f255adbb5f1a18bbf06489
Add more test cases to the `dynamicIO` sync IO access test suite (#81045) With this PR, we're adding test fixtures for `headers()`, `draftMode()`, and (fallback) `params`, by more or less copy&pasting the fixture for `cookies()`. We're also adding assertions for environment prefixes of `console.log()` calls that happ...
[ { "path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.sync-dynamic.test.ts", "patch": "@@ -1,5 +1,5 @@\n import { isNextDev, nextTestSetup } from 'e2e-utils'\n-import { getPrerenderOutput } from './utils'\n+import { assertLog, getPrerenderOutput } from './utils'\n \n describe.each(\n isNextDev\n...
2025-07-01T20:57:40
facebook/react
a023a2da723b730149667d783b1e08aadccbfeae
4d84bee1723ad024058dda7e9a47774146912c77
Fixtures for control values that become reactive due to interleaving See the previous PR, interleaved mutation can cause values that were not reactive to become reactive. I swear I had a case where this was observable, but I came up with it before reordering the PRs in this stack. I think my repro relied on an imm...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reactive-control-dependency-from-interleaved-reactivity-do-while.expect.md", "patch": "@@ -0,0 +1,73 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ // a and b are independent but their mutations are...
2024-01-23T16:59:20
electron/electron
7c4f4c537e9cc869df24cec050792fd743fbd06b
4ca6fb3c4e2e0f66eea67eee4745f0afa14c135e
build: fix build-tools schema in config (#37765)
[ { "path": ".devcontainer/on-create-command.sh", "patch": "@@ -35,8 +35,13 @@ if [ ! -f $buildtools/configs/evm.testing.json ]; then\n write_config() {\n echo \"\n {\n- \\\"root\\\": \\\"/workspaces/gclient\\\",\n \\\"goma\\\": \\\"$1\\\",\n+ \\\"root\\\": \\\"...
2023-03-31T10:20:02
rust-lang/rust
3ee0286396e9cfacd3c0cb1ce7417b6a7a8e6308
9aebf045fb16941e2273aaba2a6d44231dad84e1
internal: Remove `Edition::CURRENT_FIXME`
[ { "path": "src/tools/rust-analyzer/Cargo.toml", "patch": "@@ -192,8 +192,6 @@ unused_lifetimes = \"warn\"\n unreachable_pub = \"warn\"\n \n [workspace.lints.clippy]\n-# FIXME Remove the tidy test once the lint table is stable\n-\n ## lint groups\n complexity = { level = \"warn\", priority = -1 }\n correctne...
2026-01-18T12:35:42
golang/go
1aa9c31ffc8af3fd33bfa995ecf55f08daf33f81
deb6790fcfe943c640a4ef393036690eef5eef5c
net/http/httputil: don't call WriteHeader after Hijack CL 637939 changed ReverseProxy to report errors encountered when copying data on an hijacked connection. This is generally not useful, and when using the default error handler results in WriteHeader being called on a hijacked connection. While this is harmless wi...
[ { "path": "src/net/http/httputil/reverseproxy.go", "patch": "@@ -802,9 +802,6 @@ func (p *ReverseProxy) handleUpgradeResponse(rw http.ResponseWriter, req *http.R\n \tif err == nil {\n \t\terr = <-errc\n \t}\n-\tif err != nil && err != errCopyDone {\n-\t\tp.getErrorHandler()(rw, req, fmt.Errorf(\"can't copy:...
2025-03-19T16:26:31
nodejs/node
0c1c33a2a3dec06b1cea4f9cff2f9bd757ba23f3
d2d2797af96feb84e2b3de238e329a481576abd1
inspector: fix disable async hooks on Debugger.setAsyncCallStackDepth This was previously calling the enable function by mistake. As a result, when profiling using Chrome DevTools, the async hooks won't be turned off properly after receiving Debugger.setAsyncCallStackDepth with depth 0. PR-URL: https://github.com/nod...
[ { "path": "src/async_wrap.cc", "patch": "@@ -193,6 +193,12 @@ static void SetPromiseHooks(const FunctionCallbackInfo<Value>& args) {\n args[3]->IsFunction() ? args[3].As<Function>() : Local<Function>());\n }\n \n+static void GetPromiseHooks(const FunctionCallbackInfo<Value>& args) {\n+ Environment* e...
2024-06-18T16:02:25
vercel/next.js
c6343db71ee1afd3cb29c805443fcf4152d9eccb
9e19656ecfe6df31981ad970b1ed4f965090d720
[segment explorer] reset error and not-found boundary (#81115) ### Description Add a `key` prop to the segment state boundary and change the key when we call reset, this way it will force the children re-render with the new state where the boundaries will get reset and the simulated error will be gone since we're r...
[ { "path": "packages/next/src/next-devtools/userspace/app/segment-explorer-node.tsx", "patch": "@@ -1,7 +1,14 @@\n 'use client'\n \n import type { ReactNode } from 'react'\n-import { useState, createContext, useContext, use, useMemo } from 'react'\n+import {\n+ useState,\n+ createContext,\n+ useContext,\n...
2025-07-01T20:19:15
facebook/react
cb9899955b3d2c6e1e4477585f06068c2007efec
bf32989264ff2faa9a009550401f573f29db4df2
Fix ReactFreshIntegration-test not running all tests as assumed (#28033) Fix ReactFreshIntegration-test not running all tests as assumed `testCommon` was executed twice without setting `compileDestructuring` ever to true. This fixes this and removes one layer of abstraction in this test by using `describe.each`.
[ { "path": "packages/react-refresh/src/__tests__/ReactFreshIntegration-test.js", "patch": "@@ -47,7 +47,7 @@ describe('ReactFreshIntegration', () => {\n }\n });\n \n- function executeCommon(source, compileDestructuring) {\n+ function executeJavaScript(source, compileDestructuring) {\n const compi...
2024-01-23T14:59:14
electron/electron
2b9dae4b065e9fea59c90ddee2acf2c01b9ebd59
2e1f803f374a1d262be21b3b4e355698e1753daa
feat: add `will-frame-navigate` event (#34418) * feat: add will-navigate-in-frame event to webContents * docs: add documentation for webview will-frame-navigate event * feat: Eliminate isInPlace argument from will-frame-navigate event * fix: Fire will-frame-navigate before will-navigate * feat: send will-f...
[ { "path": "docs/api/web-contents.md", "patch": "@@ -19,6 +19,36 @@ const contents = win.webContents\n console.log(contents)\n ```\n \n+## Navigation Events\n+\n+Several events can be used to monitor navigations as they occur within a `webContents`.\n+\n+### Document Navigations\n+\n+When a `webContents` nav...
2023-03-28T14:55:41
golang/go
deb6790fcfe943c640a4ef393036690eef5eef5c
56e5476e10db25ce71f562bd6ee0910a83532b04
cmd/compile: remove implicit deref from len(p) where p is ptr-to-array func f() *[4]int { return nil } _ = len(f()) should not panic. We evaluate f, but there isn't a dereference according to the spec (just "arg is evaluated"). Update #72844 Change-Id: Ia32cefc1b7aa091cd1c13016e015842b4d12d5b4 Reviewed-on: https://...
[ { "path": "src/cmd/compile/internal/typecheck/expr.go", "patch": "@@ -634,16 +634,16 @@ func tcIndex(n *ir.IndexExpr) ir.Node {\n func tcLenCap(n *ir.UnaryExpr) ir.Node {\n \tn.X = Expr(n.X)\n \tn.X = DefaultLit(n.X, nil)\n-\tn.X = implicitstar(n.X)\n \tl := n.X\n \tt := l.Type()\n \tif t == nil {\n \t\tn.S...
2025-03-14T20:19:18
vercel/next.js
9e19656ecfe6df31981ad970b1ed4f965090d720
1beea16b933a7acd3a180050a663d8ff1c41537f
fix(next-swc): Apply SWC minifier bugfixes (#81098) ### What? Update `swc_core` to `v29.4.2` ### Why? To apply https://github.com/swc-project/swc/pull/10740 and https://github.com/swc-project/swc/pull/10741
[ { "path": "Cargo.lock", "patch": "@@ -7131,9 +7131,9 @@ dependencies = [\n \n [[package]]\n name = \"swc_core\"\n-version = \"29.4.0\"\n+version = \"29.4.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"991fb5308ade9fb838316d0f1790bf2df25b0cafa6ac2515450e8003107201ae\"...
2025-07-01T20:02:33
facebook/react
4d84bee1723ad024058dda7e9a47774146912c77
57163f0a52bed6229364cc558a786595cd6fa9d3
Propagate reactive scope dependencies transitively During PruneNonReactiveDependencies, we sometimes need to promote a value from non-reactive to reactive if it ended up being grouped in the same reactive scope as some other reactive value. This generally happens due to interleaving mutations. In this case all d...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PruneNonReactiveDependencies.ts", "patch": "@@ -5,7 +5,14 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import { IdentifierId, ReactiveFunction, ReactiveScopeBlock } from \"../HIR\";\n+import {\n+ Identif...
2024-01-22T23:35:56
electron/electron
4c6092e151b070db2b87358761db83b99be511a5
b72f81ab5b79bd86856bd46ad99a540fa082a4de
fix: draggable regions shouldn't capture clicks on frames windows (#37594)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1988,6 +1988,9 @@ void WebContents::MessageHost(const std::string& channel,\n \n void WebContents::UpdateDraggableRegions(\n std::vector<mojom::DraggableRegionPtr> regions) {\n+ if (owner_window() && owner_window()->has_frame())\...
2023-03-28T14:52:28
nodejs/node
99b01c7105ac6fbd2a4c78df7dbf73353982bfe1
3e7129e5d60d4f017ad06c006dec7f95d986095c
meta: fix typo in dependency updates PR-URL: https://github.com/nodejs/node/pull/53471 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Akhil Marsonya <akhi...
[ { "path": ".github/workflows/tools.yml", "patch": "@@ -175,7 +175,7 @@ jobs:\n cat temp-output\n tail -n1 temp-output | grep \"NEW_VERSION=\" >> \"$GITHUB_ENV\" || true\n rm temp-output\n- # libuv update was disabled because of Feb 14, 2024 security releas\...
2024-06-18T15:28:49
golang/go
1aee4f3464b678f135912e2b2703e0f6c060b980
24b395119b4df7f16915b9f01a6aded647b79bbd
cmd/internal/obj/riscv: prevent panics on bad branches Syntactically incorrect branches, such as BEQ X5, X6, $1 BEQ X5, X6, 31(X10) cause the assembler to panic, which they shouldn't really do. It's better for the user to see a normal error, as reported for other syntax errors in riscv64 assembly. The panics also ...
[ { "path": "src/cmd/asm/internal/asm/testdata/riscv64error.s", "patch": "@@ -30,6 +30,8 @@ TEXT errors(SB),$0\n \tSLLI\t$64, X5, X6\t\t\t// ERROR \"immediate out of range 0 to 63\"\n \tSRLI\t$64, X5, X6\t\t\t// ERROR \"immediate out of range 0 to 63\"\n \tSRAI\t$64, X5, X6\t\t\t// ERROR \"immediate out of ra...
2024-12-11T13:03:17
electron/electron
b72f81ab5b79bd86856bd46ad99a540fa082a4de
97b19a794676217de1bf1756f003fe7515b8c040
ci: fixup update appveyor image workflow (#37684) Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": ".github/workflows/update_appveyor_image.yml", "patch": "@@ -40,7 +40,9 @@ jobs:\n if: ${{ env.APPVEYOR_IMAGE_VERSION }}\n uses: mikefarah/yq@1c7dc0e88aad311c89889bc5ce5d8f96931a1bd0 # v4.27.2\n with:\n- cmd: yq '.image = \"${{ env.APPVEYOR_IMAGE_VERSION }}\"' \"appveyor.y...
2023-03-28T00:57:27
facebook/react
57163f0a52bed6229364cc558a786595cd6fa9d3
0894e35d94fa84136e68403c7135c276a5f7898a
InferReactivePlaces account for immutable aliases of mutably aliased values I found this by adding logic to reject inputs where reactivity gets newly propagated in PruneNonReactiveDependencies. It's possible to create a readonly alias to a mutable value such that we don't know the value is reactive yet when the al...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReactivePlaces.ts", "patch": "@@ -23,7 +23,6 @@ import {\n eachInstructionValueOperand,\n eachTerminalOperand,\n } from \"../HIR/visitors\";\n-import { hasBackEdge } from \"../Optimization/DeadCodeElimination\";\n import {\n fin...
2024-01-22T23:35:55
vercel/next.js
1beea16b933a7acd3a180050a663d8ff1c41537f
dd374da668829a04ed310c1536069ca88cad3ca9
chore: fix typos in rust files (#81113) Co-authored-by: Niklas Mischkulnig <4586894+mischnic@users.noreply.github.com>
[ { "path": ".typos.toml", "patch": "@@ -0,0 +1,56 @@\n+# https://github.com/crate-ci/typos\n+# cargo install typos-cli\n+# typos\n+\n+[default]\n+check-filename = false\n+extend-ignore-identifiers-re = [\"SEPARATORs*\", \"IIFEs*\"]\n+\n+[default.extend-words]\n+rto = \"rto\"\n+wdth = \"wdth\"\n+\n+[type.rust...
2025-07-01T19:07:41