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
vercel/next.js
4e110ef3af176385d669f1a886eb46f1d169bd87
b981ac58e11714d3ad4e7253ac5f41cf2535bcc2
[turbopack] Eliminate many calls to `into` and from and cell involving RcStr (#80076) Adopt the `rcstr!` macro in turbopack Instead of `"foo".into()` call `rcstr!("foo")` while being slightly more annoying to type the macro approach is more readabie and faster as it can leverage constant folding for small strings and...
[ { "path": "Cargo.lock", "patch": "@@ -10180,6 +10180,7 @@ dependencies = [\n \"rustc-hash 2.1.1\",\n \"serde\",\n \"serde_with\",\n+ \"turbo-rcstr\",\n \"turbo-tasks\",\n \"turbo-tasks-build\",\n \"turbo-tasks-fs\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path...
2025-06-04T02:10:05
facebook/react
fd007be0d07e37ccbd38b805842a89faf7a16e04
6bbe3111c08c5c00a37f12aa6c1dc1f086a8b938
Fixtures from ESLint rule Incorporates the fixtures from eslint-plugin-react-hooks using a script, so that we can easily update them in the future. For each fixture we run the compiler with and without hooks validation first so that we know if the fixture is expected to pass — we have some false positives and fals...
[ { "path": "compiler/forget/package.json", "patch": "@@ -49,6 +49,7 @@\n \"@babel/traverse\": \"^7.19.1\",\n \"@testing-library/react\": \"^13.4.0\",\n \"@tsconfig/node16-strictest\": \"^1.0.3\",\n+ \"@types/glob\": \"^8.1.0\",\n \"@types/invariant\": \"^2.2.35\",\n \"@types/jest\": \"...
2023-05-08T19:10:43
nodejs/node
5976985a58a8635b8f1272519020c817f4ccdd1b
78e74e3df95c1d1c200c56ac1e83961bd5f4245f
src: remove misplaced windows code under posix guard in node.cc The V8 WebAssembly trap handler setup for Windows was incorrectly nested within a POSIX conditional compilation block in src/node.cc. This caused the related functions to be effectively non-operational on Windows. The changes involve removing the Windows-...
[ { "path": "src/node.cc", "patch": "@@ -429,7 +429,7 @@ typedef void (*sigaction_cb)(int signo, siginfo_t* info, void* ucontext);\n #endif\n #if NODE_USE_V8_WASM_TRAP_HANDLER\n #if defined(_WIN32)\n-static LONG TrapWebAssemblyOrContinue(EXCEPTION_POINTERS* exception) {\n+static LONG WINAPI TrapWebAssemblyOrC...
2024-04-15T18:56:01
electron/electron
c847229a7ef10e94f9ebf62984e1445c97ffc087
62502b893706f5ddc7c577256c0e298d9aeaf22d
docs: Markdown linting and typo (#35568) * Fix reference definitions should be needed * typo * typo * typo and style * Fix reference definitions should be needed * Fix typo * restore to previous
[ { "path": "docs/experimental.md", "patch": "@@ -20,4 +20,4 @@ happen at an API WG meeting. Things to consider when discussing / nominating:\n * During that time no major bugs / issues should have been caused by the adoption of this feature\n * The API is stable enough and hasn't been heavily impacted by Ch...
2022-09-13T20:49:11
facebook/react
7ac5e9a602347f3b7d26c60a549c483d3bc88bbf
16d053d592673dd5565d85109f259371b23f87e8
Small flowconfig fixes (#26784) - The whole project root is included by default anyway, the include section should be redundant and just misleading. - The generated ignore paths ignore more than intended as they didn't escape the `.` for regex. Test Plan: - wait for CI - tested the ignore pattern change with r...
[ { "path": "scripts/flow/config/flowconfig", "patch": "@@ -18,11 +18,6 @@\n \n %REACT_RENDERER_FLOW_IGNORES%\n \n-[include]\n-./node_modules/\n-./packages/\n-./scripts/\n-\n [libs]\n ./node_modules/fbjs/flow/lib/dev.js\n ./scripts/flow/environment.js", "additions": 0, "deletions": 5, "language": ...
2023-05-08T16:07:48
vercel/next.js
035a12ea8e218a916aedc58f975384f7a6105861
33648de7f41f8822df0e9482a5ae0414c2681b2f
[dynamicIO] Document client component remediations for sync IO (#79787) When you use sync IO in the client in a way that needs to be fixed we currently still just provide you with the explanation for server components. The fixes when sync IO happens in the client are not the same as when they happen in a server compon...
[ { "path": "errors/next-prerender-crypto-client.mdx", "patch": "@@ -0,0 +1,149 @@\n+---\n+title: Cannot access `crypto.getRandomValue()`, `crypto.randomUUID()`, or another web or node crypto API that generates random values synchronously from a Client Component without a fallback UI defined\n+---\n+\n+## Why...
2025-06-03T23:44:51
rust-lang/rust
4803644df98f09d0da1022e85e4820403c785fe1
ba284f468cd2cda48420251efc991758ec13d450
Fix false positive in unused_parens caused by break
[ { "path": "compiler/rustc_lint/src/unused.rs", "patch": "@@ -794,7 +794,10 @@ trait UnusedDelimLint {\n \n ExprKind::Break(_label, None) => return false,\n ExprKind::Break(_label, Some(break_expr)) => {\n- return matches!(break_expr.kind, ExprKind::Block(.....
2026-01-29T09:20:32
nodejs/node
4487e37e70c80958b79a1d825214b0f4bb623fd8
121c8de61c74913563a6d393268bb74017ed29ce
src,permission: throw async errors on async APIs PR-URL: https://github.com/nodejs/node/pull/52730 Refs: https://github.com/nodejs/security-wg/issues/898 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "src/node_dir.cc", "patch": "@@ -367,19 +367,24 @@ static void OpenDir(const FunctionCallbackInfo<Value>& args) {\n \n BufferValue path(isolate, args[0]);\n CHECK_NOT_NULL(*path);\n- THROW_IF_INSUFFICIENT_PERMISSIONS(\n- env, permission::PermissionScope::kFileSystemRead, path.ToStringVie...
2024-04-30T02:19:55
electron/electron
62502b893706f5ddc7c577256c0e298d9aeaf22d
12a7d7eea52409ce02af6d5f51f8208f483f24d2
fix: allow maximizing when window enters tablet mode with WCO (#35617) * fix: Backport CL 3753528 for WCO * Update comment * Update shell/browser/ui/views/win_caption_button_container.cc Co-authored-by: Robo <hop2deep@gmail.com> Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "shell/browser/ui/views/win_caption_button_container.cc", "patch": "@@ -159,10 +159,11 @@ void WinCaptionButtonContainer::UpdateButtons() {\n const bool is_touch = ui::TouchUiController::Get()->touch_ui();\n restore_button_->SetEnabled(!is_touch);\n \n- // The maximize button should only be e...
2022-09-13T20:41:23
facebook/react
6bbe3111c08c5c00a37f12aa6c1dc1f086a8b938
2ddd00dbb1771617565133a01eb61a8c8e1d358d
ValidateUnconditionalHooks pass using dominators See the code comments for more, but the basic idea here is that we use the post dominator tree to find the set of basic blocks which are guaranteed reachable in each function. Those are the only blocks where it is safe to call hooks, and we error for hook calls in a...
[ { "path": "compiler/forget/src/CompilerPipeline.ts", "patch": "@@ -15,6 +15,7 @@ import {\n validateConsistentIdentifiers,\n validateHooksUsage,\n validateTerminalSuccessors,\n+ validateUnconditionalHooks,\n } from \"./HIR\";\n import { Environment, EnvironmentConfig } from \"./HIR/Environment\";\n i...
2023-05-08T15:55:14
vercel/next.js
a74a58721a8f881ae463aa35ac64e734b53aa85f
a9b5f9b64adbc425038f6eb3631de250346332c2
fix React 18 test failures (#80119) Fixes failing assertions related to the forked React 18 tests. [x-ref](https://github.com/vercel/next.js/actions/runs/15417191195/job/43385564776#step:34:533)
[ { "path": "test/development/acceptance/ReactRefreshLogBox.test.ts", "patch": "@@ -267,7 +267,7 @@ describe('ReactRefreshLogBox', () => {\n `export default function FunctionDefault() { throw new Error('no'); }`\n )\n \n- if (isReact18) {\n+ if (isReact18 && isTurbopack) {\n await expect...
2025-06-03T23:00:18
golang/go
89c2f282dc84a9b3842dca375a4635305c86ad9b
43b7e670401401b2e7536b4931df8b29a25994c7
cmd/compile: move []byte->string map key optimization to ssa If we call slicebytetostring immediately (with no intervening writes) before calling map access or delete functions with the resulting string as the key, then we can just use the ptr/len of the slicebytetostring argument as the key. This avoids an allocation...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2795,3 +2795,22 @@\n \t&& isDirectIface(itab)\n \t&& clobber(v)\n \t=> (MakeResult (EqPtr x y) mem)\n+\n+// If we use the result of slicebytetostring in a map lookup operation,\n+// then we don't need to actually do the []byte->strin...
2025-01-06T23:28:22
nodejs/node
4d59a9deda7c624d3341e3ee37452aee960f8816
d2ebaaa4d2015c59289fac00e7edf172f6d68359
module: support ESM detection in the CJS loader This patch: 1. Adds ESM syntax detection to compileFunctionForCJSLoader() for --experimental-detect-module and allow it to emit the warning for how to load ESM when it's used to parse ESM as CJS but detection is not enabled. 2. Moves the ESM detection of --experim...
[ { "path": ".eslintrc.js", "patch": "@@ -58,6 +58,8 @@ module.exports = {\n 'test/es-module/test-esm-example-loader.js',\n 'test/es-module/test-esm-type-flag.js',\n 'test/es-module/test-esm-type-flag-alias.js',\n+ 'test/es-module/test-require-module-detect-entry-point.js',\n+ ...
2024-04-29T20:21:53
electron/electron
12a7d7eea52409ce02af6d5f51f8208f483f24d2
9f97c3e50a11b364f02f57209854bb4000ac1136
fix: remove extra dot in extension (#35618)
[ { "path": "shell/browser/electron_download_manager_delegate.cc", "patch": "@@ -99,14 +99,14 @@ bool GetRegistryDescriptionFromExtension(const std::string& file_ext,\n // Set up a filter for a Save/Open dialog, |ext_desc| as the text descriptions\n // of the |file_ext| types (optional), and (optionally) the ...
2022-09-13T18:47:04
facebook/react
f75cf6fe386ef46cfa6b3fd100a287db31b05a98
407e7b0c620d1bb20ce52ccaa8e8ae555ab3edc4
Fix fbt (again)
[ { "path": "compiler/forget/src/ReactiveScopes/MemoizeFbtOperandsInSameScope.ts", "patch": "@@ -65,20 +65,20 @@ class Transform extends ReactiveFunctionVisitor<void> {\n (value.kind === \"CallExpression\" &&\n this.fbtValues.has(value.callee.identifier.id))\n ) {\n+ const fbtScope = lv...
2023-05-04T22:19:41
vercel/next.js
a9b5f9b64adbc425038f6eb3631de250346332c2
5325afa65adf2497fe78394d66195fb9cbd519cd
chore(turbopack): Fix building local crates with `--all-features` (#80117) This is a prerequisite for using https://github.com/boshen/cargo-shear, which uses `--all-features`. This also avoids some noise in Rust Analyzer, which also uses `--all-features`.
[ { "path": "turbopack/crates/turbo-persistence/src/static_sorted_file.rs", "patch": "@@ -344,7 +344,7 @@ impl StaticSortedFile {\n bail!(\n \"Corrupted file seq:{} block:{} > number of blocks {} (block_offsets: {:x}, \\\n blocks: {:x})\",\n- self.se...
2025-06-03T21:48:57
golang/go
43b7e670401401b2e7536b4931df8b29a25994c7
eab8e987c067ca91ad4ed79b384d8a33494bbf39
cmd/compile: lower x*z + y to FMA if FMA enabled There is a generic opcode for FMA, but we don't use it in rewrite rules. This is maybe because some archs, like WASM and MIPS don't have a late lowering rule for it. Fixes #71204 Intel Alder Lake 12600k (GOAMD64=v3): math: name old time/op new ti...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -202,7 +202,7 @@ func getgFromTLS(s *ssagen.State, r int16) {\n \n func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \tswitch v.Op {\n-\tcase ssa.OpAMD64VFMADD231SD:\n+\tcase ssa.OpAMD64VFMADD231SD, ssa.OpAMD64VFMADD231SS:\n \t\tp := s.Prog(v...
2025-02-02T22:42:43
electron/electron
200153da8e30bad1ffee3fefad03b1fadd6f9a74
71ba841f0af07a341ba3d34030f240cba5582bc0
docs: fix typescript error in code samples (#35641) Fixed typescript error
[ { "path": "docs/fiddles/features/web-serial/main.js", "patch": "@@ -33,12 +33,16 @@ function createWindow () {\n if (permission === 'serial' && details.securityOrigin === 'file:///') {\n return true\n }\n+ \n+ return false\n })\n \n mainWindow.webContents.session.setDevicePermissionH...
2022-09-13T16:38:06
nodejs/node
81a9a972a33aedfddbdbf5da28667a7e22364093
3136fb0c288fdfca0fc1a4e0893fcfdba799bc9a
build: fix typo in node.gyp PR-URL: https://github.com/nodejs/node/pull/52719 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.co...
[ { "path": "node.gyp", "patch": "@@ -197,7 +197,7 @@\n 'src/dataqueue/queue.h',\n 'src/debug_utils.h',\n 'src/debug_utils-inl.h',\n- 'src/embeded_data.h',\n+ 'src/embedded_data.h',\n 'src/encoding_binding.h',\n 'src/env_properties.h',\n 'src/env.h',", "additi...
2024-04-29T11:06:04
facebook/react
783e7fcfa3e354b3be13f5403fc2fd2260db00b4
377c5175f78e47a3f01d323ad6528a696c88b76e
React DevTools 4.27.6 -> 4.27.7 (#26780) List of changes: * DevTools: fix backend activation ([hoxyq](https://github.com/hoxyq) in [#26779](https://github.com/facebook/react/pull/26779)) * fix[dynamic-scripts-injection]: unregister content scripts before registration ([hoxyq](https://github.com/hoxyq) in [#26765]...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.27.6\",\n+ \"version\": \"4.27.7\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j...
2023-05-04T17:22:47
vercel/next.js
0a87d7524624e73ae2adc120d87fba4f4fdf98c0
69765f4d83c724a80cd7cc379ec44be82619b550
[dev-overlay] Inject `getSquashedHydrationErrorDetails` implementation (#80046) Same as with `get*Stack` implementation
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/app-dev-overlay.tsx", "patch": "@@ -72,6 +72,11 @@ function ReplaySsrOnlyErrors({\n return null\n }\n \n+function getSquashedHydrationErrorDetails() {\n+ // We don't squash hydration errors in the App Router.\n+ return null\n+}\n+\n ex...
2025-06-03T18:44:12
electron/electron
ef463b39be2d9f5a536730de57e8827a794f38cf
6ec4c7e563c4bf59abb684e593bc6c0e0ee921c6
docs: Use inline image link in faq.md (#35413) * Use absolute URL in faq.md image link The relative link is rendered relative to the host domain, which works fine when viewing it on Github, but since you also use the same generated HTML in your doc site, the link is broken. See here: https://www.electronjs.org/docs...
[ { "path": "docs/faq.md", "patch": "@@ -135,7 +135,7 @@ is only available in renderer processes.\n \n If [sub-pixel anti-aliasing](https://alienryderflex.com/sub_pixel/) is deactivated, then fonts on LCD screens can look blurry. Example:\n \n-![subpixel rendering example]\n+![Subpixel rendering example](imag...
2022-09-12T23:09:12
nodejs/node
3136fb0c288fdfca0fc1a4e0893fcfdba799bc9a
7c3dce0e4f296d863a3f9e4cdbadaee8b0280f79
lib: replace MessageEvent with undici's undici's MessageEvent is better tested and has a complete WebIDL implementation for validation. Not only this, but it's also used in Node's current WebSocket implementation. There are a large number of webidl-related issues in the current MessageEvent, such as not implementing ...
[ { "path": "lib/.eslintrc.yaml", "patch": "@@ -67,7 +67,7 @@ rules:\n - name: MessageChannel\n message: Use `const { MessageChannel } = require('internal/worker/io');` instead of the global.\n - name: MessageEvent\n- message: Use `const { MessageEvent } = require('internal/worker/io');` in...
2024-04-29T11:05:57
golang/go
a7e331e67105f1a8cc0236b7f3b1e6a3570dda27
ca4649747a0057ea59c34c4126ab3eed6086dd88
cmd/compile: implement signed loads from read-only memory In addition to unsigned loads which already exist. This helps code that does switches on strings to constant-fold the switch away when the string being switched on is constant. Fixes #71699 Change-Id: If3051af0f7255d2a573da6f96b153a987a7f159d Reviewed-on: ht...
[ { "path": "src/cmd/compile/internal/ssa/_gen/386.rules", "patch": "@@ -940,3 +940,5 @@\n (MOVBload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read8(sym, int64(off)))])\n (MOVWload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read16(sym, int64(off), config.ctxt.Arch.ByteOrder))])\n ...
2025-02-13T16:04:03
facebook/react
377c5175f78e47a3f01d323ad6528a696c88b76e
aef7ce5547c9489dc48e31f69b002cd17206e0cb
DevTools: fix backend activation (#26779) ## Summary We have a case: 1. Open components tab 2. Close Chrome / Firefox devtools window completely 3. Reopen browser devtools panel 4. Open components tab Currently, in version 4.27.6, we cannot load the components tree. This PR contains two changes: - non-func...
[ { "path": "packages/react-devtools-extensions/src/backendManager.js", "patch": "@@ -61,6 +61,13 @@ function setup(hook: ?DevToolsHook) {\n hook.renderers.forEach(renderer => {\n registerRenderer(renderer);\n });\n+\n+ // Activate and remove from required all present backends, registered within the ...
2023-05-04T16:34:57
vercel/next.js
0329a7e2947c170c1fd393d34fd944e8910d873c
7a0db3a159e6c25424f6e784ac973cb6e044ad70
fix(turbopack): Allow google font fetch errors to propagate when in production (#79999) ## Fail Google Fonts in Production Builds When Fetch Fails ### What? This PR changes the behavior of Google Fonts in Next.js to properly fail production builds when font fetching fails, while still allowing development to continue...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -161,7 +161,7 @@ pub async fn get_client_resolve_options_context(\n execution_context: Vc<ExecutionContext>,\n ) -> Result<Vc<ResolveOptionsContext>> {\n let next_client_import_map =\n- get_next_client_import_map(*project_p...
2025-06-03T17:45:52
facebook/react
aef7ce5547c9489dc48e31f69b002cd17206e0cb
c10010a6a00911fe99452bc561dd47c3e15f4eb8
[Flight] Progressively Enhanced Server Actions (#26774) This automatically exposes `$$FORM_ACTIONS` on Server References coming from Flight. So that when they're used in a form action, we can encode the ID for the server reference as a hidden field or as part of the name of a button. If the Server Action is a bo...
[ { "path": "fixtures/flight/server/global.js", "patch": "@@ -95,6 +95,8 @@ app.all('/', async function (req, res, next) {\n if (req.get('rsc-action')) {\n proxiedHeaders['Content-type'] = req.get('Content-type');\n proxiedHeaders['rsc-action'] = req.get('rsc-action');\n+ } else if (req.get('Conten...
2023-05-03T22:36:57
electron/electron
b3a744db8a1aa85f27f4467ae2eb1a8c2eff0233
c14f52aeb708a4860ddc9c207788e4c801e58103
fix: potential "Object has been destroyed" error in BrowserWindow.getFocusedWindow (#35520)
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -72,9 +72,8 @@ BrowserWindow.getAllWindows = () => {\n \n BrowserWindow.getFocusedWindow = () => {\n for (const window of BrowserWindow.getAllWindows()) {\n- const hasWC = window.webContents && !window.webContents.isDestroyed();\n- if (!win...
2022-09-12T21:46:05
golang/go
ca4649747a0057ea59c34c4126ab3eed6086dd88
769274bf14f318f186ae1f89fd0fccb18241aaee
runtime: fix usleep on s390x/linux The timespec argument takes the remainder in nanoseconds, not microseconds. Convert the remaining time to nsec. Fixes #71714 Change-Id: I36cbbe3a088830c5e3afcc9516ef42e96ee21268 Reviewed-on: https://go-review.googlesource.com/c/go/+/648915 TryBot-Result: Gopher Robot <gobot@golang....
[ { "path": "src/runtime/sys_linux_s390x.s", "patch": "@@ -112,9 +112,10 @@ TEXT runtime·usleep(SB),NOSPLIT,$16-4\n \tMOVW\t$1000000, R3\n \tDIVD\tR3, R2\n \tMOVD\tR2, 8(R15)\n-\tMOVW\t$1000, R3\n-\tMULLD\tR2, R3\n+\tMULLD\tR2, R3\t\t// Convert sec to usec and subtract\n \tSUB\tR3, R4\n+\tMOVW\t$1000, R3\n+\t...
2025-02-12T14:45:34
nodejs/node
7c3dce0e4f296d863a3f9e4cdbadaee8b0280f79
2bdd6708827ae5085b22795dcfb0b2060c8c3b0a
test: mark `test-error-serdes` as flaky PR-URL: https://github.com/nodejs/node/pull/52739 Refs: https://github.com/nodejs/node/issues/52630 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "test/parallel/parallel.status", "patch": "@@ -15,6 +15,9 @@ test-worker-arraybuffer-zerofill: PASS, FLAKY\n # https://github.com/nodejs/node/issues/51862\n test-fs-read-stream-concurrent-reads: PASS, FLAKY\n \n+# https://github.com/nodejs/node/issues/52630\n+test-error-serdes: PASS, FLAKY\n+\n [$...
2024-04-28T23:10:30
vercel/next.js
7a0db3a159e6c25424f6e784ac973cb6e044ad70
0b0d03a07f14ce64d7aeed9c4ef44851d34eede8
[testmode] Fix types of `wrapRequestHandler` (#80055) Was previously shadowed because we used an uncast `require` which results in `any`. Fixes ``` Argument of type '<T>(request: NextRequestHint, fn: () => T) => T' is not assignable to parameter of type '(req: Request, fn: () => T) => T'. Types of parameters '...
[ { "path": "packages/next/src/experimental/testmode/server-edge.ts", "patch": "@@ -5,8 +5,8 @@ export function interceptTestApis(): () => void {\n return interceptFetch(global.fetch)\n }\n \n-export function wrapRequestHandler<T>(\n- handler: (req: Request, fn: () => T) => T\n-): (req: Request, fn: () => ...
2025-06-03T17:36:10
facebook/react
f533cee8cb4fb54c170230741eea7902cb41ee06
2c1117a8d008e34eb77eaaf7b8ef315a38644735
Add useFormStatus to Flight fixture (#26773)
[ { "path": "fixtures/flight/src/Button.js", "patch": "@@ -1,29 +1,30 @@\n 'use client';\n \n import * as React from 'react';\n-import {flushSync} from 'react-dom';\n+import {experimental_useFormStatus as useFormStatus} from 'react-dom';\n import ErrorBoundary from './ErrorBoundary.js';\n \n-export default fu...
2023-05-03T19:29:32
golang/go
769274bf14f318f186ae1f89fd0fccb18241aaee
aa8d4df9d9b8659abc7bdc1485c11db515ed1479
cmd/go: do not apply kill timeout to go test with -bench The testing package already does this. go test should do the same thing. Fixes: #69181 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-windows-amd64-longtest Change-Id: I942bd09c5832b48d498a2eb1f1500e1d294d0a2c Reviewed-on: https://go-revie...
[ { "path": "src/cmd/go/internal/test/test.go", "patch": "@@ -802,9 +802,9 @@ func runTest(ctx context.Context, cmd *base.Command, args []string) {\n \t// to that timeout plus one minute. This is a backup alarm in case\n \t// the test wedges with a goroutine spinning and its background\n \t// timer does not g...
2025-02-10T21:06:02
electron/electron
730d9181b3de8561c1d87d82ccb923b1859122ae
b0036ea43afda71e33c1450a0dc2c96c1f8f4ce4
fix: ensure history navigations are sandboxed-iframe-aware (#35420)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1380,11 +1380,6 @@ bool WebContents::HandleContextMenu(content::RenderFrameHost& render_frame_host,\n return true;\n }\n \n-bool WebContents::OnGoToEntryOffset(int offset) {\n- GoToOffset(offset);\n- return false;\n-}\n-\n void We...
2022-09-09T00:08:56
nodejs/node
2bdd6708827ae5085b22795dcfb0b2060c8c3b0a
eee9db8b8ed2fd7060127e5b996b8262c2ae16a7
http2: fix excessive CPU usage when using `allowHTTP1=true` When Http2SecureServer is configured with `allowHTTP1=true`, it calls `setupConnectionsTracking` to start monitoring for idle HTTP1 connections. `setupConnectionsTracking` expects to have `this.connectionsCheckingInterval` property defined, but it does not ex...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -3185,6 +3185,7 @@ class Http2SecureServer extends TLSServer {\n if (options.allowHTTP1 === true) {\n this.headersTimeout = 60_000; // Minimum between 60 seconds or requestTimeout\n this.requestTimeout = 300_000; // 5 minutes\n+ this....
2024-04-28T19:18:07
vercel/next.js
3b3d5eeea4efdade5740940c9ef82d8481b296ff
750eae084a1dfe923c84ba1e6cdc38bd9b4f8776
[dev-tools] add restart dev server button to error overlay (#80060) ### Why? When the user reloads on a specific error, and that error persists, we show the restart server button as an option. This is because some errors are recoverable by restarting the server and rebuilding the app. https://github.com/user-attach...
[ { "path": "packages/next/src/build/define-env.ts", "patch": "@@ -286,6 +286,8 @@ export function getDefineEnv({\n : {}),\n 'process.env.__NEXT_DEVTOOL_SEGMENT_EXPLORER':\n config.experimental.devtoolSegmentExplorer ?? false,\n+ 'process.env.__NEXT_TURBOPACK_PERSISTENT_CACHE':\n+ conf...
2025-06-03T17:22:54
facebook/react
407e7b0c620d1bb20ce52ccaa8e8ae555ab3edc4
7e990419c1314252ba78d2b0fa14c8dddaab72d4
[snap runner] debug mode
[ { "path": "compiler/forget/packages/snap/src/compiler-worker.ts", "patch": "@@ -28,9 +28,11 @@ export type TestResult = {\n \n export async function compile(\n compilerPath: string,\n+ loggerPath: string,\n fixturesDir: string,\n fixture: string,\n- compilerVersion: number\n+ compilerVersion: numbe...
2023-05-03T18:50:27
golang/go
aa8d4df9d9b8659abc7bdc1485c11db515ed1479
e4b12eb8af28d3f505a5487b76dbfd4b1a37c0da
go/types: propagate *ast.LabeledStmt in blockBranches properly Fixes #70974 Change-Id: I330c0ae53dcbcdb173ab514ee94f2ca53944df09 GitHub-Last-Rev: 7c2b740da6d6e94ac8787f04ad8942f3776ac56c GitHub-Pull-Request: golang/go#70976 Reviewed-on: https://go-review.googlesource.com/c/go/+/638257 Reviewed-by: Michael Knyszek <mk...
[ { "path": "src/cmd/compile/internal/types2/labels.go", "patch": "@@ -112,8 +112,8 @@ func (check *Checker) blockBranches(all *Scope, parent *block, lstmt *syntax.Lab\n \t\treturn varDeclPos.IsKnown() && slices.Contains(badJumps, jmp)\n \t}\n \n-\tvar stmtBranches func(syntax.Stmt)\n-\tstmtBranches = func(s ...
2024-12-24T07:23:13
nodejs/node
40ef9d541ed79470977f90eb445c291b95ab75a0
02388eb3577fc8ada5b537a5db4a458d8cdda4d9
deps: V8: cherry-pick 500de8bd371b Original commit message: [gcc] Fix gcc / bazel build Add <iomanip> includes to fix gcc/blaze builds. Also ignore a dangling pointer warning introduced in newer gcc, since it has false positives on some uses of scope classes. Change-Id: Ib86a2437ffc34b5497a5b861...
[ { "path": "common.gypi", "patch": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n...
2024-04-26T22:32:46
facebook/react
7e990419c1314252ba78d2b0fa14c8dddaab72d4
253b05f28d02c2403b3f8210ee2b20182a054253
[snap tester] Handle unexpected errors by failing fixture
[ { "path": "compiler/forget/packages/snap/src/compiler-worker.ts", "patch": "@@ -23,6 +23,7 @@ export type TestResult = {\n outputPath: string;\n actual: string | null; // null == input did not exist\n expected: string | null; // null == output did not exist\n+ unexpectedError: string | null;\n };\n \...
2023-05-03T18:50:25
electron/electron
b0036ea43afda71e33c1450a0dc2c96c1f8f4ce4
a0dbae72c8b2d192835e01798dd4241e67a5f44f
chore: bump chromium to 107.0.5286.0 (main) (#35590) * chore: bump chromium in DEPS to 107.0.5286.0 * 3866335: media: Rename KeySystemProperties to KeySystemInfo - file renaming https://chromium-review.googlesource.com/c/chromium/src/+/3866335 * 3864686: [PA] Introduce *Scan buildflag https://chromium-revi...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '107.0.5274.0',\n+ '107.0.5286.0',\n 'node_version':\n 'v16.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2022-09-08T23:23:08
vercel/next.js
bc4b72df8eab4451391c8b49a9d684fd533989cc
81ab1ffc14a4454dae13dac4318bec2aab9c2f2c
[devtool] fix explorer flag consuming and style (#80110)
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -369,6 +369,8 @@ export async function handler(\n enableTainting: nextConfig.experimental.taint,\n // @ts-expect-error fix issue with readonly regex object type\n htmlLimitedBots: nextConfig.htmlLimitedBots...
2025-06-03T16:40:59
golang/go
f7becfc7f1e514ee658eae3997ae09cab9edb123
fdaac84480b02e600660d0ca7c15339138807107
go/types: use documented version of gotypesalias GODEBUG This way the code would panic, in case it does not exist. Change-Id: I95de7460c0386afdc5d3f6a847e9fcbd22446010 GitHub-Last-Rev: 9ae0502a091feed45169f5c1a7e2761f8ffa2841 GitHub-Pull-Request: golang/go#70845 Reviewed-on: https://go-review.googlesource.com/c/go/+/...
[ { "path": "src/go/types/eval_test.go", "patch": "@@ -208,7 +208,7 @@ func TestEvalPos(t *testing.T) {\n }\n \n // gotypesalias controls the use of Alias types.\n-var gotypesalias = godebug.New(\"#gotypesalias\")\n+var gotypesalias = godebug.New(\"gotypesalias\")\n \n // split splits string s at the first oc...
2024-12-14T11:03:27
nodejs/node
2334d5cda8f07cb0800351cd7d12c599888d5730
172820342be56cfa1a7b8fcd3f47d184e120d66e
build,tools,node-api: fix building node-api tests for Windows Debug PR-URL: https://github.com/nodejs/node/pull/52632 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Cheng Zhao <zcbenz@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gma...
[ { "path": "tools/build_addons.py", "patch": "@@ -38,7 +38,7 @@ def rebuild_addons(args):\n \n # Copy node.lib.\n if args.is_win:\n- node_lib_dir = os.path.join(headers_dir, 'Release')\n+ node_lib_dir = os.path.join(headers_dir, args.config)\n os.makedirs(node_lib_dir)\n shutil.copy2(os.pat...
2024-04-26T11:36:13
facebook/react
8a25302c668d6f9a24f6680fb4947e9b388bb7d9
2c2476834a7c739ca239750b73f74aa1df144a93
fix[dynamic-scripts-injection]: unregister content scripts before registration (#26765) ## Summary Fixes #26756. DevTools is failing to inject `__REACT_DEVTOOLS_GLOBAL_HOOK__` hook in incognito mode. This is not happening straight-forward, but if extension is toggled on and off, the next time I try to open it I ...
[ { "path": "packages/react-devtools-extensions/src/background.js", "patch": "@@ -6,38 +6,47 @@ import {IS_FIREFOX, EXTENSION_CONTAINED_VERSIONS} from './utils';\n \n const ports = {};\n \n-if (!IS_FIREFOX) {\n- // equivalent logic for Firefox is in prepareInjection.js\n- // Manifest V3 method of injecting ...
2023-05-03T16:27:39
electron/electron
a0c20fef968ae86fc398ddaccee802ec55e56041
34cb360730000e2f046921ee0bd90f5a50987253
docs: fix misspelling in fuses (#35609)
[ { "path": "docs/tutorial/fuses.md", "patch": "@@ -52,7 +52,7 @@ For more information on how to use asar integrity validation please read the [As\n **Default:** Disabled\n **@electron/fuses:** `FuseV1Options.OnlyLoadAppFromAsar`\n \n-The onlyLoadAppFromAsar fuse changes the search system that Electron uses t...
2022-09-08T22:33:58
vercel/next.js
81ab1ffc14a4454dae13dac4318bec2aab9c2f2c
d14df6cc29b4b765952ac8adf0963d6854b79531
[dev-overlay] Inject `isRecoverableError` implementation (#80003) Same as with `get*Stack` implementation
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/hot-reloader-client.tsx", "patch": "@@ -45,6 +45,7 @@ import reportHmrLatency from '../utils/report-hmr-latency'\n import { TurbopackHmr } from '../utils/turbopack-hot-reloader-common'\n import { NEXT_HMR_REFRESH_HASH_COOKIE } from '../../...
2025-06-03T15:24:20
rust-lang/rust
3e6b27514360856d4b4b616983766809a885258d
0828abf70b02373b67f4e693a5291b2561b17e8f
fix: complete inferred type in static Example --- ```rust struct Foo<T>(T); static FOO: $0 = Foo(2); ``` **Before this PR** ```text ... bt u32 u32 ... ``` **After this PR** ```text ... bt u32 u32 it Foo<i32> ... ```
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/context/analysis.rs", "patch": "@@ -1250,6 +1250,11 @@ fn classify_name_ref<'db>(\n let original = ast::Const::cast(name.syntax().parent()?)?;\n TypeLocation::TypeAscription(TypeAscriptionTarget::Const(origi...
2026-01-29T05:48:07
golang/go
f91ac1b61eb7c18773ff01be58a39f49de436585
c4136a433c28eb12abad777f8e74087ecf6e21f4
crypto/internal/fips140test: fix TestACVP env vars Fix TestACVP environment construction to include both ACVP_WRAPPER and GODEBUG. Previously we were accidentally overwriting the cmd.Env, stomping the ACVP_WRAPPER env var and replacing it with just the GODEBUG env var. This in turn makes the tests start to fail when ...
[ { "path": "src/crypto/internal/fips140test/acvp_test.go", "patch": "@@ -2132,8 +2132,10 @@ func TestACVP(t *testing.T) {\n \t}\n \tcmd = testenv.Command(t, goTool, args...)\n \tcmd.Dir = dataDir\n-\tcmd.Env = append(os.Environ(), \"ACVP_WRAPPER=1\")\n-\tcmd.Env = append(os.Environ(), \"GODEBUG=fips140=on\")...
2025-02-13T15:31:53
nodejs/node
172820342be56cfa1a7b8fcd3f47d184e120d66e
7b2e3b8cfac87343f5104bc0ad9b1c04f095ba32
vm: fix ASCII-betical order PR-URL: https://github.com/nodejs/node/pull/52686 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "lib/internal/vm/module.js", "patch": "@@ -12,8 +12,8 @@ const {\n ObjectGetPrototypeOf,\n ObjectPrototypeHasOwnProperty,\n ObjectSetPrototypeOf,\n- PromiseResolve,\n PromisePrototypeThen,\n+ PromiseResolve,\n ReflectApply,\n SafePromiseAllReturnArrayLike,\n Symbol,", "addition...
2024-04-25T19:14:16
facebook/react
9a12e8ba58a14288359036b130c1e86ae579da84
8292c65d8456fa75ab425c2e2754417780581cea
Support OptionalCallExpression as LHS of LogicalExpression A common idiom is to map over some possibly-missing list of items from a data payload and fall back to an empty array: ```javascript const renderedItems = data?.items?.map(renderItem) ?? []; ``` The way we were lowering OptionalCallExpression meant t...
[ { "path": "compiler/forget/src/HIR/BuildHIR.ts", "patch": "@@ -1093,34 +1093,72 @@ function lowerExpression(\n const loc = expr.node.loc ?? GeneratedSource;\n const place = buildTemporaryPlace(builder, loc);\n const continuationBlock = builder.reserve(builder.currentBlockKind());\n+ c...
2023-05-02T22:00:11
electron/electron
4fb4167b8b42276710b658a3c62f0ebe9fffe446
17d501616368e2a0c709cbc2174de38e1781e8c3
fix: Set background for WCO container (#35569) * fix: Set background for WCO container * Add background when invalidating as well
[ { "path": "shell/browser/ui/views/win_caption_button_container.cc", "patch": "@@ -14,6 +14,7 @@\n #include \"shell/browser/ui/views/win_frame_view.h\"\n #include \"ui/base/l10n/l10n_util.h\"\n #include \"ui/strings/grit/ui_strings.h\"\n+#include \"ui/views/background.h\"\n #include \"ui/views/layout/flex_la...
2022-09-08T13:11:51
vercel/next.js
602a5a63fef85af888dd17cfcad7aa9ff10a9c08
447f20e5efaebb35b5e59f6147f288730f149d74
[dev-overlay] Fix dark‐mode styling for `<option>` in Preferences dropdowns (#80025) When Preferences is in dark mode, `<option>` items in the `<select>` components were using the browser’s native white panel with white text, making them unreadable. This change explicitly adds CSS styles to the `<option>` items so th...
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/dev-tools-indicator/dev-tools-info/user-preferences.tsx", "patch": "@@ -270,6 +270,11 @@ export const DEV_TOOLS_INFO_USER_PREFERENCES_STYLES = css`\n select {\n all: unset;\n }\n+\n+ option {\n+ color...
2025-06-03T15:06:24
rust-lang/rust
f5b53682a1b14b97b13f335110d8ad55f6c7fb9f
ba284f468cd2cda48420251efc991758ec13d450
Fix grammar
[ { "path": "library/std/src/env.rs", "patch": "@@ -728,7 +728,7 @@ pub fn temp_dir() -> PathBuf {\n ///\n /// You expected to safely execute the current executable, but you're\n /// instead executing something completely different. The code you\n-/// just executed run with your privileges.\n+/// just execute...
2026-01-29T04:00:39
golang/go
c4136a433c28eb12abad777f8e74087ecf6e21f4
1eb4c0dcb125d27e1a4296ae136f75ac08c3b9c5
runtime/debug: document DefaultGODEBUG as a BuildSetting Fixes #66465 Change-Id: I60c017ddba29fa5b452b665d8521cd6c8e20438c Reviewed-on: https://go-review.googlesource.com/c/go/+/597979 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Jorropo <jorropo.pgm@gmail.com...
[ { "path": "src/runtime/debug/mod.go", "patch": "@@ -77,6 +77,7 @@ type Module struct {\n // - CGO_CPPFLAGS: the effective CGO_CPPFLAGS environment variable\n // - CGO_CXXFLAGS: the effective CGO_CXXFLAGS environment variable\n // - CGO_LDFLAGS: the effective CGO_LDFLAGS environment variable\n+// - ...
2024-07-12T19:56:19
facebook/react
dd6a9d6a03a04ed21319da90c3c0967b53d7f738
bfb84eed3b4c863474e0b2fa1d5dde3c638ec470
Dont memoize hook calls in logical expressions Fix the previous bug — this was a simple oversight, where FlattenScopesWithHooks overrode `visitValue()` but failed to call `traverseValue()`. This meant that when we reached compound expressions such as LogicalExpressions that we didn't traverse into their nested val...
[ { "path": "compiler/forget/src/ReactiveScopes/FlattenScopesWithHooks.ts", "patch": "@@ -56,6 +56,7 @@ class Transform extends ReactiveFunctionTransform<State> {\n value: ReactiveValue,\n state: State\n ): void {\n+ this.traverseValue(id, value, state);\n if (\n value.kind === \"CallEx...
2023-05-02T18:01:37
nodejs/node
c29d53c5cfc63c5a876084e788d70c9e87bed880
d5c7ffd7b6115d98363be6e7ecea584f1611f303
build: fix headers install for shared mode on Win PR-URL: https://github.com/nodejs/node/pull/52442 Reviewed-By: Michael Dawson <midawson@redhat.com>
[ { "path": "vcbuild.bat", "patch": "@@ -434,12 +434,28 @@ if defined dll (\n copy /Y libnode.dll %TARGET_NAME%\\ > nul\n if errorlevel 1 echo Cannot copy libnode.dll && goto package_error\n \n+ copy /Y libnode.lib %TARGET_NAME%\\ > nul\n+ if errorlevel 1 echo Cannot copy libnode.lib && goto package_err...
2024-03-30T17:14:48
electron/electron
e3efa16415ac090b38bd87d6b509ccecc90cefa0
3a6d6ff0083408588af10a8931f881d7ee134622
fix: session.getBlobData never resolves with blob sizes > 65536 (#35277) * fix: session.getBlobData never resolves with blob sizes > 65536 (#34398) * Add unit test case for session.getBlobData Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "shell/browser/api/electron_api_data_pipe_holder.cc", "patch": "@@ -86,8 +86,11 @@ class DataPipeReader {\n if (result == MOJO_RESULT_OK) { // success\n remaining_size_ -= length;\n head_ += length;\n- if (remaining_size_ == 0)\n+ if (remaining_size_ == 0) {\n On...
2022-09-07T21:47:06
rust-lang/rust
b235cc22acdde9be7a25c3b5828e9c5863a0b54f
873d4682c7d285540b8f28bfe637006cef8918a6
fix accidental type variable resolution in array coercion
[ { "path": "compiler/rustc_hir_typeck/src/coercion.rs", "patch": "@@ -1365,6 +1365,7 @@ pub fn can_coerce<'tcx>(\n /// - WARNING: I don't believe this final type is guaranteed to be\n /// related to your initial `expected_ty` in any particular way,\n /// although it will typically be a subtype, so ...
2025-08-07T11:41:57
vercel/next.js
447f20e5efaebb35b5e59f6147f288730f149d74
6d8bcd6255e805baf534c08f4f026879d82dd9fe
[dev-tools] Re-focus previous item after closing sub menu (#80099) This PR fixes a small bug with the menu keyboard interactions. Namely, if you open a sub-menu and close it, visually the correct item is highlighted but does not respond when pressing Enter. The bug is visible here on this video: https://github.com...
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/dev-tools-indicator/dev-tools-indicator.tsx", "patch": "@@ -219,18 +219,21 @@ function DevToolsPopover({\n dispatch({ type: ACTION_ERROR_OVERLAY_TOGGLE })\n }\n \n- function openRootMenu() {\n- setOpen((prevOpen)...
2025-06-03T14:43:17
facebook/react
bfb84eed3b4c863474e0b2fa1d5dde3c638ec470
c0b011935643645f29f1248aae7fc1238d636481
Repro for memoized hook within logical expression Repro of a bug in which we incorrect memoize hook calls that are inside logical expressions (though the bug could occur for ternaries, optional calls, and sequence expressions too).
[ { "path": "compiler/forget/src/__tests__/fixtures/compiler/hook-inside-logical-expression.expect.md", "patch": "@@ -0,0 +1,32 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const user = useFragment(graphql`...`, props.user) ?? {};\n+ return user.name;\n+}\n+\n+```\n+\n+## Code\n+\n+`...
2023-05-02T17:47:48
golang/go
1eb4c0dcb125d27e1a4296ae136f75ac08c3b9c5
8659ad904966dfe809925c980ac11e7f98ac61aa
cmd/dist: test GOFIPS140=latest rather than just the GODEBUG GOFIPS140=latest turns on the GODEBUG by default, and it's otherwise untested. Change-Id: I6a6a4656ff7ad313ce2c61ee4144ad2858bd148c Reviewed-on: https://go-review.googlesource.com/c/go/+/648819 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -712,9 +712,9 @@ func (t *tester) registerTests() {\n \t// Check that all crypto packages compile (and test correctly, in longmode) with fips.\n \tif t.fipsSupported() {\n \t\t// Test standard crypto packages with fips140=on.\n-\t\tt.registerTest(\"GODEBUG=fips...
2025-02-12T11:37:52
nodejs/node
fa62544a3e268f9725876c5ab5c2e9867f1c3100
d40d21c6b41d1f9d1c25a3bac06c5183d3b22798
test: fix backtick usage in docs PR-URL: https://github.com/nodejs/node/pull/52643 Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "test/parallel/test-cli-node-options-docs.js", "patch": "@@ -105,11 +105,11 @@ for (const [, envVar, config] of nodeOptionsCC.matchAll(addOptionRE)) {\n assert(false, `Should have option ${envVar} in NODE_OPTIONS documented`);\n }\n \n- if (isInNodeOption && hasTrueAsDefaultValue && new Reg...
2024-04-24T18:56:49
rust-lang/rust
a42bbe697f24adbb3683ea0479c9b78a04a50e2f
38a60a63079923034699045ff27d1ec14c9d4c75
Fix some typos of "definition"
[ { "path": "compiler/rustc_resolve/src/build_reduced_graph.rs", "patch": "@@ -60,7 +60,7 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {\n }\n }\n \n- /// Create a name definitinon from the given components, and put it into the local module.\n+ /// Create a name definition from the given component...
2026-01-29T02:10:58
electron/electron
c16baa063a404c9afefe452ef88a28cfa7cc2241
87145c393c08203e6e18f0615a13baff59fb3e30
docs: fix missing includes in code example (#35479)
[ { "path": "docs/tutorial/tutorial-3-preload.md", "patch": "@@ -185,7 +185,8 @@ loading the HTML file so that the handler is guaranteed to be ready before\n you send out the `invoke` call from the renderer.\n \n ```js {1,11} title=\"main.js\"\n-const { ipcMain } = require('electron')\n+const { app, BrowserWi...
2022-09-07T13:37:29
vercel/next.js
6d8bcd6255e805baf534c08f4f026879d82dd9fe
4172a4f4cc0ca2178711e9bf06d8e76630dc9173
[dev-overlay] Inject `get*Stack` implementation (#79789) The stitched-errors module will live in a different layer than the dev-overlay. In that future we need to pass the `get*Stack` implementations to the dev-overlay. Right now it's not meaningful but makes future diffs smaller.
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/hot-reloader-client.tsx", "patch": "@@ -44,6 +44,7 @@ import type { DevIndicatorServerState } from '../../../../server/dev/dev-indicat\n import reportHmrLatency from '../utils/report-hmr-latency'\n import { TurbopackHmr } from '../utils/tu...
2025-06-03T14:27:05
facebook/react
67f4fb02130b1fe1856289e3b66bb0b8cca57ff7
8ea96ef84d8f08ed1846dec9e8ed20d2225db0d3
Allow forms to skip hydration of hidden inputs (#26735) This allows us to emit extra ephemeral data that will only be used on server rendered forms. First I refactored the shouldSkip functions to now just do that work inside the canHydrate methods. This makes the Config bindings a little less surface area but it...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -89,6 +89,7 @@ import {\n enableHostSingletons,\n enableTrustedTypesIntegration,\n diffInCommitPhase,\n+ enableFormActions,\n } from 'shared/ReactFeatureFlags';\n import {\n HostComponent,\n@@ -1038,160 +1039,18...
2023-05-01T19:35:57
golang/go
679cd8e7798db593d0973519f6d3ee7ea7659142
fb5f78a14f71f043604826067d1f224e1e90a2f5
reflect, internal/abi: speed up TypeFor[T] goos: linux goarch: amd64 pkg: reflect cpu: AMD Ryzen 5 4600G with Radeon Graphics │ /tmp/before │ /tmp/after │ │ sec/op │ sec/op vs base │ TypeForString-12 2.091n ± 1% 1.174n ± 1% ...
[ { "path": "src/internal/abi/type.go", "patch": "@@ -187,11 +187,7 @@ func TypeOf(a any) *Type {\n \n // TypeFor returns the abi.Type for a type parameter.\n func TypeFor[T any]() *Type {\n-\tvar v T\n-\tif t := TypeOf(v); t != nil {\n-\t\treturn t // optimize for T being a non-interface kind\n-\t}\n-\tretur...
2025-02-12T07:16:32
rust-lang/rust
99591e6d427568ddfee8212ebe12d4300c111f16
9283d592deb2887311b9fa95027fd78c2172e554
Fix -Zmir-enable-passes to detect unregistered enum names
[ { "path": "compiler/rustc_mir_transform/src/lib.rs", "patch": "@@ -91,20 +91,32 @@ macro_rules! declare_passes {\n )+\n )*\n \n- static PASS_NAMES: LazyLock<FxIndexSet<&str>> = LazyLock::new(|| [\n+ static PASS_NAMES: LazyLock<FxIndexSet<&str>> = LazyLock::new(|| {\n+ ...
2026-01-24T14:44:31
electron/electron
7d89cb1bd4ef0d15429d66a8ee34d7df98e32e73
08ccc815748fcc55b319c7ee73ae90202bc44fa0
chore: remove no-op force-paint for hidden windows (#35532) * chore: remove no-op force-paint for hidden windows * fix build
[ { "path": "shell/browser/api/electron_api_browser_window.cc", "patch": "@@ -158,17 +158,6 @@ void BrowserWindow::RenderViewHostChanged(content::RenderViewHost* old_host,\n new_host->GetWidget()->AddInputEventObserver(this);\n }\n \n-void BrowserWindow::DidFirstVisuallyNonEmptyPaint() {\n- if (window()-...
2022-09-07T09:48:59
facebook/react
86b0e91998a04b22bb54a95d54f4a7632efa902f
b12bea62d9cfd9a925f28cb2c93daeda3865a64e
Gate DevTools test to fix CI (#26742) This test started failing recently in older versions of React because the Scheduler priority inside a microtask is Normal instead of Immediate. This is expected because microtasks are not Scheduler tasks; it's an implementation detail. I gated the test to only run in v17 bec...
[ { "path": "packages/react-devtools-shared/src/__tests__/profilingCache-test.js", "patch": "@@ -938,8 +938,10 @@ describe('ProfilingCache', () => {\n }\n });\n \n- // @reactVersion >= 18.0\n+ // @reactVersion = 17.0\n it('should handle unexpectedly shallow suspense trees', () => {\n+ // This tes...
2023-04-29T15:14:16
vercel/next.js
fdc82f5c32b1ca0d723e682ba852ad0a0c8c1477
6d7523a58b12f9c36c2c07d86c2a0a744d18b9ef
Remove obsolete `@ts-expect-error` (#80065) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Im...
[ { "path": "packages/next/src/client/image-component.tsx", "patch": "@@ -314,7 +314,7 @@ function ImagePreload({\n isAppRouter: boolean\n imgAttributes: ImgProps\n }) {\n- const opts = {\n+ const opts: ReactDOM.PreloadOptions = {\n as: 'image',\n imageSrcSet: imgAttributes.srcSet,\n imageSi...
2025-06-03T12:53:35
golang/go
024c900b43e4531576e726ef1cdb1cc119e64203
127288b4c6527e92ac788d32ece96ef67211b2c8
cmd/go: clarify vcs suffix to repo mapping For #71635 Change-Id: I12ec2a810cfcaf2565b0d9c518b0921ec54e9f12 Reviewed-on: https://go-review.googlesource.com/c/go/+/648475 Reviewed-by: Michael Matloob <matloob@golang.org> Auto-Submit: Sam Thanawalla <samthanawalla@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@l...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2924,12 +2924,12 @@\n //\timport \"example.org/user/foo.hg\"\n //\n // denotes the root directory of the Mercurial repository at\n-// example.org/user/foo or foo.hg, and\n+// example.org/user/foo, and\n //\n //\timport \"example.org/repo.git/foo/bar\"\n //\n ...
2025-02-11T16:30:22
nodejs/node
d40d21c6b41d1f9d1c25a3bac06c5183d3b22798
1df52e60ebe2db25c8832155dd0c4e9095b90082
2024-04-24, Version 22.0.0 (Current) Semver-Major Commits: build: * (SEMVER-MAJOR) compile with C++20 support on Windows (StefanStojanovic) https://github.com/nodejs/node/pull/52465 * (SEMVER-MAJOR) reset embedder string to "-node.0" (Michaël Zasso) https://github.com/nodejs/node/pull/52465 * (SEMVER-MAJOR) res...
[ { "path": "CHANGELOG.md", "patch": "@@ -2,6 +2,7 @@\n \n Select a Node.js version below to view the changelog history:\n \n+* [Node.js 22](doc/changelogs/CHANGELOG_V22.md) **Current**\n * [Node.js 21](doc/changelogs/CHANGELOG_V21.md) **Current**\n * [Node.js 20](doc/changelogs/CHANGELOG_V20.md) **Long Term ...
2024-04-12T18:30:46
facebook/react
18282f881dae106ebf6240aa52c8c02fe7c8d6f2
540bab085d571789f4562565eebfd0db9f36345c
Fix: Update while suspended fails to interrupt (#26739) This fixes a bug with `use` where if you update a component that's currently suspended, React will sometimes mistake it for a render phase update. This happens because we don't reset `currentlyRenderingFiber` until the suspended is unwound. And with `use`, ...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -711,6 +711,9 @@ function renderWithHooksAgain<Props, SecondArg>(\n //\n // Keep rendering in a loop for as long as render phase updates continue to\n // be scheduled. Use a counter to prevent infinite loops.\n+\n+ currentlyRe...
2023-04-28T19:35:14
vercel/next.js
6d7523a58b12f9c36c2c07d86c2a0a744d18b9ef
ebcec54e03e7269767f2de2a0a6ed38e7e2588da
[dev-overlay] Parse stacks in reducer not during dispatch (#79788) In the reducer we'll later inject the implementation of `get*Stack`. The reducer will live in a different module than `stitched-errors` so we need to make sure `get*Stack` is a singleton. Dependency injection makes this easier to achieve. `getOwnerS...
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/hot-reloader-client.tsx", "patch": "@@ -20,7 +20,6 @@ import {\n reportInvalidHmrMessage,\n useErrorOverlayReducer,\n } from '../shared'\n-import { parseStack } from '../utils/parse-stack'\n import { AppDevOverlay } from './app-dev-ove...
2025-06-03T12:23:21
golang/go
127288b4c6527e92ac788d32ece96ef67211b2c8
b1a11c54465f24d1861c3568ea3b1bb6304b450d
cmd/go: add errors obtaining c compiler version to cache key If there's an error getting the version of the c compiler, add the error to the input used to produce the cache key. In the case where we can't parse the version, the text of the output of the command is part of the error, so different unparseable versions w...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -301,19 +301,25 @@ func (b *Builder) buildActionID(a *Action) cache.ActionID {\n \t\t// compiler changes we rebuild the package.\n \t\tif ccID, _, err := b.gccToolID(ccExe[0], \"c\"); err == nil {\n \t\t\tfmt.Fprintf(h, \"CC ID=%q\\n\", ccID)\n+\t\t...
2025-02-10T20:17:54
nodejs/node
1df52e60ebe2db25c8832155dd0c4e9095b90082
ac9aa37bcb5ec656b416e7bb6ceae7cf1f0ae2e5
typings: fix invalid JSDoc declarations PR-URL: https://github.com/nodejs/node/pull/52659 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> R...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -49,7 +49,7 @@ let defaultResolve, defaultLoad, defaultLoadSync, importMetaInitializer;\n \n /**\n * Lazy loads the module_map module and returns a new instance of ResolveCache.\n- * @returns {import('./module_map.js').ResolveCache')}\n+ * @retur...
2024-04-24T16:07:22
facebook/react
d2f33dd524802245ce111917e4fd764b2657042f
d5dee809338c551a8ff2301eabdfc9e83609eb91
Retain locations when using babel cloneNode in lambdas It turns out the third parameter to `cloneNode` is ["If the third parameter is true, the cloned nodes exclude location properties."](https://github.com/babel/babel/blob/c060e5e3d538a174a017edb7e75b07e80ccb55b7/packages/babel-types/src/clone/cloneNode.ts#L35-L39...
[ { "path": "compiler/forget/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -895,7 +895,7 @@ function codegenInstructionValue(\n break;\n }\n case \"FunctionExpression\": {\n- value = t.cloneNode(instrValue.expr, true, true);\n+ value = t.cloneNode(instrValue.expr, true, ...
2023-04-27T20:25:41
electron/electron
08ccc815748fcc55b319c7ee73ae90202bc44fa0
f53ca20d415b6a6029e03d0129d5118aa43919ee
chore: bump chromium to 107.0.5274.0 (main) (#35375) * chore: bump chromium in DEPS to 106.0.5247.1 * chore: update can_create_window.patch Xref: https://chromium-review.googlesource.com/c/chromium/src/+/3805043 content/renderer/render_view_impl.cc was removed * chore: update patches/chromium/printing.patc...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '106.0.5216.0',\n+ '107.0.5274.0',\n 'node_version':\n 'v16.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2022-09-07T07:46:37
vercel/next.js
ebcec54e03e7269767f2de2a0a6ed38e7e2588da
f94e9b463c096b05b5e5aaa207e46b73b3478b93
docs: Manual calls to action should we wrapped in startTransition (#80101) Fixes: #78063 As noted, not wrapping in `startTransition`, doesn't really work as expected, for example `isPending` is not updated at all.
[ { "path": "docs/01-app/01-getting-started/10-updating-data.mdx", "patch": "@@ -259,15 +259,15 @@ While executing a Server Function, you can show a loading indicator with React's\n ```tsx filename=\"app/ui/button.tsx\" switcher\n 'use client'\n \n-import { useActionState } from 'react'\n+import { useActionSt...
2025-06-03T12:13:55
nodejs/node
91dc8c93a3d6ffa9de3bb7b7507e52df4a4aad90
cdd03ef3957bf9ba6cd6083db9cf543d5343c5b3
doc: fix info string causing duplicated code blocks Two fenced code blocks were incorrectly labeled as `js` instead of `cjs`, causing both ESM and CJS version to be shown on https://nodejs.org/api/test.html#timers instead of being conditionally shown depending on the value of the "CJS / ESM" toggle. PR-URL: https://g...
[ { "path": "doc/api/test.md", "patch": "@@ -641,7 +641,7 @@ test('mocks setTimeout to be executed synchronously without having to actually w\n });\n ```\n \n-```js\n+```cjs\n const assert = require('node:assert');\n const { mock, test } = require('node:test');\n \n@@ -660,7 +660,7 @@ test('mocks setTimeout t...
2024-04-24T08:00:24
electron/electron
2db0f7f8d44be93190323a94c4a1fc255251bfa5
98c0fa1c8b4759eff243807b625094d5ef2840a8
fix: `screen.getCursorScreenPoint()` crash on Wayland (#35503) fix: screen.getCursorScreenPoint() crash on Wayland
[ { "path": "shell/browser/api/electron_api_screen.cc", "patch": "@@ -24,6 +24,10 @@\n #include \"ui/display/win/screen_win.h\"\n #endif\n \n+#if defined(USE_OZONE)\n+#include \"ui/ozone/public/ozone_platform.h\"\n+#endif\n+\n namespace electron::api {\n \n gin::WrapperInfo Screen::kWrapperInfo = {gin::kEmbed...
2022-09-05T08:10:50
vercel/next.js
669a8ca5390dadead6835b63bc8cffdae7550c79
3a0af1410999f59c7b8f5740a97a0759e9cf13e8
Fix(turbopack): Resolve experimentalDecorators from extended tsconfig (#79755) Co-authored-by: Jude Gao <jude.gao@vercel.com>
[ { "path": "crates/next-core/src/transform_options.rs", "patch": "@@ -66,51 +66,62 @@ pub async fn get_decorators_transform_options(\n ) -> Result<Vc<DecoratorsOptions>> {\n let tsconfig = get_typescript_options(project_path).await?;\n \n- let decorators_transform_options = if let Some(tsconfig) = tsc...
2025-06-03T10:25:56
golang/go
b1a11c54465f24d1861c3568ea3b1bb6304b450d
a9357490919feed070e952ebc681b1a7af30aac2
all: update vendored dependencies [generated] The tree has opened for Go 1.25 development. This is a time to update all golang.org/x/... module versions that contribute packages to the std and cmd modules in the standard library to latest master versions. For #36905. [git-generate] go install golang.org/x/build/cmd/...
[ { "path": "src/cmd/go.mod", "patch": "@@ -1,21 +1,21 @@\n module cmd\n \n-go 1.24\n+go 1.25\n \n require (\n \tgithub.com/google/pprof v0.0.0-20241101162523-b92577c0c142\n-\tgolang.org/x/arch v0.12.0\n-\tgolang.org/x/build v0.0.0-20241205234318-b850320af2a4\n-\tgolang.org/x/mod v0.22.0\n-\tgolang.org/x/sync...
2025-02-11T22:59:59
nodejs/node
cdd03ef3957bf9ba6cd6083db9cf543d5343c5b3
ba252a45d66704989b5d55b4456dc36a68b44f7f
build: fix arm64 cross-compilation bug on non-arm machines PR-URL: https://github.com/nodejs/node/pull/52559 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
[ { "path": "node.gyp", "patch": "@@ -482,8 +482,20 @@\n },\n \n 'conditions': [\n+ # Pointer authentication for ARM64.\n ['target_arch==\"arm64\"', {\n- 'cflags': ['-mbranch-protection=standard'], # Pointer authentication.\n+ 'target_conditions': [\n+ ['_tools...
2024-04-24T06:30:02
electron/electron
e0fb5cbe1fd84d9651e6030ebab683dd9e4af42d
bfced8cbfe6bad6d119ea9276d13aa67accc9c9a
fix: crash loading non-standard schemes in iframes (#35485)
[ { "path": "patches/chromium/.patches", "patch": "@@ -118,3 +118,4 @@ revert_spellcheck_fully_launch_spell_check_delayed_initialization.patch\n add_electron_deps_to_license_credits_file.patch\n feat_add_set_can_resize_mutator.patch\n fix_revert_emulationhandler_update_functions_to_early_return.patch\n+fix_cr...
2022-08-31T08:08:11
vercel/next.js
3a0af1410999f59c7b8f5740a97a0759e9cf13e8
f6ad3dc065c14f2ae1e90eaea071cb757c2289d4
[dev-overlay] Remove unused hydration error state (#80045) Leftover from when we stopped squashing hydration errors when React 19 is used.
[ { "path": "packages/next/src/client/components/errors/hydration-error-info.ts", "patch": "@@ -1,17 +1,5 @@\n-export type HydrationErrorState = {\n- // Hydration warning template format: <message> <serverContent> <clientContent>\n- warning?: [string, string, string]\n- serverContent?: string\n- clientCon...
2025-06-03T10:24:23
golang/go
a9357490919feed070e952ebc681b1a7af30aac2
58834c3ee08ea85b764c7cc3318ce7a68ea92cbd
runtime: make TestSpuriousWakeupsNeverHangSemasleep more robust This change modifies this test (which involves an arbitrary timeout) to be a little less flaky by double-checking that our subprocess program completed even if the ticker fires and we've exceeded our timeout. The logic behind this change is that the testi...
[ { "path": "src/runtime/semasleep_test.go", "patch": "@@ -91,10 +91,31 @@ func TestSpuriousWakeupsNeverHangSemasleep(t *testing.T) {\n \t// pthread_cond_timedwait_relative_np.\n \tticker := time.NewTicker(200 * time.Millisecond)\n \tdefer ticker.Stop()\n+\n+\tcheckDoneErr := func(err error) {\n+\t\tif err !=...
2025-02-11T17:56:21
facebook/react
d5dee809338c551a8ff2301eabdfc9e83609eb91
3eed52b49b0885840ca236fee18724f3564b47e8
Failing test for fbt issue Specifically, the fbt plugin would error on a `null` loc as it [relies on it in one of its utils](https://github.com/facebook/fbt/blob/6a23a5374a757a49654d8304a3efea8eb9548eea/packages/babel-plugin-fbt/src/getNamespacedArgs.js#L82-L84), implying a missing `loc` somewhere in our pipeline ...
[ { "path": "compiler/forget/src/__tests__/fixtures/compiler/error.lambda-with-fbt.expect.md", "patch": "@@ -0,0 +1,45 @@\n+\n+## Input\n+\n+```javascript\n+import { fbt } from \"fbt\";\n+\n+function Component() {\n+ const buttonLabel = () => {\n+ if (!someCondition) {\n+ return <fbt desc=\"My label\...
2023-04-27T20:25:41
electron/electron
75f9573e53338e15af7c7ccd07a529332847ea2c
d0e220cbcecb6fcca6b6e8acf161dd51864718f2
fix: compensate for title bar height when setting bounds on `BrowserView` (#34713) fix: compensate for title bar height when setting bounds
[ { "path": "shell/browser/native_browser_view_mac.mm", "patch": "@@ -262,9 +262,21 @@ - (void)drawDebugRect:(NSRect)aRect {\n auto* view = iwc_view->GetNativeView().GetNativeNSView();\n auto* superview = view.superview;\n const auto superview_height = superview ? superview.frame.size.height : 0;\n+\n+ ...
2022-08-29T15:53:03
vercel/next.js
f6ad3dc065c14f2ae1e90eaea071cb757c2289d4
71ef3e555a167633ec21113371ae7239b68cee6d
Turbopack Build: Update manifest for #80063 fix (#80094)
[ { "path": "test/turbopack-build-tests-manifest.json", "patch": "@@ -7306,12 +7306,11 @@\n \"Middleware Runtime without i18n should validate & parse request url from any route\",\n \"Middleware Runtime without i18n should warn when using NextResponse.redirect with a relative URL\",\n \"Midd...
2025-06-03T10:10:53
facebook/react
3eed52b49b0885840ca236fee18724f3564b47e8
b69d70664cf52bac084ea092a1cf2d181239aa5e
Only debug with @debug pragma You don't always want to debug all the passes when you use @only, so split it out into its own pragma
[ { "path": "compiler/forget/src/__tests__/test-utils/generateTestsFromFixtures.ts", "patch": "@@ -98,11 +98,13 @@ export default function generateTestsFromFixtures(\n const lines = input.split(\"\\n\");\n if (lines[0]!.indexOf(\"@only\") !== -1) {\n testCommand = test.only;\n-...
2023-04-27T20:16:50
golang/go
58834c3ee08ea85b764c7cc3318ce7a68ea92cbd
b574590c36b7ede1492239db2d55c35e8818c7a7
cmd/go: initialize req.Header when loading git credential Fixes #71604 Change-Id: I3d733a50b4451dfb571aba91a28387ba9e0614dc Reviewed-on: https://go-review.googlesource.com/c/go/+/647615 Reviewed-by: Michael Matloob <matloob@golang.org> Reviewed-by: Sam Thanawalla <samthanawalla@google.com> LUCI-TryBot-Result: Go LUCI...
[ { "path": "src/cmd/go/internal/auth/auth.go", "patch": "@@ -128,7 +128,8 @@ func runGoAuth(client *http.Client, res *http.Response, url string) {\n \t// If no GOAUTH command provided a credential for the given url\n \t// and an error occurred, log the error.\n \tif cfg.BuildX && url != \"\" {\n-\t\tif ok :=...
2025-02-07T11:42:26
vercel/next.js
71ef3e555a167633ec21113371ae7239b68cee6d
f80d30058e8c3496055ab84c260713f10093ff14
suggested fix for issue #74564 (#74565) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improv...
[ { "path": "packages/next-mdx/mdx-js-loader.js", "patch": "@@ -1,13 +1,18 @@\n const mdxLoader = require('@mdx-js/loader')\n+const { pathToFileURL } = require('node:url')\n \n function interopDefault(mod) {\n return mod.default || mod\n }\n \n async function importPlugin(plugin, projectRoot) {\n if (Arra...
2025-06-03T09:34:48
electron/electron
d0e220cbcecb6fcca6b6e8acf161dd51864718f2
18475818486be806e891e8e6cb13b83c620ec0aa
chore: bump node to v16.17.0 (main) (#35350) * chore: bump node in DEPS to v16.17.0 * chore: fixup asar patch * lib: use null-prototype objects for property descriptors https://github.com/nodejs/node/pull/43270 * src: make SecureContext fields private https://github.com/nodejs/node/pull/43173 * crypt...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '106.0.5216.0',\n 'node_version':\n- 'v16.16.0',\n+ 'v16.17.0',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2022-08-29T13:55:36
facebook/react
4a8c90a77cff6e931bbc0395b3f6405ccf900ee9
b1eaf88c61dfaf3fedf4f58e45fad4cf519e8049
[babel] Remove unsafe calls to path.stop() Discovered this in a recent attempt at syncing Forget to Meta, it seems that calling path.stop() is unsafe as it appears to have strange behavior in plugins that come after. This resulted in `import type {...}` not being compiled away in the post-babel output which isn...
[ { "path": "compiler/forget/src/Babel/BabelPlugin.ts", "patch": "@@ -171,7 +171,6 @@ export default function ReactForgetBabelPlugin(\n Directive(path) {\n if (hasUseForgetDirective(path.node)) {\n fileHasUseForgetDirective = true;\n- path.stop();\n ...
2023-04-26T21:16:34
golang/go
b574590c36b7ede1492239db2d55c35e8818c7a7
d9cc4944ce3f36fc8fd1c63f35c206b308a3503f
cmd/go: document -modfile and other flags for 'go tool' Mention -modfile, -C, -overlay, and -modcacherw in the 'go tool' documentation. We let a reference to 'go help build' give a pointer to more detailed information. The -modfile flag in particular is newly useful with the Go 1.24 support for user-defined tools wit...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1953,6 +1953,13 @@\n // The -n flag causes tool to print the command that would be\n // executed but not execute it.\n //\n+// The -modfile=file.mod build flag causes tool to use an alternate file\n+// instead of the go.mod in the module root directory.\n+//\...
2025-02-11T17:59:54
facebook/react
b1eaf88c61dfaf3fedf4f58e45fad4cf519e8049
e5f4b3008fcb598c1bd2b15ec0b52f05cd8a3b11
[babel] Ensure only adding import specifier to non-namespace Missed this in the previous PR Test plan: P706162189 (some babel errors) before this PR, P706255523 has no errors
[ { "path": "compiler/forget/src/Babel/BabelPlugin.ts", "patch": "@@ -233,14 +233,7 @@ export default function ReactForgetBabelPlugin(\n }\n },\n ImportDeclaration(importDeclPath) {\n- // Matches `import { /* ... */ } from 'react';`\n- // but not...
2023-04-26T19:16:21
vercel/next.js
f80d30058e8c3496055ab84c260713f10093ff14
4e67ca6117b10691ca425c0275b91742c0124a74
Turbopack Build: Fix CSS test (#80064) ## What? Updates the check as it's slightly different with Turbopack.
[ { "path": "test/integration/css-features/test/css-modules.test.js", "patch": "@@ -56,9 +56,16 @@ describe('Custom Properties: Fail for global element in CSS Modules', () => {\n stderr: true,\n })\n expect(code).not.toBe(0)\n- expect(stderr).toContain('Failed to compile')\n- ...
2025-06-03T08:00:51