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
nodejs/node
97627da32b79cb6ba6bfe8af576c47f30db4a672
833e342f15f87e9b24357909322d5e57991592c6
tools: fix heading spaces for osx-entitlements.plist PR-URL: https://github.com/nodejs/node/pull/52561 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "tools/osx-entitlements.plist", "patch": "@@ -1,4 +1,4 @@\n- <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n+<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n <!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n <plist version=\"1.0\">\n <dict>", ...
2024-04-17T10:40:44
facebook/react
2b75c7915bed25e9114d76b3c0c019dfc7b61f1f
b184d8567c9117beb8fca2b86e39a53aae3ec53a
Add @panicOnBailout support to snap Test plan: tests pass with snap
[ { "path": "compiler/forget/packages/snap/src/compiler-worker.ts", "patch": "@@ -9,6 +9,8 @@ import fs from \"fs/promises\";\n import path from \"path\";\n import { exists } from \"./utils\";\n \n+const originalConsoleError = console.error;\n+\n let version: number | null = null;\n export function clearRequi...
2023-04-21T19:22:56
vercel/next.js
323ec0aea74ec517710fde4e12eb50ef8c8d2357
0b5196f4d9bdd70789db4b4cf5723a3040ab4c0c
docs: fix incorrect usage of Promise in page params example (#79804) The documentation incorrectly used `params: Promise<{ slug: string }>` in an example and attempted to use `await` in a non-async function. This commit updates the example to reflect the correct usage: - `params` should be a synchronous object: `{ s...
[ { "path": "docs/01-app/01-getting-started/03-layouts-and-pages.mdx", "patch": "@@ -214,7 +214,7 @@ If you were to combine the two layouts above, the root layout (`app/layout.js`)\n To create a dynamic segment, wrap the segment (folder) name in square brackets: `[segmentName]`. For example, in the `app/blog/...
2025-05-30T11:01:49
rust-lang/rust
10e053dbb5c7ac3679044f222112682c9fc0758a
e96bb7e44fbcc23c1e6009e8d0ee8ab208668fb4
Implement `set_output_kind` for Emscripten linker This makes cdylibs compile to working Emscripten dynamic libraries without passing extra RUSTFLAGS. This was previously approved as PR 98358 but there were CI failures that I never got around to fixing.
[ { "path": "compiler/rustc_codegen_ssa/src/back/linker.rs", "patch": "@@ -1208,10 +1208,23 @@ impl<'a> Linker for EmLinker<'a> {\n \n fn set_output_kind(\n &mut self,\n- _output_kind: LinkOutputKind,\n+ output_kind: LinkOutputKind,\n _crate_type: CrateType,\n _out_fi...
2026-01-26T18:34:50
electron/electron
db7c92fd574f9880cc4ce579972f5220ebb3186e
e87c4015fe85034f83a053c6682639a88d396ac3
test: drop now-empty remote runner (#35343) * test: drop the now-empty remote runner from CI * move fixtures to spec-main * remove remote runner * fix stuff * remove global-paths hack * move ts-smoke to spec/ * fix test after merge * rename spec-main to spec * no need to ignore spec/node_module...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -1060,18 +1060,15 @@ steps-tests: &steps-tests\n export MOCHA_TIMEOUT=180000\n echo \"Piping output to ASAN_SYMBOLIZE ($ASAN_SYMBOLIZE)\"\n (cd electron && node script/yarn test --runners=main --trace-uncaught --enable-l...
2022-08-16T19:23:13
facebook/react
967d46c76cf9f7f35cf659a6a47c9ad456c685a8
5d7ebb4b784cb7e41e28653d89054cfe65637a93
Add error boundary to Flight fixture (#26695) Errors in form actions are now rethrown during render (#26689), so we can handle them using an error boundary.
[ { "path": "fixtures/flight/src/Button.js", "patch": "@@ -1,27 +1,30 @@\n 'use client';\n \n import * as React from 'react';\n+import {flushSync} from 'react-dom';\n+import ErrorBoundary from './ErrorBoundary.js';\n \n export default function Button({action, children}) {\n const [isPending, setIsPending] =...
2023-04-21T18:23:50
nodejs/node
3f88e149a9a40f5645a639b8c116aaef29e705a2
c1d9f426a11eda97e44e2326c66dbf59dfc4084e
src: remove regex usage for env file parsing PR-URL: https://github.com/nodejs/node/pull/52406 Fixes: https://github.com/nodejs/node/issues/52248 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
[ { "path": "src/node_dotenv.cc", "patch": "@@ -1,5 +1,4 @@\n #include \"node_dotenv.h\"\n-#include <regex> // NOLINT(build/c++11)\n #include <unordered_set>\n #include \"env-inl.h\"\n #include \"node_file.h\"\n@@ -12,15 +11,6 @@ using v8::NewStringType;\n using v8::Object;\n using v8::String;\n \n-/**\n- * ...
2024-04-17T05:30:05
golang/go
d9d87edc56e72808b004a80e8c6846bde690d6c1
9125e214a1d3341836d41ec3f297f42b9b141db1
Revert "cmd/go: report gcc ld error message when linking fails" This reverts CL 646315. Reason for revert: broke cgo_undef test Change-Id: Ic992a1666a446736c605a8caefa77f791dceb64c Reviewed-on: https://go-review.googlesource.com/c/go/+/647415 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Ian Lance Taylo...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -2208,7 +2208,7 @@ func (b *Builder) gccld(a *Action, objdir, outfile string, flags []string, objs\n \t}\n \n \tcmdargs := []any{cmd, \"-o\", outfile, objs, flags}\n-\tout, err := sh.runOut(base.Cwd(), b.cCompilerEnv(), cmdargs...)\n+\t_, err := sh....
2025-02-06T21:16:34
vercel/next.js
a0993d90c280690e83a2a1bc7c292e1187429fe8
22bf07a4e093d967c6dc3f857ab45964095ae12e
fix: Revert bugfix for conflicting assets (#79941) ### What? Revert https://github.com/vercel/next.js/pull/78011 ### Why? Because it caused a regression like https://github.com/vercel/next.js/issues/79938 ### How? Closes https://github.com/vercel/next.js/issues/79938
[ { "path": "packages/next/src/build/webpack/plugins/flight-manifest-plugin.ts", "patch": "@@ -223,7 +223,7 @@ export class ClientReferenceManifestPlugin {\n }\n \n apply(compiler: webpack.Compiler) {\n- compiler.hooks.thisCompilation.tap(PLUGIN_NAME, (compilation) => {\n+ compiler.hooks.compilation...
2025-05-30T01:49:04
rust-lang/rust
b0d96492d032f6107bbcad2a02895592034e5ab7
e96bb7e44fbcc23c1e6009e8d0ee8ab208668fb4
fix undefined behavior in VecDeque::splice
[ { "path": "library/alloc/src/collections/vec_deque/splice.rs", "patch": "@@ -143,7 +143,11 @@ impl<T, A: Allocator> Drain<'_, T, A> {\n \n let new_tail_start = tail_start + additional;\n unsafe {\n- deque.wrap_copy(tail_start, new_tail_start, self.tail_len);\n+ deque.wr...
2026-01-28T00:30:37
facebook/react
fd3fb8e3c5d1c977f4bfa73d715143804c69d4b0
c57a0f68a49d0a7fbe45e7b28820478d0fa4e32f
Rethrow errors from form actions (#26689) This is the next step toward full support for async form actions. Errors thrown inside form actions should cause the form to re-render and throw the error so it can be captured by an error boundary. The behavior is the same if the `<form />` had an internal useTransition ...
[ { "path": "packages/react-dom-bindings/src/events/plugins/FormActionEventPlugin.js", "patch": "@@ -14,6 +14,7 @@ import type {EventSystemFlags} from '../EventSystemFlags';\n import type {Fiber} from 'react-reconciler/src/ReactInternalTypes';\n \n import {getFiberCurrentPropsFromNode} from '../../client/Reac...
2023-04-21T17:29:46
electron/electron
e85450b21aea2bb1fd536313fbeca890ab083576
672539187c779cf874dfcecc198bcfbdec85aa97
fix: IPC emit order in -ipc-ports handler (#35320) Co-authored-by: Milan Burda <miburda@microsoft.com>
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -619,9 +619,9 @@ WebContents.prototype._init = function () {\n this.on('-ipc-ports' as any, function (event: Electron.IpcMainEvent, internal: boolean, channel: string, message: any, ports: any[]) {\n addSenderFrameToEvent(event);\n event.po...
2022-08-16T02:21:56
nodejs/node
c1d9f426a11eda97e44e2326c66dbf59dfc4084e
59d6725ef24877db2ade3d0c26bec8b40bcee529
src: fix loadEnvFile ENOENT error Before this change the error message for `process.loadEnvFile()` without an `.env` file present in the current working directory was looking like this: `ENOENT: .env, Failed to load '%s'.` This obviously isn't what the author intended. To fix that, just return a "plain" ENOENT open e...
[ { "path": "src/node_process_methods.cc", "patch": "@@ -492,7 +492,7 @@ static void LoadEnvFile(const v8::FunctionCallbackInfo<v8::Value>& args) {\n break;\n }\n case dotenv.ParseResult::FileError: {\n- env->ThrowUVException(UV_ENOENT, \"Failed to load '%s'.\", path.c_str());\n+ env->...
2024-04-17T01:21:18
golang/go
09fdcdc97d6dcf90aaac3177a6ce2088613547be
7a2f757c521d9af201c6d3463a0e203c4104d5aa
{all,clean,make,race,run}.bat: remove %GOBUILDEXIT% and %GOBUILDFAIL% %GOBUILDEXIT% is used to avoid closing the terminal window when the build or the tests fail on a dev machine. It is only set in CI to get a non-zero exit code in case of failure. %GOBUILDFAIL% is used to pass the exit code from a child batch file t...
[ { "path": "src/all.bat", "patch": "@@ -8,15 +8,15 @@ setlocal\n \r\n if exist make.bat goto ok\r\n echo all.bat must be run from go\\src\r\n-:: cannot exit: would kill parent command interpreter\r\n-goto end\r\n+exit /b 1\r\n :ok\r\n \r\n call .\\make.bat --no-banner --no-local\r\n-if %GOBUILDFAIL%==1 goto ...
2025-02-06T08:07:08
rust-lang/rust
6165b72b5f1992c8290142cf2e99cffeb1d49d10
db6bc0f6a4a57e1b1898e67eadfea91af70be5fe
Fix `x fix`, again This was refactored incorrectly at some point and would run `cargo check` even for `x fix`.
[ { "path": "src/bootstrap/src/core/build_steps/check.rs", "patch": "@@ -87,7 +87,7 @@ impl Step for Std {\n Mode::Std,\n SourceType::InTree,\n target,\n- Kind::Check,\n+ builder.config.cmd.kind(),\n );\n \n std_cargo(builder, target, &...
2026-01-14T16:38:58
vercel/next.js
f639f2a9a7c544e33933b289913a004f86e5fbf8
f2b0f9d26e963c9fed070a53515c5a4024fea1e6
[release-new] fix: slack notification only if is a publish workflow (#79933) The Slack notification workflow didn't have if condition, so it was notified on every `build_and_deploy` job. x-ref: [slack thread](https://vercel.slack.com/archives/C0668R2391V/p1748475689878939)
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -606,6 +606,7 @@ jobs:\n # New release process\n - name: Publish to NPM\n id: changesets\n+ # TODO: Change to IS_RELEASE condition when new release becomes stable.\n if: ${{ env.__NEW_RELEASE == 'true' }}\n ...
2025-05-29T19:27:43
facebook/react
f4896b45b2ff4c7f10bf710c9c9d2b87d6352e0d
e9abc41ea3f0170659292ce1151a015300105999
Fix temporaries accessed outside of their defining scope Fixed a bug identified in repro cases earlier in the stack. The case is where some later value is composed of several values, say A and B, where A is an identifier that is reassigned within B. Also, the mutable range of B surrounds the evaluation of A. In th...
[ { "path": "compiler/forget/src/ReactiveScopes/PropagateScopeDependencies.ts", "patch": "@@ -71,7 +71,8 @@ class Context {\n // ReactiveScope (B) that uses the produced temporary.\n // - codegen will inline these PropertyLoads back into scope (B)\n #properties: Map<Identifier, ReactiveScopeProperty...
2023-04-21T01:52:39
electron/electron
672539187c779cf874dfcecc198bcfbdec85aa97
cbc1ee5775375b7ec92f8c38bcbb157833b1b8a0
fix: `serialPort.open()` failing (#35306) fix: serialPort.open() failing
[ { "path": "shell/browser/serial/electron_serial_delegate.cc", "patch": "@@ -56,10 +56,7 @@ bool ElectronSerialDelegate::HasPortPermission(\n content::RenderFrameHost* frame,\n const device::mojom::SerialPortInfo& port) {\n auto* web_contents = content::WebContents::FromRenderFrameHost(frame);\n- ...
2022-08-15T15:49:20
golang/go
76c18e2ed2e62f34a9afed5e6fa681837cc16b77
e7c9667defe1aed61818d63ace6ebb7a27b9c13e
cmd/link: add -e (no limit on errors) flag The compiler and assembler have a -e flag that disables the limit on the number of errors before the build fails. This flag is useful for debugging, the linker should have it too. Change-Id: I892cfd6ee1519e9e86261af7d05e1af2ded21684 Reviewed-on: https://go-review.googlesourc...
[ { "path": "src/cmd/link/doc.go", "patch": "@@ -72,6 +72,8 @@ Flags:\n \t\tsystem tools now assume the presence of the header.\n \t-dumpdep\n \t\tDump symbol dependency graph.\n+\t-e\n+\t\tNo limit on number of errors reported.\n \t-extar ar\n \t\tSet the external archive program (default \"ar\").\n \t\tUsed...
2025-02-04T10:16:40
rust-lang/rust
31d011a399e7d105fb82283c788e55019ecdbaa2
94a0cd15f5976fa35e5e6784e621c04e9f958e57
Add FileCheck annotations to simplify_match.rs Remove `skip-filecheck` and add FileCheck directives to verify that GVN propagates the constant `false` and eliminates the match entirely. The test now verifies: - The debug info shows `x` as `const false` (constant propagation) - No `switchInt` remains (match eliminatio...
[ { "path": "tests/mir-opt/simplify_match.rs", "patch": "@@ -1,9 +1,15 @@\n-// skip-filecheck\n+//! Test that GVN propagates the constant `false` and eliminates the match.\n // EMIT_MIR_FOR_EACH_PANIC_STRATEGY\n+\n #[inline(never)]\n fn noop() {}\n \n // EMIT_MIR simplify_match.main.GVN.diff\n+// CHECK-LABEL:...
2026-01-27T21:27:30
facebook/react
e9abc41ea3f0170659292ce1151a015300105999
db378d39f3091e4b9302e74b1c6651112d45888b
Fix evaluation order for JSX element tags When lowering a JSX element we were correctly lowering to a temporary in all but one case: the common case of an identifier. That is fine in practice but breaks in the presence of the tag identifier being reassigned in the props/children. This PR fixes to always lower the ...
[ { "path": "compiler/forget/src/HIR/BuildHIR.ts", "patch": "@@ -27,14 +27,14 @@ import {\n InstructionKind,\n InstructionValue,\n JsxAttribute,\n- makeInstructionId,\n ObjectPattern,\n ObjectProperty,\n Place,\n ReturnTerminal,\n SourceLocation,\n SpreadPattern,\n ThrowTerminal,\n+ make...
2023-04-20T23:48:34
vercel/next.js
f2b0f9d26e963c9fed070a53515c5a4024fea1e6
52c5aed0d93ef7de5451a192bc8fb3b3c73f7588
fix(next/font): allow custom font-family in declarations (#76274) <!-- 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: ## Fo...
[ { "path": "packages/font/src/local/loader.test.ts", "patch": "@@ -229,5 +229,36 @@ describe('next/font/local loader', () => {\n \"\n `)\n })\n+\n+ test('Custom font-family in declarations', async () => {\n+ const { css } = await nextFontLocalFontLoader({\n+ functionName: '',...
2025-05-29T14:20:10
electron/electron
cbc1ee5775375b7ec92f8c38bcbb157833b1b8a0
9c2d89476c4e0af61458e2951e4042ff8db3da2b
fix: add uv_loop_close when object release to fix crash (#35322) Co-authored-by: yangzuohui <yangzuohui@bytedance.com>
[ { "path": "shell/common/node_bindings.cc", "patch": "@@ -136,6 +136,7 @@ void stop_and_close_uv_loop(uv_loop_t* loop) {\n break;\n \n DCHECK_EQ(0, uv_loop_alive(loop));\n+ uv_loop_close(loop);\n }\n \n bool g_is_initialized = false;", "additions": 1, "deletions": 0, "language": "Unknown...
2022-08-15T14:40:52
golang/go
caf29da4ccf0ca64b422835dfa48fa6e06f87f24
637c235b510a885622cdbb914ad9e0d4bbce9a14
os: don't store reference count in Process.state We only need a reference count in processHandle. For #70907 Fixes #71564 Change-Id: I209ded869203dea10f12b070190774fb5f1d3d71 Reviewed-on: https://go-review.googlesource.com/c/go/+/638577 Commit-Queue: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <...
[ { "path": "src/os/exec.go", "patch": "@@ -38,31 +38,10 @@ const (\n type Process struct {\n \tPid int\n \n-\t// State contains the atomic process state.\n+\t// state contains the atomic process state.\n \t//\n-\t// If handle is nil, this consists only of the processStatus fields,\n+\t// This consists of the...
2024-12-23T05:00:58
rust-lang/rust
5a568d5df421453caa44e812cc5e93eef418faec
7d2eec25387c3b6369f0060e853c09c7dba05abb
fix linking of postcard test
[ { "path": "src/tools/rust-analyzer/crates/proc-macro-srv-cli/tests/bidirectional_postcard.rs", "patch": "@@ -1,4 +1,8 @@\n #![cfg(feature = \"sysroot-abi\")]\n+#![cfg_attr(feature = \"in-rust-tree\", feature(rustc_private))]\n+\n+#[cfg(feature = \"in-rust-tree\")]\n+extern crate rustc_driver as _;\n \n mod ...
2026-01-27T18:43:32
facebook/react
5c9614785c35a60d5f25ce8dcb514e91608ede8e
c72452895a43d3317590b03092ebf7c2fc9e3d34
[codegen] Create new temporary map when entering reactive scopes During codegen, when we now cache and restore the temporary values map as we enter and exit the scope. This ensures that any temporaries within the reactive scope are only visible within that scope, and not to subsequent code. In a subsequent PR this...
[ { "path": "compiler/forget/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -117,7 +117,9 @@ function codegenBlock(cx: Context, block: ReactiveBlock): t.BlockStatement {\n break;\n }\n case \"scope\": {\n+ const temp = new Map(cx.temp);\n codegenReactiveScope(c...
2023-04-20T23:48:26
vercel/next.js
4ce288172c1b91b3746a817dd27f85c10bd9a199
b73644493a61901c9f3e20a99bef5a9b08de07b9
Turbopack: persist and compare errors and panics (#77935) ### What? Allow errors and panics to be serialized and store them in the task output. Compare errors when setting them to avoid unnecessary invalidations when tasks error again.
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -564,36 +564,38 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n \n if let Some(output) = get!(task, Output) {\n let result = match output {\n- OutputValue::Cell(cell) => Some(Ok(Ok(R...
2025-05-29T12:25:52
electron/electron
81766707fcc2f234785e1907c25c094a4a27adb7
4cb57ad1a0e7096336694fdfcbab54f7068265fe
test: migrate remaining webview specs to main (#35213) * test: migrate remaining webview specs to main * fix merge * add dirty-chai * retry capturePage() * fix test
[ { "path": "spec-main/webview-spec.ts", "patch": "@@ -3,12 +3,14 @@ import * as url from 'url';\n import { BrowserWindow, session, ipcMain, app, WebContents } from 'electron/main';\n import { closeAllWindows } from './window-helpers';\n import { emittedOnce, emittedUntil } from './events-helpers';\n-import {...
2022-08-15T08:06:02
nodejs/node
468fe9eb089cbbcc63f54473c8662df113a7e3c8
9ef03f1c237f509cb965d90c5cb301e99be80208
module: fix submodules loaded by require() and import() Previously there is an edge case where submodules loaded by require() may not be loaded by import() again from different intermediate edges in the graph. This patch fixes that, added tests, and added debug logs. Drive-by: make loader a private field so it doesn'...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -316,7 +316,7 @@ class ModuleLoader {\n * @param {string} specifier Specifier of the the imported module.\n * @param {string} parentURL Where the import comes from.\n * @param {object} importAttributes import attributes from the import st...
2024-04-16T14:07:44
golang/go
290ec2d92bca6472fdabce51fc331b3bcaa7129d
7c6b047ea14dcc6aa948f901956511c4e8691abf
bufio: don't do empty Write at start of WriteTo The empty Write will cause the wrong thing to happen when using io.Copy to copy to a package-based stream. Fixes #71424 Change-Id: I046a27539447182692ac76a8bdd422327345dd8d Reviewed-on: https://go-review.googlesource.com/c/go/+/644535 Reviewed-by: Keith Randall <khr@go...
[ { "path": "src/bufio/bufio.go", "patch": "@@ -519,9 +519,11 @@ func (b *Reader) WriteTo(w io.Writer) (n int64, err error) {\n \tb.lastByte = -1\n \tb.lastRuneSize = -1\n \n-\tn, err = b.writeBuf(w)\n-\tif err != nil {\n-\t\treturn\n+\tif b.r < b.w {\n+\t\tn, err = b.writeBuf(w)\n+\t\tif err != nil {\n+\t\t\...
2025-01-27T05:52:58
facebook/react
c72452895a43d3317590b03092ebf7c2fc9e3d34
8bab0bca3c1668afadd7c7e7261f934ee0b7ee18
[codegen] validate that temporary values are set In codegen when we lower an operand we check to see if we have an already lowered value for it (stored in `cx.temp`). Currently we silently handle missing values by emitting a raw identifier, but this is really an error. This PR adds validation, which uncovered a fe...
[ { "path": "compiler/forget/src/HIR/PrintHIR.ts", "patch": "@@ -293,7 +293,11 @@ export function printInstructionValue(instrValue: ReactiveValue): string {\n }\n case \"JSXText\":\n case \"Primitive\": {\n- value = JSON.stringify(instrValue.value);\n+ if (instrValue.value === undefined)...
2023-04-20T23:48:22
vercel/next.js
b73644493a61901c9f3e20a99bef5a9b08de07b9
ad898de735c393d98960a68c8d9eaeee32206c57
[dev-overlay] Fix highlighted line cut off on scroll (#79930) Tiny PR to fix the error highlight not spanning full width of the container. https://github.com/user-attachments/assets/595b7184-e325-4b24-afdb-7683c04f0999 --- Closes NDX-1025
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/components/code-frame/code-frame.tsx", "patch": "@@ -62,40 +62,42 @@ export function CodeFrame({ stackFrame, codeFrame }: CodeFrameProps) {\n </p>\n </div>\n <pre className=\"code-frame-pre\">\n- {parsedLineStates...
2025-05-29T11:30:10
electron/electron
4cb57ad1a0e7096336694fdfcbab54f7068265fe
a8934d23024b6785c289d30c6336414df7e7ee49
docs: removes unused import in preload script (#35324) * Remove unused import of path This import gives out the error in the preload script: Error: module not found: path at preloadRequire * Removes unused import in preload script notes: Removes unused import which causes issue in preload script of dr...
[ { "path": "docs/fiddles/features/drag-and-drop/preload.js", "patch": "@@ -1,5 +1,4 @@\n const { contextBridge, ipcRenderer } = require('electron')\n-const path = require('path')\n \n contextBridge.exposeInMainWorld('electron', {\n startDrag: (fileName) => {", "additions": 0, "deletions": 1, "l...
2022-08-15T06:23:59
rust-lang/rust
b05aec3f7bf8bf1a97af01231418d95524b57e0e
0f17b47529fcde29fde44343e8f35e5cd2f21b89
Fix panic/assert message detection in edition 2015/2018 Fixes a FP for assertions_on_result_states, missing_assert_message on edition 2015/2018
[ { "path": "clippy_lints/src/assertions_on_result_states.rs", "patch": "@@ -1,5 +1,5 @@\n use clippy_utils::diagnostics::span_lint_and_then;\n-use clippy_utils::macros::{PanicExpn, find_assert_args, root_macro_call_first_node};\n+use clippy_utils::macros::{find_assert_args, root_macro_call_first_node};\n use...
2026-01-27T17:18:02
nodejs/node
c1bbc5d56907496f6ceb5be2873c61197ff3ef3d
ca7c8c6f75738cf9f82170977f1243145dd15bc5
node-api: copy external type tags when they are set In order to adapt to V8 changes regarding storing private properties on Externals, ExternalWrapper objects were introduced in #51149. However, this new code stores the type tag pointer and not the 128-bit value inside. This breaks some pre-existing code that were ma...
[ { "path": "src/js_native_api_v8.cc", "patch": "@@ -858,23 +858,24 @@ class ExternalWrapper {\n void* Data() { return data_; }\n \n bool TypeTag(const napi_type_tag* type_tag) {\n- if (type_tag_ != nullptr) {\n+ if (has_tag_) {\n return false;\n }\n- type_tag_ = type_tag;\n+ type_ta...
2024-04-15T17:18:37
golang/go
88108cc563418ab962e41bdcc54a1d2010c2efcf
372f2d802201583b0af2db2fa023d355812db2b1
cmd/go: adjust testsuite to add reraised panic message A couple of tests generate different output due to CL 645916 for issue #71517. Fixes #71593 Fixes #71594 Change-Id: Ifaeff4e9de8d881202bd9e6394c9b9cff8959596 Reviewed-on: https://go-review.googlesource.com/c/go/+/647495 LUCI-TryBot-Result: Go LUCI <golang-scoped...
[ { "path": "src/cmd/go/testdata/script/test_cleanup_failnow.txt", "patch": "@@ -14,8 +14,8 @@ env GOGC=off\n \n ! go test -v cleanup_failnow/panic_nocleanup_test.go\n ! stdout 'no tests to run'\n-stdout '(?s)panic: die \\[recovered\\].*panic: die'\n-! stdout '(?s)panic: die \\[recovered\\].*panic: die.*panic...
2025-02-06T23:01:17
facebook/react
cc93a8533264618b7a8e3d6fb56df917214c19d7
fdad813ac765e901e2957b8d36fba87e5504e5f4
[Fiber] InvokeGuardedCallback without metaprogramming (#26569) InvokeGuardedCallback is now implemented with the browser fork done at error-time rather than module-load-time. Originally it also tried to freeze the window/document references to avoid mismatches in prototype chains when testing React in different doc...
[ { "path": "packages/shared/invokeGuardedCallbackImpl.js", "patch": "@@ -7,80 +7,46 @@\n * @flow\n */\n \n-// $FlowFixMe[missing-this-annot]\n-function invokeGuardedCallbackProd<Args: Array<mixed>, Context>(\n- name: string | null,\n- func: (...Args) => mixed,\n- context: Context,\n-): void {\n- // $Fl...
2023-04-20T22:08:51
electron/electron
a8934d23024b6785c289d30c6336414df7e7ee49
f1216ca593df5acf847b8d01c46f199fb821d052
docs: add Electron deps to license credits file (#35283) * docs: add Electron deps to license credits file * fixup! docs: add Electron deps to license credits file remove nan; it is dev-only
[ { "path": "patches/chromium/.patches", "patch": "@@ -115,3 +115,4 @@ short-circuit_permissions_checks_in_mediastreamdevicescontroller.patch\n chore_add_electron_deps_to_gitignores.patch\n chore_allow_chromium_to_handle_synthetic_mouse_events_for_touch.patch\n add_maximized_parameter_to_linuxui_getwindowfram...
2022-08-15T01:35:12
rust-lang/rust
257ea3bbee8d2a4d3cc9346863606d86560e06de
be639943a0665c4ad49993c8b52b8341be8f6bdd
Remove outdated fixme
[ { "path": "src/bootstrap/src/core/builder/cargo.rs", "patch": "@@ -1277,8 +1277,6 @@ impl Builder<'_> {\n rustdocflags.arg(\"--crate-version\").arg(&rust_version);\n \n // Environment variables *required* throughout the build\n- //\n- // FIXME: should update code to not require...
2026-01-27T15:32:06
vercel/next.js
ad898de735c393d98960a68c8d9eaeee32206c57
3d398a8f17d95fda33c3d9c7f78a3013310f93f9
chore(turbo-tasks-backend): Fix build with `--features turbo-tasks-backend/lmdb` (#79530) This had bit-rotted. Sounds like we do want to keep it around for sanity checking things from time-to-time. Tested with: ``` cargo check --features turbo-tasks-backend/lmdb ```
[ { "path": "turbopack/crates/turbo-tasks-backend/src/database/fresh_db_optimization.rs", "patch": "@@ -137,6 +137,10 @@ impl<'a, B: SerialWriteBatch<'a>> SerialWriteBatch<'a> for FreshDbOptimizationWr\n fn delete(&mut self, key_space: KeySpace, key: WriteBuffer<'_>) -> Result<()> {\n self.write_b...
2025-05-29T05:48:40
nodejs/node
f098b7a0dabf8baf4b2d628743be058429b92cd8
1703ab50c7ce20962bde94eac65173706b329273
test_runner: better error handing for test hook Co-authored-by: Colin Ihrig <cjihrig@gmail.com> PR-URL: https://github.com/nodejs/node/pull/52401 Fixes: https://github.com/nodejs/node/issues/52399 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Benjamin Gruenbaum ...
[ { "path": "lib/internal/test_runner/harness.js", "patch": "@@ -10,6 +10,7 @@ const {\n createHook,\n executionAsyncId,\n } = require('async_hooks');\n+const { relative } = require('path');\n const {\n codes: {\n ERR_TEST_FAILURE,\n@@ -52,19 +53,26 @@ function createProcessEventHandler(eventName, r...
2024-04-15T10:27:17
golang/go
372f2d802201583b0af2db2fa023d355812db2b1
8163ea1458763aa38fa9197e479bd30cb0145429
unicode/utf8: remove init from utf8_test TestConstants and init test the same thing, remove init, it does not exist in utf16_test.go either. Fixes #71579 Change-Id: Ie0afd640bebde822733b6eac0bf98a17872f4e5f GitHub-Last-Rev: d7224c18376e00038261279abdfa954abc3a8303 GitHub-Pull-Request: golang/go#71582 Reviewed-on: ht...
[ { "path": "src/unicode/utf8/utf8_test.go", "patch": "@@ -12,16 +12,6 @@ import (\n \t. \"unicode/utf8\"\n )\n \n-// Validate the constants redefined from unicode.\n-func init() {\n-\tif MaxRune != unicode.MaxRune {\n-\t\tpanic(\"utf8.MaxRune is wrong\")\n-\t}\n-\tif RuneError != unicode.ReplacementChar {\n-...
2025-02-06T21:33:18
facebook/react
fdad813ac765e901e2957b8d36fba87e5504e5f4
e5708b3ea9190c1285c9081ff338e46be9ff39bc
[Float][Fiber] Enable Float methods to be called outside of render (#26557) Stacked on #26570 Previously we restricted Float methods to only being callable while rendering. This allowed us to make associations between calls and their position in the DOM tree, for instance hoisting preinitialized styles into a S...
[ { "path": "packages/react-art/src/ReactFiberConfigART.js", "patch": "@@ -479,11 +479,3 @@ export function suspendInstance(type, props) {}\n export function waitForCommitToBeReady() {\n return null;\n }\n-// eslint-disable-next-line no-undef\n-export function prepareRendererToRender(container: Container): ...
2023-04-20T21:40:25
electron/electron
4d54cadb281cceb9cf8de91773047ea2cc41da5f
eab7ab2c47c0750359a247450d9c7a41642b3dd1
fix: WCO occlusion of DevTools (#35209)
[ { "path": "docs/api/web-contents.md", "patch": "@@ -1568,6 +1568,8 @@ Opens the devtools.\n When `contents` is a `<webview>` tag, the `mode` would be `detach` by default,\n explicitly passing an empty `mode` can force using last used dock state.\n \n+On Windows, if Windows Control Overlay is enabled, Devtoo...
2022-08-11T13:16:12
vercel/next.js
1c0712bcf55dc4f2a58f621d4d57e51f44d67e1a
c10c10daf9e95346c31c24dc49d6b7cda48b5bc8
fix(napi): Update generated types, add alias for RcStr (#79915) We have some annoying caching issues with napi, which led me to miss this in https://github.com/vercel/next.js/pull/79806. You can force a rebuild of the types with: ``` rm /tmp/*.napi_type_def.tmp cargo clean pnpm swc-build-native ```
[ { "path": "packages/next/src/build/swc/generated-native.d.ts", "patch": "@@ -12,6 +12,7 @@ export type NapiRouteHas = {\n value?: string\n readonly __tag: unique symbol\n }\n+export type RcStr = string\n \n export function lightningCssTransform(args: object): Promise<unknown>\n export function lightning...
2025-05-29T03:41:45
nodejs/node
0debfa460f01c940a2f33df31164dcad7bae9ca7
0db38f0f9994e519f6a4abb60bd3170ca0eae5cd
tools: update minimatch index path PR-URL: https://github.com/nodejs/node/pull/52523 Fixes: https://github.com/nodejs/node/issues/52520 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gireesh Punathil...
[ { "path": "tools/dep_updaters/update-minimatch.sh", "patch": "@@ -54,7 +54,7 @@ cd package\n \n \"$NODE\" \"$NPM\" install esbuild --save-dev\n \n-\"$NODE\" \"$NPM\" pkg set scripts.node-build=\"esbuild ./dist/cjs/index.js --bundle --platform=node --outfile=index.js\"\n+\"$NODE\" \"$NPM\" pkg set scripts.no...
2024-04-15T04:42:40
golang/go
8163ea1458763aa38fa9197e479bd30cb0145429
478ad013f90fe1dbb199d22f41b93c920ae0d5e9
weak: prevent unsafe conversions using weak pointers Prevent conversions between Pointer types, like we do for sync/atomic.Pointer. Fixes #71583 Change-Id: I20e83106d8a27996f221e6cd9d52637b0442cea4 Reviewed-on: https://go-review.googlesource.com/c/go/+/647195 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a...
[ { "path": "src/weak/pointer.go", "patch": "@@ -56,6 +56,9 @@ import (\n // referenced object. Typically, this batching only happens for tiny\n // (on the order of 16 bytes or less) and pointer-free objects.\n type Pointer[T any] struct {\n+\t// Mention T in the type definition to prevent conversions\n+\t// ...
2025-02-06T13:07:38
facebook/react
e5708b3ea9190c1285c9081ff338e46be9ff39bc
d73d7d59086218b0fa42d0a79c32a0365952650b
[Tests][Fizz] Better HTML parsing behavior for Fizz tests (#26570) In anticipation of making Fiber use the document global for dispatching Float methods that arrive from Flight I needed to update some tests that commonly recreated the JSDOM instance after importing react. This change updates a few tests to only c...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -10,7 +10,7 @@\n \n 'use strict';\n import {\n- replaceScriptsAndMove,\n+ insertNodesAndExecuteScripts,\n mergeOptions,\n stripExternalRuntimeInNodes,\n withLoadingReadyState,\n@@ -29,8 +29,6 @@ let useSyncExternal...
2023-04-20T21:27:02
electron/electron
1d95b98cc86a4b4ed757931fd38105b06e3e2556
8646bf8d304d8dc97988227cdf76007c6fa4bfdf
docs: fix getStoragePath return type (#35288) Fixes #35255
[ { "path": "docs/api/session.md", "patch": "@@ -1049,7 +1049,7 @@ is emitted.\n \n #### `ses.getStoragePath()`\n \n-A `string | null` indicating the absolute file system path where data for this\n+Returns `string | null` - The absolute file system path where data for this\n session is persisted on disk. For...
2022-08-10T05:39:36
vercel/next.js
401bfe05f4adeb967586848642d8ee62759f707c
8fa42deefd59d8aae87112892c9af8aa0cf1290f
feat: using eval source map plugin for Rspack (#79199) Use rspack.EvalSourceMapDevToolPlugin when running with Rspack The modification specifically pass the test case in: test/integration/server-side-dev-errors/test/index.test.js
[ { "path": "packages/next/src/build/webpack/config/blocks/base.ts", "patch": "@@ -4,6 +4,7 @@ import { COMPILER_NAMES } from '../../../../shared/lib/constants'\n import type { ConfigurationContext } from '../utils'\n import DevToolsIgnorePlugin from '../../plugins/devtools-ignore-list-plugin'\n import EvalSo...
2025-05-29T02:30:36
nodejs/node
0db38f0f9994e519f6a4abb60bd3170ca0eae5cd
f8e325ea8a24160a5d5b3091efb14ef96575eae6
test_runner: expose lcov reporter as newable function This commit exposes the lcov reporter as a newable function, so that it can be used in the same way as the other reporters. This will allow passing in the options to the reporter as well. This breaks the current behavior of the lcov reporter, which exposes an insta...
[ { "path": "lib/test/reporters.js", "patch": "@@ -50,7 +50,7 @@ ObjectDefineProperties(module.exports, {\n __proto__: null,\n configurable: true,\n enumerable: true,\n- get() {\n+ value: function value() {\n lcov ??= require('internal/test_runner/reporter/lcov');\n return Reflec...
2024-04-15T04:16:19
golang/go
478ad013f90fe1dbb199d22f41b93c920ae0d5e9
9b4a462a7d85753738723402e298039c3424e584
runtime: don't duplicate reraised panic values in printpanics Change the output printed when crashing with a reraised panic value to not duplicate that value. Changes output of panicking with "PANIC", recovering, and reraising from: panic: PANIC [recovered] panic: PANIC to: panic: PANIC [recovered, reraise...
[ { "path": "doc/next/4-runtime.md", "patch": "@@ -1 +1,18 @@\n ## Runtime {#runtime}\n+\n+<!-- go.dev/issue/71517 -->\n+\n+The message printed when a program exits due to an unhandled panic\n+that was recovered and re-raised no longer repeats the text of\n+the panic value.\n+\n+Previously, a program which pa...
2025-01-31T23:03:15
facebook/react
8bab0bca3c1668afadd7c7e7261f934ee0b7ee18
c228d63f0375b0051b4ce18d2e748886ae292ba8
[babel] Compile individual components Updates the Babel plugin so that we can individually compile components and skip over ones that have non-critical errors
[ { "path": "compiler/forget/src/Babel/BabelPlugin.ts", "patch": "@@ -54,48 +54,67 @@ export default function ReactForgetBabelPlugin(\n fn: BabelCore.NodePath<t.FunctionDeclaration>,\n pass: BabelPluginPass\n ): void {\n- const compiled = compile(fn, pass.opts.environment);\n-\n- if (pass.opts...
2023-04-20T20:21:40
rust-lang/rust
1f72a25b54ed6bfeab105e531447c3384d38bc64
46969c8b124968490fe3293bc2fd033bd333153c
Fix sysroot-abi build
[ { "path": "src/tools/rust-analyzer/crates/proc-macro-srv/src/lib.rs", "patch": "@@ -22,8 +22,11 @@\n )]\n #![deny(deprecated_safe, clippy::undocumented_unsafe_blocks)]\n \n+#[cfg(not(feature = \"in-rust-tree\"))]\n+extern crate proc_macro as rustc_proc_macro;\n #[cfg(feature = \"in-rust-tree\")]\n extern cr...
2026-01-27T14:40:49
electron/electron
32fefb1f505ba0a79e7e54f2db54d19497bbddb0
6548808054d2e327a69cee0e9bcb7e5a9dd03203
fix(docs): fix a typo in section on debugging with VSCode (#35256) fix(docs): fix a typo
[ { "path": "docs/tutorial/tutorial-2-first-app.md", "patch": "@@ -350,7 +350,7 @@ app.whenReady().then(() => {\n \n ## Optional: Debugging from VS Code\n \n-If you want to debug your application using VS Code, you have need attach VS Code to\n+If you want to debug your application using VS Code, you need to ...
2022-08-09T19:01:38
vercel/next.js
42487f26da984391c81a638e01dc791d6758f6c2
fea5c8ccc38c535d7614f8cecf5e3091f3473e62
fix: preload fonts in template.js (#79417) Fonts imported in a template module do not preload or preconnect when used in a template.js file. This PR adds a small fix and a e2e test. Co-authored-by: Zack Tanner <1939140+ztanner@users.noreply.github.com>
[ { "path": "packages/next/src/server/app-render/parse-loader-tree.ts", "patch": "@@ -3,13 +3,13 @@ import type { LoaderTree } from '../lib/app-dir-module'\n \n export function parseLoaderTree(tree: LoaderTree) {\n const [segment, parallelRoutes, modules] = tree\n- const { layout } = modules\n+ const { la...
2025-05-28T23:54:24
nodejs/node
11f8765475d46d0fa5718df674f7f3b51f9f2737
77424b05e98696312ad9cdff65675ace3addac88
test_runner: don't exceed call stack when filtering This commit updates filteredRun() to call postRun() after a microtask instead of synchronously. Currently, if approximately 1,545 subtests are filtered, enough synchronous calls can be made to cause a call stack exceeded exception. PR-URL: https://github.com/nodejs/...
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -29,6 +29,7 @@ const {\n } = primordials;\n const { getCallerLocation } = internalBinding('util');\n const { addAbortListener } = require('internal/events/abort_listener');\n+const { queueMicrotask } = require('internal/process/task_queues');\n cons...
2024-04-12T01:05:33
golang/go
0da7fafac4eabec799df40278f68ba86b574afea
65004c7bf4a1193af7742a6de9bc515c4b07bb75
net: fix ListenMulitcastUDP to work properly when interface has no IPv4 The existing implementation would either fail or bind to the wrong interface when the requested interface had no IPv4 address, such as when the Ethernet cable was unplugged. Now on Linux, it will always bind to the requested interface. On other o...
[ { "path": "src/net/sockopt_posix.go", "patch": "@@ -7,7 +7,6 @@\n package net\n \n import (\n-\t\"internal/bytealg\"\n \t\"runtime\"\n \t\"syscall\"\n )\n@@ -43,35 +42,6 @@ func interfaceToIPv4Addr(ifi *Interface) (IP, error) {\n \treturn nil, errNoSuchInterface\n }\n \n-func setIPv4MreqToInterface(mreq *sy...
2025-01-25T21:21:53
facebook/react
c228d63f0375b0051b4ce18d2e748886ae292ba8
275c7557156778168c455d6086846cbde9cb7adf
[babel] Add panicOnBailout option Adds an option to always throw errors regardless of severity (default, ie the status quo), or when the flag is disabled, only critical errors will be thrown. Any error that isn't considered a critical error (see `CompilerError.isCritical()`) since it might indicate that the compil...
[ { "path": "compiler/forget/src/Babel/BabelPlugin.ts", "patch": "@@ -54,7 +54,6 @@ export default function ReactForgetBabelPlugin(\n fn: BabelCore.NodePath<t.FunctionDeclaration>,\n pass: BabelPluginPass\n ): void {\n- hasForgetCompiledCode = true;\n const compiled = compile(fn, pass.opts.en...
2023-04-20T20:21:40
vercel/next.js
2c142f085450843c4fed8c7ee07f7acf311d18ef
ebd87edb01a8791e8593ad0ca1ffcb37c9b35209
fix(next-swc): Fix specificity issue of `styled-jsx` in lightningcss mode (#79802) ### What? Update the `styled-jsx` SWC plugin to the latest ### Why? Apply https://github.com/swc-project/plugins/pull/464 x-ref: https://vercel.slack.com/archives/C08GMHRF7NC/p1748451540079049?thread_ts=1741381916.437039&cid=C08GMHR...
[ { "path": "Cargo.lock", "patch": "@@ -7314,9 +7314,9 @@ dependencies = [\n \n [[package]]\n name = \"styled_jsx\"\n-version = \"0.90.2\"\n+version = \"0.90.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ad543134d46a26fc674ff59809eac1da01e244067500ce003478f2d2623e0b10...
2025-05-28T21:49:16
nodejs/node
82891ae1a99ac243abeb13c08e0e59a607f22ca0
021e172415d679800d5e5b881a1ab89771048808
benchmark: inherit stdio/stderr instead of pipe PR-URL: https://github.com/nodejs/node/pull/52456 Fixes: https://github.com/nodejs/node/issues/52233 Refs: https://github.com/nodejs/performance/pull/161 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Raz Luvaton <rluvaton@gmail.com>
[ { "path": "benchmark/compare.js", "patch": "@@ -83,11 +83,8 @@ if (showProgress) {\n const spawnArgs = ['-c', cpuCore, cli.optional[job.binary], resolvedPath, ...cli.optional.set];\n child = spawn('taskset', spawnArgs, {\n env: process.env,\n- stdio: ['inherit', 'pipe', 'pipe', 'ipc'],\n+...
2024-04-10T20:35:58
golang/go
65004c7bf4a1193af7742a6de9bc515c4b07bb75
cd595be6d669af171bc28bdc939cc36785717718
cmd/go: report gcc ld error message when linking fails The output of the gcc ld command is useful to understand why a package that uses cgo can't use internal linking. We should log it. Change-Id: Id524065fc5348be57387f2b67d1e00861f9adf15 Reviewed-on: https://go-review.googlesource.com/c/go/+/646315 LUCI-TryBot-Resul...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -2208,7 +2208,7 @@ func (b *Builder) gccld(a *Action, objdir, outfile string, flags []string, objs\n \t}\n \n \tcmdargs := []any{cmd, \"-o\", outfile, objs, flags}\n-\t_, err := sh.runOut(base.Cwd(), b.cCompilerEnv(), cmdargs...)\n+\tout, err := sh....
2025-02-03T20:05:51
facebook/react
275c7557156778168c455d6086846cbde9cb7adf
3aa6196e306363ad962ac5a9014e366f99e7fa35
Repro for jsx lowering issues * JSX tag value temporaries getting promoted due to being sandwiched inside the mutation of some other item * Incorrect order-of-evaluation for jsx tag relative to props/children
[ { "path": "compiler/forget/src/__tests__/fixtures/compiler/_bug.global-jsx-tag-lowered-between-mutations.expect.md", "patch": "@@ -0,0 +1,53 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const maybeMutable = new MaybeMutable();\n+ // NOTE: this will produce invalid output.\n+ // Th...
2023-04-20T16:29:37
electron/electron
faa2f7afa3d5b0a21d153412d8c728d76c2a45d9
f3dbdaaf33f29e8ffe6921e767fcab877f921dec
test: migrate asar specs to main runner (#35230) * test: migrate node specs to main * test: migrate asar specs to main runner * fix execFile
[ { "path": "spec-main/asar-spec.ts", "patch": "@@ -5,6 +5,10 @@ import { Worker } from 'worker_threads';\n import { BrowserWindow, ipcMain } from 'electron/main';\n import { closeAllWindows } from './window-helpers';\n import { emittedOnce } from './events-helpers';\n+import { getRemoteContext, ifdescribe, i...
2022-08-09T07:39:14
rust-lang/rust
bf12b8bca5e4e6c313f043de0301e68fdb7cec7d
4430fd8ef408dae72d6353106973eefc4fbf5324
Fix linking of proc-macro-srv-cli
[ { "path": "src/tools/rust-analyzer/crates/proc-macro-srv-cli/src/lib.rs", "patch": "@@ -2,5 +2,10 @@\n //!\r\n //! This module exposes the server main loop and protocol format for integration testing.\r\n \r\n+#![cfg_attr(feature = \"in-rust-tree\", feature(rustc_private))]\r\n+\r\n+#[cfg(feature = \"in-rus...
2026-01-27T13:19:00
nodejs/node
021e172415d679800d5e5b881a1ab89771048808
3634f9c8fa97a44e688c7944a08972ffd90ccd6f
benchmark: add ipc support to spawn stdio config Enabled inter-process communication (ipc) in the stdio configuration of the spawn function within the benchmark subsystem. This change allows for improved data exchange between parent and benchmarked child processes, addressing limitations in performance testing scenari...
[ { "path": "benchmark/compare.js", "patch": "@@ -83,7 +83,7 @@ if (showProgress) {\n const spawnArgs = ['-c', cpuCore, cli.optional[job.binary], resolvedPath, ...cli.optional.set];\n child = spawn('taskset', spawnArgs, {\n env: process.env,\n- stdio: ['inherit', 'pipe', 'pipe'],\n+ st...
2024-04-10T19:41:37
facebook/react
7f8c501f682bd4abe24826a93538059d717ba39e
22d5942675fcbd8b15b532284b49db4cb00d7144
React DevTools 4.27.5 -> 4.27.6 (#26684) Full list of changes: * Use .slice() for all substring-ing ([sophiebits](https://github.com/sophiebits) in [#26677](https://github.com/facebook/react/pull/26677)) * cleanup[devtools]: remove named hooks & profiler changed hook indices feature flags ([hoxyq](https://github....
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.27.5\",\n+ \"version\": \"4.27.6\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j...
2023-04-20T12:34:25
rust-lang/rust
802ee0156a35e4e334eb32bec9a8f9ea16995494
0828abf70b02373b67f4e693a5291b2561b17e8f
fix: offer `toggle_macro_delimiter` in nested macro Example --- ```rust prt!{abc!$0(3 + 5)}; ``` **Before this PR** Assist not applicable **After this PR** ```rust prt!{abc!{3 + 5}}; ```
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/toggle_macro_delimiter.rs", "patch": "@@ -1,6 +1,7 @@\n use ide_db::assists::AssistId;\n use syntax::{\n- AstNode, SyntaxToken, T,\n+ AstNode, SyntaxKind, SyntaxToken, T,\n+ algo::{previous_non_trivia_token, skip_trivia_token},\n ...
2026-01-27T13:18:09
electron/electron
f3dbdaaf33f29e8ffe6921e767fcab877f921dec
0400eb2e60578add06d48fb662236e7eaf2122fb
build: fix error in the `ts-compile-doc-change` step (#35258) build: fix error in the ts-compile-doc-change step Fixes the following error: https://app.circleci.com/pipelines/github/electron/electron/56517/workflows/ea0f6548-e0ac-40c6-bacb-e24610cd6670/jobs/1287168?invite=true#step-103-29 ```sh $ webpack --conf...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -990,7 +990,7 @@ step-ts-compile: &step-ts-compile\n do\n out=\"${f:29}\"\n if [ \"$out\" != \"base.js\" ]; then\n- node script/yarn webpack --config $f --output-filename=$out --output-path=./.tmp --env.mode=development\n+ ...
2022-08-08T21:09:09
golang/go
cd595be6d669af171bc28bdc939cc36785717718
a8e532b0f234b3bbf7a1cdcd4213d154e82ba08e
cmd/compile: prefer an add when shifting left by 1 ADD(Q|L) has generally twice the throughput. Came up in CL 626998. Throughput by arch: Zen 4: SHLL (R64, 1): 0.5 ADD (R64, R64): 0.25 Intel Alder Lake: SHLL (R64, 1): 0.5 ADD (R64, R64): 0.2 Intel Haswell: SHLL (R64, 1): 0.5 ADD (R64, R64): 0.25 Also...
[ { "path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules", "patch": "@@ -664,9 +664,11 @@\n // Handle bit-testing in the form (a>>b)&1 != 0 by building the above rules\n // and further combining shifts.\n (BT(Q|L)const [c] (SHRQconst [d] x)) && (c+d)<64 => (BTQconst [c+d] x)\n+(BT(Q|L)const [c] (ADDQ x x)) ...
2025-01-11T18:26:57
vercel/next.js
bfeb2216d7429eb8e348b49f8a2e4c25eb3b4906
6654a98a9b5d87170a25fc369e419c1de9ab4f72
refactor(turbopack): Preserve indents in dev mode codegen (#79786) ### What? Preserve indents in dev modes (inverts #79754) ### Why? Indent can be useful for debugging.
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -78,6 +78,7 @@ use turbopack_core::{\n asset::{Asset, AssetContent},\n chunk::{\n AsyncModuleInfo, ChunkItem, ChunkType, ChunkableModule, ChunkingContext, EvaluatableAsset,\n+ MinifyType,\n },\n compile...
2025-05-28T16:22:40
nodejs/node
8b4c4e825cf69d1edb7838730c553d4aa4b52235
2cd3073e0f19d8e28c2412c9208f6ffed60ae33b
url: implement parse method for safer URL parsing Implement the static parse method as per the WHATWG URL specification. Unlike the URL constructor, URL.parse does not throw on invalid input, instead returning null. This behavior allows safer parsing of URLs without the need for try-catch blocks around constructor cal...
[ { "path": "lib/internal/url.js", "patch": "@@ -769,6 +769,14 @@ function isURL(self) {\n return Boolean(self?.href && self.protocol && self.auth === undefined && self.path === undefined);\n }\n \n+/**\n+ * A unique symbol used as a private identifier to safely invoke the URL constructor\n+ * with a specia...
2024-04-13T12:57:12
electron/electron
91f9436ad8e6028bf2909008e5814867289b9310
34b985c5560aac4bb86d3697f8358647d38e79a7
fix: app.relaunch loses args when execPath specified (#35108)
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -1151,7 +1151,9 @@ bool App::Relaunch(gin::Arguments* js_args) {\n \n gin_helper::Dictionary options;\n if (js_args->GetNext(&options)) {\n- if (options.Get(\"execPath\", &exec_path) || options.Get(\"args\", &args))\n+ bool has_exec_p...
2022-08-08T08:12:06
vercel/next.js
6654a98a9b5d87170a25fc369e419c1de9ab4f72
6492a52b5394dd5b9448b4b23b0f3aed2e348b02
Run `tsc` in watch mode during `pnpm dev` (#79785) Now that `tsc` can be run repeatedly without erroring, we can run it in watch mode during `pnpm dev` to ensure that type errors are always up-to-date while developing. Previously, we had to restart `pnpm dev`, like animals.
[ { "path": "packages/next/taskfile.js", "patch": "@@ -2835,9 +2835,11 @@ export async function build(task, opts) {\n }\n \n export async function generate_types(task, opts) {\n- await execa.command('pnpm run types', {\n- stdio: 'inherit',\n- })\n+ await execa(\n+ 'pnpm',\n+ ['run', 'types', ...(o...
2025-05-28T15:36:18
golang/go
51bf2cf7cfa999777697a9548d59d22c3716fbde
220fe7987138a4b6c63de4b750fda58852237560
Revert "cmd/go/internal/work: allow @ character in some -Wl, linker flags on darwin" This reverts CL 638075 (commit e3cd55e9d293d519e622e788e902f372dc30338a). This change introduced a security issue as @ flags are first resolved as files by the darwin linker, before their meaning as flags, allowing the flag filtering...
[ { "path": "src/cmd/go/internal/work/security.go", "patch": "@@ -227,21 +227,6 @@ var validLinkerFlags = []*lazyregexp.Regexp{\n \tre(`\\./.*\\.(a|o|obj|dll|dylib|so|tbd)`),\n }\n \n-var validLinkerFlagsOnDarwin = []*lazyregexp.Regexp{\n-\t// The GNU linker interprets `@file` as \"read command-line options f...
2025-01-29T16:03:59
facebook/react
767f52237cf7892ad07726f21e3e8bacfc8af839
c826dc50de288758a0b783b2fd37b40a3b512fc4
Use .slice() for all substring-ing (#26677) - substr is Annex B - substring silently flips its arguments if they're in the "wrong order", which is confusing - slice is better than sliced bread (no pun intended) and also it works the same way on Arrays so there's less to remember --- > I'd be down to just lint ...
[ { "path": ".eslintrc.js", "patch": "@@ -236,7 +236,14 @@ module.exports = {\n 'no-inner-declarations': [ERROR, 'functions'],\n 'no-multi-spaces': ERROR,\n 'no-restricted-globals': [ERROR].concat(restrictedGlobals),\n- 'no-restricted-syntax': [ERROR, 'WithStatement'],\n+ 'no-restricted-synt...
2023-04-19T21:26:01
rust-lang/rust
c420ed5632d90b793a5ab75f47129af7cf312923
cce824a637c1a9408c7da840063b65390331da40
fix: Do not panic if rust-analyzer fails to spawn the discover command
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/command.rs", "patch": "@@ -10,6 +10,7 @@ use std::{\n process::{ChildStderr, ChildStdout, Command, Stdio},\n };\n \n+use anyhow::Context;\n use crossbeam_channel::Sender;\n use paths::Utf8PathBuf;\n use process_wrap::std::{StdChildWrapper, StdC...
2026-01-27T13:03:16
nodejs/node
2cd3073e0f19d8e28c2412c9208f6ffed60ae33b
1091efc2ab4e960e010d4d2094ae8d5d8d70f1d3
lib: refactor lazy loading of undici for fetch method Object.defineProperty is updated to lazily load the undici dependency for the fetch method. This change allows for simpler and more reliable mocking of the fetch method for testing purposes, resolving issues encountered with premature method invocation during testi...
[ { "path": "lib/internal/bootstrap/web/exposed-window-or-worker.js", "patch": "@@ -57,32 +57,21 @@ defineReplaceableLazyAttribute(globalThis, 'perf_hooks', ['performance']);\n const { installObjectURLMethods } = require('internal/url');\n installObjectURLMethods();\n \n-{\n- // https://fetch.spec.whatwg.org...
2024-04-12T17:54:42
electron/electron
76431ac1fa395386da6655d006d3f96119d37995
a11cc3274f3db09a72f4cc0ff71da4bb1b6da4b1
test: temporarily disable tests on mas arm64 that are causing a crash (#35226) * test: temporarily disable test on mas arm64 that is causing crash * disable the right test * chore: speculative fix for CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER crash * enable all the tests * Revert "chore: speculati...
[ { "path": "spec-main/api-browser-window-spec.ts", "patch": "@@ -5255,7 +5255,8 @@ describe('BrowserWindow module', () => {\n });\n });\n \n- describe('contextIsolation option with and without sandbox option', () => {\n+ // TODO (jkleinsc) renable these tests on mas arm64\n+ ifdescribe(!process.mas ...
2022-08-06T23:02:04
vercel/next.js
54acbd43476e615f4c0994cc1fab4096385ddee5
e66680dcf9e8aa1eb978e51564e2e73511be4ae0
Turbopack Build: Fix metadata test (#79776) ## What? Changes the test to not use the `.next` folder but instead fetch the running server which makes sure it does not rely on specific formats.
[ { "path": "test/lib/next-modes/base.ts", "patch": "@@ -545,6 +545,16 @@ export class NextInstance {\n return fs.readFile(path.join(this.testDir, filename), 'utf8')\n }\n \n+ public async readFileBuffer(\n+ filename: string\n+ ): Promise<Buffer<ArrayBufferLike>> {\n+ return fs.readFile(path.joi...
2025-05-28T10:58:37
golang/go
220fe7987138a4b6c63de4b750fda58852237560
b45c7d546669c37bbfdb1dedffa1b3e12acfc18c
cmd/go: add '-skip' to list of cacheable test flags -run is cacheable, so -skip should be cacheable too. Fixes #70692 Change-Id: I16880189b0d3a963f8f08008fc7fedcdc6f11630 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-windows-amd64-longtest Reviewed-on: https://go-review.googlesource.com/c/go/+...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1890,7 +1890,7 @@\n // The rule for a match in the cache is that the run involves the same\n // test binary and the flags on the command line come entirely from a\n // restricted set of 'cacheable' test flags, defined as -benchtime, -cpu,\n-// -list, -paralle...
2025-02-05T20:27:29
facebook/react
3aa6196e306363ad962ac5a9014e366f99e7fa35
a0777212df7009cc26e47ffd46444276d0be923d
Starting point for a new, parallel test runner to replace our hacked Jest snapshotting As demo'd on our sync. This is meant as a replacement for `yarn test` just for fixtures. On my machine, a test run from a steady state of Jest watch mode takes 6 seconds. With this script, it takes ~800ms. Workflow: make edits...
[ { "path": "compiler/forget/packages/snap/package.json", "patch": "@@ -0,0 +1,39 @@\n+{\n+ \"name\": \"snap\",\n+ \"version\": \"0.0.1\",\n+ \"public\": false,\n+ \"description\": \"Snapshot testing CLI tool\",\n+ \"main\": \"dist/index.js\",\n+ \"license\": \"MIT\",\n+ \"files\": [\n+ \"src\"\n+ ...
2023-04-19T21:07:06
rust-lang/rust
c48186e9389c1b930adb9416a4e5b4c2c16fc670
45ef76624e04700f063b3ac0c2423e15bfbd5995
Fix a panic where an opaque was constrained to an impossible type in method autoderef
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/method_resolution/probe.rs", "patch": "@@ -285,11 +285,15 @@ impl<'a, 'db> MethodResolutionContext<'a, 'db> {\n let infcx = self.infcx;\n let (self_ty, var_values) = infcx.instantiate_canonical(&query_input);\n ...
2026-01-27T12:48:40
vercel/next.js
e66680dcf9e8aa1eb978e51564e2e73511be4ae0
3168c1a0282041aa1341d228af4e3d63ec1ccc0a
Docs: Fix headings (#79777)
[ { "path": "docs/01-app/01-getting-started/09-caching-and-revalidating.mdx", "patch": "@@ -21,7 +21,7 @@ Next.js provides a few APIs to handle caching and revalidation. This guide will\n - [`revalidatePath`](#revalidatepath)\n - [`revalidateTag`](#revalidatetag)\n \n-### `fetch`\n+## `fetch`\n \n By default,...
2025-05-28T10:31:06
electron/electron
a11cc3274f3db09a72f4cc0ff71da4bb1b6da4b1
a719568ac131885c736047e4bb532c70ba4591a8
build: fix webpack prod failure (#35227)
[ { "path": "package.json", "patch": "@@ -73,7 +73,7 @@\n \"typescript\": \"^4.5.5\",\n \"webpack\": \"^5.73.0\",\n \"webpack-cli\": \"^4.10.0\",\n- \"wrapper-webpack-plugin\": \"^2.1.0\"\n+ \"wrapper-webpack-plugin\": \"^2.2.0\"\n },\n \"private\": true,\n \"scripts\": {", "additi...
2022-08-05T16:21:00
golang/go
ee6e0a5ed6a11f79f40ca58ca5337ec5bad16ebb
721f5ca4edc8073b777bd71df6801b237d72c332
internal/routebsd: fix typo in sockAddrLen identifer name For #70528. Change-Id: I0db75cb998aeb299676384fe59bf241db18ebc5c Reviewed-on: https://go-review.googlesource.com/c/go/+/646975 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Dmitri Shuralyov <dmit...
[ { "path": "src/internal/routebsd/address.go", "patch": "@@ -133,7 +133,7 @@ func parseInetAddr(af int, b []byte) (Addr, error) {\n \t\t}\n \t\tvar ip [ipv6Len]byte\n \t\tsockAddrLen := int(b[0])\n-\t\tif sockaddrLen != 0 {\n+\t\tif sockAddrLen != 0 {\n \t\t\tn := off6 + ipv6Len\n \t\t\tif sockAddrLen < n {\...
2025-02-05T18:52:56
facebook/react
c826dc50de288758a0b783b2fd37b40a3b512fc4
cd2b79dedd6d81abb0b01d38396afa083feaf9e9
Add (Client) Functions as Form Actions (#26674) This lets you pass a function to `<form action={...}>` or `<button formAction={...}>` or `<input type="submit formAction={...}>`. This will behave basically like a `javascript:` URL except not quite implemented that way. This is a convenience for the `onSubmit={e => {...
[ { "path": "fixtures/flight/src/Button.js", "patch": "@@ -6,20 +6,22 @@ export default function Button({action, children}) {\n const [isPending, setIsPending] = React.useState(false);\n \n return (\n- <button\n- disabled={isPending}\n- onClick={async () => {\n- setIsPending(true);\n- ...
2023-04-19T20:31:08
electron/electron
c47031a279492a074804ed5cfe714d5c92b3d128
74432a313cb05bf61b1aaae889357d81f8620031
docs: Fix the URL bugs at tutorial-6-publishing-updating.md (#35175) * Update tutorial-6-publishing-updating.md The dot at the end of the URL will depend on the site that cannot open. Because it will open `https://update.electronjs.org./` which does not exist. * docs: fix the URL problems at tutorial-6-publishin...
[ { "path": "docs/tutorial/tutorial-6-publishing-updating.md", "patch": "@@ -27,7 +27,7 @@ into your app code.\n ## Using update.electronjs.org\n \n The Electron maintainers provide a free auto-updating service for open-source apps\n-at https://update.electronjs.org. Its requirements are:\n+at [https://update...
2022-08-03T14:20:37
vercel/next.js
0ee8d5c7a8210e802314a766b6f2115f4b3e80b2
123524832c2b686381407740604cdb99f65f9c65
fix(turbopack): Use comments instead of AST nodes for unreachables (#79703) ### What? Use unreachable comments instead of AST nodes for statically analyzable unreachable AST nodes. ### Why? It causes fewer problems for Firefox and potentially reduces RSS. ### How? - Closes PACK-3843 - Closes #74185
[ { "path": "turbopack/crates/turbopack-ecmascript/src/code_gen.rs", "patch": "@@ -1,11 +1,14 @@\n use anyhow::Result;\n use serde::{Deserialize, Serialize};\n-use swc_core::ecma::{\n- ast::{\n- BlockStmt, CallExpr, Expr, Lit, MemberExpr, ModuleDecl, ModuleItem, Pat, Program, Prop,\n- SimpleA...
2025-05-27T22:46:51
facebook/react
cd2b79dedd6d81abb0b01d38396afa083feaf9e9
6d394e3d26a1e785d0510d732eedcdd2be3e92b5
Initial (client-only) async actions support (#26621) Implements initial (client-only) support for async actions behind a flag. This is an experimental feature and the design isn't completely finalized but we're getting closer. It will be layered alongside other features we're working on, so it may not feel complete...
[ { "path": "packages/react-reconciler/src/ReactFiberAsyncAction.js", "patch": "@@ -0,0 +1,130 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ *\n+ * @flow...
2023-04-19T17:33:11
golang/go
a7cbea833276454597c583751629a3e11cfa9232
f6ea0621d2e7e7386d7f58241fb34bc78e39ebcc
cmd/go: skip bzr tests if 'bzr help' has non-zero exit code It appears to be quite easy to end up with a broken 'bzr' installation. For example, if bzr was installed via a system-wide package manager and intends to work with a system-wide Python installation, it may break if another 'python3' binary is added to PATH. ...
[ { "path": "src/cmd/go/internal/vcweb/script.go", "patch": "@@ -32,6 +32,17 @@ import (\n func newScriptEngine() *script.Engine {\n \tconds := script.DefaultConds()\n \n+\tadd := func(name string, cond script.Cond) {\n+\t\tif _, ok := conds[name]; ok {\n+\t\t\tpanic(fmt.Sprintf(\"condition %q is already regi...
2025-02-05T00:54:25
electron/electron
74432a313cb05bf61b1aaae889357d81f8620031
4e919c919c030cdcf215256a7573864afd7748a2
docs: fix link in tutorial (#35192) Relands https://github.com/electron/electronjs.org-new/pull/240 upstream
[ { "path": "docs/tutorial/tutorial-4-adding-features.md", "patch": "@@ -64,7 +64,7 @@ into end users' hands.\n \n [discord]: https://discord.gg/electronjs\n [github]: https://github.com/electron/electronjs.org-new/issues/new\n-[how to]: ./examples.md\n+[how-to]: ./examples.md\n [node-platform]: https://nodej...
2022-08-03T14:12:06
vercel/next.js
826da1f78652a606149523a8bb2dc24b93f96595
fc05711d58e0b28e2f84a8d995eee4fbb60724a7
update(turbopack): Update the messaging UX for timing writing files to disk (#79469) ## Refactor Turbopack Compilation Events and Timing Reporting ### What? This PR refactors how compilation events are created, displayed, and formatted in Turbopack. It introduces a dedicated `TimingEvent` type for timing-related mess...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -31,7 +31,7 @@ use turbo_rcstr::RcStr;\n use turbo_tasks::{\n Completion, Effects, FxIndexSet, OperationVc, ReadRef, ResolvedVc, TransientInstance,\n TryJoinIterExt, UpdateInfo, Vc, get_effects,\n- message_queue::{CompilationEvent, Dia...
2025-05-27T20:52:11
facebook/react
1f248bdd7199979b050e4040ceecfe72dd977fd1
b90e8ebaa5b692bcee4198eacb56f9123b62dd10
Switching checked to null should leave the current value (#26667) I accidentally made a behavior change in the refactor. It turns out that when switching off `checked` to an uncontrolled component, we used to revert to the concept of "initialChecked" which used to be stored on state. When there's a diff to this ...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -834,6 +834,7 @@ export function setInitialProperties(\n // listeners still fire for the invalid event.\n listenToNonDelegatedEvent('invalid', domElement);\n \n+ let name = null;\n let type = null;\n...
2023-04-19T15:46:29
nodejs/node
ee4fa77624f17c1958dac47fddbe7d9513b9dee8
3f8cc88009eff38986964d99180de730898e5753
test: fix watch test with require not testing pid PR-URL: https://github.com/nodejs/node/pull/52353 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "test/sequential/test-watch-mode.mjs", "patch": "@@ -307,9 +307,9 @@ console.log(values.random);\n const file = createTmpFile();\n const required = createTmpFile('process._rawDebug(\\'pid\\', process.pid);');\n const args = ['--require', required, file];\n- const { stdout, pid } = a...
2024-04-11T10:56:02
golang/go
f6ea0621d2e7e7386d7f58241fb34bc78e39ebcc
b7c9cdd53cb39934f74b1cdbe08ad1f9e4a12e78
internal/routebsd: fix parsing network address of length zero This applies CL 646555 from the net repository to this copy. For #70528 Change-Id: Ib7e23accfa3f278392e7bdca6f8544b8f1395e7e Reviewed-on: https://go-review.googlesource.com/c/go/+/646676 Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit: Ian Lance T...
[ { "path": "src/internal/routebsd/address.go", "patch": "@@ -102,44 +102,52 @@ func (a *InetAddr) Family() int {\n // parseInetAddr parses b as an internet address for IPv4 or IPv6.\n func parseInetAddr(af int, b []byte) (Addr, error) {\n \tconst (\n-\t\toff4 = 4 // offset of in_addr\n-\t\toff6 = 8 // offset...
2025-02-04T23:11:42
electron/electron
afa4f5052bf5984821b01729a94dcd5b0e04d794
7b8fb2b07418c7bad6ce811ca75c926ee53663fc
fix: consider dock space when showing menu (#35194)
[ { "path": "shell/browser/api/electron_api_menu_mac.mm", "patch": "@@ -131,7 +131,7 @@\n if (!item) {\n CGFloat windowBottom = CGRectGetMinY([view window].frame);\n CGFloat lowestMenuPoint = windowBottom + position.y - [menu size].height;\n- CGFloat screenBottom = CGRectGetMinY([view window].scr...
2022-08-03T08:52:42
facebook/react
a227bcd4f4754b0a3f44f84e1e63a79d0ae130d3
c6db19f9cdec34bca3625a483a2f85181193b885
chore[devtools/release-scripts]: update messages / fixed npm view com… (#26660) Some minor changes, observed while working on 24.7.5 release: - Updated numeration of text instructions - `reactjs.org` -> `react.dev` - Fixed using `npm view` command for node 16+, `publish-release` script currently fails if used with...
[ { "path": "packages/react-devtools-extensions/chrome/test.js", "patch": "@@ -7,7 +7,7 @@ const {resolve} = require('path');\n const {argv} = require('yargs');\n \n const EXTENSION_PATH = resolve('./chrome/build/unpacked');\n-const START_URL = argv.url || 'https://reactjs.org/';\n+const START_URL = argv.url ...
2023-04-19T09:05:16
vercel/next.js
89d40df2effae5789073259aa55729dc900e4118
0bcbab529e26ebd3d92b56a32287525700df2c43
Turbopack Build: Fix middleware rewrite test (#79697) ## What? The reason this test fails seems to be that the `browser.on('request'` gets registered too late and the requests are not tracked because of that. Seems it can flake with webpack too. Switched to `beforePageLoad` to register it always. That switch makes th...
[ { "path": "test/e2e/middleware-rewrites/test/index.test.ts", "patch": "@@ -24,15 +24,19 @@ describe('Middleware Rewrite', () => {\n \n function tests() {\n it('should handle catch-all rewrite correctly', async () => {\n- const browser = await next.browser('/', { waitHydration: false })\n+ le...
2025-05-27T19:55:57
nodejs/node
3f8cc88009eff38986964d99180de730898e5753
05cb16dc1aad87aaf8ee914496d43cb07a06faf3
test_runner: fix clearing final timeout in own callback PR-URL: https://github.com/nodejs/node/pull/52332 Fixes: https://github.com/nodejs/node/issues/52325 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruen...
[ { "path": "lib/internal/test_runner/mock/mock_timers.js", "patch": "@@ -652,7 +652,7 @@ class MockTimers {\n \n // Check if the timeout was cleared by calling clearTimeout inside its own callback\n const afterCallback = this.#executionQueue.peek();\n- if (afterCallback.id === timer.id) {\n+...
2024-04-02T19:06:37