repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
facebook/react
bcbbbec1f58eeb714ded2b6d824344490b323fb0
33118be83592961ef4c07b4b7fc043c44ba47b71
[housekeeping] Remove unused test fixtures We don't use these fixtures, let's just clean them up.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/todo/README.md", "patch": "@@ -1,5 +0,0 @@\n-## TODOs\n-\n-This directory contains files that are currently crashing the compiler and\n-should be moved to `../transform/` as a potential new fixture once the crash\n-is fixed.", ...
2024-01-12T20:22:23
golang/go
8f6c083d7bf68a766073c50ceb8ea405a3fe7bed
26fdb07d4ce58885305283ba18960f582f4eaa73
cmd/link: choose one with larger size for duplicated BSS symbols When two packages declare a variable with the same name (with linkname at least on one side), the linker will choose one as the actual definition of the symbol if one has content (i.e. a DATA symbol) and the other does not (i.e. a BSS symbol). When both ...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -432,16 +432,16 @@ func (st *loadState) addSym(name string, ver int, r *oReader, li uint32, kind in\n \t\treturn i\n \t}\n \t// symbol already exists\n+\t// Fix for issue #47185 -- given two dupok or BSS symbols with\n+\t// different sizes, fa...
2025-03-25T20:55:54
rust-lang/rust
bcde3fc78018524e70284166f4b712e4f73ba9a3
035b01b794602d5861daa43ac792f372f8981ed7
fix refining_impl_trait suggestion with return_type_notation
[ { "path": "compiler/rustc_hir_analysis/src/check/compare_impl_item/refine.rs", "patch": "@@ -6,6 +6,7 @@ use rustc_infer::infer::TyCtxtInferExt;\n use rustc_lint_defs::builtin::{REFINING_IMPL_TRAIT_INTERNAL, REFINING_IMPL_TRAIT_REACHABLE};\n use rustc_middle::span_bug;\n use rustc_middle::traits::Obligation...
2026-01-27T14:13:42
vercel/next.js
d5d10e17a9330abd2cf7dab5c0b3ae742b9b5c57
bd8e04be7512994be9e7a366d583d5dc5406b264
[turbopack] Make internal functions private and use rcstr! macro (#81041) ## Refactor resolve module and improve RcStr usage ### What? - Made several internal methods private that were unnecessarily public - Removed unused methods like `ResolveResult.map()` - Removed redundant fragment resolution code path - Improved...
[ { "path": "crates/next-core/src/next_server/resolve.rs", "patch": "@@ -1,6 +1,6 @@\n use anyhow::Result;\n use serde::{Deserialize, Serialize};\n-use turbo_rcstr::RcStr;\n+use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{NonLocalValue, ResolvedVc, Vc, trace::TraceRawVcs};\n use turbo_tasks_fs::{self, Fi...
2025-06-30T23:44:32
nodejs/node
3597070ef8297baceed4cf7a9a0eccae8181e263
7d90f0638d524a75082ade7887ab4c29a1aa6016
deps: V8: cherry-pick a3cc8522a4c8 Original commit message: [riscv] avoid cpu probing in li_ptr CPU probing is an expensive thing to do and we should avoid doing it upon every li_ptr call. Fixes performance regresion bisected in https://github.com/riscv-forks/electron/issues/1 Change-Id: Ib5ff89b2a...
[ { "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.14',\n+ 'v8_embedder_string': '-node.15',\n \n ##### V8 defaults for Node.js #####\n...
2024-06-11T05:30:25
golang/go
656b5b3abe25d026725edff49edbdaa9862c9d77
e6c2e12c63db5b24724db873009373af413cd1ea
internal/poll: don't skip empty writes on Windows Empty writes might be important for some protocols. Let Windows decide what do with them rather than skipping them on our side. This is inline with the behavior of other platforms. While here, refactor the Read/Write/Pwrite methods to reduce one indentation level and ...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -434,43 +434,40 @@ func (fd *FD) Read(buf []byte) (int, error) {\n \t\treturn 0, err\n \t}\n \tdefer fd.readUnlock()\n+\tif fd.isFile {\n+\t\tfd.l.Lock()\n+\t\tdefer fd.l.Unlock()\n+\t}\n \n \tif len(buf) > maxRW {\n \t\tbuf = buf[:maxRW]\n \t}\n \n ...
2025-03-28T09:39:49
electron/electron
b27e4cae21547e7ddf3a6199d5bed0e621d4eee6
1e106c8aa41b18b02ade44a54e6bd558d725fc37
fix: crash in `MessagePortMain` with some `postMessage` params (#37585) * fix: crash in MessagePortMain postMessage * Update shell/browser/api/message_port.cc Co-authored-by: Charles Kerr <charles@charleskerr.com> --------- Co-authored-by: Charles Kerr <charles@charleskerr.com>
[ { "path": "shell/browser/api/message_port.cc", "patch": "@@ -26,6 +26,25 @@\n \n namespace electron {\n \n+namespace {\n+\n+bool IsValidWrappable(const v8::Local<v8::Value>& obj) {\n+ v8::Local<v8::Object> port = v8::Local<v8::Object>::Cast(obj);\n+\n+ if (!port->IsObject())\n+ return false;\n+\n+ if ...
2023-03-27T17:56:55
nodejs/node
73fa9ab7a58a3cbc53ed418543f5f6fd26e8f87a
937ae102e7efc4ac9b561d818263b26b8296a125
src: fix IsIPAddress for IPv6 Fix the bug when copying IPv6 host to a variable to remove brackets. Fixes: https://github.com/nodejs/node/issues/47427 PR-URL: https://github.com/nodejs/node/pull/53400 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "src/inspector_socket.cc", "patch": "@@ -192,7 +192,7 @@ static bool IsIPAddress(const std::string& host) {\n // Parse the IPv6 address to ensure it is syntactically valid.\n char ipv6_str[INET6_ADDRSTRLEN];\n std::copy(host.begin() + 1, host.end() - 1, ipv6_str);\n- ipv6_str[host.l...
2024-06-12T12:44:19
golang/go
cfc784a152ebbc4fc0b8bf13c02e0f6eb9c980bd
b17a99d6fca7f33bb821d450ebe67d6d4b3ea289
os: avoid panic in Root when symlink references the root We would panic when opening a symlink ending in .., where the symlink references the root itself. Fixes #73081 Change-Id: I7dc3f041ca79df7942feec58c197fde6881ecae5 Reviewed-on: https://go-review.googlesource.com/c/go/+/661416 Reviewed-by: Alan Donovan <adonova...
[ { "path": "src/os/root_openat.go", "patch": "@@ -226,6 +226,9 @@ func doInRoot[T any](r *Root, name string, f func(parent sysfdType, name string)\n \t\t\t\treturn ret, errPathEscapes\n \t\t\t}\n \t\t\tparts = slices.Delete(parts, i-count, end)\n+\t\t\tif len(parts) == 0 {\n+\t\t\t\tparts = []string{\".\"}\n...
2025-03-27T23:22:38
facebook/react
33118be83592961ef4c07b4b7fc043c44ba47b71
653373141a36a120a1c09391e0e6d3d81be5750c
[housekeeping] Remove fixtures/ Do we still use these? I'm happy to close this PR if we still want this but it feels like these may have served their purpose and no longer be necessary.
[ { "path": "compiler/fixtures/demo-2021Q3/.babelrc", "patch": "@@ -1,3 +0,0 @@\n-{\n- \"plugins\": [\"../../\"]\n-}", "additions": 0, "deletions": 3, "language": "Unknown" }, { "path": "compiler/fixtures/demo-2021Q3/.env", "patch": "@@ -1 +0,0 @@\n- SKIP_PREFLIGHT_CHECK=true", "a...
2024-01-12T20:22:19
vercel/next.js
824f853747a63702526803aea373895a8177ed7e
626998177ec746d238e9c215be7c82fcf2859efe
[devtools]: move RestartServerButton to panel footer (#81082) This moves the restart button to the footer in the new panel UI. It also properly gates to only be enabled with Turbopack + Persistent Cache. Because it's no longer part of the error overlay, I refactored the logic a bit to hoist the flag into overlay stat...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel-footer.tsx", "patch": "@@ -2,13 +2,16 @@ import type { OverlayState } from '../../shared'\n \n import { DevToolsPanelVersionInfo } from './devtools-panel-version-info'\n import { css } from '../../utils/css'\n+im...
2025-06-30T21:18:47
electron/electron
1e106c8aa41b18b02ade44a54e6bd558d725fc37
fda8ea9277983836a7f96a979ca07dbcf5eec14c
docs: fixup incorrect value for disabling sandbox (#37711)
[ { "path": "docs/tutorial/sandbox.md", "patch": "@@ -84,7 +84,7 @@ the `sandbox: false` preference in the [`BrowserWindow`][browser-window] constru\n app.whenReady().then(() => {\n const win = new BrowserWindow({\n webPreferences: {\n- sandbox: true\n+ sandbox: false\n }\n })\n win.lo...
2023-03-27T17:27:55
facebook/react
653373141a36a120a1c09391e0e6d3d81be5750c
0c866672b07ae47d8d6f80d1aac9029e5ae73d90
Extra fixture for validating preserved memoization of non-escaping callbacks
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/repro-false-positive-preserve-memoization-nonescaping-invoked-callback-escaping-return.expect.md", "patch": "@@ -0,0 +1,109 @@\n+\n+## Input\n+\n+```javascript\n+// @validatePreserveExistingMemoizationGuarantees @enableAs...
2024-01-12T22:32:35
nodejs/node
521c9c6df77f83b6e6d229b35cdc754dfb9d83cf
94c81784422e3da2b4d2af96a1705d7a770ed4ed
doc, http: add `rejectNonStandardBodyWrites` option, clear its behaviour PR-URL: https://github.com/nodejs/node/pull/53396 Fixes: https://github.com/nodejs/node/issues/53035 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gm...
[ { "path": "doc/api/http.md", "patch": "@@ -2427,8 +2427,9 @@ it will switch to implicit header mode and flush the implicit headers.\n This sends a chunk of the response body. This method may\n be called multiple times to provide successive parts of the body.\n \n-Writing to the body is not allowed when the ...
2024-06-11T16:39:17
electron/electron
6a6908c4c887c5f685f5e172ff01afc02ebcbc65
42e7cd9b3f3e16d07f162716b4f1346e32004aec
fix: allow cancelling of bluetooth requests (#37601) * fix: allow cancelling of bluetooth requests allows cancelling of bluetooth requests when no devices present * docs: update docs to reflect how bluetooth works.
[ { "path": "docs/api/web-contents.md", "patch": "@@ -777,20 +777,24 @@ Returns:\n * `callback` Function\n * `deviceId` string\n \n-Emitted when bluetooth device needs to be selected on call to\n-`navigator.bluetooth.requestDevice`. To use `navigator.bluetooth` api\n-`webBluetooth` should be enabled. If `ev...
2023-03-27T13:31:15
golang/go
a645bc5eb9b9fabc024c076140013a8ad87dded5
6722c008c139a8abfe841275d12a601d7ea513a1
maps: implement faster clone │ base │ experiment │ │ sec/op │ sec/op vs base │ MapClone-24 66.802m ± 7% 3.348m ± 2% -94.99% (p=0.000 n=10) Fixes #70836 Change-Id: I9e192b1ee82e18f5580ff18918307042a337fdcc Reviewed-on: https://go...
[ { "path": "src/internal/runtime/maps/group.go", "patch": "@@ -322,3 +322,32 @@ func (g *groupsReference) group(typ *abi.SwissMapType, i uint64) groupReference\n \t\tdata: unsafe.Pointer(uintptr(g.data) + offset),\n \t}\n }\n+\n+func cloneGroup(typ *abi.SwissMapType, newGroup, oldGroup groupReference) {\n+\t...
2025-03-21T23:07:20
vercel/next.js
626998177ec746d238e9c215be7c82fcf2859efe
4e53b980a1926dffc70274ac8fbdd485cabe5320
Turbopack: fix exposed modules in scope hoisting (#81073) Closes PACK-4943 Closes https://github.com/vercel/next.js/issues/80998 If we have to split up a merged group because multiple chunks have different execution order, we need to make sure that the references that cross merged groups because of this actually w...
[ { "path": "turbopack/crates/turbopack-core/src/module_graph/merged_modules.rs", "patch": "@@ -436,30 +436,53 @@ pub async fn compute_merged_modules(module_graph: Vc<ModuleGraph>) -> Result<Vc<\n list.truncate(common_occurrence.entry);\n let before_list = &*list;\n \n- ...
2025-06-30T20:40:33
facebook/react
0c866672b07ae47d8d6f80d1aac9029e5ae73d90
8e4d2fb69d690695db0a33001fb1aee586bde15f
Fix false positive on preserving memo of non-escaping values Fixes the false positive in the previous PR. When we prune a scope because it's values are non-escaping, we now also remove any `Memoize` instructions for that scope. The intuition being that we're actively removing unnecessary memoization, so we don't n...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PruneNonEscapingScopes.ts", "patch": "@@ -871,6 +871,8 @@ class CollectDependenciesVisitor extends ReactiveFunctionVisitor<State> {\n class PruneScopesTransform extends ReactiveFunctionTransform<\n Set<IdentifierId>\n > {\n+ pruned...
2024-01-12T01:13:41
nodejs/node
3a7d8c8e9f3fd11924b13996abb1af9dd5203e16
dbf79c916794faf947d792a3d6aa9ae7983e5ef0
doc: fix typo PR-URL: https://github.com/nodejs/node/pull/53397 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -1019,7 +1019,7 @@ following permissions are restricted:\n added: v22.0.0\n -->\n \n-> Stability: 1.1 - Active Developement\n+> Stability: 1.1 - Active Development\n \n Supports loading a synchronous ES module graph in `require()`.\n ", "additions": 1, "delet...
2024-06-10T22:34:38
golang/go
4d6722a8fd40e86822535b82e0dc9d2b5fd25b74
b3aff930cf4a423bd03d68b70d64cfa66807b0f0
cmd/compile: match more patterns for shortcircuit This CL tries to generalize the pattern matching of certain shortcircuit-able CFGs a bit more: For a shortcircuit-able CFG: p q \ / b / \ t u Where the constant branch is t, and b has multiple phi values other than the control phi. For the non-constant branch ...
[ { "path": "src/cmd/compile/internal/ssa/shortcircuit.go", "patch": "@@ -135,6 +135,8 @@ func shortcircuitBlock(b *Block) bool {\n \t\t// to reason about the values of phis.\n \t\treturn false\n \t}\n+\t// We only process blocks with only phi values except for control\n+\t// value and its wrappers.\n \tif le...
2025-03-09T20:14:32
vercel/next.js
b1ea75541598855fd564c015a969cfe7f1c0b7ad
75e00d6a52518dd845f27f4b9af98a38911359c5
[turbopack[ Fix a bug in top level `this` analysis (#81076) ### What Fix a bug where we incorrectly identified a `this` reference in a getter prop of an object literal as being 'top level'. Reported here: https://github.com/vercel/next.js/pull/80925#issuecomment-3018327194
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs", "patch": "@@ -797,11 +797,13 @@ pub fn is_in_try(ast_path: &AstNodePath<AstParentNodeRef<'_>>) -> bool {\n .iter()\n .rev()\n .find_map(|ast_ref| match ast_ref.kind() {\n- AstParentKind::ArrowExpr(Arr...
2025-06-30T17:25:39
electron/electron
8cf03f56615c7ea37c1d9efbfa661f495da9c65e
916861036db924166c247327a963edc6e0d5a235
ci: fixup gn check to actually run gn check (#37676)
[ { "path": ".circleci/config/base.yml", "patch": "@@ -970,26 +970,13 @@ step-ts-compile: &step-ts-compile\n # List of all steps.\n steps-electron-gn-check: &steps-electron-gn-check\n steps:\n- - *step-checkout-electron\n- - *step-depot-tools-get\n- - *step-depot-tools-add-to-path\n - install-p...
2023-03-23T19:02:08
facebook/react
c3a947643fae3fbbbda42a676c1b89dfd5d21945
f6f042d747be336e272c6b0d205fb15b6e7de8f6
Update hoisting error message to allow error aggregation Interpolating values into the `reason` field of an error breaks our error aggregation. This PR moves the offending function name into the `description` field which isn't used for aggregation.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -646,9 +646,8 @@ function checkFunctionReferencedBeforeDeclarationAtTopLevel(\n if (scope === null) {\n errors.pushErrorDetail(\n new CompilerErrorDetail({\n- reason: `Encounter...
2024-01-11T23:54:55
golang/go
b3aff930cf4a423bd03d68b70d64cfa66807b0f0
e9242ee81274154f2ec0a82a176496acea0b91ef
go/types: LookupSelection: returns LookupFieldOrMethod as a Selection Also, rewrite some uses of LookupFieldOrMethod in terms of it. + doc, relnote Fixes #70737 Change-Id: I58a6dd78ee78560d8b6ea2d821381960a72660ab Reviewed-on: https://go-review.googlesource.com/c/go/+/647196 LUCI-TryBot-Result: Go LUCI <golang-scop...
[ { "path": "api/go1.25.txt", "patch": "@@ -10,6 +10,7 @@ pkg go/types, const RecvVar = 3 #70250\n pkg go/types, const RecvVar VarKind #70250\n pkg go/types, const ResultVar = 5 #70250\n pkg go/types, const ResultVar VarKind #70250\n+pkg go/types, func LookupSelection(Type, bool, *Package, string) (Selection,...
2025-02-07T03:28:30
nodejs/node
430c026911a5ca51fa0102bdb9e40cbd7e36e94e
14863e80584e579fd48c55f6373878c821c7ff7e
src: fix permission inspector crash PR-URL: https://github.com/nodejs/node/pull/53389 Fixes: https://github.com/nodejs/node/issues/53385 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Kohei Ueno <kohei...
[ { "path": "src/inspector_js_api.cc", "patch": "@@ -181,6 +181,9 @@ void SetConsoleExtensionInstaller(const FunctionCallbackInfo<Value>& info) {\n \n void CallAndPauseOnStart(const FunctionCallbackInfo<v8::Value>& args) {\n Environment* env = Environment::GetCurrent(args);\n+ THROW_IF_INSUFFICIENT_PERMISS...
2024-06-10T18:35:55
vercel/next.js
890c19fa2c16774eb1520ebdddb7584de575fbb1
b9cabd28137040e847b7ba1fa67b5a13409f195d
[test] fix browser chunk test failure (#81074)
[ { "path": "packages/next/src/client/react-client-callbacks/error-boundary-callbacks.ts", "patch": "@@ -13,7 +13,6 @@ import { reportGlobalError } from './report-global-error'\n import { originConsoleError } from '../../next-devtools/userspace/app/errors/intercept-console-error'\n import { ErrorBoundaryHandl...
2025-06-30T16:06:18
facebook/react
f6f042d747be336e272c6b0d205fb15b6e7de8f6
8a634bc1c0a3658a23f50662d1c0225ae6212720
Switch test262 submodule to https url I had trouble checking out the repo using Sapling because the submodule couldn't clone properly. I got > Error: Permission denied (publickey) In my branch I tested that the https URL format seems to work okay with Sapling.
[ { "path": "compiler/.gitmodules", "patch": "@@ -1,4 +1,4 @@\n [submodule \"test262\"]\n \tpath = test262\n-\turl = git@github.com:tc39/test262.git\n+\turl = https://github.com/tc39/test262\n \tshallow = true", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2024-01-12T20:07:24
electron/electron
916861036db924166c247327a963edc6e0d5a235
52481bc923c581d2edc9d0c0f87077a5299000f4
chore: bump chromium to 113.0.5668.0 (main) (#37646) * chore: bump chromium in DEPS to 113.0.5668.0 * chore: update patches * chore: fixup for lint --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt <jkleinsc@electronjs...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '113.0.5666.0',\n+ '113.0.5668.0',\n 'node_version':\n 'v18.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2023-03-23T00:09:13
golang/go
af53bd2c030fa585d116e916a0676aa6c582faf7
d88f93f720692c7a7f3740093afdd51b45c6056f
internal/syscall/windows: run go generate CL 660595 manually edited zsyscall_windows.go, making it be out of sync with its associated //sys directive. Longtest builders are failing due to that. Fixes #73069. Change-Id: If7256ef4b831423e4925fb6e5656fe3f7ef77fea Reviewed-on: https://go-review.googlesource.com/c/go/+/6...
[ { "path": "src/internal/syscall/windows/zsyscall_windows.go", "patch": "@@ -268,7 +268,7 @@ func CreateEvent(eventAttrs *SecurityAttributes, manualReset uint32, initialStat\n \treturn\n }\n \n-func CreateNamedPipe(name *uint16, flags uint32, pipeMode uint32, maxInstances uint32, outSize uint32, inSize uint3...
2025-03-27T09:39:40
nodejs/node
14863e80584e579fd48c55f6373878c821c7ff7e
e74dbfb4bda4cd20d97c3be12187945ccb2d4e1a
test: update tests for OpenSSL 3.0.14 Starting from OpenSSL 3.0.14, 3.1.6, 3.2.2, and 3.3.1, OpenSSL was fixed to return an error reason string for bad/unknown application protocols. Update tests to handle both the old `ECONNRESET` error on older versions of OpenSSL and the new `ERR_SSL_TLSV1_ALERT_NO_APPLICATION_PRO...
[ { "path": "test/parallel/test-http2-https-fallback.js", "patch": "@@ -151,7 +151,8 @@ function onSession(session, next) {\n // Incompatible ALPN TLS client\n tls(Object.assign({ port, ALPNProtocols: ['fake'] }, clientOptions))\n .on('error', common.mustCall((err) => {\n- strictE...
2024-06-10T17:43:36
vercel/next.js
b9cabd28137040e847b7ba1fa67b5a13409f195d
82c85a5b7bfbe38ee9c979d9da739925da20723c
[devtools]: width/height adjustments (#81072) Before: https://github.com/user-attachments/assets/f4fdda52-452c-4990-818d-0a0db331a02b After: https://github.com/user-attachments/assets/ee58f986-96b3-4cf0-920e-aaee3370eea5 Fixes NEXT-4575
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel.tsx", "patch": "@@ -277,11 +277,7 @@ export const DEVTOOLS_PANEL_STYLES = css`\n }\n \n @media (min-width: 992px) {\n- max-width: 960px;\n- }\n-\n- @media (min-width: 1200px) {\n- max-widt...
2025-06-30T16:00:38
facebook/react
8a634bc1c0a3658a23f50662d1c0225ae6212720
c80f0f022c135704e955d36516bf81d071f40ba6
Add frozen reason for props and hook arguments Add frozen reason for props and hook arguments Improves the error message when mutating props or hook arguments. Previously, this would print a generic error about mutating global variables.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/HIR.ts", "patch": "@@ -982,6 +982,11 @@ export enum ValueReason {\n */\n Context = \"context\",\n \n+ /**\n+ * Props of a component or arguments of a hook.\n+ */\n+ ReactiveFunctionArgument = \"reactive-function-argument\",\n+\n Oth...
2024-01-12T19:51:59
nodejs/node
e74dbfb4bda4cd20d97c3be12187945ccb2d4e1a
8e6901a703766e79254b8f8ebfe441cb0a0eef5f
lib: fix naming convention of `Symbol` `node.js` prefix is used for global symbol(`Symbol.for`). So remove `node.js` prefix from `Symbol` usage. Refs: https://github.com/nodejs/node/blob/main/doc/contributing/using-symbols.md#symbolforstring PR-URL: https://github.com/nodejs/node/pull/53387 Reviewed-By: Matteo Collin...
[ { "path": "lib/internal/event_target.js", "patch": "@@ -65,7 +65,7 @@ const kWeakHandler = Symbol('kWeak');\n const kResistStopPropagation = Symbol('kResistStopPropagation');\n \n const kHybridDispatch = SymbolFor('nodejs.internal.kHybridDispatch');\n-const kRemoveWeakListenerHelper = Symbol('nodejs.interna...
2024-06-10T14:56:14
golang/go
440a8f7024044387a6e440fc003bd8fd61908c81
b138f8e4d2912e1105b69b9aaa24c6e8250652c6
internal/poll: support async file operations on Windows This CL adds support for async file operations on Windows. The affected functions are Read, Write, Pread, and Pwrite. The code has been slightly refactored to avoid duplication. Both the async and sync variants follow the same code path, with the exception of th...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -88,6 +88,17 @@ type operation struct {\n \tbufs []syscall.WSABuf\n }\n \n+func (o *operation) overlapped() *syscall.Overlapped {\n+\tif o.runtimeCtx == 0 {\n+\t\t// Don't return the overlapped object if the file handle\n+\t\t// doesn't use overlap...
2025-03-25T15:42:51
vercel/next.js
3327565c43e1e224665f11a8ad69d1d3a32285f7
e0a7a95fb20ccce92abe94c1679fd004144f1376
docs(fetch): update wording on conflicting cache and revalidate options (#80591) Clarifies that using conflicting options such as `{ revalidate: 3600, cache: 'no-store' }` results in a warning in the terminal rather than an error. This change helps accurately reflect the current runtime behavior and avoids misleading...
[ { "path": "docs/01-app/03-api-reference/04-functions/fetch.mdx", "patch": "@@ -71,7 +71,7 @@ Set the cache lifetime of a resource (in seconds). [Data Cache](/docs/app/guides\n >\n > - If an individual `fetch()` request sets a `revalidate` number lower than the [default `revalidate`](/docs/app/api-reference/...
2025-06-30T08:12:38
facebook/react
0ac3ea471fbcb7d79bc7d36179e960c72c779e76
6639ed3b3a44f7736beb629144a7996145008f09
Use getComponentNameFromType for debug info for the key warning (#27930) If this is a client reference we shouldn't dot into it, which would throw in the proxy. Interestingly our client references don't really have a `name` associated with them for debug information so a component type doesn't show up in error l...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -1009,6 +1009,22 @@ describe('ReactFlight', () => {\n ReactNoopFlightClient.read(transport);\n });\n \n+ it('should warn in DEV a child is missing keys', () => {\n+ function ParentClient({children}) {\n+ return ...
2024-01-11T22:24:26
golang/go
87d1833c66aa25a7e495987b066bdd22d1fe3105
44fef2aa4db70bfbe7bfd2abbd5b12eb776cde1d
cmd/go/internal/modload: improve ErrNoModRoot error text Before this change, in several cases where HasModRoot() returned false, we'd return ErrNoModRoot. ErrNoModRoot would say that there was no go.mod file but would not mention workspaces. With this change, ErrNoModRoot will return error text that's different if we'...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -610,7 +610,7 @@ func inWorkspaceMode() bool {\n \treturn workFilePath != \"\"\n }\n \n-// HasModRoot reports whether a main module is present.\n+// HasModRoot reports whether a main module or main modules are present.\n // HasModRoot may return ...
2025-03-25T18:10:31
nodejs/node
8e6901a703766e79254b8f8ebfe441cb0a0eef5f
2dea6a4520b8f235465f638e25ed89cedfc8bf81
stream: make sure _destroy is called PR-URL: https://github.com/nodejs/node/pull/53213 Fixes: https://github.com/nodejs/node/issues/51987 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
[ { "path": "lib/internal/streams/compose.js", "patch": "@@ -238,13 +238,14 @@ module.exports = function compose(...streams) {\n ondrain = null;\n onfinish = null;\n \n+ if (isNodeStream(tail)) {\n+ destroyer(tail, err);\n+ }\n+\n if (onclose === null) {\n callback(err);\n } e...
2024-06-10T14:56:04
vercel/next.js
2ae5e2af6c24a7c8182218a932df360dfdab9ad1
030463929eb9baa59dfff76a84395dcb52a3eb21
chore(turbopack): Fix typo (#80983) ### What? Fix a typo ### Why? https://github.com/vercel/next.js/pull/80830#pullrequestreview-2964742420
[ { "path": "turbopack/crates/turbo-tasks/src/persisted_graph.rs", "patch": "@@ -150,7 +150,7 @@ pub struct DeactivateResult {\n pub more_tasks_to_deactivate: SmallVec<[TaskId; 4]>,\n }\n \n-pub type TypeIds = SmallVec<[TaskId; 4]>;\n+pub type TaskIds = SmallVec<[TaskId; 4]>;\n \n pub trait PersistedGraph...
2025-06-30T04:10:57
electron/electron
caa5989eedd44625dad508c9665b8032df01e235
e0c348a2f8122dabbe2253d7bddc52be13bf1bca
fix: avoid deprecated value apis (#37590) * fix: use base::Value::Dict:::Remove() instead of RemoveKe() the latter is deprecated. * fix: use base::Value::Dict::FindString() instead of base::Value::FindStringKey() The latter is deprecated. * chore: make lint happy
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -607,13 +607,13 @@ int ImportIntoCertStore(CertificateManagerModel* model, base::Value options) {\n net::ScopedCERTCertificateList imported_certs;\n int rv = -1;\n \n- std::string* cert_path_ptr = options.FindStringKey(\"certificate\");\n-...
2023-03-20T14:38:45
facebook/react
c80f0f022c135704e955d36516bf81d071f40ba6
7ca3b004aee982ee637dc06ccb5fe890c9f6e5ba
useContext returns frozen values This was an oversight in the original definition of useContext (oops my bad). Context values are owned by React and should not be modified. I found this because some cases of existing useMemo were not preserved (tested via the validatePreserveExistingManualMemo flag) due to functio...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Globals.ts", "patch": "@@ -5,7 +5,7 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import { Effect, ValueKind } from \"./HIR\";\n+import { Effect, ValueKind, ValueReason } from \"./HIR\";\n import {\n BUILTIN_SHAPES...
2024-01-11T00:12:17
vercel/next.js
5d9ed230185f4fae4f7374cd9d26d79d572221da
36930024ff9e0d9d070f4c3e5ba1f865202c4c23
Stop installing test apps that are skipped anyways (#81043) In dev test mode, when running with `--prerender-debug`, instead of skipping the test suite, we can split up the test matrix to avoid installing the non-applicable test apps.
[ { "path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.platform-dynamic.test.ts", "patch": "@@ -1,20 +1,30 @@\n-import { nextTestSetup } from 'e2e-utils'\n+import { isNextDev, nextTestSetup } from 'e2e-utils'\n import { assertNoErrorToast } from 'next-test-utils'\n import { getPrerenderOutput } fro...
2025-06-29T21:22:20
nodejs/node
2dea6a4520b8f235465f638e25ed89cedfc8bf81
db09f62c7987c2ce5496811135f6194b40456616
test: fix test-http-server-keepalive-req-gc This changes adds a second explicit gc call in the test. Without this call, the test relies on gc eventually happening based, since the first call doesn't free the object. Relying on gc to eventually happen prevents changing GC heuristics unrelated to this test. The gc call ...
[ { "path": "test/parallel/test-http-server-keepalive-req-gc.js", "patch": "@@ -14,9 +14,10 @@ const server = createServer(common.mustCall((req, res) => {\n onGC(req, { ongc: common.mustCall(() => { server.close(); }) });\n req.resume();\n req.on('end', common.mustCall(() => {\n- setImmediate(() => {...
2024-05-28T21:47:19
golang/go
2bf57a3534f478d9c072391b1deba1d211545661
936bb82ddb7f6456e3008b26f0398880d11ce3c0
testing: document exit codes Fixes #25989 Change-Id: I2e2a2a17854034ff68e69b8973018b1b2e7d59f5 Reviewed-on: https://go-review.googlesource.com/c/go/+/660076 Reviewed-by: Thanyalak Detkhong (Palm’my) <pmy4416@gmail.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Damien Neil <dneil@google.com> LUC...
[ { "path": "src/testing/testing.go", "patch": "@@ -2043,6 +2043,9 @@ var testingTesting bool\n var realStderr *os.File\n \n // Run runs the tests. It returns an exit code to pass to os.Exit.\n+// The exit code is zero when all tests pass, and non-zero for any kind\n+// of failure. For machine readable test r...
2025-03-22T00:48:16
rust-lang/rust
fe9b791c5554327d7da234c48f7f27e43a901b68
a2b126b6e6a56633d35bcb01f50c71b5af88a845
feat: offer block let fallback postfix complete Example --- ```rust fn main() { match 2 { bar => bar.$0 } } ``` -> ```rust fn main() { match 2 { bar => { let $1 = bar; $0 } } } ```
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs", "patch": "@@ -161,7 +161,20 @@ pub(crate) fn complete_postfix(\n postfix_snippet(\"letm\", \"let mut\", &format!(\"let mut $0 = {receiver_text};\"))\n .add_to(acc, ctx.db);\n ...
2026-02-06T08:15:22
electron/electron
e0c348a2f8122dabbe2253d7bddc52be13bf1bca
eb613ef3d474f374874e5494a57bb06639811bdd
feat: Allow usage of an absolute path for partitions used in a session (#37604) * Allow an absolute path to be used for creating sessions Allows an absolute path to be used for creating sessions by adding the session.fromPath() API. * Fixup! Clarify that an emptry string is not permitted as a parameter to fromP...
[ { "path": "docs/api/session.md", "patch": "@@ -42,6 +42,22 @@ To create a `Session` with `options`, you have to ensure the `Session` with the\n `partition` has never been used before. There is no way to change the `options`\n of an existing `Session` object.\n \n+### `session.fromPath(path[, options])`\n+\n...
2023-03-20T14:34:49
facebook/react
9c08b96a788196e6ed42c9e6c934b0296a8bcd99
31603f19d7114b751e89846d6eec73a8fbcdae71
Bump follow-redirects from 1.7.0 to 1.15.4 (#27909) Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.7.0 to 1.15.4. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/follow-redirects/follow-redirects/commit/65858205e59f1e23c9bf173348a7a7cbb8ac47f5"><c...
[ { "path": "yarn.lock", "patch": "@@ -6082,13 +6082,6 @@ debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:\n dependencies:\n ms \"^2.1.1\"\n \n-debug@^3.2.6:\n- version \"3.2.6\"\n- resolved \"https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b\"\n- integri...
2024-01-09T17:05:06
nodejs/node
ce531af0c27acf29dd05ab2fac19b4af88f8780d
83d0cfec0a1e8c065a4e5e4cc87d1b48ac6c03c4
test: update TLS tests for OpenSSL 3.2 Update the following TLS tests to account for error code changes in OpenSSL 3.2 and later. - `parallel/test-tls-empty-sni-context` - `parallel/test-tls-psk-circuit` PR-URL: https://github.com/nodejs/node/pull/53384 Refs: https://github.com/nodejs/node/issues/53382 Refs: https://...
[ { "path": "test/common/index.js", "patch": "@@ -63,6 +63,9 @@ const hasOpenSSL3 = hasCrypto &&\n const hasOpenSSL31 = hasCrypto &&\n require('crypto').constants.OPENSSL_VERSION_NUMBER >= 0x30100000;\n \n+const hasOpenSSL32 = hasCrypto &&\n+ require('crypto').constants.OPENSSL_VERSION_NUMBER >= 0x3020...
2024-06-09T16:50:08
vercel/next.js
a9fac70b261a4b80e40810a9647825d475d6b7b5
2a75a93388ac9a9f1106f2d04a0fcca28d0ff477
[tests]: fix failing searchparams test (#81013) - Adds a more reliable heuristic for when the test should start navigating (after prefetches are initiated) as `waitForIdleNetwork` is discouraged - Normalizes RSC request keys to ignore the redirect value from the middleware case
[ { "path": "test/e2e/app-dir/searchparams-reuse-loading/searchparams-reuse-loading.test.ts", "patch": "@@ -178,6 +178,16 @@ describe('searchparams-reuse-loading', () => {\n { resolve: () => Promise<void> }\n >()\n \n+ // Track prefetch requests to know when initial prefetching is don...
2025-06-27T20:39:32
golang/go
9c88db5f1eba68999184bb043a0b339349b81db4
aaf9b46800fe12c11c17bffebc82436204a1e85b
runtime: always show runfinq in traceback Today, runtime.runfinq is hidden whenever runtime frames are hidden. However this frame serves as a hint that this goroutine is running finalizers, which is otherwise unclear, but can be useful when debugging issues with finalizers. Fixes #73011. Change-Id: I6a6a636cb63951f...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"flag\"\n \t\"fmt\"\n+\t\"internal/profile\"\n \t\"internal/testenv\"\n \ttraceparse \"internal/trace\"\n \t\"io\"\n@@ -1100,3 +1101,77 @@ func TestNetpollWaiters(t *testing.T) {\n \t\tt.Fatalf(\"output is not %q...
2025-03-24T07:08:33
rust-lang/rust
22885d2526251034698c108d051d74a9f4b9de94
d5957f582b3cb4d9c3f9135fcd0fad5cd9e40c6b
Reorganize tests that no longer crash
[ { "path": "tests/crashes/138089.rs", "patch": "@@ -1,16 +0,0 @@\n-//@ known-bug: #138089\n-//@ needs-rustc-debug-assertions\n-\n-#![feature(generic_const_exprs)]\n-#![feature(min_generic_const_args)]\n-#![feature(inherent_associated_types)]\n-struct OnDiskDirEntry<'a> {}\n-\n-impl<'a> OnDiskDirEntry<'a> {\n...
2026-02-05T16:13:07
facebook/react
31603f19d7114b751e89846d6eec73a8fbcdae71
531c7ad21e8d48badab910deda6154e3d3977d91
Bump follow-redirects from 1.14.0 to 1.15.4 in /fixtures/concurrent/time-slicing (#27907) Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.0 to 1.15.4. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/follow-redirects/follow-redirects/commit/65858...
[ { "path": "fixtures/concurrent/time-slicing/yarn.lock", "patch": "@@ -3372,9 +3372,9 @@ flatten@^1.0.2:\n integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==\n \n follow-redirects@^1.0.0:\n- version \"1.14.0\"\n- resolved \"https://registry.yarnpkg.c...
2024-01-09T16:05:08
electron/electron
eb613ef3d474f374874e5494a57bb06639811bdd
7ed3c7a359c78c725ba02eaf5edd28968e356a32
fix: invoke `app.dock.{hide|show}` instead of duplicating logic (#37599) fix: invoke app.dock.{hide|show} instead of duplicating logic
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -23,6 +23,7 @@\n #include \"content/public/browser/browser_task_traits.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/browser/desktop_media_id.h\"\n+#include \"shell/browser/browser.h\"\n #include \"shell/br...
2023-03-20T14:30:49
nodejs/node
50695e5de14ccd8255537972181bbc9a1f44368e
5a446ccf3750b9bb649c25bd7a71577b87ceae6c
stream: prevent stream unexpected pause when highWaterMark set to 0 Co-authored-by: Robert Nagy <ronagy@icloud.com> PR-URL: https://github.com/nodejs/node/pull/53261 Fixes: https://github.com/nodejs/node/issues/51930 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gma...
[ { "path": "lib/internal/streams/writable.js", "patch": "@@ -565,7 +565,7 @@ function writeOrBuffer(stream, state, chunk, encoding, callback) {\n state[kState] &= ~kSync;\n }\n \n- const ret = state.length < state.highWaterMark;\n+ const ret = state.length < state.highWaterMark || state.length === 0;...
2024-06-08T02:04:40
golang/go
5918101d673d601c26f5de880b1fa2c6564fb745
b7f8c2a11058fe266fa5ddd0bc80dbf69b03b172
testing: detect a stopped timer in B.Loop Currently, if the user stops the timer in a B.Loop benchmark loop, the benchmark will run until it hits the timeout and fails. Fix this by detecting that the timer is stopped and failing the benchmark right away. We avoid making the fast path more expensive for this check by ...
[ { "path": "src/cmd/compile/internal/inline/interleaved/interleaved.go", "patch": "@@ -253,7 +253,7 @@ func (s *inlClosureState) mark(n ir.Node) ir.Node {\n \n \tif isTestingBLoop(n) {\n \t\t// No inlining nor devirtualization performed on b.Loop body\n-\t\tif base.Flag.LowerM > 1 {\n+\t\tif base.Flag.LowerM...
2025-03-20T16:16:17
rust-lang/rust
dc87b28bdb4d33a7c458a4dd8c695f7c41948692
62d0533eaecb43e75677b954b8c130fd9ffed0f0
Improve error message for non-descriptive test names
[ { "path": "src/tools/tidy/src/ui_tests.rs", "patch": "@@ -302,7 +302,7 @@ fn deny_new_nondescriptive_test_names(\n && !stripped_path.starts_with(\"ui/issues/\")\n {\n check.error(format!(\n- \"the name of the file `tests/{stripped_path}` is not descriptive, con...
2026-02-06T03:57:11
vercel/next.js
b91297d9c8d2bad4e93043628d0dab0e87473e5f
186913a23a343109e01e4fd1b34c2e4fd57e7c90
Use snapshots to verify dynamic validation errors in dev mode (#80992) Follow-up to #80946, asserting on the collapsed redbox errors in dev mode. > [!NOTE] > This PR is best reviewed with hidden whitespace changes.
[ { "path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.platform-dynamic.test.ts", "patch": "@@ -1,119 +1,154 @@\n import { nextTestSetup } from 'e2e-utils'\n+import { assertNoErrorToast } from 'next-test-utils'\n import { getPrerenderOutput } from './utils'\n \n describe.each([\n- { inDebugMode: t...
2025-06-27T15:35:11
electron/electron
b8f970c1c710c7e43cff6770fa845b96445cdaf8
48d0b09ad932aabc91ef072c862f3489202e40fd
fix: properly bubble up cookie creation failure message (#37586)
[ { "path": "shell/browser/api/electron_api_cookies.cc", "patch": "@@ -180,7 +180,7 @@ std::string InclusionStatusToString(net::CookieInclusionStatus status) {\n return \"Failed to parse cookie\";\n if (status.HasExclusionReason(\n net::CookieInclusionStatus::EXCLUDE_INVALID_DOMAIN))\n- ret...
2023-03-16T12:48:14
facebook/react
531c7ad21e8d48badab910deda6154e3d3977d91
f9dddcbbb1c0b73f974e78b9488927b778630682
Bump follow-redirects from 1.13.3 to 1.15.4 in /fixtures/ssr (#27906) Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.13.3 to 1.15.4. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/follow-redirects/follow-redirects/commit/65858205e59f1e23c9bf17334...
[ { "path": "fixtures/ssr/yarn.lock", "patch": "@@ -2771,9 +2771,9 @@ flatten@^1.0.2:\n integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==\n \n follow-redirects@^1.0.0:\n- version \"1.13.3\"\n- resolved \"https://registry.yarnpkg.com/follow-redirects/...
2024-01-09T16:04:58
nodejs/node
5a446ccf3750b9bb649c25bd7a71577b87ceae6c
d6921500cc5ffed898252133e2e6be41d92d0205
build: fix spacing before NINJA_ARGS PR-URL: https://github.com/nodejs/node/pull/53181 Fixes: https://github.com/nodejs/node/issues/53176 Refs: https://github.com/nodejs/node/issues/53176 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <l...
[ { "path": "Makefile", "patch": "@@ -147,7 +147,7 @@ ifdef JOBS\n \tNINJA_ARGS := $(NINJA_ARGS) -j$(JOBS)\n else\n \tIMMEDIATE_NINJA_ARGS := $(NINJA_ARGS)\n-\tNINJA_ARGS = $(IMMEDIATE_NINJA_ARGS) $(filter -j%,$(MAKEFLAGS))\n+\tNINJA_ARGS = $(filter -j%,$(MAKEFLAGS))$(IMMEDIATE_NINJA_ARGS)\n endif\n $(NODE_EX...
2024-06-08T01:08:22
golang/go
b7f8c2a11058fe266fa5ddd0bc80dbf69b03b172
c72e2747255b6ee44d024732b37333dbc9efa37e
testing: detect early return from B.Loop Currently, if a benchmark function returns prior to B.Loop() returning false, we'll report a bogus result. While there was no way to detect this with b.N-style benchmarks, one way b.Loop()-style benchmarks are more robust is that we *can* detect it. This CL adds a flag to B th...
[ { "path": "src/testing/benchmark.go", "patch": "@@ -124,6 +124,8 @@ type B struct {\n \t\t// i is the current Loop iteration. It's strictly monotonically\n \t\t// increasing toward n.\n \t\ti int\n+\n+\t\tdone bool // set when B.Loop return false\n \t}\n }\n \n@@ -201,6 +203,7 @@ func (b *B) runN(n int) {\n...
2025-03-20T14:26:54
rust-lang/rust
62d0533eaecb43e75677b954b8c130fd9ffed0f0
1dfdfe81495b2d2e5391753bde47b6a93a83a36a
Update error message for non-descriptive test files
[ { "path": "src/tools/tidy/src/ui_tests.rs", "patch": "@@ -302,7 +302,7 @@ fn deny_new_nondescriptive_test_names(\n && !stripped_path.starts_with(\"ui/issues/\")\n {\n check.error(format!(\n- \"the name of the file `tests/{stripped_path}` must begin with a descr...
2026-02-06T03:24:22
vercel/next.js
33477b7e64fbfaa5f59e833a4cc161cf0793ede6
c1f4e3e759ed6eb5f27a028fc547f513a7386d92
[segment-explorer] display the builtin conventions (#80961) Track built-in conventions in segment explorer. The default `global-not-found.js` and `global-error.js` will be displayed. Their style will be different to the others, we'll follow up in the later PRs. Closes NEXT-4576
[ { "path": "crates/next-core/src/app_structure.rs", "patch": "@@ -931,6 +931,14 @@ async fn directory_tree_to_loader_tree_internal(\n .await?,\n );\n }\n+ if modules.global_error.is_none() {\n+ modules.global_error = Some(\n+ get_next_p...
2025-06-27T14:41:07
facebook/react
f9dddcbbb1c0b73f974e78b9488927b778630682
f1039be4a48384e7e4b0a87d4d92c48e900053b9
[Fizz] Fix Client Render after Postpone (#27905) If we end up client rendering a boundary due to an error after we have already injected a postponed hole in that boundary we'll end up trying to target a missing segment. Since we never insert segments for an already errored boundary into the HTML. Normally an errore...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -7178,6 +7178,141 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ // @gate enablePostpone\n+ it('can client render a boundary after having already postponed', async () => {\n+ let prerendering = true;...
2024-01-09T04:52:33
electron/electron
48d0b09ad932aabc91ef072c862f3489202e40fd
c5fc5efc00fc79c283f261be068ee881a5c9d9a3
chore: bump chromium to 113.0.5653.0 (main) (#37587) * chore: bump chromium in DEPS to 113.0.5653.0 * chore: update patches * [Extensions c2s] Move HasActiveTabAndCanAccess() to //extensions https://chromium-review.googlesource.com/c/chromium/src/+/4305558 * [Privacy Hub] Respecting ChromeOS geoloc setting...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '113.0.5651.0',\n+ '113.0.5653.0',\n 'node_version':\n 'v18.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2023-03-16T10:03:53
nodejs/node
390740460ebff37395a041fbf85ff3ebcf86b5d1
5731e2b3460c02971c2d32865e17519113a95847
doc: fix mistakes in the module `load` hook api PR-URL: https://github.com/nodejs/node/pull/53349 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "doc/api/module.md", "patch": "@@ -601,12 +601,12 @@ changes:\n * `importAttributes` {Object}\n * `nextLoad` {Function} The subsequent `load` hook in the chain, or the\n Node.js default `load` hook after the last user-supplied `load` hook\n- * `specifier` {string}\n+ * `url` {string}\n * `...
2024-06-07T22:03:07
rust-lang/rust
1dfdfe81495b2d2e5391753bde47b6a93a83a36a
f889772d6500faebcac5bb70fa44b5e6581c38cd
chore: clearify tidy's error message
[ { "path": "src/tools/tidy/src/ui_tests.rs", "patch": "@@ -302,7 +302,7 @@ fn deny_new_nondescriptive_test_names(\n && !stripped_path.starts_with(\"ui/issues/\")\n {\n check.error(format!(\n- \"file `tests/{stripped_path}` must begin with a descriptive name, con...
2026-02-06T03:01:40
golang/go
2d2bcdd2ad83ba93e61747417d6865cdd88b32fe
7372b64425eda6725fb84be71d6a3c4415b35d0d
cmd/go: upgrade go install pkg@version's go using local mod, work This CL changes the toolchain selection behavior for go install pkg@v and go run pkg@v to also take into account the go and toolchain version lines in the containing go.mod and go.work file. Before this change, the go command would detect that go insta...
[ { "path": "src/cmd/go/internal/toolchain/select.go", "patch": "@@ -169,7 +169,7 @@ func Select() {\n \t}\n \n \tgotoolchain = minToolchain\n-\tif (mode == \"auto\" || mode == \"path\") && !goInstallVersion(minVers) {\n+\tif mode == \"auto\" || mode == \"path\" {\n \t\t// Read go.mod to find new minimum and ...
2025-03-05T20:17:20
vercel/next.js
c1f4e3e759ed6eb5f27a028fc547f513a7386d92
c910be03ee262e75187d9c477e71b9d24024b1f7
Turbopack: fix sourcemaps of scopehoisted comments (#80987) There was a bug in the source mappings for scope hoisted comments. They actually contained invalid mappings, which was only caught by the invalid mapping landing exactly on an invalid multibyte character boundary, which triggered a debug assertion: ![Bildsch...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -2416,6 +2416,21 @@ enum CodeGenResultCommentsConsumable<'a> {\n unsafe impl Send for CodeGenResultComments {}\n unsafe impl Sync for CodeGenResultComments {}\n \n+/// All BytePos in Spans in the AST are encoded correctly in [`merge_...
2025-06-27T14:09:48
nodejs/node
6ed93b4d69cd43ecbe87ce267afe9ae3b1980413
0289e859ef1749751f3a6504a5e3a1a7596a0a92
lib: expose global CloseEvent This PR adds `CloseEvent` as a global, which can be disabled via the --no-experimental-websocket flag. ```js const ws = new WebSocket('...') ws.addEventListener('close', (event) => { assert(event instanceof CloseEvent) }) ``` Fixes: https://github.com/nodejs/node/issues/50275 PR-URL...
[ { "path": "doc/api/globals.md", "patch": "@@ -322,6 +322,19 @@ added: v0.0.1\n \n [`clearTimeout`][] is described in the [timers][] section.\n \n+## `CloseEvent`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+<!-- type=global -->\n+\n+The `CloseEvent` class. See [`CloseEvent`][] for more details.\n+\n+A brows...
2024-06-07T17:54:28
golang/go
7372b64425eda6725fb84be71d6a3c4415b35d0d
d2d1fd68b6299d4645298e6d70fe8e8cfd98001a
net/url: document referenced RFCs Fixes #30611 Change-Id: If933c2a7e63d89402d2034618057ad546cf9641b Reviewed-on: https://go-review.googlesource.com/c/go/+/660077 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acco...
[ { "path": "src/net/url/url.go", "patch": "@@ -3,12 +3,14 @@\n // license that can be found in the LICENSE file.\n \n // Package url parses URLs and implements query escaping.\n+//\n+// See RFC 3986. This package generally follows RFC 3986, except where\n+// it deviates for compatibility reasons.\n+// RFC 68...
2025-03-22T01:15:22
electron/electron
061e2e5e7312d419f15a8ff1f6229c984531b873
bf1cc1aeb2a55a07d8ed794df1e6a630221bd69a
chore: bump chromium to 113.0.5651.0 (main) (#37553) * chore: bump chromium in DEPS to 113.0.5645.0 * chore: update patches/chromium/mas_avoid_usage_of_private_macos_apis.patch Xref: https://chromium-review.googlesource.com/c/chromium/src/+/4300129 Fix simple code shear * chore: update patches/chromium/bui...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '113.0.5636.0',\n+ '113.0.5651.0',\n 'node_version':\n 'v18.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2023-03-15T09:20:32
vercel/next.js
c910be03ee262e75187d9c477e71b9d24024b1f7
345d4d4f25ab7ddb832d196dce00acb5271318d2
Use snapshots to verify error stack traces for dynamic validation errors (#80946) For now, this is just documenting the current state of affairs with regards to how we print dynamic validation errors during prerendering. Previously, the tests were run with and without `experimental.serverMinification`. Now, we're r...
[ { "path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.platform-dynamic.test.ts", "patch": "@@ -1,94 +1,119 @@\n import { nextTestSetup } from 'e2e-utils'\n+import { getPrerenderOutput } from './utils'\n \n-import { createExpectError } from './utils'\n+describe.each([\n+ { inDebugMode: true, name:...
2025-06-27T12:42:13
nodejs/node
2740cd4fec4a8ac57d3b4f51daefd8496c622994
673511f3bf5c43d3e6ac0e377e0727c422c0c6fc
lib: fix timer leak PR-URL: https://github.com/nodejs/node/pull/53337 Fixes: https://github.com/nodejs/node/issues/53335 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Feng Yu <F3n67u@outlook.com> Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
[ { "path": "lib/internal/timers.js", "patch": "@@ -152,6 +152,11 @@ const timerListQueue = new PriorityQueue(compareTimersLists, setPosition);\n // - value = linked list\n const timerListMap = { __proto__: null };\n \n+// This stores all the known timer async ids to allow users to clearTimeout and\n+// clear...
2024-06-07T15:51:44
golang/go
3ada42ffedf61343cc8a7cd7d6293bd646ecf3a6
b70244ff7a043786c211775b68259de6104ff91c
go/types, types2: align trace output a bit better for easier debugging Compute alignment padding rather than using a tab in trace output. This aligns the ":" after the file position in typical cases (files shorter than 1000 lines, lines shorter than 100 columns), resulting in nicer trace output for easier debugging. ...
[ { "path": "src/cmd/compile/internal/types2/format.go", "patch": "@@ -88,13 +88,32 @@ func (check *Checker) sprintf(format string, args ...any) string {\n }\n \n func (check *Checker) trace(pos syntax.Pos, format string, args ...any) {\n-\tfmt.Printf(\"%s:\\t%s%s\\n\",\n+\t// Use the width of line and pos va...
2025-03-20T23:12:15
electron/electron
bf1cc1aeb2a55a07d8ed794df1e6a630221bd69a
e480cb7103df6702d0364cf76d1f20724efc49dc
fix: don't set delegate for `QLPreviewPanel` (#37530) fix: don't set delegate for QLPreviewPanel
[ { "path": "shell/browser/ui/cocoa/electron_ns_window.mm", "patch": "@@ -276,12 +276,10 @@ - (BOOL)acceptsPreviewPanelControl:(QLPreviewPanel*)panel {\n }\n \n - (void)beginPreviewPanelControl:(QLPreviewPanel*)panel {\n- panel.delegate = [self delegate];\n panel.dataSource = static_cast<id<QLPreviewPanelD...
2023-03-14T13:41:34
vercel/next.js
345d4d4f25ab7ddb832d196dce00acb5271318d2
3e170746b2e70cd9c0cdd27a06c7aaf3a80fc58e
Use proper reexports in entry-base.ts (#80988) Purely a cosmetic change I noticed while debugging a Turbopack bug (but unrelated to that)
[ { "path": "packages/next/src/server/app-render/entry-base.ts", "patch": "@@ -10,41 +10,45 @@ export {\n // eslint-disable-next-line import/no-extraneous-dependencies\n export { unstable_prerender as prerender } from 'react-server-dom-webpack/static.edge'\n \n-import LayoutRouter from '../../client/component...
2025-06-27T11:10:41
facebook/react
f1039be4a48384e7e4b0a87d4d92c48e900053b9
1d5667a1273386f84e416059af7b6aba069e068e
Fix: useDeferredValue initialValue suspends forever without switching to final (#27888) Fixes a bug in the experimental `initialValue` option for `useDeferredValue` (added in #27500). If rendering the `initialValue` causes the tree to suspend, React should skip it and switch to rendering the final value instead. ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzDeferredValue-test.js", "patch": "@@ -85,6 +85,38 @@ describe('ReactDOMFizzForm', () => {\n expect(container.textContent).toEqual('Final');\n });\n \n+ // @gate enableUseDeferredValueInitialArg\n+ // @gate enablePostpone\n+ it(\n+ 'if initi...
2024-01-08T04:17:20
nodejs/node
747ee0913cd9701d89d45cbfd12a59f062b35a03
a2233c39c830627bf767b517d8768e26fb04ee9e
doc: fix broken link in `static-analysis.md` Fix broken link in `doc/contributing/static-analysis.md`. Add a link to the main Node.js Coverity Scan project page. PR-URL: https://github.com/nodejs/node/pull/53345 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com...
[ { "path": "doc/contributing/static-analysis.md", "patch": "@@ -3,14 +3,17 @@\n The project uses Coverity to scan Node.js source code and to report potential\n issues in the C/C++ code base.\n \n-Those who have been added to the Node.js coverity project can receive emails\n+Those who have been added to the [...
2024-06-07T11:55:16
golang/go
afe11db4a7d61d6ec196577f39b45648f987927d
ba01453bbed831f143d3005abc85fd6baec36da5
cmd/compile/internal/abi: fix ComputePadding Fixes the ComputePadding calculation to take into account the padding added for the current offset. This fixes an issue where padding can be added incorrectly for certain structs. Related: https://github.com/go-delve/delve/issues/3923 Same as https://go-review.googlesourc...
[ { "path": "src/cmd/compile/internal/abi/abiutils.go", "patch": "@@ -673,10 +673,9 @@ func (pa *ABIParamAssignment) ComputePadding(storage []uint64) []uint64 {\n \t\tpanic(\"internal error\")\n \t}\n \toffsets, _ := appendParamOffsets([]int64{}, 0, pa.Type)\n-\toff := int64(0)\n \tfor idx, t := range types {...
2025-03-21T19:43:32
electron/electron
e58f0411d9e8d5ec4f6b48c81c823c294e9c8c3b
e61728beb9f4a1c7ae6c993494f7e7b6b11c02e7
chore: fixup filenames.libcxx.gni (#37567)
[ { "path": "filenames.libcxx.gni", "patch": "@@ -45,6 +45,7 @@ libcxx_headers = [\n \"//buildtools/third_party/libc++/trunk/include/__algorithm/iter_swap.h\",\n \"//buildtools/third_party/libc++/trunk/include/__algorithm/iterator_operations.h\",\n \"//buildtools/third_party/libc++/trunk/include/__algor...
2023-03-13T17:55:25
vercel/next.js
3e170746b2e70cd9c0cdd27a06c7aaf3a80fc58e
08aad0c425b70086df238832f8340cc7000e3a33
[devtools] polish icon and label color (#80976) * In devtool panel the icons should be gray-1000 Closes NEXT-4584 ![image](https://github.com/user-attachments/assets/5eba7071-706c-4c64-9ac4-f86fe8457296) * In segment explorer the page label color should be -900 Closes NEXT-4581 ![image](https://github.com/u...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel-tab/issues-tab/issues-tab-sidebar.tsx", "patch": "@@ -18,6 +18,10 @@ export function IssuesTabSidebar({\n activeIdx: number\n setActiveIndex: (idx: number) => void\n }) {\n+ if (runtimeErrors.length === 0) {...
2025-06-27T10:58:42
facebook/react
bd37fbe06acca8e11a00ea48752fb5e86146f42f
bf859705b55a8ccaedbed8546cd4d9c6c003bf62
[wip] Fix phi inference, expose InferMutableRange issue > Update: this is now passing all tests. The approach is likely wrong, and even if it's fine it needs some cleanup. Putting up for review as folks (esp @gsathya) have time. ## Background InferTypes was intended to infer types for phi identifiers, but by ac...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/AlignReactiveScopesToBlockScopes.ts", "patch": "@@ -10,8 +10,10 @@ import {\n Place,\n ReactiveBlock,\n ReactiveFunction,\n+ ReactiveInstruction,\n ReactiveScope,\n ScopeId,\n+ makeInstructionId,\n } from \"../HIR/HIR\";\n...
2024-01-02T23:31:57
nodejs/node
479b8e5232d10533b7bcb785d19b27a9c423c58f
68c9f554ffa2fab1ef3b6466c51491371f0dd158
repl: fix await object patterns without values fix lint issue PR-URL: https://github.com/nodejs/node/pull/53331 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
[ { "path": "lib/internal/repl/await.js", "patch": "@@ -104,7 +104,7 @@ const visitorsWithoutAncestors = {\n break;\n case 'ObjectPattern':\n ArrayPrototypeForEach(node.properties, (property) => {\n- registerVariableDeclarationIdentifiers(property.value);\n+ ...
2024-06-07T01:24:32
golang/go
3108366214bb1fc15b0f261ba27f448e3bd0e685
2cc0ea46e410b295181c9e1efa85b0e2be495682
runtime: deduplicate context call injection on Windows Injecting a call to a thread context is complex enough to warrant a dedicated function so that we don't repeat the same code in multiple places. Note that the unix sigctxt struct also follows the same approach. The behavior is unchanged, but the implementation se...
[ { "path": "src/runtime/defs_windows_386.go", "patch": "@@ -4,6 +4,11 @@\n \n package runtime\n \n+import (\n+\t\"internal/goarch\"\n+\t\"unsafe\"\n+)\n+\n const _CONTEXT_CONTROL = 0x10001\n \n type floatingsavearea struct {\n@@ -59,6 +64,13 @@ func (c *context) set_sp(x uintptr) { c.esp = uint32(x) }\n // 3...
2025-03-14T10:56:20
rust-lang/rust
0061a2232de5b23a703380e8f90926c5335aecad
66daca1a85c459b1da49dc0ef1ba027b53e4ac2c
rustc_parse_format: improve diagnostics for unsupported debug `=` syntax Detect Python-style f-string debug syntax in format strings and emit a clear diagnostic explaining that it is not supported in Rust. When the intended operation can be inferred, suggest the corresponding Rust alternative e.g from `println!("{=}",...
[ { "path": "compiler/rustc_builtin_macros/src/errors.rs", "patch": "@@ -678,6 +678,18 @@ pub(crate) enum InvalidFormatStringSuggestion {\n #[primary_span]\n span: Span,\n },\n+\n+ #[suggestion(\n+ \"use rust debug printing macro\",\n+ code = \"{replacement}\",\n+ s...
2026-01-14T05:33:45
vercel/next.js
08aad0c425b70086df238832f8340cc7000e3a33
5d94c8063ec4ff22069db999394ab72d802793ce
Turbopack: fix codegen of directives (#80895) Closes PACK-4894 Previously, directives in the input weren't handled correctly, this was the output: The `use strict` doesn't do anything here because directives only have an effect at the top of modules and at the top of functions. ```js "[project]/turbopack/crates...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs", "patch": "@@ -7,7 +7,7 @@ use swc_core::{\n ecma::{\n ast::*,\n atoms::{Atom, atom},\n- utils::find_pat_ids,\n+ utils::{IsDirective, find_pat_ids},\n visit::{Visit, VisitWith},\n },\n };\...
2025-06-27T10:10:11
facebook/react
45d61cf7effdba6bbd9835bb427c99c95beb7e17
c5b9375767e2c4102d7e5559d383523736f1c902
[flow] upgrade to 0.225.1 (#27871) This Flow upgrade includes 2 fixes: - Remove `React$StatelessFunctionalComponent` as that was replaced by just `React$AbstractComponent` as Flow doesn't make any guarantees, see the Flow change here: https://github.com/facebook/flow/commit/521317c48f44ffb5eac072a7b2548a72b0745095...
[ { "path": ".eslintrc.js", "patch": "@@ -504,7 +504,6 @@ module.exports = {\n React$Node: 'readonly',\n React$Portal: 'readonly',\n React$Ref: 'readonly',\n- React$StatelessFunctionalComponent: 'readonly',\n ReadableStreamController: 'readonly',\n RequestInfo: 'readonly',\n Request...
2024-01-02T19:39:14
nodejs/node
35b8e5cb0c9890e30cd552be348cdee1aaa6d348
5469d04f8f9c6e1dc9eadc9771ec04519d4ecded
Revert "vm,src: add property query interceptors" This reverts commit d1f18b0bf16efbc1e54ba04a54735ce4683cb936. Closes: https://github.com/nodejs/node/issues/53346 PR-URL: https://github.com/nodejs/node/pull/53348 Fixes: https://github.com/nodejs/node/issues/53346 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By...
[ { "path": "src/node_contextify.cc", "patch": "@@ -51,7 +51,6 @@ using v8::FunctionTemplate;\n using v8::HandleScope;\n using v8::IndexedPropertyHandlerConfiguration;\n using v8::Int32;\n-using v8::Integer;\n using v8::Intercepted;\n using v8::Isolate;\n using v8::Just;\n@@ -177,22 +176,20 @@ void Contextify...
2024-06-06T06:51:29
golang/go
c0392e7e494c7e1fa7122df3cb5c1a30760ac5b4
69ea62fe95a14a04d6b2ba145aaf78e36f42e2eb
runtime: fix interactions between synctest, race detector, and timers When an AfterFunc executes in a synctest bubble, there is a series of happens-before relationships: 1. The AfterFunc is created. 2. The AfterFunc goroutine executes. 3. The AfterFunc goroutine returns. 4. A subsequent synctest.Wait call ret...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -455,28 +455,89 @@ func TestWaitGroup(t *testing.T) {\n }\n \n func TestHappensBefore(t *testing.T) {\n-\tvar v int\n+\t// Use two parallel goroutines accessing different vars to ensure that\n+\t// we correctly account for multiple goroutines ...
2025-03-17T20:48:50
electron/electron
feaf18e371e04c7c14bc6c675e62db43823755fd
8ee58e18fd31a7d33ccab78820d61bab9ec1ec69
chore: bump chromium to 113.0.5636.0 (main) (#37130) * chore: bump chromium in DEPS to 112.0.5576.0 * 4211172: Use the Mac ImageTransportSurface on iOS. https://chromium-review.googlesource.com/c/chromium/src/+/4211172 * 4191759: Reuse PrintBackend process from query for printing https://chromium-review.go...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -54,7 +54,7 @@ executors:\n type: enum\n enum: [\"macos.x86.medium.gen2\", \"large\"]\n macos:\n- xcode: 13.3.0\n+ xcode: 14.0.0\n resource_class: << parameters.size >>\n \n # Electron Runners\n@@ -434,10 +434,17 @@ step...
2023-03-10T16:07:42
vercel/next.js
e186b697fbaefb5b65a181b4d1f456339c3657e7
d93f940a50b810621c0fed839566897a1c375022
[Segment Cache] Enable deploy tests (#80947) With this PR, we're enabling deployment testing for the existing Segment Cache test suites (excluding those that need a custom server setup). Two timing issues were fixed, and one bug was uncovered. For details see the inline comments below.
[ { "path": "test/e2e/app-dir/segment-cache/basic/segment-cache-basic.test.ts", "patch": "@@ -2,11 +2,10 @@ import { nextTestSetup } from 'e2e-utils'\n import { createRouterAct } from '../router-act'\n \n describe('segment cache (basic tests)', () => {\n- const { next, isNextDev, skipped } = nextTestSetup({\...
2025-06-27T07:41:51
facebook/react
fcc2182641b628cd6fcf46d2ea59c2cc05f7ddb8
a753a326ad77145e4d8eb6a44e40758d82869669
Handle scopes with only early return and no decls/deps/reassigns Fixes the case from the previous PR by using a different sentinel for uninitialized cache values and early returns. I confirmed with console.log that the reactive scope for `x` only evaluates on the first execution, after which we figure out that we ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -42,6 +42,9 @@ import { buildReactiveFunction } from \"./BuildReactiveFunction\";\n import { SINGLE_CHILD_FBT_TAGS } from \"./MemoizeFbtOperandsInSameScope\";\n import { ReactiveFunctionVisito...
2023-12-20T21:52:42
nodejs/node
5469d04f8f9c6e1dc9eadc9771ec04519d4ecded
001c36b39bc744e80bc9a1774761a7d89f1922f1
lib: fix misleading argument of validateUint32 The type of the argument `positive` was declared as `boolean|number`, which is misleading because the function treats it as a boolean only. Some call sites even passed numbers, specifically, either `0` or `1`, which happen to work as expected because they are interpreted ...
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -194,7 +194,7 @@ function testMatchesPattern(test, patterns) {\n \n class TestPlan {\n constructor(count) {\n- validateUint32(count, 'count', 0);\n+ validateUint32(count, 'count');\n this.expected = count;\n this.actual = 0;\n }\n@...
2024-06-05T22:59:05
electron/electron
77bd80dfb21e0d4419eff093e5232dd8fb05432f
0d3aee26b9e653e27ae6fe9d28586fd0a87fe2a7
fix: fallback to X11 capturer if pipewire fails on Wayland (#37511) * fix: fallback to x11 desktop capturer on Wayland * fix: sanitize window/screen capturer inputs * chore: clean up patch description
[ { "path": "patches/config.json", "patch": "@@ -21,5 +21,7 @@\n \n \"src/electron/patches/Mantle\": \"src/third_party/squirrel.mac/vendor/Mantle\",\n \n- \"src/electron/patches/ReactiveObjC\": \"src/third_party/squirrel.mac/vendor/ReactiveObjC\"\n+ \"src/electron/patches/ReactiveObjC\": \"src/third_party...
2023-03-07T21:59:06
golang/go
69ea62fe95a14a04d6b2ba145aaf78e36f42e2eb
c386ed107e65f495acb6aacb0efcaade27da6a15
Revert "cmd/compile/internal/abi: fix ComputePadding" This reverts CL 656736. Reason for revert: breaks many builders (all flavors of linux-amd64 builders). Change-Id: Ie7190d4078fada227391804c5cf10b9ce9cc9115 Reviewed-on: https://go-review.googlesource.com/c/go/+/659955 LUCI-TryBot-Result: Go LUCI <golang-scoped@lu...
[ { "path": "src/cmd/compile/internal/abi/abiutils.go", "patch": "@@ -673,9 +673,10 @@ func (pa *ABIParamAssignment) ComputePadding(storage []uint64) []uint64 {\n \t\tpanic(\"internal error\")\n \t}\n \toffsets, _ := appendParamOffsets([]int64{}, 0, pa.Type)\n+\toff := int64(0)\n \tfor idx, t := range types {...
2025-03-21T15:46:14
vercel/next.js
36448ea998a2dc17abbe41b0fc40a65006a3c241
78ed6a289ab357c04ce67d91386cedf64254dd81
fix: webpack config context when using rspack (#80921) `webpackConfigContext.webpack` should be Rspack exports when using Rspack.
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -2455,7 +2455,7 @@ export default async function getBaseWebpackConfig(\n config,\n defaultLoaders,\n totalPages: Object.keys(entrypoints).length,\n- webpack,\n+ webpack: bundler,\n ...(isNodeOrEdgeCompilati...
2025-06-27T03:32:56
rust-lang/rust
40857fcd00c7982cb7ca5f32674f42ce6e1e9688
bd0d19f0e80ca5b0240ba44ca6f5cde58d03914b
chore: fix typos suggested by typos-cli
[ { "path": "src/tools/miri/src/alloc/isolated_alloc.rs", "patch": "@@ -66,10 +66,10 @@ impl IsolatedAlloc {\n // And make sure the align is at least one page\n let align = std::cmp::max(layout.align(), self.page_size);\n // pg_count gives us the # of pages needed to satisfy the size. ...
2026-02-05T11:48:55
facebook/react
a753a326ad77145e4d8eb6a44e40758d82869669
ad57e661f49f1a340a437a597bef2214c017eabb
Fixture for only early return without decls/deps/reassigns
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/early-return-no-declarations-reassignments-dependencies.expect.md", "patch": "@@ -0,0 +1,135 @@\n+\n+## Input\n+\n+```javascript\n+// @enableEarlyReturnInReactiveScopes\n+import { makeArray } from \"shared-runtime\";\n+\n...
2023-12-20T21:52:41
electron/electron
0d3aee26b9e653e27ae6fe9d28586fd0a87fe2a7
efde7a140bc48e0e3e08404f41f6179c26858ce4
docs: fixup WebUSB fiddle (#37455) docs: fixup webusb fiddle
[ { "path": "docs/fiddles/features/web-usb/main.js", "patch": "@@ -1,5 +1,4 @@\n const {app, BrowserWindow} = require('electron')\n-const e = require('express')\n const path = require('path')\n \n function createWindow () {\n@@ -44,7 +43,6 @@ function createWindow () {\n }\n })\n \n-\n mainWindow.webC...
2023-03-07T20:36:31