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
rust-lang/rust
5bb10ae244facd131840cc66ca4e961a62eaef7c
c8cf1711c8ec329d9c3fed818ebee1fa58a3ac5d
Fix some TryEnum reference assists - Fix `convert_to_guarded_return` - Fix `replace_let_with_if_let` - Fix `replace_if_let_with_match`
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_to_guarded_return.rs", "patch": "@@ -934,6 +934,32 @@ fn foo() -> Option<i32> {\n None\n }\n \n+fn main() {\n+ let Some(x) = foo() else { return };\n+}\n+\"#,\n+ );\n+ }\n+\n+ #[test]\n+ fn convert_let_ref_stmt...
2026-01-02T11:00:55
vercel/next.js
9de3daa343165de2139d8b8457209493293bfc08
635f7fd1be079ff21722b8b19a600d796fdb5510
fix: remove `satisfies` keyword from type validation to preserve old TS compatibility (#83239)
[ { "path": "packages/next/src/server/lib/router-utils/typegen.ts", "patch": "@@ -446,12 +446,19 @@ export function generateValidatorFile(\n type === 'RouteHandlerConfig')\n ? `${type}<${JSON.stringify(route)}>`\n : type\n+\n+ // NOTE: we previously used `satisfies` ...
2025-09-01T07:37:21
nodejs/node
8aac7da7d66fc0b1426d8bf1e7b3e7b7208885bd
3b3a95ac0cdb1808f4ea699ff64942eb85ea61a6
module: fix error thrown from require(esm) hitting TLA repeatedly This tracks the asynchronicity in the ModuleWraps when they turn out to contain TLA after instantiation, and throw the right error (ERR_REQUIRE_ASYNC_MODULE) when it's required again. It removes the freezing of ModuleWraps since it's not meaningful to f...
[ { "path": "lib/internal/errors.js", "patch": "@@ -1650,6 +1650,9 @@ E('ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS', '%s', TypeError);\n E('ERR_QUIC_CONNECTION_FAILED', 'QUIC connection failed', Error);\n E('ERR_QUIC_ENDPOINT_CLOSED', 'QUIC endpoint closed: %s (%d)', Error);\n E('ERR_QUIC_OPEN_STREAM_FAILED', '...
2024-10-29T21:15:19
facebook/react
ee5c19493086fdeb32057e16d1e3414370242307
f55d172bcf921d761733533395b798c5b3665e04
Fix async batching in React.startTransition (#29226) Note: Despite the similar-sounding description, this fix is unrelated to the issue where updates that occur after an `await` in an async action must also be wrapped in their own `startTransition`, due to the absence of an AsyncContext mechanism in browsers today....
[ { "path": "packages/react-dom/src/__tests__/ReactStartTransitionMultipleRenderers-test.js", "patch": "@@ -0,0 +1,143 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this sour...
2024-05-23T21:19:09
electron/electron
921da723b8707d7438da1d39534e4d4d50a6f5ea
3e6a038af77cc01e16bf139dc68dd8eb45483c7b
fix: dangling raw_ptr in OSRWHV destructor (#41088) `delegated_frame_host_` holds a pointer to `delegated_frame_host_client_`. Since `delegated_frame_host_client_` was being destroyed first, that pointer was dangling in the OSRWHV destructor. Also, make these two unique_ptr fields `const` since they point to the ...
[ { "path": "shell/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -187,6 +187,12 @@ OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(\n frame_rate_(frame_rate),\n size_(initial_size),\n painting_(painting),\n+ delegated_frame_host_client_{\n+ std::make_un...
2024-01-25T01:15:32
vercel/next.js
635f7fd1be079ff21722b8b19a600d796fdb5510
d4d380ed7cfecd9cb56c9ea889b313b806194929
fix: remove redundant posix normalization (#83244)
[ { "path": "packages/next/src/lib/typescript/writeAppTypeDeclarations.ts", "patch": "@@ -62,13 +62,8 @@ export async function writeAppTypeDeclarations({\n 'types/routes.d.ts'\n )\n \n- // Ensure the path is POSIX-compliant for imports.\n- const routeTypesPathPosix = routeTypesPath\n- .split(path.s...
2025-09-01T07:35:38
rust-lang/rust
08a7b9a734c9a1d7b4bc33a4199726308c8b551d
802ee0156a35e4e334eb32bec9a8f9ea16995494
Remove fixme
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/toggle_macro_delimiter.rs", "patch": "@@ -415,7 +415,6 @@ prt!{(3 + 5)}\n )\n }\n \n- // FIXME @alibektas : Inner macro_call is not seen as such. So this doesn't work.\n #[test]\n fn test_nested_macros() {\n ch...
2026-02-19T01:53:25
nodejs/node
45c6a9e1f6e165eb0ab2f7b5635662aa1875c171
5633c62219e199baac833e8862d60333d85dc3d3
src: migrate `String::Value` to `String::ValueView` Fixes #54417 Ref: #55452 PR-URL: https://github.com/nodejs/node/pull/55458 Refs: https://github.com/nodejs/node/issues/55452 Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gma...
[ { "path": "src/inspector_js_api.cc", "patch": "@@ -245,9 +245,9 @@ static void AsyncTaskScheduledWrapper(const FunctionCallbackInfo<Value>& args) {\n Environment* env = Environment::GetCurrent(args);\n \n CHECK(args[0]->IsString());\n- Local<String> task_name = args[0].As<String>();\n- String::Value t...
2024-10-29T00:32:26
electron/electron
3e6a038af77cc01e16bf139dc68dd8eb45483c7b
a05bfd332d1553aaa096f4a63d60242d46fac98f
fix: draggable regions not working (#41030) * fix: draggable regions not working * fix: only support app regions for main frame --------- Co-authored-by: deepak1556 <hop2deep@gmail.com>
[ { "path": "patches/chromium/.patches", "patch": "@@ -128,3 +128,4 @@ fix_restore_original_resize_performance_on_macos.patch\n feat_allow_code_cache_in_custom_schemes.patch\n enable_partition_alloc_ref_count_size.patch\n build_run_reclient_cfg_generator_after_chrome.patch\n+fix_drag_regions_not_working_after...
2024-01-25T00:12:54
facebook/react
84239da896fd7395a667ab1e7ef1ef338a32de8f
5fe8c0b4ecd09cfd2c0e1422089e2c603d558ff8
Move createElement/JSX Warnings into the Renderer (#29088) This is necessary to simplify the component stack handling to make way for owner stacks. It also solves some hacks that we used to have but don't quite make sense. It also solves the problem where things like key warnings get silenced in RSC because they ge...
[ { "path": "fixtures/flight/server/region.js", "patch": "@@ -81,17 +81,20 @@ async function renderApp(res, returnValue, formState) {\n ).main.css;\n }\n const App = m.default.default || m.default;\n- const root = [\n+ const root = React.createElement(\n+ React.Fragment,\n+ null,\n // Prep...
2024-05-23T16:48:57
golang/go
88cf0c5d55a8c18da515485f4a3fcf008b96cb07
7a38975a48ac735e62b389957bfc898437d628dc
cmd/link: do size fixups after symbol references are loaded When we do a size fixup, we need to clone the symbol to an external symbol so we can modify it. This includes cloning the relocations, which includes resolving the relocations. If the symbol being fixed has a relocation referencing a non-Go symbol, that symbo...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -2298,17 +2298,17 @@ func (l *Loader) LoadSyms(arch *sys.Arch) {\n \t\tst.preloadSyms(r, hashedDef)\n \t\tst.preloadSyms(r, nonPkgDef)\n \t}\n-\tfor _, sf := range l.sizeFixups {\n-\t\tpp := l.cloneToExternal(sf.sym)\n-\t\tpp.size = int64(sf.s...
2025-07-10T04:46:00
vercel/next.js
a26a753fa447971db3525437542cf6a45433ef8f
4996d9fb4e31c20776f8f555060786fff4234e7e
docs: fix snippets in getting started (#83228) Fixing snippets in Getting Started
[ { "path": "docs/01-app/01-getting-started/05-server-and-client-components.mdx", "patch": "@@ -154,7 +154,7 @@ export default function Counter() {\n }\n ```\n \n-```jsx filename=\"app/ui/counter.tsx\" highlight={1} switcher\n+```jsx filename=\"app/ui/counter.js\" highlight={1} switcher\n 'use client'\n \n im...
2025-08-29T22:38:05
electron/electron
a05bfd332d1553aaa096f4a63d60242d46fac98f
4164ef93ad57ba30bd1fe9bf31ea922960f9cd15
fix: on error, reset spawnedProcess (#41033) reset spawnedProcess instance in case of error
[ { "path": "lib/browser/api/auto-updater/squirrel-update-win.ts", "patch": "@@ -38,6 +38,8 @@ const spawnUpdate = async function (args: string[], options: { detached: boolean\n spawnedProcess.stderr.on('data', (data) => { stderr += data; });\n \n spawnedProcess.on('error', (error) => {\n+ spawne...
2024-01-24T22:45:08
vercel/next.js
9fc907f14c6c07c4cd7c70f7b91e9f0b73d8b1b2
5f5503630489bcba56be06871daa6e785df0300b
feat: [create-next-app] generate route types after setup (#82956) ## Run `next typegen` after project creation in create-next-app ### What? This PR adds automatic type generation after a Next.js project is created with create-next-app. ### Why? Running `next typegen` immediately after project creation ensures that r...
[ { "path": "packages/create-next-app/create-app.ts", "patch": "@@ -17,6 +17,7 @@ import { install } from './helpers/install'\n import { isFolderEmpty } from './helpers/is-folder-empty'\n import { getOnline } from './helpers/is-online'\n import { isWriteable } from './helpers/is-writeable'\n+import { runTypeg...
2025-08-29T21:51:13
golang/go
7a38975a48ac735e62b389957bfc898437d628dc
aa5de9ebb55bbd5e0a38304f8f8e603b2ec03238
os: trivial comment fix "Geese" here looks like an autocorrect-o of "oses", I think writing it out makes more sense. Change-Id: Iba89a6c0b94657e2e93937cc153f07aea1d04e04 GitHub-Last-Rev: 4f3a780f327d6c807e9b154d781ee69a10d391e4 GitHub-Pull-Request: golang/go#74332 Reviewed-on: https://go-review.googlesource.com/c/go/...
[ { "path": "src/os/file.go", "patch": "@@ -616,7 +616,7 @@ func UserHomeDir() (string, error) {\n \tif v := Getenv(env); v != \"\" {\n \t\treturn v, nil\n \t}\n-\t// On some geese the home directory is not always defined.\n+\t// On some operating systems the home directory is not always defined.\n \tswitch r...
2025-06-22T17:16:36
rust-lang/rust
baa74a85ee2e901f28576cd81429d18da99875df
c4a69d4712effc7f51c05ce01a882e69f178784a
Remove `DepKind` name plumbing. There is a bunch of plumbing to record the string `"foo"` for each variant `DepKind::foo`. But that's what the `Debug `impl` now produces. So this commit removes the plumbing.
[ { "path": "compiler/rustc_middle/src/dep_graph/dep_node.rs", "patch": "@@ -83,10 +83,6 @@ impl DepKind {\n *self as usize\n }\n \n- pub(crate) fn name(self) -> &'static str {\n- DEP_KIND_NAMES[self.as_usize()]\n- }\n-\n /// This is the highest value a `DepKind` can have. It's us...
2026-02-17T01:55:14
nodejs/node
5633c62219e199baac833e8862d60333d85dc3d3
7cb3a662dad3a3d1af14c8657992274f7c426924
http: don't emit error after destroy PR-URL: https://github.com/nodejs/node/pull/55457 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: James M Snell <jasne...
[ { "path": "lib/_http_outgoing.js", "patch": "@@ -908,6 +908,10 @@ OutgoingMessage.prototype.write = function write(chunk, encoding, callback) {\n };\n \n function onError(msg, err, callback) {\n+ if (msg.destroyed) {\n+ return;\n+ }\n+\n const triggerAsyncId = msg.socket ? msg.socket[async_id_symbol]...
2024-10-28T12:57:58
golang/go
aa5de9ebb55bbd5e0a38304f8f8e603b2ec03238
63ec70d4e1350f44caf950cf3f675ae2cb7ea453
synctest: fix comments for time.Now() in synctests Also add a test case to make sure that time.Now() results in the documented date. Change-Id: Ic4cc577eba485b7c6e1a64122da06d7075bbe12e Reviewed-on: https://go-review.googlesource.com/c/go/+/685677 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.g...
[ { "path": "src/testing/synctest/example_test.go", "patch": "@@ -21,7 +21,7 @@ import (\n \n func TestTime(t *testing.T) {\n \tsynctest.Test(t, func(t *testing.T) {\n-\t\tstart := time.Now() // always midnight UTC 2001-01-01\n+\t\tstart := time.Now() // always midnight UTC 2000-01-01\n \t\tgo func() {\n \t\t...
2025-07-04T18:40:42
vercel/next.js
91d78d1035585b2eb746c4dd4615b838264c8673
50edb74488b0c2becf74d62a33d8b1721f09742d
[turbopack] Create a simple benchmark to measure the overhead of turbotasks (#82982) This benchmark works by * creating a simple busy wait function to simulate cpu bound work - This is mostly to prove that we are measuring overheads and not some feature of small tasks. The overheads for a 1us task are ~identical t...
[ { "path": "turbopack/crates/turbo-tasks-backend/benches/mod.rs", "patch": "@@ -3,13 +3,14 @@\n \n use criterion::{Criterion, criterion_group, criterion_main};\n \n+pub(crate) mod overhead;\n pub(crate) mod scope_stress;\n pub(crate) mod stress;\n \n criterion_group!(\n name = turbo_tasks_backend_stress;...
2025-08-29T15:39:19
rust-lang/rust
c4a69d4712effc7f51c05ce01a882e69f178784a
90b994b8832e913f08930dfc5f40b001856595ca
Bring back `enum DepKind`. It was removed in #115920 to enable it being moved to `rustc_query_system`, a move that has recently been reversed. It's much simpler as an enum. Also: - Remove the overly complicated `Debug` impl for `DepKind`. - Remove the trivial `DepKind` associated constants (`NULL` et al.) - Add an as...
[ { "path": "compiler/rustc_incremental/src/assert_dep_graph.rs", "patch": "@@ -44,9 +44,7 @@ use rustc_hir::attrs::AttributeKind;\n use rustc_hir::def_id::{CRATE_DEF_ID, DefId, LocalDefId};\n use rustc_hir::intravisit::{self, Visitor};\n use rustc_middle::bug;\n-use rustc_middle::dep_graph::{\n- DepGraphQ...
2026-02-17T00:36:48
nodejs/node
7cb3a662dad3a3d1af14c8657992274f7c426924
4b48f9b63307b41c1a7ec872aaa82f74f95d2be7
module: allow ESM that failed to be required to be re-imported When a ESM module cannot be loaded by require due to the presence of TLA, its module status would be stopped at kInstantiated. In this case, when it's imported again, we should allow it to be evaluated asynchronously, as it's also a common pattern for user...
[ { "path": "lib/internal/modules/esm/module_job.js", "patch": "@@ -22,7 +22,7 @@ let debug = require('internal/util/debuglog').debuglog('esm', (fn) => {\n debug = fn;\n });\n \n-const { ModuleWrap, kEvaluated } = internalBinding('module_wrap');\n+const { ModuleWrap, kInstantiated } = internalBinding('modul...
2024-10-28T12:21:22
electron/electron
4164ef93ad57ba30bd1fe9bf31ea922960f9cd15
d13a93fb616f90cdcd58f97c274554b0253ea35e
refactor: remove banned std::to_string() calls (#41087) * refactor: do not use banned std::to_string() in ServiceWorkerContext::GetAllRunningWorkerInfo() * refactor: do not use banned std::to_string() in REPORT_AND_RETURN_IF_FAILED() * refactor: do not use banned std::to_string() in JSChunkedDataPipeGetter::OnWr...
[ { "path": "shell/browser/api/electron_api_service_worker_context.cc", "patch": "@@ -7,6 +7,7 @@\n #include <string_view>\n #include <utility>\n \n+#include \"base/strings/string_number_conversions.h\"\n #include \"chrome/browser/browser_process.h\"\n #include \"content/public/browser/console_message.h\"\n #...
2024-01-24T22:43:31
golang/go
ab7f839280df8734c388046f957f7f37ae5b0998
47b07a87a65584f7b1c1efa26cf94e551e72dc2c
[dev.simd] cmd/compile: fix maskreg/simdreg chaos This CL fixes some errors left by CL 685895. Change-Id: I35ee36287fc964a82fd3c88764b688bd4491be65 Reviewed-on: https://go-review.googlesource.com/c/go/+/687095 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherr...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1043,8 +1043,8 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tx := v.Args[0].Reg()\n \t\ty := v.Reg()\n \t\tif v.Type.IsSIMD() {\n-\t\t\tx = simdReg(v.Args[0])\n-\t\t\ty = simdReg(v)\n+\t\t\tx = simdOrMaskReg(v.Args[0])\n+\t\t\ty =...
2025-07-09T22:33:25
rust-lang/rust
90b994b8832e913f08930dfc5f40b001856595ca
1d410c58312119c1418346bec21ef5fe8e96d77e
Rename query `dep_kind`. The next commit will bring back `enum DepKind` and there would be a variant `DepKind::dep_kind`. This makes it impossible to have a variable named `dep_kind`, because the `bindings_with_variant_name` lint is overzealous. For this code: ``` let dep_kind = DepKind::dep_kind; ``` the lint will gi...
[ { "path": "compiler/rustc_codegen_ssa/src/base.rs", "patch": "@@ -911,7 +911,7 @@ impl CrateInfo {\n .rev()\n .copied()\n .filter(|&cnum| {\n- let link = !tcx.dep_kind(cnum).macros_only();\n+ let link = !tcx.crate_dep_kind(cnum).macros_only()...
2026-02-17T00:37:01
facebook/react
82a0a5f88a1bd0f2a0af52e44bbacff1207fc144
2e540e22b2b4038a278b2875306976b016fb31a9
compiler: fixture for suboptimal jsx sibling memo block merging React Compiler attempts to merge consecutive reactive scopes in order to reduce overhead. The basic idea is that if two consecutive scopes would always invalidate together then we should merge them. It gets more complicated, though, because values produce...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/merge-consecutive-scopes-deps-subset-of-decls.expect.md", "patch": "@@ -0,0 +1,84 @@\n+\n+## Input\n+\n+```javascript\n+import { useState } from \"react\";\n+\n+function Component() {\n+ const [count, setCount] = useSt...
2024-05-21T12:10:27
vercel/next.js
50edb74488b0c2becf74d62a33d8b1721f09742d
11762a78fb132ab211945b87c94184c597eba7e1
[ppr] RDC for RSCs (redo) (#80853) ## What? This PR introduces the Resume Data Cache (RDC) functionality to improve handling of dynamic React Server Component (RSC) requests when Partial Pre-rendering (PPR) is enabled. This enhancement enables dynamic RSC responses to utilize the Resume Data Cache, significantly redu...
[ { "path": "packages/next/errors.json", "patch": "@@ -795,5 +795,8 @@\n \"794\": \"Invalid <Link> with <a> child. Please remove <a>.\\nLearn more: https://nextjs.org/docs/messages/invalid-new-link-with-extra-anchor\",\n \"795\": \"\\\\`%s\\\\` was called from a Server Component. Next.js should be prevent...
2025-08-29T15:27:06
electron/electron
031d6368230853fe601ff5fe36fe86789a1a4fb0
5ced88a90a6471ceb6d90b8582de2d31f8991132
fix: only remove hijackable envs from foreign parent (#41079)
[ { "path": "filenames.gni", "patch": "@@ -656,7 +656,6 @@ filenames = {\n \"shell/common/node_includes.h\",\n \"shell/common/node_util.cc\",\n \"shell/common/node_util.h\",\n- \"shell/common/node_util_mac.mm\",\n \"shell/common/options_switches.cc\",\n \"shell/common/options_switches.h...
2024-01-24T15:51:27
golang/go
63ec70d4e1350f44caf950cf3f675ae2cb7ea453
8131635e5a9c7ae2fd2c083bed9e841d27226500
crypto/cipher: Fix comment punctuation Change-Id: I7dc086a87d28ab847288eed13f719421420cd004 Reviewed-on: https://go-review.googlesource.com/c/go/+/686997 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
[ { "path": "src/crypto/cipher/cfb.go", "patch": "@@ -86,7 +86,7 @@ func NewCFBDecrypter(block Block, iv []byte) Stream {\n func newCFB(block Block, iv []byte, decrypt bool) Stream {\n \tblockSize := block.BlockSize()\n \tif len(iv) != blockSize {\n-\t\t// stack trace will indicate whether it was de or encryp...
2025-07-09T19:52:09
rust-lang/rust
1d410c58312119c1418346bec21ef5fe8e96d77e
c043085801b7a884054add21a94882216df5971c
Fix a typo.
[ { "path": "compiler/rustc_incremental/src/persist/clean.rs", "patch": "@@ -9,7 +9,7 @@\n //! - `#[rustc_clean(cfg=\"rev2\")]` same as above, except that the\n //! fingerprints must be the SAME (along with all other fingerprints).\n //!\n-//! - `#[rustc_clean(cfg=\"rev2\", loaded_from_disk='typeck\")]` ass...
2026-02-17T01:14:37
facebook/react
2e540e22b2b4038a278b2875306976b016fb31a9
2e3e6a9b1cc97ec91248be74565e7ccbf6946067
Set the current fiber to the source of the error during error reporting (#29044) This lets us expose the component stack to the error reporting that happens here as `console.error` patching. Now if you just call `console.error` in the error handlers it'll get the component stack added to the end by React DevTools. ...
[ { "path": "packages/react-devtools-shared/src/__tests__/treeContext-test.js", "patch": "@@ -2586,16 +2586,14 @@ describe('TreeListContext', () => {\n utils.act(() => TestRenderer.create(<Contexts />));\n \n expect(store).toMatchInlineSnapshot(`\n- ✕ 1, ⚠ 0\n [root]\n- ...
2024-05-23T16:39:52
vercel/next.js
94414f7897499bc526218d4d395ad6a1a0266e88
81bd026e753515284427baff1e143ff5af1d7239
bugfix: Bad `next.route` on `pages` dir OTel spans for `404`s / `500`s (#77150) ## Issue - Resolves https://github.com/vercel/next.js/issues/82102 ## What it Does Prevents the root span attribute `next.route` from being overwritten once set for a request. This resolves two issues: 1. Fixes `404`s and `500`s in the...
[ { "path": "packages/next/src/server/lib/trace/tracer.ts", "patch": "@@ -456,7 +456,7 @@ class NextTracerImpl implements NextTracer {\n public setRootSpanAttribute(key: AttributeNames, value: AttributeValue) {\n const spanId = context.active().getValue(rootSpanIdKey) as number\n const attributes = ...
2025-08-29T13:50:25
electron/electron
1af9612edfdd9cd7f7d4aecd002f26ee74c0b2aa
1300e83884595a3c89c24bd4d42f3a1bbbb6fe7d
fix: ElectronBrowserContext::PartitionKey comparisons (#41055) * fix: ElectronBrowserContext::PartitionKey comparisons Use c++20 default comparisons to simplify + fix PartitionKey sorting: - The equality operator is broken. `PartitionKey{"foo", false}` is both equal, to and less than, `PartitionKey{"foo", tru...
[ { "path": "shell/browser/electron_browser_context.h", "patch": "@@ -9,6 +9,7 @@\n #include <memory>\n #include <optional>\n #include <string>\n+#include <string_view>\n #include <variant>\n #include <vector>\n \n@@ -80,41 +81,22 @@ class ElectronBrowserContext : public content::BrowserContext {\n \n // pa...
2024-01-23T15:41:44
golang/go
47b07a87a65584f7b1c1efa26cf94e551e72dc2c
08cd62e9f50b10a19f96b94c1e75f868b958d113
[dev.simd] cmd/compile, simd: fix Int64x2 Greater output type to mask This CL is generated by CL 686821. Change-Id: I4bc4fa717ff858299b13955a40e750709a796fba Reviewed-on: https://go-review.googlesource.com/c/go/+/686998 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj...
[ { "path": "src/simd/ops_amd64.go", "patch": "@@ -2248,7 +2248,7 @@ func (x Int32x8) Greater(y Int32x8) Mask32x8\n // Greater compares for greater than.\n //\n // Asm: VPCMPGTQ, CPU Feature: AVX\n-func (x Int64x2) Greater(y Int64x2) Int64x2\n+func (x Int64x2) Greater(y Int64x2) Mask64x2\n \n // Greater compa...
2025-07-09T21:16:03
vercel/next.js
e657c383fd901ee829507dc2325b85f0f3ce8133
7b6136b0d66e0462d0dcc15d5bb634d2fa5cb26b
Turbopack: fix persistent caching test case (#83170) ### What? The test case was broken and never tested if persistent caching was caching at all
[ { "path": "test/e2e/persistent-caching/my-loader.js", "patch": "@@ -1,4 +1,5 @@\n module.exports = async function myLoader(source) {\n+ console.log('Loader is running!')\n // Make webpack consider the build as large change which makes it persistent cache it sooner\n await new Promise((resolve) => setTi...
2025-08-29T08:31:50
electron/electron
1300e83884595a3c89c24bd4d42f3a1bbbb6fe7d
03a3deca181807c2b152264a11f92c70b7adc9ef
docs: fixed typos and grammatical errors (#40966) * docs: fixed typos * Update docs/tutorial/performance.md Co-authored-by: Keeley Hammond <vertedinde@electronjs.org> * Update performance.md --------- Co-authored-by: Keeley Hammond <vertedinde@electronjs.org>
[ { "path": "docs/tutorial/devices.md", "patch": "@@ -33,7 +33,7 @@ clicked.\n ## WebHID API\n \n The [WebHID API](https://web.dev/hid/) can be used to access HID devices such\n-as keyboards and gamepads. Electron provides several APIs for working with\n+as keyboards and gamepads. Electron provides several A...
2024-01-19T14:21:42
facebook/react
2e3e6a9b1cc97ec91248be74565e7ccbf6946067
4c2e457c7c820e5b4bc895735a703cdbf40f3175
Unify ReactFiberCurrentOwner and ReactCurrentFiber (#29038) We previously had two slightly different concepts for "current fiber". There's the "owner" which is set inside of class components in prod if string refs are enabled, and sometimes inside function components in DEV but not other contexts. Then we have...
[ { "path": "packages/react-devtools-shared/src/__tests__/treeContext-test.js", "patch": "@@ -2586,14 +2586,14 @@ describe('TreeListContext', () => {\n utils.act(() => TestRenderer.create(<Contexts />));\n \n expect(store).toMatchInlineSnapshot(`\n- ✕ 2, ⚠ 0\n+ ✕ 1, ⚠ 0\n ...
2024-05-23T16:25:23
golang/go
8131635e5a9c7ae2fd2c083bed9e841d27226500
67c1704444ba9661699a80d0ea0a2df20b4107e2
runtime: run TestSignalDuringExec in its own process group TestSignalDuringExec sends a SIGWINCH to the whole process group. However, it may execute concurrently with other copies of the runtime tests, especially through `go tool dist`, and gdb version <12.1 has a bug in non-interactive mode where recieving a SIGWINCH...
[ { "path": "src/runtime/runtime-gdb_test.go", "patch": "@@ -78,6 +78,9 @@ func checkGdbVersion(t *testing.T) {\n \tif major < 10 {\n \t\tt.Skipf(\"skipping: gdb version %d.%d too old\", major, minor)\n \t}\n+\tif major < 12 || (major == 12 && minor < 1) {\n+\t\tt.Logf(\"gdb version <12.1 is known to crash du...
2025-07-09T15:50:06
nodejs/node
4b48f9b63307b41c1a7ec872aaa82f74f95d2be7
7270f845964ed86e8bd70fa24dbc6616b3333b3a
build: fix GN arg used in generate_config_gypi.py PR-URL: https://github.com/nodejs/node/pull/55530 Reviewed-By: Cheng Zhao <zcbenz@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/generate_config_gypi.py", "patch": "@@ -19,11 +19,7 @@\n \n # Regex used for parsing results of \"gn args\".\n GN_RE = re.compile(r'(\\w+)\\s+=\\s+(.*?)$', re.MULTILINE)\n-\n-if sys.platform == 'win32':\n- GN = 'gn.exe'\n-else:\n- GN = 'gn'\n+GN = 'gn.bat' if sys.platform == 'win32' else ...
2024-10-28T09:27:31
vercel/next.js
186174a73ffe702072c5a38b3efba1703cec4a58
cad41015dcaead1565bd361c7975cb32d559473d
Turbopack: fix hanging of persistent caching with webpack loaders (#83201) ### What? When webpack loaders where invalidated after restoring from persistent cache, the process pool is not correctly recreated. It doesn't rewrite the output files to disk before creating the pool.
[ { "path": "turbopack/crates/turbopack-node/src/evaluate.rs", "patch": "@@ -1,4 +1,6 @@\n-use std::{borrow::Cow, iter, ops::ControlFlow, thread::available_parallelism, time::Duration};\n+use std::{\n+ borrow::Cow, iter, ops::ControlFlow, sync::Arc, thread::available_parallelism, time::Duration,\n+};\n \n ...
2025-08-29T07:49:12
facebook/react
4c2e457c7c820e5b4bc895735a703cdbf40f3175
f994737d14e83f22ead70e6a41f87353008b73cf
compiler: Handle TSNonNullAssertion expressions (#29218) ## Summary We ran React compiler against part of our codebase and collected compiler errors. One of the more common non-actionable errors is caused by usage of the `!` TypeScript non-null assertion operation: ``` (BuildHIR::lowerExpression) Handle TSNon...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -2407,6 +2407,10 @@ function lowerExpression(\n loc: expr.node.loc ?? GeneratedSource,\n };\n }\n+ case \"TSNonNullExpression\": {\n+ let expr = exprPath as NodePath<t.TSNonNullExpression>;\...
2024-05-22T22:42:06
nodejs/node
c35cbcde4b7c8821587ad96d0e69942c01ace23d
5d4fee8975aabd04fdfba0ff407e4dbd18d94411
build: fix GN build for sqlite and nghttp2 PR-URL: https://github.com/nodejs/node/pull/55529 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Cheng Zhao <zcbenz@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "deps/nghttp2/unofficial.gni", "patch": "@@ -34,6 +34,9 @@ template(\"nghttp2_gn_build\") {\n if (is_clang || !is_win) {\n cflags_c = [\n \"-Wno-implicit-fallthrough\",\n+ # Ref https://github.com/nghttp2/nghttp2/pull/2258\n+ # This can be removed when the above PR ...
2024-10-27T09:21:39
electron/electron
f4ee3c1b2a4a2c0ae69140a04cc76d0ffbaab320
6ea7da4b90fcca23ec9858a38e10d59bd98506bf
chore: bump node to v20.11.0 (main) (#40941) * chore: bump node in DEPS to v20.11.0 * module: bootstrap module loaders in shadow realm https://github.com/nodejs/node/pull/48655 * src: add commit hash shorthand in zlib version https://github.com/nodejs/node/pull/50158 * v8,tools: expose necessary V8 defi...
[ { "path": "BUILD.gn", "patch": "@@ -9,7 +9,7 @@ import(\"//pdf/features.gni\")\n import(\"//ppapi/buildflags/buildflags.gni\")\n import(\"//printing/buildflags/buildflags.gni\")\n import(\"//testing/test.gni\")\n-import(\"//third_party/electron_node/node.gni\")\n+import(\"//third_party/electron_node/electro...
2024-01-18T21:16:45
golang/go
54c9d776302d53ab1907645cb67fa4a948e1500c
fca43a8436f2dbec981fb002c6ba31fe9ff89dd6
cmd/go: disable support for multiple vcs in one module Removes the somewhat redundant vcs.FromDir, "allowNesting" argument, which was always enabled, and disallow multiple VCS metadata folders being present in a single directory. This makes VCS injection attacks much more difficult. Also adds a GODEBUG, allowmultiple...
[ { "path": "doc/godebug.md", "patch": "@@ -189,6 +189,11 @@ crypto/x509.CreateCertificate. The setting `x509sha256skid=0` reverts to SHA-1.\n Go 1.25 corrected the semantics of contention reports for runtime-internal locks,\n and so removed the [`runtimecontentionstacks` setting](/pkg/runtime#hdr-Environment...
2025-06-09T18:23:46
facebook/react
81c5ff2e040ee56b85b8bd27a2f8065661f17fee
217b2ccf160d7594a926d276a75c7312b299be4d
[Flight Reply] retain listeners when resolving models with existing listeners (#29207) In #29201 a fix was made to ensure we don't "forget" about some listeners when handling cyclic chunks. In #29204 another fix was made for a special case when the chunk already has listeners before it first resolves. This imple...
[ { "path": "packages/react-server/src/ReactFlightReplyServer.js", "patch": "@@ -205,8 +205,23 @@ function wakeChunkIfInitialized<T>(\n case PENDING:\n case BLOCKED:\n case CYCLIC:\n- chunk.value = resolveListeners;\n- chunk.reason = rejectListeners;\n+ if (chunk.value) {\n+ ...
2024-05-21T23:16:20
vercel/next.js
628540fbbc9cb2cce858cba63d56e973744f2f83
efac8e2c501ca7e523cb9507189d36320afa49b3
Turbopack: Add new webpack loader rule/condition syntax in config (#82857) # This PR: - [x] Allow a condition to be specified inline within a `rule` - [x] Support `all`/`any`/`not` for conditions - [x] Simple flattening/optimization logic for the generated `RuleCondition` objects - [x] Unit test coverage of flatten...
[ { "path": "Cargo.lock", "patch": "@@ -9482,6 +9482,7 @@ dependencies = [\n \"anyhow\",\n \"codspeed-criterion-compat\",\n \"difference\",\n+ \"either\",\n \"regex\",\n \"rstest\",\n \"rstest_reuse\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "crates/next-...
2025-08-29T02:49:57
nodejs/node
7ddd2c2282968cdb17b541bb8fe07f039c429897
53b1050e6f692ee0330e1076e045b58aada0032d
2024-10-24, Version 23.1.0 (Current) Notable changes: assert: * (SEMVER-MINOR) make `assertion_error` use Myers diff algorithm (Giovanni Bucci) https://github.com/nodejs/node/pull/54862 buffer: * (SEMVER-MINOR) make `Buffer` work with resizable `ArrayBuffer` (James M Snell) https://github.com/nodejs/node/pull/553...
[ { "path": "CHANGELOG.md", "patch": "@@ -38,7 +38,8 @@ release.\n <th title=\"LTS Until 2025-04\"><a href=\"doc/changelogs/CHANGELOG_V18.md\">18</a> (LTS)</th>\n </tr>\n <tr>\n-<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.0.0\">23.0.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.1.0\">...
2024-10-24T09:19:18
electron/electron
135c542555dc14af9cc0e21a9f741a380fdec706
3dafb318a864b76fbe6412e00965af867da05b25
feat: Windows integrity check (#40504) * Add Windows integrity check feature into Electron Co-authored-by: Weiyun Dai <weiyun.chn@gmail.com> * Add integrity checker header file to sources Co-authored-by: Weiyun Dai <weiyun.chn@gmail.com> * Moved integrity checker after checking command line args Co-auth...
[ { "path": "BUILD.gn", "patch": "@@ -660,6 +660,7 @@ source_set(\"electron_lib\") {\n }\n if (is_win) {\n libs += [ \"dwmapi.lib\" ]\n+ sources += [ \"shell/common/asar/archive_win.cc\" ]\n deps += [\n \"//components/crash/core/app:crash_export_thunks\",\n \"//ui/native_theme:nativ...
2024-01-18T20:00:49
golang/go
86b5ba731044dcbb0400f03293989796ed5807fe
ef46e1b164e4a530c278434a9aaa2b23ce9a9d12
internal/trace: only test for sync preemption if async preemption is off Currently, the test change made for the fix to #68090 is flaky. This is because the sync-point-only goroutine that we expect to be sync preempted might only ever get async preempted in some circumstances. This change adds a variant to all trace ...
[ { "path": "src/internal/trace/trace_test.go", "patch": "@@ -23,7 +23,7 @@ import (\n )\n \n func TestTraceAnnotations(t *testing.T) {\n-\ttestTraceProg(t, \"annotations.go\", func(t *testing.T, tb, _ []byte, _ bool) {\n+\ttestTraceProg(t, \"annotations.go\", func(t *testing.T, tb, _ []byte, _ string) {\n \t...
2025-07-07T17:19:17
facebook/react
9b3f909cc19fd848dcf8cba2cc3750f32053c056
0a0a5c02f138b37e93d5d93341b494d0f5d52373
[Flight] don't overwrite existing chunk listeners in 'wakeChunkIfInitialized' (#29204) Follow up to https://github.com/facebook/react/pull/29201. If a chunk had listeners attached already (e.g. because `.then` was called on the chunk returned from `createFromReadableStream`), `wakeChunkIfInitialized` would overwrit...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -320,8 +320,24 @@ function wakeChunkIfInitialized<T>(\n case PENDING:\n case BLOCKED:\n case CYCLIC:\n- chunk.value = resolveListeners;\n- chunk.reason = rejectListeners;\n+ if (chunk.value) {\n+ for (...
2024-05-21T21:04:46
vercel/next.js
3c3c4dbe7fd0e6324189b2eb0c8b2282bd5b964c
6b83df95598fb1c8711bfbbf3969292baa94c9b7
[turbopack] Change execution and snapshot tests to check for the existence of files rather than directories (#83189) This fixes an annoying devex issue when switching branches
[ { "path": "turbopack/crates/turbopack-tests/tests/execution.rs", "patch": "@@ -102,8 +102,12 @@ fn register() {\n //\n // \"Skip\" directories named `__skipped__`, which include test directories to\n // skip.\n-#[testing::fixture(\"tests/execution/*/*/*\", exclude(\"node_modules|__skipped__\"))]\n+#[testing...
2025-08-29T00:12:51
nodejs/node
53b1050e6f692ee0330e1076e045b58aada0032d
cbb72ebfa7888504c2347624c19f6648ccee2679
module: add module.stripTypeScriptTypes PR-URL: https://github.com/nodejs/node/pull/55282 Fixes: https://github.com/nodejs/node/issues/54300 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Paolo Insogna <paolo@cowt...
[ { "path": "doc/api/module.md", "patch": "@@ -270,6 +270,105 @@ changes:\n Register a module that exports [hooks][] that customize Node.js module\n resolution and loading behavior. See [Customization hooks][].\n \n+## `module.stripTypeScriptTypes(code[, options])`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n...
2024-10-24T18:27:58
electron/electron
3dafb318a864b76fbe6412e00965af867da05b25
7e6fb97a2f4659d1416300a1c38f7294af081fb2
test: fixup assertNotWindows (#41045) * chore: fixup assertNotWindows * remove logging
[ { "path": "spec/lib/window-helpers.ts", "patch": "@@ -29,13 +29,19 @@ export const closeWindow = async (\n await ensureWindowIsClosed(window);\n \n if (assertNotWindows) {\n- const windows = BaseWindow.getAllWindows();\n- try {\n- expect(windows).to.have.lengthOf(0);\n- } finally {\n- ...
2024-01-18T19:04:43
golang/go
ef46e1b164e4a530c278434a9aaa2b23ce9a9d12
75b43f9a97ada1f0fce7a5775d4ab373bd0dad9c
cmd/internal/doc: fix GOROOT skew and path joining bugs Use the goCmd() function to get the go command to invoke, so that when GOROOT is set, the go command that's invoked uses the same GOROOT. Otherwise there will be skew between the go command and the tools and runtime. Also use the environment when determining GOPR...
[ { "path": "src/cmd/internal/doc/main.go", "patch": "@@ -15,6 +15,7 @@ import (\n \t\"io\"\n \t\"log\"\n \t\"net\"\n+\t\"net/url\"\n \t\"os\"\n \t\"os/exec\"\n \t\"os/signal\"\n@@ -214,7 +215,10 @@ func doPkgsite(urlPath string) error {\n \t\treturn fmt.Errorf(\"failed to find port for documentation server: ...
2025-07-01T21:16:53
facebook/react
8f3c0525f964fc5c75a627a6852f63efce1796b7
5cc9f69a74ac42d55ad635229e9eaf129a1f0862
[Flight / Flight Reply] Don't clear pending listeners when entering blocked state (#29201) Fixes #29200 The cyclic state might have added listeners that will still need to be invoked. This happens if we have a cyclic reference AND end up blocked. We have already cleared these before entering the parsing when we...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -506,8 +506,6 @@ function initializeModelChunk<T>(chunk: ResolvedModelChunk<T>): void {\n // We have to go the BLOCKED state until they're resolved.\n const blockedChunk: BlockedChunk<T> = (chunk: any);\n blockedChunk...
2024-05-21T18:12:20
nodejs/node
f630fde68baf1c80b0b4312c24920a47373a5394
c1bbd634581eec25e6254d80fd9e6d1423de8827
deps: V8: cherry-pick f915fa4c9f41 Original commit message: [osr] Ensure trying to osr does not skip loop interrupts Fixed: 374013413 Change-Id: I52d7b4e165e0abd0bd517a81d2e8ef3f1f802bfb Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5946288 Commit-Queue: Darius Mercadier <dmerca...
[ { "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.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n...
2024-10-21T12:33:55
vercel/next.js
a8c9d07a026a02831af83d874a91f42dc58a8866
b4ac90a1352f1d00971586eda457add8ae4e5c61
add unstable_prefetch config to typescript plugin (#83181) In #8290 i forgot to update our typescript plugin, so exporting `unstable_prefetch` caused it to error. This is fixed now: <img width="871" height="145" alt="Screenshot 2025-08-28 at 17 19 18" src="https://github.com/user-attachments/assets/ca295029-5a93-483b...
[ { "path": "packages/next/src/server/typescript/rules/config.ts", "patch": "@@ -12,6 +12,7 @@ import {\n LEGACY_CONFIG_EXPORT,\n } from '../constant'\n import type tsModule from 'typescript/lib/tsserverlibrary'\n+import type { AppSegmentConfig } from '../../../build/segment-config/app/app-segment-config'\n...
2025-08-28T17:11:48
electron/electron
7e6fb97a2f4659d1416300a1c38f7294af081fb2
df7f07a8af35a7b96c892374f0b51f3d432fc705
fix: crash when `dialog.showMessageBoxSync` with missing buttons (#40996) * fix: crash when dialog.showMessageBoxSync missing buttons * chore: feedback from review
[ { "path": "shell/browser/ui/message_box_mac.mm", "patch": "@@ -76,15 +76,16 @@\n [[ns_buttons objectAtIndex:settings.default_id] setKeyEquivalent:@\"\\r\"];\n }\n \n- // Bind cancel id button to escape key if there is more than one button\n- if (button_count > 1 && settings.cancel_id >= 0 &&\n- ...
2024-01-18T12:21:15
golang/go
33fb4819f59d16c483be6cf2016f79eef3543691
a995269a9383d90a3bdd029989bafc8fc3b19dc3
cmd/compile/internal/ssa: skip EndSequence entries in TestStmtLines The TestStmtLines test has been accessing a nil pointer when it tries to look up LineEntry.File.Name on a line entry with EndSequence set to true. The doc for EndSequence specifies that if EndSequence is set, only it and the Address field are meaningf...
[ { "path": "src/cmd/compile/internal/ssa/stmtlines_test.go", "patch": "@@ -120,6 +120,11 @@ func TestStmtLines(t *testing.T) {\n \t\t\t\tbreak\n \t\t\t}\n \t\t\tmust(err)\n+\t\t\tif le.EndSequence {\n+\t\t\t\t// When EndSequence is true only\n+\t\t\t\t// le.Address is meaningful, skip.\n+\t\t\t\tcontinue\n+\...
2025-07-04T10:45:42
facebook/react
5cc9f69a74ac42d55ad635229e9eaf129a1f0862
7621466b1b17965032aed24591e9b67fcd926a1b
Fix assertConsoleErrorDev on message mismatch with withoutStack: true (#29198) ## Summary ```js assertConsoleErrorDev([ ['Hello', {withoutStack: true}] ]) ``` now errors with a helpful diff message if the message mismatched. See first commit for previous behavior. ## How did you test this change? - ...
[ { "path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js", "patch": "@@ -2417,6 +2417,32 @@ describe('ReactInternalTestUtils console assertions', () => {\n If all errors should include the component stack, you may need to remove {withoutStack: true} from the assertConsoleEr...
2024-05-21T16:48:41
nodejs/node
e90704cd9ed351e6e1709e696f9daae783685fe7
f6cfdb918ec704b83b509c34e7d4f491f9ac7528
build: fix GN build for cares/uv deps PR-URL: https://github.com/nodejs/node/pull/55477 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
[ { "path": "deps/cares/unofficial.gni", "patch": "@@ -38,7 +38,10 @@ template(\"cares_gn_build\") {\n ]\n }\n \n- include_dirs = [ \"src/lib\" ]\n+ include_dirs = [\n+ \"src/lib\",\n+ \"src/lib/include\",\n+ ]\n if (is_win) {\n include_dirs += [ \"config/win32\" ]\n ...
2024-10-23T03:48:59
vercel/next.js
b4ac90a1352f1d00971586eda457add8ae4e5c61
8d78f8f11014a02a9f7d15127bea21f9b865e428
[test] Add esm and cjs testing for next-config-ts (#83134) Split tests into ESM and CJS to ensure it works on both environments. The changes are mostly: 1. Split tests into two 2. Add `-esm` and `-cjs` for each 3. Add `packageJson: { type: 'module' }` to `-esm` test 4. Renamed `tsconfig.json` -> `tsconfig.tes...
[ { "path": "test/e2e/app-dir/next-config-ts/async-function/async-function-cjs.test.ts", "patch": "@@ -1,11 +1,11 @@\n import { nextTestSetup } from 'e2e-utils'\n \n-describe('next-config-ts-config-as-async-function', () => {\n+describe('next-config-ts-async-function-cjs', () => {\n const { next } = nextTes...
2025-08-28T15:45:33
electron/electron
df7f07a8af35a7b96c892374f0b51f3d432fc705
f97d8719e6071722c67d2a1ac371f80faee78b0e
fix: modal rounding on nonmodal windows (#41003) * fix: modal rounding on nonmodal windows * chore: feedback from review
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1402,14 +1402,15 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n if (vibrantView != nil && !vibrancy_type_.empty()) {\n const bool no_rounded_corner = !HasStyleMask(NSWindowStyleMaskTitled);\n const i...
2024-01-18T08:59:54
golang/go
a995269a9383d90a3bdd029989bafc8fc3b19dc3
6c3b5a2798c83d583cb37dba9f39c47300d19f1f
sort: clarify Less doc clarifies the requirements for Less Fixes https://github.com/golang/go/issues/73420 Change-Id: I7d49b10fad78c618d946b3bb161ce19680ede47a GitHub-Last-Rev: 7a49ad81923048bfc99b265dd89f012eefcf5699 GitHub-Pull-Request: golang/go#74333 Reviewed-on: https://go-review.googlesource.com/c/go/+/683275 ...
[ { "path": "src/sort/sort.go", "patch": "@@ -26,13 +26,15 @@ type Interface interface {\n \t// Sort may place equal elements in any order in the final result,\n \t// while Stable preserves the original input order of equal elements.\n \t//\n-\t// Less must describe a transitive ordering:\n+\t// Less must des...
2025-07-06T18:41:28
facebook/react
57fbe3ba3729935b7ce5b670e57d30d487134bcb
d14ce51327c1bd4daf78f5118ae23f8620ebad03
[Compiler playground] bold changed passes (#29159) <!-- 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, ple...
[ { "path": "compiler/apps/playground/components/Editor/Output.tsx", "patch": "@@ -187,13 +187,29 @@ function Output({ store, compilerOutput }: Props) {\n });\n }, [store.source, compilerOutput]);\n \n+ const changedPasses: Set<string> = new Set();\n+ let lastResult: string = \"\";\n+ for (const [pas...
2024-05-20T15:05:48
nodejs/node
47ad609d647ca504104c35cc97160e851af16e70
eb63cd24d23a38fb39bbe1b8a1bb8357eaf4be16
test: fix addons and node-api test assumptions PR-URL: https://github.com/nodejs/node/pull/55441 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/addons/repl-domain-abort/test.js", "patch": "@@ -38,7 +38,7 @@ process.on('exit', () => {\n \n const lines = [\n // This line shouldn't cause an assertion error.\n- `require('${buildPath}')` +\n+ `require(${JSON.stringify(buildPath)})` +\n // Log output to double check callback ran.\n ...
2024-10-22T07:49:19
vercel/next.js
90c0dcec0bfb00af298a5d179bba8b3125756632
1a5ef158f0905c599f84a5c12495307d13d8620f
Update middleware node version history with latest stable release (#83166) <!-- 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 makin...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/middleware.mdx", "patch": "@@ -680,6 +680,7 @@ Learn how to [configure Middleware](/docs/app/guides/self-hosting#middleware) wh\n \n | Version | Changes |\n | -...
2025-08-28T11:52:12
electron/electron
f97d8719e6071722c67d2a1ac371f80faee78b0e
021592200e4bcc0127ad6aebcee3caa578fb77f4
fix: use `HasStyleMask(NSWindowStyleMaskResizable)` instead of `IsResizable()` for enabling/disabling window maximize button (#40994)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -916,7 +916,8 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n \n void NativeWindowMac::UpdateZoomButton() {\n [[window_ standardWindowButton:NSWindowZoomButton]\n- setEnabled:IsResizable() && (CanMaximize...
2024-01-17T17:23:41
nodejs/node
1c2eecd6695ab0067806a70bc7c0fdcc0c15aaff
5983110545e7ac78ce6e3310f16ccfc90c0c3c1f
doc: add note about stdio streams in child_process PR-URL: https://github.com/nodejs/node/pull/55322 Fixes: https://github.com/nodejs/node/issues/15714 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "doc/api/child_process.md", "patch": "@@ -1061,6 +1061,15 @@ pipes between the parent and child. The value is one of the following:\n corresponds to the index in the `stdio` array. The stream must have an\n underlying descriptor (file streams do not start until the `'open'` event has\n oc...
2024-10-22T05:05:05
facebook/react
d14ce51327c1bd4daf78f5118ae23f8620ebad03
c325aec1ee5ae970ea70efc9b19574aa0e72c9a1
refactor[react-devtools]: rewrite context menus (#29049) ## Summary - While rolling out RDT 5.2.0 on Fusebox, we've discovered that context menus don't work well with this environment. The reason for it is the context menu state implementation - in a global context we define a map of registered context menus, basi...
[ { "path": "packages/react-devtools-inline/__tests__/__e2e__/components.test.js", "patch": "@@ -8,6 +8,7 @@ const devToolsUtils = require('./devtools-utils');\n const {test, expect} = require('@playwright/test');\n const config = require('../../playwright.config');\n const semver = require('semver');\n+\n te...
2024-05-20T14:12:21
electron/electron
6803624576dc0086b83bdf50051a0dfd96f71401
4949c4c4e130e63b861adfc0093453c510579000
fix: check for Node.js-created module when `contextIsolation` disabled (#40993)
[ { "path": "patches/node/chore_expose_importmoduledynamically_and.patch", "patch": "@@ -87,7 +87,7 @@ index 52c30dcb47d1faba0c2267e4381a624e450baa02..ba4c1a0d5a987e4d410b49f5c4716694\n \n MaybeLocal<Value> ModuleWrap::SyntheticModuleEvaluationStepsCallback(\n diff --git a/src/module_wrap.h b/src/module_wra...
2024-01-16T13:29:00
nodejs/node
5983110545e7ac78ce6e3310f16ccfc90c0c3c1f
d3526af7ff6c11cddc637d8c932a7481c1603a40
doc: add `isBigIntObject` to documentation Refs: https://github.com/nodejs/node/pull/19989 Fixes: https://github.com/nodejs/node/issues/55446 PR-URL: https://github.com/nodejs/node/pull/55450 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <d...
[ { "path": "doc/api/util.md", "patch": "@@ -2379,6 +2379,24 @@ util.types.isBigInt64Array(new BigInt64Array()); // Returns true\n util.types.isBigInt64Array(new BigUint64Array()); // Returns false\n ```\n \n+### `util.types.isBigIntObject(value)`\n+\n+<!-- YAML\n+added: v10.4.0\n+-->\n+\n+* `value` {any}\...
2024-10-22T05:00:25
facebook/react
c325aec1ee5ae970ea70efc9b19574aa0e72c9a1
ba51ebe03a3cf6ec86f940b09b8efc722c7ce905
Bump word-wrap from 1.2.3 to 1.2.5 in /compiler (#29064) Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jonschlinkert/word-wrap/releases">word-wrap's releases</a>.</em></p> <blockquote>...
[ { "path": "compiler/yarn.lock", "patch": "@@ -9813,9 +9813,9 @@ which@^2.0.1:\n isexe \"^2.0.0\"\n \n word-wrap@^1.2.3, word-wrap@~1.2.3:\n- version \"1.2.3\"\n- resolved \"https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c\"\n- integrity sha512-Hz/m...
2024-05-20T11:03:55
electron/electron
4949c4c4e130e63b861adfc0093453c510579000
61f619a5e66601f33ac698027d3581e933a46f39
chore: fix building blink_tests target (#40982)
[ { "path": "patches/chromium/fix_return_v8_value_from_localframe_requestexecutescript.patch", "patch": "@@ -203,6 +203,18 @@ index fa65331f40b90d812b71a489fd560e9359152d2b..390714d631dc88ef92d59ef9618a5706\n base::TimeTicks start_time_;\n const mojom::blink::UserActivationOption user_activation_option_...
2024-01-16T11:24:14
nodejs/node
fed28bf8134b20059cf96392a58abb8a81f8dca8
e92446536ed4e268c9eef6ae6f911e384c98eecf
build: fix uninstall script for AIX 7.1 Signed-off-by: Cloorc <13597105+cloorc@users.noreply.github.com> PR-URL: https://github.com/nodejs/node/pull/55438 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Abdirahim Musse <abdirahim.musse@ibm.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
[ { "path": "tools/install.py", "patch": "@@ -4,10 +4,15 @@\n import ast\n import errno\n import os\n+import platform\n import shutil\n import sys\n import re\n \n+current_system = platform.system()\n+\n+SYSTEM_AIX = \"AIX\"\n+\n def abspath(*args):\n path = os.path.join(*args)\n return os.path.abspath(pa...
2024-10-21T19:50:43
golang/go
72c39ef83470334b1e592312d30ebef9a1e8ddda
1ee72a15a3e893c82cc7108c49f141e824f941c2
[dev.simd] cmd/compile: fix the "always panic" code to actually panic without this change, the intrinsics of non-constant immediates just substitute a zero, which is wrong. Change-Id: I2c39ebedcfb0d0d6c072f4434f393027c6f3f033 Reviewed-on: https://go-review.googlesource.com/c/go/+/685575 Reviewed-by: Junyang Shao <sha...
[ { "path": "src/cmd/compile/internal/ssagen/intrinsics.go", "patch": "@@ -1636,7 +1636,7 @@ func opLen4(op ssa.Op, t *types.Type) func(s *state, n *ir.CallExpr, args []*ssa\n \n func plainPanicSimdImm(s *state) {\n \tcmp := s.newValue0(ssa.OpConstBool, types.Types[types.TBOOL])\n-\tcmp.AuxInt = 1\n+\tcmp.Aux...
2025-07-02T18:28:10
facebook/react
ba51ebe03a3cf6ec86f940b09b8efc722c7ce905
9abea0cb7c454319c2e8c54ce46e9fe1c044209e
Bump tough-cookie from 4.1.2 to 4.1.4 in /compiler (#29065) Bumps [tough-cookie](https://github.com/salesforce/tough-cookie) from 4.1.2 to 4.1.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/salesforce/tough-cookie/releases">tough-cookie's releases</a>.</em></p> <bl...
[ { "path": "compiler/yarn.lock", "patch": "@@ -9390,20 +9390,10 @@ to-regex-range@^5.0.1:\n dependencies:\n is-number \"^7.0.0\"\n \n-tough-cookie@^4.0.0:\n- version \"4.1.2\"\n- resolved \"https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.2.tgz#e53e84b85f24e0b65dd526f46628db6c85f6b874\"\n...
2024-05-20T11:03:29
electron/electron
b3e01220cb8511790d45ec3759faae1289ad197d
80b220d2140ad46e276176b72c5afd44fe27b0c9
refactor: fix deprecated base::Base64Encode() API calls (#40962) * refactor: replace deprecated Base64Encode() usage in IWC::NetworkResourceLoader::OnDataReceived() * refactor: replace deprecated Base64Encode() usage EncodeToken(const base::UnguessableToken& token)
[ { "path": "shell/browser/serial/serial_chooser_context.cc", "patch": "@@ -38,11 +38,8 @@ const char kUsbDriverKey[] = \"usb_driver\";\n std::string EncodeToken(const base::UnguessableToken& token) {\n const uint64_t data[2] = {token.GetHighForSerialization(),\n token.GetLowForS...
2024-01-15T10:01:35
vercel/next.js
91601608af4d1da55e4652e8304426d2882cece3
ada23ff30cd3dfce2c1156f5b8d71447314985a2
[metadata] refine metadata image error for webpack (#83139)
[ { "path": "packages/next/src/build/webpack/loaders/next-metadata-image-loader.ts", "patch": "@@ -126,14 +126,17 @@ async function nextMetadataImageLoader(\n }`\n }\n \n+ let imageError\n const imageSize: { width?: number; height?: number } = await getImageSize(\n content\n- ).catch((err) => er...
2025-08-28T11:35:08
nodejs/node
ee46d2297c648dc6cc8cbc0327c453514b878294
7e60b5e15b4549712009fe10d080777b7852eb71
Revert "path: fix bugs and inconsistencies" This reverts commit efbba60e5b8aed95b2413ff4169632bf3605c963. PR-URL: https://github.com/nodejs/node/pull/55414 Reviewed-By: Claudio Wunder <cwunder@gnome.org> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -700,7 +700,7 @@ Module._findPath = function(request, paths, isMain) {\n \n let exts;\n const trailingSlash = request.length > 0 &&\n- ((StringPrototypeCharCodeAt(request, request.length - 1) === CHAR_FORWARD_SLASH || (\n+ (StringPrototy...
2024-10-21T07:10:47
facebook/react
9abea0cb7c454319c2e8c54ce46e9fe1c044209e
8287cb92903fdfc983dcc8deecd8293402fc3bd4
Bump rustix from 0.37.22 to 0.37.27 in /compiler (#29173) Bumps [rustix](https://github.com/bytecodealliance/rustix) from 0.37.22 to 0.37.27. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bytecodealliance/rustix/commit/b38dc512628b5db8d08c26449ee2beed7ed51dcc"><code>b38dc51</code></a>...
[ { "path": "compiler/Cargo.lock", "patch": "@@ -756,9 +756,9 @@ checksum = \"d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76\"\n \n [[package]]\n name = \"rustix\"\n-version = \"0.37.22\"\n+version = \"0.37.27\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum ...
2024-05-20T11:02:35
golang/go
6c3b5a2798c83d583cb37dba9f39c47300d19f1f
dd687c386016445b2f4abc2a958963dd2056d95f
runtime: correct vdsoSP on S390X It should get the caller's SP. The current code gets the address of the first parameter, which is one word above the caller's SP. There is a slot for saving the LR at 0(SP) in the caller's frame. Fixes #62086 (for s390x). Change-Id: Ie8cbfabc8161b98658c884a32e0af72df189ea56 Reviewed-...
[ { "path": "src/runtime/sys_linux_s390x.s", "patch": "@@ -226,7 +226,7 @@ TEXT runtime·walltime(SB),NOSPLIT,$32-12\n \tMOVD\tR4, 24(R15)\n \n \tMOVD\tR14, R8 \t\t// Backup return address\n-\tMOVD\t$sec+0(FP), R4 \t// return parameter caller\n+\tMOVD\t$ret-8(FP), R4 \t// caller's SP\n \n \tMOVD\tR8, m_vdsoPC(...
2025-07-03T03:26:44
electron/electron
80b220d2140ad46e276176b72c5afd44fe27b0c9
57b29903e30a7bdb32776e248d25750b0953777a
refactor: use base::NoDestructor instead of base::LazyInstance (#40947) * refactor: use NoDestructor for g_io_thread_application_locale * refactor: use NoDestructor for ExtensionActionAPI::GetFactoryInstance() * refactor: use NoDestructor for ElectronExtensionsClient::GetPermissionMessageProvider() * refactor...
[ { "path": "patches/chromium/feat_add_support_for_overriding_the_base_spellchecker_download_url.patch", "patch": "@@ -9,15 +9,22 @@ production use cases. This is unlikely to be upstreamed as the change\n is entirely in //chrome.\n \n diff --git a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc...
2024-01-12T13:50:29
nodejs/node
7e60b5e15b4549712009fe10d080777b7852eb71
11fbdd8c9d7820f4812895bbaecad75bb80b2c55
test: fix invalid `file:` URL in `test-fs-path-dir` PR-URL: https://github.com/nodejs/node/pull/55454 Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/sequential/test-fs-path-dir.js", "patch": "@@ -5,7 +5,7 @@ const tmpdir = require('../common/tmpdir');\n const assert = require('assert');\n const path = require('path');\n const fs = require('fs');\n-const URL = require('url').URL;\n+const { pathToFileURL } = require('url');\n \n tmpdir.ref...
2024-10-21T00:27:11
vercel/next.js
678f1052d3653c0a897cb943f95c3c4d26ec6f19
5146e4c5024ef3a0b677bd9f48bbf64d9fd5e455
[Cache Components] Don't propagate tags/life for omitted caches (#82884) Caches with staleness/expiration below certain thresholds are not included in static prerenders and are treated as dynamic. However, the logic for propagating life/tags did not factor this in, meaning that a prerender could get `cacheLife("second...
[ { "path": "packages/next/src/export/routes/app-page.ts", "patch": "@@ -244,7 +244,10 @@ export async function exportAppPage(\n cacheControl,\n fetchMetrics,\n renderResumeDataCache: renderResumeDataCache\n- ? await stringifyResumeDataCache(renderResumeDataCache)\n+ ? await st...
2025-08-28T10:23:17
golang/go
dd687c386016445b2f4abc2a958963dd2056d95f
b3251514531123d7fd007682389bce7428d159a0
hash: document that Clone may only return ErrUnsupported or a nil error Updates #69521 Change-Id: I6a6a6964ce384a80c4c89efe67c260dc6e9ed6c8 Reviewed-on: https://go-review.googlesource.com/c/go/+/685235 Auto-Submit: Filippo Valsorda <filippo@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts....
[ { "path": "src/hash/hash.go", "patch": "@@ -64,7 +64,8 @@ type Hash64 interface {\n // unless GOFIPS140=v1.0.0 is set.\n //\n // If a hash can only determine at runtime if it can be cloned (e.g. if it wraps\n-// another hash), it may return an error wrapping [errors.ErrUnsupported].\n+// another hash), Clon...
2025-07-01T09:51:37
rust-lang/rust
918214c19ae9f44eaca32d03f4a4cb10cc6089e9
2a3d765883f559d9e626cce2edda17418fd212ac
style: fix rustfmt formatting
[ { "path": "src/tools/rust-analyzer/crates/ide-db/src/search.rs", "patch": "@@ -1370,10 +1370,8 @@ fn is_name_ref_in_import(name_ref: &ast::NameRef) -> bool {\n }\n \n fn is_name_ref_in_test(sema: &Semantics<'_, RootDatabase>, name_ref: &ast::NameRef) -> bool {\n- sema.ancestors_with_macros(name_ref.synta...
2026-02-18T20:44:34
facebook/react
8287cb92903fdfc983dcc8deecd8293402fc3bd4
68de7d0535bae14cb31cca4a9d4fa078a855c7e4
Bump postcss from 8.4.24 to 8.4.31 in /compiler (#29063) Bumps [postcss](https://github.com/postcss/postcss) from 8.4.24 to 8.4.31. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/postcss/postcss/releases">postcss's releases</a>.</em></p> <blockquote> <h2>8.4.31</h2> ...
[ { "path": "compiler/apps/playground/package.json", "patch": "@@ -48,7 +48,7 @@\n \"eslint\": \"^8.28.0\",\n \"eslint-config-next\": \"^13.5.6\",\n \"monaco-editor-webpack-plugin\": \"^7.1.0\",\n- \"postcss\": \"^8.4.19\",\n+ \"postcss\": \"^8.4.31\",\n \"tailwindcss\": \"^3.2.4\"\n }...
2024-05-20T10:47:51
electron/electron
57b29903e30a7bdb32776e248d25750b0953777a
bbfe809d02a09b924b0c3059dd7d378ae5280419
build: log got error response bodies (#40965)
[ { "path": "script/prepare-appveyor.js", "patch": "@@ -70,7 +70,14 @@ async function checkAppVeyorImage (options) {\n const { cloudSettings } = settings;\n return cloudSettings.images.find(image => image.name === `${options.imageVersion}`) || null;\n } catch (err) {\n- console.log('Could not cal...
2024-01-12T13:37:39
nodejs/node
78b72ca7ba69eb61dcb9307a6c49c5f34fc00f65
61e52c8bd340efa16db48c8114e14c26ea912319
cli: add `--heap-prof` flag available to `NODE_OPTIONS` Fixes: https://github.com/nodejs/node/issues/54257 Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54259 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Franziska Hinkelmann <franziska.hink...
[ { "path": "doc/api/cli.md", "patch": "@@ -3076,6 +3076,10 @@ one is included in the list below.\n * `--force-fips`\n * `--force-node-api-uncaught-exceptions-policy`\n * `--frozen-intrinsics`\n+* `--heap-prof-dir`\n+* `--heap-prof-interval`\n+* `--heap-prof-name`\n+* `--heap-prof`\n * `--heapsnapshot-near-he...
2024-10-20T02:17:22
vercel/next.js
69af581db3095c9ef5636e6296395b303fbf1fdf
4914f32baeb8c6f991a2baf1dcd59bf5957e0e2e
Remove pages export as it is unused (#82990) ## What? As far as I can tell there's no usage of this variable. No TS errors and all tests pass.
[ { "path": "crates/next-core/src/app_page_loader_tree.rs", "patch": "@@ -27,7 +27,6 @@ use crate::{\n pub struct AppPageLoaderTreeBuilder {\n base: BaseLoaderTreeBuilder,\n loader_tree_code: String,\n- pages: Vec<FileSystemPath>,\n /// next.config.js' basePath option to construct og metadata.\...
2025-08-28T08:17:56
rust-lang/rust
4a0f916e3388a4efa92e11805d5cb35332befcab
c043085801b7a884054add21a94882216df5971c
fix stale comments left over from ed3711e
[ { "path": "library/core/src/str/iter.rs", "patch": "@@ -99,9 +99,6 @@ impl<'a> Iterator for Chars<'a> {\n #[inline]\n fn size_hint(&self) -> (usize, Option<usize>) {\n let len = self.iter.len();\n- // `(len + 3)` can't overflow, because we know that the `slice::Iter`\n- // belo...
2026-02-18T20:30:59
golang/go
b3251514531123d7fd007682389bce7428d159a0
15d9fe43d648764d41a88c75889c84df5e580930
cmd/cgo/internal/testsanitizers: skip asan tests when FIPS140 mode is on Executing "GODEBUG=fips140=on go test -run TestASAN ./cmd/cgo/internal/testsanitizers" fails because FIPS 140 mode is incompatible with ASAN. Change-Id: I1a489f3398bbabf597fe7ffc0982c86c3b86e07e Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "src/cmd/cgo/internal/testsanitizers/asan_test.go", "patch": "@@ -8,6 +8,7 @@ package sanitizers_test\n \n import (\n \t\"bytes\"\n+\t\"crypto/fips140\"\n \t\"fmt\"\n \t\"internal/platform\"\n \t\"internal/testenv\"\n@@ -157,6 +158,10 @@ func mustHaveASAN(t *testing.T) *config {\n \t\tt.Skipf(\"sk...
2025-07-02T14:11:37
facebook/react
68de7d0535bae14cb31cca4a9d4fa078a855c7e4
cca15a2139f733f8402fe940805179d3da65b30b
[compiler:chore] fix SSA pdf reference link (#29162) ## Summary This PR fixes the deadlink in the SSA comment. Previously the attached link is down now. ## How did you test this change? 1. I can confirm the PDF in the new link is the same as the old now. Reference: https://www.recompiled.dev/blog/ssa/ 2. I...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/SSA/EliminateRedundantPhi.ts", "patch": "@@ -21,7 +21,7 @@ import {\n * In both these cases, the phi is eliminated and all usages of the phi identifier\n * are replaced with the other operand (ie in both cases above, all usages of `x2` are repla...
2024-05-20T10:10:10
electron/electron
8b9eb518a9cfaa78b08ac77114c1d3e2c6ea2cd4
d5d162b62237705e804831f49e738c987d99b2f9
build: fix windows remote exec of python actions (#40958)
[ { "path": "patches/reclient-configs/fix_add_python_remote_wrapper.patch", "patch": "@@ -109,7 +109,7 @@ index 0000000000000000000000000000000000000000..54817e4f6f9e3cb2f1e7ea1317fa8fef\n +# Launch\n +\"$1\" \"${@:2}\"\n diff --git a/python/rewrapper_linux.cfg b/python/rewrapper_linux.cfg\n-index 951bc66afd2...
2024-01-11T15:17:35
nodejs/node
61e52c8bd340efa16db48c8114e14c26ea912319
7d0a490d1b60bc5c111bf93d96f4a6ac46f3651a
src,lib: introduce `util.getSystemErrorMessage(err)` This patch adds a new utility function which provides human-readable string description of the given system error code. Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54075 Reviewed-By: James M Snell <jasnell@...
[ { "path": "doc/api/util.md", "patch": "@@ -463,6 +463,26 @@ fs.access('file/that/does/not/exist', (err) => {\n });\n ```\n \n+## `util.getSystemErrorMessage(err)`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* `err` {number}\n+* Returns: {string}\n+\n+Returns the string message for a numeric error code that...
2024-10-19T23:15:16
rust-lang/rust
2a3d765883f559d9e626cce2edda17418fd212ac
ffc185a5db9e52f1d32fa48cd0eb80b317ddfe49
fix: exclude macro refs in tests when excludeTests is enabled
[ { "path": "src/tools/rust-analyzer/crates/ide-db/src/search.rs", "patch": "@@ -1370,8 +1370,10 @@ fn is_name_ref_in_import(name_ref: &ast::NameRef) -> bool {\n }\n \n fn is_name_ref_in_test(sema: &Semantics<'_, RootDatabase>, name_ref: &ast::NameRef) -> bool {\n- name_ref.syntax().ancestors().any(|node| ...
2026-02-18T20:21:08
vercel/next.js
4914f32baeb8c6f991a2baf1dcd59bf5957e0e2e
070ae8a76562dd0ff85e33012ef3b4090a598b14
Turbopack: persist when stopping (after build) (#83014) ### What? Fixes persistent caching with next build. Need to investigate how this regression passes the test cases...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -1231,6 +1231,9 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n self.is_idle.store(false, Ordering::Release);\n self.verify_aggregation_graph(turbo_tasks, false);\n }\n+ if self....
2025-08-28T08:07:23
golang/go
6e95fd96cc4514bb6fb39db85bb2164d717cb4da
7755a05209177e6f2d494a08a9b98b9b31d6ee8f
crypto/ecdsa: fix crypto/x509 godoc links Change-Id: I6a6a6964c0e8269305804dc2bb57f13f94f08ed5 Reviewed-on: https://go-review.googlesource.com/c/go/+/685236 Reviewed-by: David Chase <drchase@google.com> Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Res...
[ { "path": "src/crypto/ecdsa/ecdsa.go", "patch": "@@ -48,9 +48,9 @@ type PublicKey struct {\n \t// invalidate internal optimizations; moreover, [big.Int] methods are not\n \t// suitable for operating on cryptographic values. To encode and decode\n \t// PublicKey values, use [PublicKey.Bytes] and [ParseUncomp...
2025-07-01T09:55:48
facebook/react
cca15a2139f733f8402fe940805179d3da65b30b
85923690e96ed5c03a419550d5db9c035e864f2d
compiler: fix accidental propagation of function effects from StartMemoize/FinishMemoize By default, React Compiler will skip compilation if it cannot preserve existing memoization. Ie, if the code has an existing `useMemo()` or `useCallback()` and the compiler cannot determine that it is safe to keep that memoization...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts", "patch": "@@ -1611,14 +1611,14 @@ function inferBlock(\n val,\n Effect.Freeze,\n ValueReason.Other,\n- functionEffects\n+ []\n );\...
2024-05-17T22:25:20
nodejs/node
7ae193d19f15a92578a7e7cc088e320a65788df0
56e5bd8d2acd3698547b9d18d16620ed4e11a99f
url: handle "unsafe" characters properly in `pathToFileURL` Co-authored-by: EarlyRiser42 <tkfydtls464@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54545 Fixes: https://github.com/nodejs/node/issues/54515 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Rev...
[ { "path": "lib/internal/process/execution.js", "patch": "@@ -49,7 +49,7 @@ function tryGetCwd() {\n \n let evalIndex = 0;\n function getEvalModuleUrl() {\n- return pathToFileURL(`${process.cwd()}/[eval${++evalIndex}]`).href;\n+ return `${pathToFileURL(process.cwd())}/[eval${++evalIndex}]`;\n }\n \n /**", ...
2024-10-18T07:20:43