repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
4ad5585c2c2dc3e4387c10c297669c57449156c9
a5f55a441ef497d8e2a12610f4ec2bd32fdc04b2
runtime: fix _rt0_ppc64x_lib on aix CL 706395 refactored the ppc64 library entry point and missed some important aix-specific characteristics: - _rt0_ppc64x_lib should account for the function descriptor when getting the callback pointer. - _rt0_ppc64x_lib should only call _cgo_sys_thread_create when built as a c-ar...
[ { "path": "src/runtime/asm_ppc64x.s", "patch": "@@ -14,8 +14,14 @@\n // This is called using the host ABI. argc and argv arguments\n // should be in R3 and R4 respectively.\n TEXT _rt0_ppc64x_lib(SB),NOSPLIT|NOFRAME,$0\n-\t// Convert to Go ABI, and Allocate argument storage for call to newosproc0.\n-\tSTACK...
2025-10-08T14:21:21
electron/electron
4fd1b5b186fabcba09316881c56d83a7ea854b72
1d55eb9a453694b5d42d8b3fa9314d77f5c1ae05
fix: big endian bug in V8 serialization (#44776)
[ { "path": "shell/common/v8_util.cc", "patch": "@@ -4,6 +4,7 @@\n \n #include \"shell/common/v8_util.h\"\n \n+#include <cstdint>\n #include <utility>\n #include <vector>\n \n@@ -20,11 +21,11 @@\n namespace electron {\n \n namespace {\n-enum SerializationTag {\n- kNativeImageTag = 'i',\n- kTrailerOffsetTag ...
2024-11-22T11:04:53
rust-lang/rust
94acbebb088551e084bc77af64a818df6ec75248
b41f22de2a13a0babd28771e96feef4c309f54aa
add test for proc-macros with custom panic payloads
[ { "path": "tests/ui/proc-macro/any-panic-payload.rs", "patch": "@@ -0,0 +1,17 @@\n+//! Make sure that proc-macros which panic with a payload other than\n+//! `String` or `&'static str` do not ICE.\n+//@ proc-macro: any-panic-payload.rs\n+\n+extern crate any_panic_payload;\n+\n+use any_panic_payload::*;\n+\n...
2026-03-09T08:57:10
nodejs/node
1771cdfdcdfa1582a863ae1e11b642153eb34b62
1ad8b05afb5a61db354148f2ff263b8ed5650a13
2025-05-14, Version 20.19.2 'Iron' (LTS) This is a security release. Notable changes: src: * (CVE-2025-23166) fix error handling on async crypto operation deps: * (CVE-2025-23167) (SEMVER-MAJOR) update llhttp to 9.2.0 fs: * (CVE-2025-23165) add missing call to uv\_fs\_req\_cleanup PR-URL: https://github.com/n...
[ { "path": "CHANGELOG.md", "patch": "@@ -80,7 +80,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V22.md#22.0.0\">22.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.19.1\">20.19.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.19.2\">20.19.2...
2025-05-07T20:22:11
vercel/next.js
cab4fc608fd9b058d035fc00d8431753b4694016
a7b0b5fa9e388075f458a884a1e158689d10bf5f
Fix log log alignment in spinners (#86298)
[ { "path": "packages/next/src/build/spinner.ts", "patch": "@@ -13,7 +13,7 @@ export default function createSpinner(\n ) {\n let spinner: undefined | (ora.Ora & { setText: (text: string) => void })\n \n- let prefixText = ` ${Log.prefixes.info} ${text} `\n+ let prefixText = `${Log.prefixes.info} ${text} `\...
2025-11-19T18:58:07
facebook/react
17520b638190a20e745fe53299813b29b52dfc4c
7de040ccfa49f4128f0f5c6a7a81c019b4a381b8
[Fiber] Mark hydrated components in tertiary color (green) (#31829) This is a follow up to #31752. This keeps track in the commit phase whether this subtree was hydrated. If it was, then we mark those components in the Components track as green. Just like the phase itself is marked as green. If the boundary client r...
[ { "path": "packages/react-reconciler/src/ReactFiberBeginWork.js", "patch": "@@ -1933,6 +1933,7 @@ const SUSPENDED_MARKER: SuspenseState = {\n dehydrated: null,\n treeContext: null,\n retryLane: NoLane,\n+ hydrationErrors: null,\n };\n \n function mountSuspenseOffscreenState(renderLanes: Lanes): Offsc...
2024-12-19T04:53:54
electron/electron
86962ba2c3fb647dd8bcb584c9eb4e05f9158945
6789431f74cb6707082df1c41ede5fc5426ca556
fix: clang-tidy `performance-inefficient-vector-operation` warnings (#44743) * fix: performance-inefficient-vector-operation warning in Clipboard::WriteFilesForTesting() * fix: performance-inefficient-vector-operation warning in GetUploadedReports()
[ { "path": "shell/browser/api/electron_api_crash_reporter.cc", "patch": "@@ -10,6 +10,7 @@\n #include <utility>\n #include <vector>\n \n+#include \"base/containers/to_vector.h\"\n #include \"base/no_destructor.h\"\n #include \"base/path_service.h\"\n #include \"base/strings/utf_string_conversions.h\"\n@@ -22...
2024-11-21T00:11:00
golang/go
a5f55a441ef497d8e2a12610f4ec2bd32fdc04b2
80876f4b42c807e0f90eab20a3e8a98ef95f2cb0
cmd/fix: add modernize and inline analyzers We ran 'go mod vendor' to pull in the newly used packages. Also, add a cmd/go script test that minimally exercises each analyzer, analogous to the cmd/vet test. For #75266 For #75267 For #71859 Change-Id: I334daea048e3d2f614a1788292a3175acf173932 Reviewed-on: https://go-r...
[ { "path": "src/cmd/fix/main.go", "patch": "@@ -22,10 +22,13 @@ package main\n import (\n \t\"cmd/internal/objabi\"\n \t\"cmd/internal/telemetry/counter\"\n+\t\"slices\"\n \n \t\"golang.org/x/tools/go/analysis\"\n \t\"golang.org/x/tools/go/analysis/passes/buildtag\"\n \t\"golang.org/x/tools/go/analysis/passe...
2025-10-10T19:49:53
vercel/next.js
06d45e7de8f6333ece208b80b9d5310f1572145a
dbfb6c49b1b3401c77a0686125f884e1f2ad8b18
fix: prevent fetch abort errors propagating to user error boundaries (#86277) When navigating away from a page due to an MPA navigation or browser refresh, we were aborting any pending RSC requests. However, in the case where the abort was due to an MPA navigation, the browser would restore the execution context via t...
[ { "path": "packages/next/src/client/components/router-reducer/fetch-server-response.ts", "patch": "@@ -102,21 +102,20 @@ function doMpaNavigation(url: string): FetchServerResponseResult {\n return urlToUrlWithoutFlightMarker(new URL(url, location.origin)).toString()\n }\n \n-let abortController = new Abor...
2025-11-19T15:31:44
nodejs/node
1ad8b05afb5a61db354148f2ff263b8ed5650a13
373f2c583b43563fff21920d61061685ba4e6e08
doc: fix CryptoKey.algorithm type and other interfaces in webcrypto.md PR-URL: https://github.com/nodejs/node/pull/58294 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "doc/api/crypto.md", "patch": "@@ -2146,7 +2146,7 @@ added:\n \n <!--lint disable maximum-line-length remark-lint-->\n \n-* `algorithm`: {AlgorithmIdentifier|RsaHashedImportParams|EcKeyImportParams|HmacImportParams}\n+* `algorithm`: {string|Algorithm|RsaHashedImportParams|EcKeyImportParams|HmacImp...
2025-05-14T19:44:31
facebook/react
faf6c4dfdcd3c9b3862af6a3afcb3d80abd407c0
ef979d4703ffcd1f379a4b76195816bea3da3c81
[flags] Remove debugRenderPhaseSideEffectsForStrictMode (#31839) This is enabled everywhere, we can just use the inline `__DEV__` checks.
[ { "path": "packages/react-reconciler/src/ReactFiberBeginWork.js", "patch": "@@ -92,7 +92,6 @@ import {\n DidDefer,\n } from './ReactFiberFlags';\n import {\n- debugRenderPhaseSideEffectsForStrictMode,\n disableLegacyContext,\n disableLegacyContextForFunctionComponents,\n enableProfilerCommitHooks,\...
2024-12-18T22:51:12
electron/electron
6789431f74cb6707082df1c41ede5fc5426ca556
0ea64850afb070b4c4280f263d0054b9e0787139
fix: `performance-no-automatic-move` clang-tidy warnings (#44742) * fix: performance-no-automatic-move in GetLogFileName() remove `const` from log_filename. Warning fixed by this commit: ../../electron/shell/common/logging.cc:40:12: warning: constness of 'log_filename' prevents automatic move [performance-no-...
[ { "path": "shell/browser/extensions/electron_extensions_browser_client.cc", "patch": "@@ -174,7 +174,7 @@ base::FilePath ElectronExtensionsBrowserClient::GetBundleResourcePath(\n if (!chrome_resources_path.IsParent(extension_resources_path))\n return base::FilePath();\n \n- const base::FilePath reque...
2024-11-21T00:10:30
rust-lang/rust
0adea80424ab3af069c9e196da0ae75ae0147f99
d4e76b7cb893ae3dfa6a128acc0d78726cdfcf55
Fix other predicate for replace_is_method_with_if_let_method - Fix parentheses for replace_is_method_with_if_let_method Example --- ```rust fn main() { let x = Some(1); if x.is_som$0e_and(predicate) {} } ``` **Before this PR** ```rust fn main() { let x = Some(1); if let Some(x1) = x {} } ``` **Afte...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/replace_is_method_with_if_let_method.rs", "patch": "@@ -1,8 +1,11 @@\n use either::Either;\n use ide_db::syntax_helpers::suggest_name;\n-use syntax::ast::{self, AstNode, HasArgList, syntax_factory::SyntaxFactory};\n+use syntax::ast::{self, A...
2026-03-09T03:43:54
vercel/next.js
dbfb6c49b1b3401c77a0686125f884e1f2ad8b18
e66e0eabc1f8d959ca6b84fe1337be38582c5040
[test] Add failing test for `useActionState` with `'use cache'` (#86292) Adds a test case demonstrating that `useActionState` doesn't work correctly when the `'use cache'` function is exported separately, due to wrong function arity information in the server reference information byte. This is currently a limitation o...
[ { "path": "test/e2e/app-dir/use-cache/app/(partially-static)/use-action-state-separate-export/cached.ts", "patch": "@@ -0,0 +1,7 @@\n+'use cache'\n+\n+const getRandomValue = async () => {\n+ return Math.random()\n+}\n+\n+export { getRandomValue }", "additions": 7, "deletions": 0, "language": "U...
2025-11-19T14:45:36
nodejs/node
373f2c583b43563fff21920d61061685ba4e6e08
f75c960dcc5e9516edd54ab84ed27bb725c17ed7
doc: mark the callback argument of crypto.generatePrime as mandatory The current documentation lists the `callback` argument of `crypto.generatePrime` as optional (it's surrounded by square brackets), but this is incorrect - calling the function without a callback will result in an `ERR_INVALID_ARG_TYPE` error: For t...
[ { "path": "doc/api/crypto.md", "patch": "@@ -3900,7 +3900,7 @@ console.log(key.export().toString('hex')); // e89..........41e\n The size of a generated HMAC key should not exceed the block size of the\n underlying hash function. See [`crypto.createHmac()`][] for more information.\n \n-### `crypto.generateP...
2025-05-14T19:17:46
golang/go
1099436f1b63560a0587dd4c5814edd13f80e577
41f5659347f9498ce81911032bb46537d923bdd7
go/types, types2: change and enforce lifecycle of Named.fromRHS and Named.underlying fields A type definition or alias declaration consists of a type name (LHS) which is bound to a type expression (RHS) by the declaration. This CL consistently uses the fromRHS fields of Named and Alias types to represent that RHS typ...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -476,7 +476,7 @@ func (check *Checker) isImportedConstraint(typ Type) bool {\n \tif named == nil || named.obj.pkg == check.pkg || named.obj.pkg == nil {\n \t\treturn false\n \t}\n-\tu, _ := named.under().(*Interface)\n+\tu, _ := named.Underly...
2025-08-20T21:30:26
facebook/react
ef979d4703ffcd1f379a4b76195816bea3da3c81
95465dc4913377ab7e2fa98d956c87adb5e38e6c
[Flight Reply] Reject any new Chunks not yet discovered at the time of reportGlobalError (#31840) We might have already resolved models that are not pending and so are not rejected by aborting the stream. When those later get parsed they might discover new chunks which end up as pending. These should be errored sin...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMReplyEdge-test.js", "patch": "@@ -245,4 +245,31 @@ describe('ReactFlightDOMReplyEdge', () => {\n ),\n );\n });\n+\n+ it('should abort when parsing an incomplete payload', async () => {\n+ const infinitePromise = new Pro...
2024-12-18T20:56:57
electron/electron
0ea64850afb070b4c4280f263d0054b9e0787139
769b045c8b764796e9e210dfe734113a1225e8cf
fix: windows save dialog extension bug (#44296) * fix: windows save dialog extension bug * refactor: simplify firstSpec extraction Co-authored-by: Charles Kerr <charles@charleskerr.com> * refactor: split when necessary Co-authored-by: Sam Maddock <samuel.maddock@gmail.com> --------- Co-authored-by: C...
[ { "path": "shell/browser/ui/file_dialog_win.cc", "patch": "@@ -144,10 +144,14 @@ static void ApplySettings(IFileDialog* dialog, const DialogSettings& settings) {\n // We set file extension to the first none-wildcard extension to make\n // sure the dialog will update file extension automatically.\n for...
2024-11-20T22:27:49
nodejs/node
f75c960dcc5e9516edd54ab84ed27bb725c17ed7
b1973550e09d5a2a07c70be5de6e3ae4722ad230
doc: remove comma delimiter mention on permissions doc PR-URL: https://github.com/nodejs/node/pull/58297 Fixes: https://github.com/nodejs/node/issues/58287 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewe...
[ { "path": "doc/api/permissions.md", "patch": "@@ -108,8 +108,8 @@ The valid arguments for both flags are:\n \n * `*` - To allow all `FileSystemRead` or `FileSystemWrite` operations,\n respectively.\n-* Paths delimited by comma (`,`) to allow only matching `FileSystemRead` or\n- `FileSystemWrite` operatio...
2025-05-14T18:06:03
vercel/next.js
e66e0eabc1f8d959ca6b84fe1337be38582c5040
18403d9358531c1c9dd587077fc0975a787d2f19
`next analyze`: Make ipv6 server links valid and normalize localhost (#86219) The current implementation doesn't properly format IPv6 addresses, which means URLs aren't valid. - Added specific handling for IPv6 localhost addresses (`::`/`::1`) to display as `localhost:port` for display - Added proper IPv6 address for...
[ { "path": "packages/next/src/build/analyze/index.ts", "patch": "@@ -77,9 +77,11 @@ export default async function analyze({\n await turbopackAnalyze(analyzeContext)\n \n const durationString = durationToString(analyzeDuration)\n- Log.event(\n- `Analyze data created successfully in ${duratio...
2025-11-19T12:31:36
golang/go
27f9a6705c700d9075d4651cf9cff9cabbe4a47e
b68cebd809f1335b4504837337f5702406720432
runtime: increase repeat count for alloc test To make sure a single spurious alloc doesn't flake the test. Fixes #75858 Change-Id: I055b37ad5668459bfa7ab1dac97025c997c68f1a Reviewed-on: https://go-review.googlesource.com/c/go/+/712201 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccou...
[ { "path": "src/runtime/iface_test.go", "patch": "@@ -60,7 +60,7 @@ func TestCmpIfaceConcreteAlloc(t *testing.T) {\n \t\tt.Skip(\"skipping on non-gc compiler\")\n \t}\n \n-\tn := testing.AllocsPerRun(1, func() {\n+\tn := testing.AllocsPerRun(100, func() {\n \t\t_ = e == ts\n \t\t_ = i1 == ts\n \t\t_ = e == 1...
2025-10-15T20:28:15
facebook/react
1e9ef39a8742889f8414c7df9c9e6ef463fe3d01
7eb8234f7cbeda298fffb1566b5cc771c09eff2e
[flags] Delete enableSchedulerDebugger (#31826) The tool for this isn't used so I killed it internally and we can clean up the code to make it easier to reduce the scheduler code.
[ { "path": "fixtures/scheduler/index.html", "patch": "@@ -91,19 +91,8 @@ <h2>Tests:</h2>\n <div> If the counter advanced while you were away from this tab, it's correct.</div>\n </li>\n <li>\n- <p>Can pause execution, dump scheduled callbacks, and continue where it left off</p>\n- <bu...
2024-12-18T18:29:22
electron/electron
f95e1d8ea08d4c5297ff9017ae56ee00a843822f
eba0edf81e3fd77f943d7715f95acc153653f4a9
chore: fix textured window conditional on macOS (#44728)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -167,31 +167,25 @@ static bool FromV8(v8::Isolate* isolate,\n if (!rounded_corner && !has_frame())\n styleMask = NSWindowStyleMaskBorderless;\n \n-// TODO: remove NSWindowStyleMaskTexturedBackground.\n-// https://github.com/electron/electron...
2024-11-20T16:34:46
nodejs/node
ae8a6de6095504878c053b828c155cd1b2b1e2f4
656bf7d0b8f69efd70595558ca1094b3f33af3d6
watch: fix watch args not being properly filtered currently when --watch is used, the argv arguments that the target script receives are filtered so that they don't include watch related arguments, however the current filtering logic is incorrect and it causes some watch values to incorrectly pass the filtering, the c...
[ { "path": "lib/internal/main/watch_mode.js", "patch": "@@ -43,11 +43,26 @@ const argsWithoutWatchOptions = [];\n \n for (let i = 0; i < process.execArgv.length; i++) {\n const arg = process.execArgv[i];\n- if (StringPrototypeStartsWith(arg, '--watch')) {\n- i++;\n- const nextArg = process.execArgv[...
2025-05-13T13:52:46
golang/go
b68cebd809f1335b4504837337f5702406720432
f1fed742ebbe781611c9f78398d9fa233ad0a8e6
net/http/httptest: record failed ResponseWriter writes CL 709335 changed ResponseWriter.Write to return an error when trying to write to a response with a status code which doesn't permit a body, such as 304. Continue to return an error, but still record the write in ResponseWriter.Body. This maintains the documented...
[ { "path": "src/net/http/httptest/recorder.go", "patch": "@@ -105,28 +105,28 @@ func (rw *ResponseRecorder) writeHeader(b []byte, str string) {\n // Write implements http.ResponseWriter. The data in buf is written to\n // rw.Body, if not nil.\n func (rw *ResponseRecorder) Write(buf []byte) (int, error) {\n-\...
2025-10-14T18:25:29
vercel/next.js
954354f2ab24002bd310940438e7bf0116e646ab
83ae64fe773453dbcf1583e5303494413b8449d7
[Segment Cache] Re-implement refresh reducer (#84426) This re-implements the refresh reducer to use the Segment Cache-style flow, similar to how the navigate reducer already works. Most of the logic can be reused from what was already implemented for navigations. The bulk of the changes are related to the case where ...
[ { "path": "packages/next/src/client/components/router-reducer/create-initial-router-state.ts", "patch": "@@ -8,7 +8,6 @@ import { fillLazyItemsTillLeafWithHead } from './fill-lazy-items-till-leaf-with-\n import { extractPathFromFlightRouterState } from './compute-changed-path'\n \n import type { AppRouterSt...
2025-11-18T23:38:47
facebook/react
7eb8234f7cbeda298fffb1566b5cc771c09eff2e
2bd1c756c6fffefb00cdb2986218fa2701ece82e
[Flight] Fix double-incremented pending chunks counter (#31833) Before calling `emitTimingChunk` inside of `forwardDebugInfo`, we must not increment `request.pendingChunks`, as this is already done inside of the `emitTimingChunk` function. I don't have a unit test for this, but manually verified that this fixes ...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -3810,11 +3810,11 @@ function forwardDebugInfo(\n debugInfo: ReactDebugInfo,\n ) {\n for (let i = 0; i < debugInfo.length; i++) {\n- request.pendingChunks++;\n if (typeof debugInfo[i].time === 'number') {\n // When for...
2024-12-18T15:35:02
rust-lang/rust
c15947596f521dcf3f3d90515fee2dd2e8435587
d1f54383bddf50cc8b90d3c60ccd2a0265a47e9c
Fix typo in feature gate check
[ { "path": "src/doc/rustc-dev-guide/src/feature-gate-check.md", "patch": "@@ -8,7 +8,7 @@ nightly-only `#![feature(...)]` opt-in.\n This chapter documents the implementation\n of feature gating: where gates are defined, how they are enabled, and how usage is verified.\n \n-<!-- data-check: Feb 2026 -->\n+<!-...
2026-03-09T01:11:42
golang/go
f1fed742ebbe781611c9f78398d9fa233ad0a8e6
0984dcd7572a90a1bd21bec98bd9c73fdcf983ab
cmd: fix three printf problems reported by newest vet Change-Id: Id70985d217c940eb022dbc95bfaa20373672512c Reviewed-on: https://go-review.googlesource.com/c/go/+/712220 Auto-Submit: Alan Donovan <adonovan@google.com> TryBot-Bypass: Alan Donovan <adonovan@google.com> Commit-Queue: Alan Donovan <adonovan@google.com> Rev...
[ { "path": "src/cmd/go/internal/modload/vendor.go", "patch": "@@ -188,7 +188,7 @@ func checkVendorConsistency(loaderstate *State, indexes []*modFileIndex, modFile\n \t\t\t\t\t// However, we can at least detect a version mismatch if packages were\n \t\t\t\t\t// vendored from a non-matching version.\n \t\t\t\t...
2025-10-15T20:28:03
nodejs/node
e8c06a51d02b006376e08d71cade0b98e8e5a920
a4e833ae17c738a6d891c9217551e7d638dab63e
doc: add puskin to collaborators Fixes: https://github.com/nodejs/node/issues/58088 PR-URL: https://github.com/nodejs/node/pull/58308 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": ".mailmap", "patch": "@@ -204,6 +204,7 @@ George Adams <gadams@microsoft.com> <george.adams@uk.ibm.com>\n Gerhard Stöbich <deb2001-github@yahoo.de>\n Gibson Fahnestock <gibfahn@gmail.com> <gib@uk.ibm.com>\n Gil Pedersen <git@gpost.dk> <github@gpost.dk>\n+Giovanni Bucci <github@puskin.it>\n Graham ...
2025-05-13T09:30:33
facebook/react
975cea2d3ddb95ad31f10ae112bdde5101725c85
49b1a956a915da972e60221e9610d383fac08bd7
Enable debugRenderPhaseSideEffectsForStrictMode in test renderers (#31761) This flag controls the strict mode double invoke render/lifecycles/etc behavior in Strict Mode. The only place this flag is off is the test renderers, which it should be on for. If we can land this, we can follow up to remove the flag.
[ { "path": "packages/shared/forks/ReactFeatureFlags.test-renderer.js", "patch": "@@ -10,7 +10,7 @@\n import typeof * as FeatureFlagsType from 'shared/ReactFeatureFlags';\n import typeof * as ExportsType from './ReactFeatureFlags.test-renderer';\n \n-export const debugRenderPhaseSideEffectsForStrictMode = fal...
2024-12-17T03:52:18
electron/electron
54d53bfa514e50e1847b7b4c110a8d46300d4c79
8ed48e2295260b68203df59f84c52038ab1fe275
fix: tooltips in WCO caption buttons (#44721) fix: tooltips in WCO capton buttons
[ { "path": "shell/browser/ui/views/win_caption_button_container.cc", "patch": "@@ -19,6 +19,7 @@\n #include \"ui/base/l10n/l10n_util.h\"\n #include \"ui/compositor/layer.h\"\n #include \"ui/strings/grit/ui_strings.h\"\n+#include \"ui/views/accessibility/view_accessibility.h\"\n #include \"ui/views/background...
2024-11-20T11:45:08
rust-lang/rust
a5fa3995d6421c43e8b9a2ada45cc7301f9d495c
36781932489feefa2413b815b3a8ec78e02a8694
Fix semicolon-inside-block inside try_blocks Signed-off-by: Taym Haddadi <haddadi.taym@gmail.com>
[ { "path": "clippy_lints/src/semicolon_block.rs", "patch": "@@ -170,7 +170,7 @@ impl LateLintPass<'_> for SemicolonBlock {\n StmtKind::Semi(Expr {\n kind: ExprKind::Block(block, _),\n ..\n- }) if !block.span.from_expansion() => {\n+ }) if !blo...
2026-03-09T01:08:04
vercel/next.js
d7608f7ecc58f7ca3097d7f54ffc3c202da4ccfd
fedee7d7c443fd22e004ae1108d55fdbd96e2427
Fix prerendering of interception routes with generateStaticParams (#85835) ## What Fixes a bug where interception routes in parallel slots could not be prerendered using `generateStaticParams`, causing 404 responses when these routes were accessed directly. ## Why **The Problem:** Interception routes like `app/@mo...
[ { "path": "packages/next/errors.json", "patch": "@@ -927,5 +927,8 @@\n \"926\": \"Optional route parameters are not yet supported (\\\"[%s]\\\") in route \\\"%s\\\".\",\n \"927\": \"No debug targets found\",\n \"928\": \"Unable to get server address\",\n- \"929\": \"No pages or app directory found.\"...
2025-11-18T16:15:54
nodejs/node
a4e833ae17c738a6d891c9217551e7d638dab63e
4d7116916ddbd70a898f33ebbed883215e09835c
doc: update stability status for diagnostics_channel to experimental PR-URL: https://github.com/nodejs/node/pull/58261 Fixes: https://github.com/nodejs/node/issues/58234 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Rev...
[ { "path": "doc/api/diagnostics_channel.md", "patch": "@@ -1103,14 +1103,10 @@ for the sync error and one for the async error.\n \n ### Built-in Channels\n \n-> Stability: 1 - Experimental\n-\n-While the diagnostics\\_channel API is now considered stable, the built-in\n-channels currently available are not. ...
2025-05-13T04:42:15
golang/go
0984dcd7572a90a1bd21bec98bd9c73fdcf983ab
31f82877e85a7e6c70b0104e704abfed622e345f
cmd/compile: fix an error in comments Remove the redundant only. Change-Id: I9cf2d84ae080a567ad45a2d0ef002c7c89395479 Reviewed-on: https://go-review.googlesource.com/c/go/+/711960 Auto-Submit: Robert Findley <rfindley@google.com> Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Robert Findley <rfindley@goo...
[ { "path": "src/cmd/compile/internal/types2/instantiate.go", "patch": "@@ -83,7 +83,7 @@ func Instantiate(ctxt *Context, orig Type, targs []Type, validate bool) (Type, e\n //\n // For Named types the resulting instance may be unexpanded.\n //\n-// check may be nil (when not type-checking syntax); pos is used...
2025-10-15T02:27:16
facebook/react
d325f872de658fc26127a91c965c135d8ad4e877
ac172706526a840100302f92ae90dfa4ad804c56
[compiler][be] Logger based debug printing in test runner (#31809) Avoid mutable logging enabled state and writing to `process.stdout` within our babel transform.
[ { "path": "compiler/packages/babel-plugin-react-compiler/package.json", "patch": "@@ -42,9 +42,7 @@\n \"babel-jest\": \"^29.0.3\",\n \"babel-plugin-fbt\": \"^1.0.0\",\n \"babel-plugin-fbt-runtime\": \"^1.0.0\",\n- \"chalk\": \"4\",\n \"eslint\": \"^8.57.1\",\n- \"glob\": \"^7.1.6\",\n ...
2024-12-16T20:15:13
vercel/next.js
d174698cded19687b7b97b281c49b4dd2086a367
158797836305daf387e373e657a69ca45af48c70
docs: cacheHandlers use object instead of class (#86022) <!-- 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 Contrib...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/cacheHandlers.mdx", "patch": "@@ -41,8 +41,8 @@ import type { NextConfig } from 'next'\n \n const nextConfig: NextConfig = {\n cacheHandlers: {\n- default: './cache-handlers/default-handler.js',\n- remote: './cache-handlers/remote-h...
2025-11-18T11:33:39
nodejs/node
4d7116916ddbd70a898f33ebbed883215e09835c
28cbc4c9567ff2e5ea434703cd2d2ee8afd631d4
build: fix uvwasi pkgname PR-URL: https://github.com/nodejs/node/pull/58270 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "configure.py", "patch": "@@ -2276,7 +2276,7 @@ def make_bin_override():\n configure_library('nghttp3', output, pkgname='libnghttp3')\n configure_library('ngtcp2', output, pkgname='libngtcp2')\n configure_sqlite(output);\n-configure_library('uvwasi', output, pkgname='libuvwasi')\n+configure_librar...
2025-05-12T23:29:17
golang/go
31f82877e85a7e6c70b0104e704abfed622e345f
6346349f5629a5767d2cd132f01092857a570bd2
go/types, types2: fix misleading internal comment See also the discussion in #75885. Change-Id: Ieb964ea6ee51600c0c08ecba0af50a1deb209a4d Reviewed-on: https://go-review.googlesource.com/c/go/+/712141 Reviewed-by: Mark Freeman <markfreeman@google.com> Auto-Submit: Robert Griesemer <gri@google.com> TryBot-Bypass: Rober...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -575,11 +575,8 @@ func (check *Checker) typeDecl(obj *TypeName, tdecl *syntax.TypeDecl, def *TypeN\n \t\tnamed.underlying = Typ[Invalid]\n \t}\n \n-\t// Disallow a lone type parameter as the RHS of a type declaration (go.dev/issue/45639).\n-\...
2025-10-15T18:27:17
facebook/react
80b81fe56353f7419bd07ecfc3534d274a413fca
e30872a4e01bdc0cf185a818156ae7741c815e21
[compiler] Repro for aliased captures within inner function expressions (#31770) see fixture
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-capturing-func-maybealias-captured-mutate.expect.md", "patch": "@@ -0,0 +1,129 @@\n+\n+## Input\n+\n+```javascript\n+import {makeArray, mutate} from 'shared-runtime';\n+\n+/**\n+ * Bug repro:\n+ * Found differences ...
2024-12-16T19:43:34
electron/electron
43ed763f181ff648030fb498e7c538decd51c352
ac61c74ddc2ce25d4d89a040771acd3f4bc9e585
chore: bump chromium to 133.0.6846.0 (main) (#44665) * chore: bump chromium in DEPS to 133.0.6836.0 * chore: bump chromium in DEPS to 133.0.6838.0 * chore: update patches * 6006096: [Sync ESB] Integrate Chrome Toast UI https://chromium-review.googlesource.com/c/chromium/src/+/6006096 * Confine enable_de...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '132.0.6834.0',\n+ '133.0.6846.0',\n 'node_version':\n 'v22.9.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filenam...
2024-11-20T03:52:20
vercel/next.js
fc4f062ba96f37f971bcbab8858d96e413d86bf9
dc8f77375d783255356ff2489c765ef8b7420f3c
Chore: Update with-supabase example to Next.js 16 (#86105) ### What? Upgrade with-supabase example to be compatible with Next.js 16 ### Why? 1. Users get console warnings about middleware vs proxy 2. Enabling Cache Components config results in build errors for async behaviour outside Suspense boundary 3. Turbopack ...
[ { "path": "examples/with-supabase/README.md", "patch": "@@ -22,7 +22,7 @@\n - Works across the entire [Next.js](https://nextjs.org) stack\n - App Router\n - Pages Router\n- - Middleware\n+ - Proxy\n - Client\n - Server\n - It just works!", "additions": 1, "deletions": 1, "language": ...
2025-11-18T06:41:21
golang/go
6346349f5629a5767d2cd132f01092857a570bd2
284379cdfcbd6971f46616a3c66bf19e467fdf0d
cmd/compile: replace angle brackets with square Caused Markdown rendering error on https://go.dev/src/cmd/compile/README in macOS (15.6.1) Safari (18.6). Change-Id: Id71436d9a7bc7e461e522500d66df5dda7cd9f7f GitHub-Last-Rev: 4e4447e163ac65e6c394807ec4874bc5ca26bb32 GitHub-Pull-Request: golang/go#75549 Reviewed-on: htt...
[ { "path": "src/cmd/compile/README.md", "patch": "@@ -289,9 +289,9 @@ dependencies, so is not suitable for distributed build systems.)\n ```\n After that, your edit/compile/test cycle can be similar to:\n ```\n- <... make edits to cmd/compile source ...>\n+ [... make edits to cmd/compile source ...]\...
2025-09-20T21:36:14
electron/electron
ac61c74ddc2ce25d4d89a040771acd3f4bc9e585
1cf5e6d88cf2f9715ceb830773fa57f8f208db38
fix: bugprone-narrowing-conversions warnings in NativeImage (#44708) * fix: bugprone-narrowing-conversions warning in NativeImage::memory_usage_ - fix signed / unsigned math by using base/numerics/safe_conversions - make memory_usage_ an int64_t so it can safely take the size_t returned by computeByteSize() ...
[ { "path": "shell/common/api/electron_api_native_image.cc", "patch": "@@ -12,6 +12,7 @@\n #include \"base/files/file_util.h\"\n #include \"base/logging.h\"\n #include \"base/memory/ref_counted_memory.h\"\n+#include \"base/numerics/safe_conversions.h\"\n #include \"base/strings/pattern.h\"\n #include \"base/s...
2024-11-19T22:04:18
facebook/react
e30872a4e01bdc0cf185a818156ae7741c815e21
54e86bd0d0eac76320c8810090810e7a858125d6
[compiler][be] Playground now compiles entire program (#31774) Compiler playground now runs the entire program through `babel-plugin-react-compiler` instead of a custom pipeline which previously duplicated function inference logic from `Program.ts`. In addition, the playground output reflects the tranformed file (i...
[ { "path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/01-user-output.txt", "patch": "@@ -1,4 +1,5 @@\n-function TestComponent(t0) {\n+import { c as _c } from \"react/compiler-runtime\";\n+export default function TestComponent(t0) {\n const $ = _c(2);\n const { x } = t0;\n let t1...
2024-12-16T19:43:21
nodejs/node
28cbc4c9567ff2e5ea434703cd2d2ee8afd631d4
6dcd4621bd41fd3367b52a9d3d9cdd2d36f209fb
src: add a variant of ToV8Value() for primitive arrays Adds a variant of ToV8Value for array of primitives that do not need to throw during conversion - there is essentially no exceptions that can be thrown then an array of integers is created. PR-URL: https://github.com/nodejs/node/pull/57576 Reviewed-By: Yagiz Nizi...
[ { "path": "src/node_v8.cc", "patch": "@@ -392,23 +392,13 @@ static MaybeLocal<Object> ConvertHeapStatsToJSObject(\n FIXED_ONE_BYTE_STRING(isolate, \"bucket_size\"),\n FIXED_ONE_BYTE_STRING(isolate, \"free_count\"),\n FIXED_ONE_BYTE_STRING(isolate, \"free_size\")};\n- Local<Value> ...
2025-03-18T22:18:33
vercel/next.js
3e5b96a17ee59b1ad5c173dae129ecfc1b08f656
b53beca2a08476a18d039f6a3a5a4ab8e9c05529
next analyze: annotate polyfill modules in UI (#86062) For small routes, it can appear like the polyfill chunk takes up a sizable amount of data, but `polyfill-nomodule.js` is only sent to legacy browsers. This makes it clearer. This PR enhances the bundle analyzer by adding visual indicators for polyfill chunks, a...
[ { "path": "apps/bundle-analyzer/app/globals.css", "patch": "@@ -32,6 +32,8 @@\n --sidebar-accent-foreground: oklch(0.205 0 0);\n --sidebar-border: oklch(0.922 0 0);\n --sidebar-ring: oklch(0.708 0 0);\n+ --polyfill: #5f707f;\n+ --polyfill-foreground: #ffffff;\n }\n \n .dark {\n@@ -62,6 +64,8 @@\n ...
2025-11-18T02:02:03
golang/go
519ae514abace4551e0f99bf7da349a894b399b9
b5a29cca486d26651e249c8395bc2df4a2d92d17
cmd/compile: eliminate bound check for slices of the same length If two slices start out with the same length and decrease in length by the same amount on each round of the loop (or in the if block), then we think their length are always equal. For example: if len(a) != len(b) { return } for len(a) >= 4 { a = a[4:...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -1240,6 +1240,173 @@ func (ft *factsTable) cleanup(f *Func) {\n \tf.Cache.freeBoolSlice(ft.recurseCheck)\n }\n \n+// addSlicesOfSameLen finds the slices that are in the same block and whose Op\n+// is OpPhi and always have the same length, then...
2025-08-26T10:23:31
electron/electron
1cf5e6d88cf2f9715ceb830773fa57f8f208db38
48c9149a52f73111f30f858f5340709a12e533e0
fix: cyclical #include dependency between autofill_popup.h and autofill_popup_view.h (#44705) fix: AutofillPopup warning: use '= default' to define a trivial default constructor [modernize-use-equals-default] refactor: reduce #indclude scope in autofill_popup.h and autofill_popup_view.h
[ { "path": "shell/browser/ui/autofill_popup.cc", "patch": "@@ -15,6 +15,7 @@\n #include \"shell/browser/osr/osr_render_widget_host_view.h\"\n #include \"shell/browser/osr/osr_view_proxy.h\"\n #include \"shell/browser/ui/autofill_popup.h\"\n+#include \"shell/browser/ui/views/autofill_popup_view.h\"\n #include...
2024-11-19T19:45:18
nodejs/node
2281a04e5e38f4dda8d95adc40fe69f02605e333
cfd2021c35eafda1e9c46970b2d73662f186694c
inspector: support for worker inspection in chrome devtools Fixes: https://github.com/nodejs/node/issues/56343 PR-URL: https://github.com/nodejs/node/pull/56759 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -1205,6 +1205,17 @@ added: v22.4.0\n \n Enable experimental [`Web Storage`][] support.\n \n+### `--experimental-worker-inspection`\n+\n+<!-- YAML\n+added:\n+ - REPLACEME\n+-->\n+\n+> Stability: 1.1 - Active Development\n+\n+Enable experimental support for the worker...
2025-05-12T13:25:00
vercel/next.js
9c416ee2fd93ba1c288a46aff1348c64213d77ec
d1643b47c4c30b1e444a8c35fe060841246dd261
Update 14-metadata-and-og-images.mdx (#86198) Changed better match example images and to be consistent within documentation copy. <!-- 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...
[ { "path": "docs/01-app/01-getting-started/14-metadata-and-og-images.mdx", "patch": "@@ -221,7 +221,7 @@ Favicons are small icons that represent your site in bookmarks and search result\n \n ## Static Open Graph images\n \n-Open Graph (OG) images are images that represent your site in social media. To add a ...
2025-11-17T14:09:49
facebook/react
2d320563f35ad75419983f166431055b4e7ed9f6
c80b336d23aa472b5e5910268138ac0447d6ae19
[flags] Delete enableDebugTracing (#31780) This is unused, even in the one builds that uses it, and we don't plan on landing it in this form.
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationModes-test.js", "patch": "@@ -37,56 +37,6 @@ describe('ReactDOMServerIntegration', () => {\n resetModules();\n });\n \n- // Test pragmas don't support itRenders abstraction\n- if (\n- __EXPERIMENTAL__ &&\n- require('shared/Re...
2024-12-15T17:16:10
golang/go
b5a29cca486d26651e249c8395bc2df4a2d92d17
bb5eb5171535b9080055fee5996bd55398202124
cmd/distpack: add fix tool to inventory (To be consistent with change to build.go in CL 700795.) For #71859 Change-Id: I8caad28b7e5a2657f21b60a72899daecf0b2c324 Reviewed-on: https://go-review.googlesource.com/c/go/+/712180 Auto-Submit: Alan Donovan <adonovan@google.com> Reviewed-by: Michael Matloob <matloob@google.c...
[ { "path": "src/cmd/distpack/pack.go", "patch": "@@ -172,7 +172,7 @@ func main() {\n \t\t\tdefault:\n \t\t\t\treturn false\n \t\t\t// Keep in sync with toolsIncludedInDistpack in cmd/dist/build.go.\n-\t\t\tcase \"asm\", \"cgo\", \"compile\", \"cover\", \"link\", \"preprofile\", \"vet\":\n+\t\t\tcase \"asm\",...
2025-10-15T18:39:53
electron/electron
48c9149a52f73111f30f858f5340709a12e533e0
0d6743e79b230fda2ed80687bb927351c3a6f8a5
fix: utility process exit code for graceful termination (reland) (#44726) * chore: reland "fix: utility process exit code for graceful termination" This reverts commit 1cae73ba092ccf5620c5fce8b896bade3a601346. * fix: exit code on posix when killed via api * chore: fix code style
[ { "path": "patches/chromium/feat_enable_passing_exit_code_on_service_process_crash.patch", "patch": "@@ -11,7 +11,7 @@ ServiceProcessHost::Observer functions, but we need to pass the exit code to\n the observer.\n \n diff --git a/content/browser/service_process_host_impl.cc b/content/browser/service_process...
2024-11-19T17:48:15
nodejs/node
917600c5027a902d482674303ecfe47220663e4d
5f841fb2c8f192766ce4233d47264125cbaa499c
doc: fix typo of file `http.md`, `outgoingMessage.setTimeout` section PR-URL: https://github.com/nodejs/node/pull/58188 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> ...
[ { "path": "doc/api/http.md", "patch": "@@ -3322,13 +3322,13 @@ const server = http.createServer((req, res) => {\n });\n ```\n \n-### `outgoingMessage.setTimeout(msesc[, callback])`\n+### `outgoingMessage.setTimeout(msecs[, callback])`\n \n <!-- YAML\n added: v0.9.12\n -->\n \n-* `msesc` {number}\n+* `msecs`...
2025-05-11T14:53:14
facebook/react
c80b336d23aa472b5e5910268138ac0447d6ae19
c32780eeb4c44e138d09a35da841926f512d3b07
Implement requestPaint in the actual scheduler (#31784) When implementing passive effects we did a pretty massive oversight. While the passive effect is scheduled into its own scheduler task, the scheduler doesn't always yield to the browser if it has time left. That means that if you have a fast commit phase, it migh...
[ { "path": "packages/scheduler/src/__tests__/Scheduler-test.js", "patch": "@@ -183,7 +183,7 @@ describe('SchedulerBrowser', () => {\n it('task with continuation', () => {\n scheduleCallback(NormalPriority, () => {\n runtime.log('Task');\n- // Request paint so that we yield at the end of the ...
2024-12-14T21:17:06
golang/go
bb5eb5171535b9080055fee5996bd55398202124
5c9a26c7f882dba5bfe10036815bcb239dd9b7e8
runtime/pprof: fix errors in pprof_test I think the original depth-1 argument to allocDeep was correct. Reverted that, and also the change to maxSkip in mprof.go, which was also incorrect. I think before we were usually passing accidentally in the loop over matched stacks when we really should usually have been passin...
[ { "path": "src/runtime/mprof.go", "patch": "@@ -49,7 +49,7 @@ const (\n \t// desired maximum number of frames after expansion.\n \t// This should be at least as large as the largest skip value\n \t// used for profiling; otherwise stacks may be truncated inconsistently\n-\tmaxSkip = 8\n+\tmaxSkip = 6\n \n \t...
2025-10-15T16:52:47
electron/electron
0d6743e79b230fda2ed80687bb927351c3a6f8a5
7a5e9613d2c990752ec99b2748403259526e76e5
fix: destroy url loader wrapper when JS env exits (#44574) * fix: destroy url loader wrapper when JS env exits * Revert "fix: destroy url loader wrapper when JS env exits" This reverts commit 419151a98a16814ea63e9abc197c6ae27f48128c. * Revert "Revert "fix: destroy url loader wrapper when JS env exits"" Thi...
[ { "path": "shell/common/api/electron_api_url_loader.cc", "patch": "@@ -383,13 +383,13 @@ void SimpleURLLoaderWrapper::Start() {\n loader_->SetAllowHttpErrorResults(true);\n loader_->SetURLLoaderFactoryOptions(request_options_);\n loader_->SetOnResponseStartedCallback(base::BindOnce(\n- &SimpleURL...
2024-11-19T16:32:48
nodejs/node
5c0687a5b63525b85667d8214979f0918095cecf
a186e075ef355768b623475bf120944415c32c61
deps: V8: backport 1d3362c55396 Original commit message: [float16array] Turn flag on by default Float16Array has shipped in blink since M135. It is unlikely it'll unship by now, so turn the flag on by default. Bug: 42203953 Change-Id: Ibd9de407b8810dd7bcdb46194fe04fc290ff8fb8 Reviewed-on: ht...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,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...
2025-05-06T21:40:37
vercel/next.js
d1643b47c4c30b1e444a8c35fe060841246dd261
be901a70a0202e486cc19294c8f1c3c860839a45
Fix typo on 03-layouts-and-pages.mdx (#86186) <!-- 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 ### ...
[ { "path": "docs/01-app/01-getting-started/03-layouts-and-pages.mdx", "patch": "@@ -269,7 +269,7 @@ export default async function Page({ searchParams }) {\n }\n ```\n \n-Using `searchParams` opts your page into [**dynamic rendering**](/docs/app/guides/caching#dynamic-rendering) because it requires a incoming...
2025-11-17T14:09:40
facebook/react
c32780eeb4c44e138d09a35da841926f512d3b07
d1dd7feabc63bf8ca61e9b3f4d78245a29ebbe9a
[Fiber] Highlight hydration and offscreen render phases (#31752) This highlights the render phase as the tertiary color (green) when we're render a hydration lane or offscreen lane. I call the "Render" phase "Hydrated" instead in this case. For the offscreen case we don't currently have a differentiation between hydr...
[ { "path": "packages/react-reconciler/src/ReactFiberLane.js", "patch": "@@ -621,6 +621,18 @@ export function includesTransitionLane(lanes: Lanes): boolean {\n return (lanes & TransitionLanes) !== NoLanes;\n }\n \n+export function includesOnlyHydrationLanes(lanes: Lanes): boolean {\n+ return (lanes & Hydra...
2024-12-14T18:49:47
golang/go
61d1ff61adb3febdbae21da7721b7cd5389efe4a
5b29875c8eb1002c4509eb9ebd9a4d32cfd7d494
cmd/compile: use block starting position for phi line number Fixes #75615 Change-Id: I2c7f0ea1203e8a97749c9f780c29a66050f0159d Reviewed-on: https://go-review.googlesource.com/c/go/+/710355 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-sco...
[ { "path": "src/cmd/compile/internal/ssa/stmtlines_test.go", "patch": "@@ -137,17 +137,17 @@ func TestStmtLines(t *testing.T) {\n \t\t}\n \t}\n \n-\tvar m int\n+\tvar m float64\n \tif runtime.GOARCH == \"amd64\" {\n-\t\tm = 1 // > 99% obtained on amd64, no backsliding\n+\t\tm = 0.011 // > 98.9% obtained on a...
2025-10-08T22:33:19
nodejs/node
a186e075ef355768b623475bf120944415c32c61
c8f82953bb66223efa632531ec39f67073e86766
deps: V8: cherry-pick 4f38995c8295 Original commit message: [explicit-resource-management] Turn flag on by default This feature has shipped since M134 on the blink side, and is highly unlikely to be unshipped now, so flip the flag on. Bug: 42203506 Change-Id: I9554cea721983464b150c0de70b58a4b50f...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,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.14',\n+ 'v8_embedder_string': '-node.15',\n \n ##### V8 defaults for Node.js #####\n...
2025-05-05T17:35:01
vercel/next.js
0ca2f97cbeeaa562880cefe58000baccca72e045
cee71e4a589549f6b1f24cbc46f25d338357a0b0
fix broken extend implementation on DynamicStorage (#86204) ### What? This implementation was broken. It did call `add` instead of `insert` and that doesn't override existing values as it should. It could also be a bit more efficient by using `extend`.
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/dynamic_storage.rs", "patch": "@@ -61,14 +61,9 @@ impl DynamicStorage {\n pub fn extend(\n &mut self,\n ty: CachedDataItemType,\n- item: impl Iterator<Item = CachedDataItem>,\n+ iterator: impl Iterator<Item = Cache...
2025-11-17T11:55:06
electron/electron
7a5e9613d2c990752ec99b2748403259526e76e5
9d1be5f824583a71261dfaad367a702611f5b2e0
build: rework header generation in Node.js (#44657) * build: rework header generation in Node.js * build: fix patch location error * fix: set --root-dir correctly
[ { "path": "BUILD.gn", "patch": "@@ -1504,21 +1504,8 @@ group(\"electron\") {\n ##### node_headers\n \n node_dir = \"../third_party/electron_node\"\n-node_files = read_file(\"$node_dir/filenames.json\", \"json\")\n node_headers_dir = \"$root_gen_dir/node_headers\"\n \n-header_group_index = 0\n-header_groups ...
2024-11-19T15:57:38
facebook/react
0d67cc065157b2b98843cd1e2578b0969765c54b
2e25ee373d96a882cee9a1ee3d7fee3f498bde2d
Fix `commong` typo in <title> multiple children error message (#31777)
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -3080,7 +3080,7 @@ function pushTitle(\n console.error(\n 'React expects the `children` prop of <title> tags to be a string, number, bigint, or object with a novel `toString` method but found an Array wi...
2024-12-14T17:32:58
nodejs/node
c8f82953bb66223efa632531ec39f67073e86766
12e0b51c538066c76f8e9c55defcbf7881392fc2
deps: V8: cherry-pick 044b9b6f589d Original commit message: [explicit-resource-management] disallow using in switch cases This CL disallows `using` and `await using` in switch cases. This was a normative change that got consensus in TC39 meetings: https://github.com/rbuckton/ecma262/pull/14 Bug:...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,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.13',\n+ 'v8_embedder_string': '-node.14',\n \n ##### V8 defaults for Node.js #####\n...
2025-05-01T23:57:26
golang/go
51134968050270a08d6a2456d0ea72c8a99b6e96
36086e85f842e8ed2c03be2542a6cc211603abbc
runtime/pprof: skip flaky test TestProfilerStackDepth/heap for now The test has been causing a lot of flakes on the builders. Skip it while I'm debugging it. For #74029 Change-Id: I6a6a696450c23f65bc310a2d0ab61b22dba88f00 Reviewed-on: https://go-review.googlesource.com/c/go/+/712060 TryBot-Bypass: Michael Matloob <m...
[ { "path": "src/runtime/pprof/pprof_test.go", "patch": "@@ -2549,6 +2549,9 @@ func TestProfilerStackDepth(t *testing.T) {\n \n \tfor _, test := range tests {\n \t\tt.Run(test.profiler, func(t *testing.T) {\n+\t\t\tif test.profiler == \"heap\" {\n+\t\t\t\ttestenv.SkipFlaky(t, 74029)\n+\t\t\t}\n \t\t\tvar buf ...
2025-10-15T15:23:59
electron/electron
4b3d1caae40d5cd07cf0b0fff48680b7f5eb23a5
2cea2282eb7319c0922221e80945fd0ed33337e8
fix: improve single-pixel resize handling on Windows (#44700) Co-authored-by: Niklas Wenzel <dev@nikwen.de>
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -1661,18 +1661,28 @@ void NativeWindowViews::OnWidgetBoundsChanged(views::Widget* changed_widget,\n if (changed_widget != widget())\n return;\n \n- // |GetWindowBoundsInScreen| has a ~1 pixel margin of error, so if we check\n- // existin...
2024-11-19T12:24:07
rust-lang/rust
43e3fd19443dbce57b8594693bed39a4b639aca4
c7b206bba4434ed928e9615f31082a9ef3f67c27
rustdoc-json: fix incorrect documentation for VariantKind::Struct
[ { "path": "src/rustdoc-json-types/lib.rs", "patch": "@@ -856,10 +856,10 @@ pub enum VariantKind {\n /// }\n /// ```\n Struct {\n- /// The list of variants in the enum.\n- /// All of the corresponding [`Item`]s are of kind [`ItemEnum::Variant`].\n+ /// The list of named field...
2026-03-08T15:41:37
vercel/next.js
b3b97bc409b2b79709ec9b39ffe4da404be3938d
a3aadbd37c2c19bdeac021b78a474d90bff9f9c0
Allow attaching a debugger when `next dev` is already running (#86083)
[ { "path": "packages/next/errors.json", "patch": "@@ -924,5 +924,6 @@\n \"923\": \"%s is being parsed as a normalized route, but it has a route group or parallel route segment.\",\n \"924\": \"Invalid interception route: %s\",\n \"925\": \"You cannot define a route with the same specificity as an optio...
2025-11-17T08:00:52
rust-lang/rust
bf4004a24a352182d784db642a8e43b8c1e05396
22a111ad9af00e08c7d59ce8afd7faf930dd32ca
Update conventions for TODO and FIXME comments
[ { "path": "src/doc/rustc-dev-guide/src/conventions.md", "patch": "@@ -139,6 +139,8 @@ if foo {\n }\n ```\n \n+If you want to leave a note in the codebase, use `// FIXME` instead.\n+\n <a id=\"cio\"></a>\n \n ## Using crates from crates.io", "additions": 2, "deletions": 0, "language": "Markdown" ...
2026-03-08T01:37:47
electron/electron
febf305a4f77030ca46acc7cc7826acebe01c629
1cae73ba092ccf5620c5fce8b896bade3a601346
chore: fix unsupported major comment in issue automation (#44706)
[ { "path": ".github/workflows/issue-opened.yml", "patch": "@@ -88,7 +88,7 @@ jobs:\n }\n }\n if (labels.length === 0) {\n- core.setOutput('No supported versions found', true);\n+ core.setOutput('unsupportedMajor', true);\n ...
2024-11-19T09:52:08
vercel/next.js
a3aadbd37c2c19bdeac021b78a474d90bff9f9c0
88fe8793e7611d20102772001e4388e8e4ea72f6
[turbopack] Remove `Clone` from `Effect` (#86110) Disallow cloning effects. This was only performed in one location to address an issue with modeling calls functions that had alternates. However, this had the unfortunate effect of producing duplicate `CodeGen` objects. (it also could link values redundantly). This wa...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs", "patch": "@@ -35,7 +35,7 @@ use crate::{\n utils::{AstPathRange, unparen},\n };\n \n-#[derive(Debug, Clone)]\n+#[derive(Debug)]\n pub struct EffectsBlock {\n pub effects: Vec<Effect>,\n pub range: AstPathRange,\n@@ -47,7 +4...
2025-11-17T03:26:04
rust-lang/rust
201759058d3e5584a366dabf998faaba96b0ce11
9450d567b990877d6520db93c74ca4a37d9d76d7
Fix ICE when using the `min_generic_const_args` incomplete feature
[ { "path": "clippy_utils/src/consts.rs", "patch": "@@ -845,8 +845,13 @@ impl<'tcx> ConstEvalCtxt<'tcx> {\n {\n did\n },\n- _ if let Res::Def(DefKind::Const { .. } | DefKind::AssocConst { .. }, did) =\n- self.typeck.qpath_res(qpath, id) =>\n+ ...
2026-03-08T10:16:26
electron/electron
1cae73ba092ccf5620c5fce8b896bade3a601346
10d967028af2e72382d16b7e2025d243b9e204ae
chore: Revert "fix: utility process exit code for graceful termination" (#44717) Revert "fix: utility process exit code for graceful termination (#44698)" This reverts commit 36e1a0bf001d72f725297f43827d255b08c2e9b7.
[ { "path": "patches/chromium/feat_enable_passing_exit_code_on_service_process_crash.patch", "patch": "@@ -11,7 +11,7 @@ ServiceProcessHost::Observer functions, but we need to pass the exit code to\n the observer.\n \n diff --git a/content/browser/service_process_host_impl.cc b/content/browser/service_process...
2024-11-19T04:13:23
vercel/next.js
8de523ae224a8024572859319a9ee411be1fa5d2
bf27e24aca38a0cb540148312dada907b49b1feb
Fix streaming server actions (#86148) By accident, the responses for server actions that fetch something and don't revalidate are currently not streamed to the browser until the `fetch` calls are fully resolved. In the simplest case this happens when a server action returns the response body of a `fetch` call. This is...
[ { "path": "packages/next/src/server/app-render/action-handler.ts", "patch": "@@ -617,8 +617,9 @@ export async function handleAction({\n type: 'done',\n result: await generateFlight(req, ctx, requestStore, {\n actionResult: promise,\n- // We didn't execute an action...
2025-11-15T22:17:29
facebook/react
17ca4b157fcba6c734583513353ba72376a7ba2d
4dff0e62b2320d8c97746a16c95efd9c9ad0bc07
Fix useResourceEffect in Fizz (#31758) We're seeing errors when testing useResourceEffect in SSR and it turns out we're missing the noop dispatcher function on Fizz. I tested a local build with this change and it resolved the late mutation errors in the e2e tests.
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationHooks-test.js", "patch": "@@ -27,6 +27,7 @@ let useRef;\n let useImperativeHandle;\n let useInsertionEffect;\n let useLayoutEffect;\n+let useResourceEffect;\n let useDebugValue;\n let forwardRef;\n let yieldedValues;\n@@ -51,6 +52,7 @@ fun...
2024-12-13T16:26:44
rust-lang/rust
d7490855d537af3685984f33d278639c12fac71c
052b9c23daccef254010e43d6c4d0a5459caec5b
Inline and simplify some code for saving incremental data to disk Main changes: - Inline `encode_query_cache` and `TyCtxt::serialize_query_result_cache` - Pull value promotion out of `OnDiskCache::drop_serialized_data` - Panic if `on_disk_cache` is None in an incremental-only path
[ { "path": "compiler/rustc_incremental/src/persist/save.rs", "patch": "@@ -8,7 +8,7 @@ use rustc_middle::dep_graph::{\n };\n use rustc_middle::ty::TyCtxt;\n use rustc_serialize::Encodable as RustcEncodable;\n-use rustc_serialize::opaque::{FileEncodeResult, FileEncoder};\n+use rustc_serialize::opaque::FileEnc...
2026-03-08T04:37:15
golang/go
ee5af46172e64eceddb56018de8ea850fe0a6cae
11d3d2f77d8293fe14638e74cbf52d1241b60e78
encoding/json: avoid misleading errors under goexperiment.jsonv2 The jsontext package represents the location of JSON errors using a JSON Pointer (RFC 6901). This uses the JSON type system. Unfortunately the v1 json.UnmarshalTypeError assumes a Go struct-based mechanism for reporting the location of errors (and has h...
[ { "path": "src/encoding/json/v2_decode.go", "patch": "@@ -14,6 +14,7 @@ import (\n \t\"fmt\"\n \t\"reflect\"\n \t\"strconv\"\n+\t\"strings\"\n \n \t\"encoding/json/internal/jsonwire\"\n \t\"encoding/json/jsontext\"\n@@ -119,7 +120,20 @@ type UnmarshalTypeError struct {\n func (e *UnmarshalTypeError) Error()...
2025-10-11T18:57:46
vercel/next.js
bf27e24aca38a0cb540148312dada907b49b1feb
a3f3c1e0d747982c4109b20beb2fe66b23700c53
fix: cacheMaxMemorySize should not disable dev HMR cache (#86164) When configuring `cacheMaxMemorySize` to disable memory caching (typically used for setups to adjust production caching behavior, especially in multi-process self-hosted setups), this inadvertently also disabled dev HMR caches which are intended as a pe...
[ { "path": "packages/next/src/server/dev/next-dev-server.ts", "patch": "@@ -48,6 +48,7 @@ import { loadDefaultErrorComponents } from '../load-default-error-components'\n import { DecodeError, MiddlewareNotFoundError } from '../../shared/lib/utils'\n import * as Log from '../../build/output/log'\n import isEr...
2025-11-15T19:25:47
facebook/react
a7b829524b295bb114b112c7fc2375bbcd4c65e3
56ae4b8d22f773c961c6f57946e648de0879c7f1
[DevTools] Show component names while highlighting renders (#31577) ## Summary This PR improves the Trace Updates feature by letting developers see component names directly on the update overlay. Before this change, the overlay only highlighted updated regions, leaving it unclear which components were involved. Wi...
[ { "path": "packages/react-devtools-shared/src/__tests__/traceUpdates-test.js", "patch": "@@ -0,0 +1,269 @@\n+import {groupAndSortNodes} from 'react-devtools-shared/src/backend/views/TraceUpdates/canvas';\n+\n+describe('Trace updates group and sort nodes', () => {\n+ test('should group nodes by position wit...
2024-12-13T11:53:05
golang/go
5a9ef44bc05b937cff2394b5880ecca616cb878e
3765758b96746e202bb52312d4b026085a0f25a1
cmd/compile/internal/devirtualize: fix OCONVNOP assertion Fixes #75863 Change-Id: I1e5a0f3880dcd5f820a5b6f4540c49b16a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/711141 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Lasse Folger <lassefolger@google.com> Auto-Submit: Keith Randall <khr@golan...
[ { "path": "src/cmd/compile/internal/devirtualize/devirtualize.go", "patch": "@@ -223,7 +223,7 @@ func concreteType1(s *State, n ir.Node, seen map[*ir.Name]struct{}) (outT *types\n \t\tswitch n1 := n.(type) {\n \t\tcase *ir.ConvExpr:\n \t\t\tif n1.Op() == ir.OCONVNOP {\n-\t\t\t\tif !n1.Type().IsInterface() |...
2025-10-12T09:15:11
nodejs/node
e4e80c5463baea8d8881f927da3002f03ef67cfd
508cd0f275ea99ebbaeb7019fea118f80ed445c8
src: fix module buffer allocation PR-URL: https://github.com/nodejs/node/pull/57738 Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/debug_utils.cc", "patch": "@@ -471,7 +471,7 @@ std::vector<std::string> NativeSymbolDebuggingContext::GetLoadedLibraries() {\n DWORD size_2 = 0;\n // First call to get the size of module array needed\n if (EnumProcessModules(process_handle, nullptr, 0, &size_1)) {\n- MallocedBuffer<H...
2025-05-09T19:41:23
rust-lang/rust
e4e8ae7660240d32b79f323066c4e10c9b68aecd
901cb4cf4006888dc69d95666886960c31e2c75a
fix: qualify NormalizesTo and CoercePredicate in ir_print debug output
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/next_solver/ir_print.rs", "patch": "@@ -188,7 +188,7 @@ impl<'db> IrPrint<ty::NormalizesTo<Self>> for DbInterner<'db> {\n t: &ty::NormalizesTo<Self>,\n fmt: &mut std::fmt::Formatter<'_>,\n ) -> std::fmt::Result {\n- write!(fmt, ...
2026-03-08T05:03:05
vercel/next.js
40a5da531a0ffae1a0a446a8c7459b725366d502
dcd9be7aa1332e8bf8ab0402affe2b1bf7d85f5a
Fix telemetry event race condition in webpack worker for @vercel/og detection (#86145)
[ { "path": "packages/next/src/build/webpack-build/impl.ts", "patch": "@@ -414,5 +414,7 @@ export async function workerMain(workerData: {\n result.buildTraceContext!.chunksTrace!.entryNameFilesMap = entryNameFilesMap\n }\n NextBuildContext.nextBuildSpan.stop()\n+ await telemetry.flush()\n+\n return...
2025-11-14T22:58:01
facebook/react
56ae4b8d22f773c961c6f57946e648de0879c7f1
d5e8f79cf4d11fa7eee263b3f937deecbe65ffd7
Remove unused field _debugIsCurrentlyTiming (#31753) This field is unused. It's not there at runtime. It's just legacy from the type.
[ { "path": "packages/react-reconciler/src/ReactInternalTypes.js", "patch": "@@ -210,7 +210,6 @@ export type Fiber = {\n _debugOwner?: ReactComponentInfo | Fiber | null,\n _debugStack?: string | Error | null,\n _debugTask?: ConsoleTask | null,\n- _debugIsCurrentlyTiming?: boolean,\n _debugNeedsRemoun...
2024-12-13T04:53:37
nodejs/node
508cd0f275ea99ebbaeb7019fea118f80ed445c8
264cad75ce08dabb6ddc8cc56cc70c9ba3447447
test: deflake test-http2-client-socket-destroy The socket can be destroyed by the other peer while data is still being written. Add a listener for the `'error'` event. PR-URL: https://github.com/nodejs/node/pull/58212 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com...
[ { "path": "test/parallel/test-http2-client-socket-destroy.js", "patch": "@@ -15,6 +15,7 @@ const server = h2.createServer();\n \n // We use the lower-level API here\n server.on('stream', common.mustCall((stream) => {\n+ stream.on('error', () => {});\n stream.on('aborted', common.mustCall());\n stream.o...
2025-05-09T19:14:23
golang/go
f6b9d56affb75103507f2b6ed4ffa98ca899b39d
60f6d2f6230c5085ad25a9e3ebdaaae2aefdfe36
crypto/internal/fips140/entropy: fix benign race Fixes #75690 Fixes #75842 Change-Id: I6a6a696420f51f28f48535c34cf347e2cbd4add5 Reviewed-on: https://go-review.googlesource.com/c/go/+/710058 Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Roland Shoemaker <...
[ { "path": "src/crypto/internal/fips140/entropy/entropy.go", "patch": "@@ -123,7 +123,9 @@ func (s *source) Sample() uint8 {\n \t// Perform a few memory accesses in an unpredictable pattern to expose the\n \t// next measurement to as much system noise as possible.\n \tmemory, lcgState := s.memory, s.lcgState...
2025-10-08T11:30:34
vercel/next.js
8c8030edf42200228fb3b2dfbd3a130dd13c1485
283c6f57bb76fcd2f674cd67b979980bb3ca86d8
Turbopack: apply side effects false removal on all module types (#86133) ### What? fix the side effects false handling for other module types. Before it did only work for ecmascript modules.
[ { "path": "crates/next-core/src/hmr_entry.rs", "patch": "@@ -70,6 +70,11 @@ impl Module for HmrEntryModule {\n .await?,\n )]))\n }\n+\n+ #[turbo_tasks::function]\n+ fn is_marked_as_side_effect_free(self: Vc<Self>, _: Vc<Glob>) -> Vc<bool> {\n+ Vc::cell(false)\n+ }...
2025-11-14T19:02:58
facebook/react
d5e8f79cf4d11fa7eee263b3f937deecbe65ffd7
7130d0c6cf1f604badc5e479a944bda2c19ba971
[Fiber] Use hydration lanes when scheduling hydration work (#31751) When scheduling the initial root and when using `unstable_scheduleHydration` we should use the Hydration Lanes rather than the raw update lane. This ensures that we're always hydrating using a Hydration Lane or the Offscreen Lane rather than other ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzShellHydration-test.js", "patch": "@@ -255,6 +255,39 @@ describe('ReactDOMFizzShellHydration', () => {\n },\n );\n \n+ // @gate enableHydrationLaneScheduling\n+ it(\n+ 'updating the root at same priority as initial hydration does not ' +\n+ ...
2024-12-13T04:06:07
golang/go
6fd8e88d07b08531a5585aa4fbcc6043d556742f
1abc6b0204ed231311c9bbc53cfab36dc546aa8e
encoding/json/v2: restrict presence of default options Originally, DefaultOptionsV1 and DefaultOptionsV2 represented the full set of all options with specific ones set to true or false. However, there are certain options such as WithIndent or WithMarshalers that are neither v1 or v2 specific. At some point we removed...
[ { "path": "src/encoding/json/internal/jsonopts/options.go", "patch": "@@ -48,16 +48,16 @@ type ArshalValues struct {\n // DefaultOptionsV2 is the set of all options that define default v2 behavior.\n var DefaultOptionsV2 = Struct{\n \tFlags: jsonflags.Flags{\n-\t\tPresence: uint64(jsonflags.AllFlags & ^json...
2025-10-11T18:37:58
nodejs/node
e532c861219f8e9d6e598ced700a3fc79fc711ad
e0766f9a73c5b9137bb8a92fb922c20830e76755
src: remove overzealous tcsetattr error check Node calls tcsetattr on exit to reset the tty to its state on program start. Good idea in general but tcsetattr can fail for a number of reasons and since there really isn't anything we can do about it at that point, simply ignore the error instead of aborting with an insc...
[ { "path": "src/node.cc", "patch": "@@ -712,9 +712,11 @@ void ResetStdio() {\n while (err == -1 && errno == EINTR); // NOLINT\n CHECK_EQ(0, pthread_sigmask(SIG_UNBLOCK, &sa, nullptr));\n \n- // Normally we expect err == 0. But if macOS App Sandbox is enabled,\n- // tcsetattr will fail ...
2025-05-08T22:38:35
electron/electron
10d967028af2e72382d16b7e2025d243b9e204ae
aa7a5e6ca959a6a54b59ce9e4c11eb4ce482b8cb
docs: Make ipcRenderer and ipcMain listener API docs consistent (#44651) * docs: Make ipcRenderer and ipcMain listener API docs consistent * test: add some unit tests for ipcRenderer/ipcMain listener behavior * fix: Mark on/off methods as primary and addListener/removeListener as aliases * fix: clear all list...
[ { "path": "docs/api/ipc-main.md", "patch": "@@ -32,7 +32,7 @@ process, see [webContents.send][web-contents-send] for more information.\n \n ## Methods\n \n-The `ipcMain` module has the following method to listen for events:\n+The `ipcMain` module has the following methods to listen for events:\n \n ### `ipc...
2024-11-18T22:44:30
vercel/next.js
7dedd622748bde8863ab10d7c171a8215bfefee9
a8d73c25f9468735841de9cd9819acfb5b6a0ccd
Un-skip tests in prefetch-runtime.test.ts (#86097) These were temporarily disabled when removed the Link level opt-in for runtime prefetching. I fixed the tests by switching to the file-based API. prefetch-layout-sharing.test.ts still needs to be updated, in a similar way.
[ { "path": "test/e2e/app-dir/segment-cache/prefetch-runtime/app/(default)/caches/private-seconds/page.tsx", "patch": "@@ -2,6 +2,11 @@ import { Suspense } from 'react'\n import { cachedDelay, DebugRenderKind } from '../../../shared'\n import { cacheLife } from 'next/cache'\n \n+export const unstable_prefetch...
2025-11-14T16:41:03
facebook/react
e854ce3b1551a4ac97012336c2e2076ab0cc0636
c86542b240375f95dfd14af5b8ec39e29881e74d
Fix canary version strings (#31721) We're still publishing RCs and creating canary version strings using the RC naming convention. Setting the `canaryChannelLabel` back to canary fixes the version names and tags after the 19 stable release.
[ { "path": "ReactVersions.js", "patch": "@@ -26,11 +26,11 @@ const ReactVersion = '19.1.0';\n //\n // It only affects the label used in the version string. To customize the\n // npm dist tags used during publish, refer to .github/workflows/runtime_prereleases_*.yml.\n-const canaryChannelLabel = 'rc';\n+const...
2024-12-12T19:11:24
golang/go
1abc6b0204ed231311c9bbc53cfab36dc546aa8e
9fdd6904da3d6ef2ed457fada1fb26130213f359
go/types, types2: permit type cycles through type parameter lists Issue #49439 was about a deadlock during type inference inside a type parameter list of a recursive constraint. As a remedy we disallowed recursive type parameter lists. In the meantime we have removed support for type inference for type arguments to g...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -302,6 +302,12 @@ loop:\n \t\t}\n \t}\n \n+\t// Cycles through type parameter lists are ok (go.dev/issue/68162).\n+\t// TODO(gri) if we are happy with this this, remove this flag and simplify code.\n+\tif tparCycle {\n+\t\treturn true\n+\t}\n...
2025-10-13T19:47:42
nodejs/node
e0766f9a73c5b9137bb8a92fb922c20830e76755
b849ed30ebd4a23d857bd493cd0ac60046381808
module: handle instantiated async module jobs in require(esm) When require(esm) encounters a cached module job that is instantiated but not yet evaluated, run the evaluation. This catches an edge case previously missed in https://github.com/nodejs/node/pull/57187. PR-URL: https://github.com/nodejs/node/pull/58067 Fix...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -386,7 +386,7 @@ class ModuleLoader {\n throw new ERR_REQUIRE_ASYNC_MODULE(filename, parentFilename);\n }\n const status = job.module.getStatus();\n- debug('Module status', filename, status);\n+ debug('Module status',...
2025-05-08T20:10:32
electron/electron
aa7a5e6ca959a6a54b59ce9e4c11eb4ce482b8cb
58dc990f7a725537b447c22862956ac6d711291d
docs: document why to use the loadBrowserProcessSpecificV8Snapshot fuse (#44680) Fixes #44450
[ { "path": "docs/tutorial/fuses.md", "patch": "@@ -68,6 +68,10 @@ The onlyLoadAppFromAsar fuse changes the search system that Electron uses to loc\n \n The loadBrowserProcessSpecificV8Snapshot fuse changes which V8 snapshot file is used for the browser process. By default Electron's processes will all use t...
2024-11-18T22:36:41