repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
rust-lang/rust
d0a33abd4d65f59e7affdc85ef19f33a05e08304
271951ba187953d39b1c66b062d83f558aa23856
fixed VecDeque::splice() not filling the buffer correctly when resizing the buffer on start = end range
[ { "path": "library/alloc/src/collections/vec_deque/splice.rs", "patch": "@@ -138,8 +138,48 @@ impl<T, A: Allocator> Drain<'_, T, A> {\n /// self.deque must be valid.\n unsafe fn move_tail(&mut self, additional: usize) {\n let deque = unsafe { self.deque.as_mut() };\n- let tail_start =...
2026-02-06T21:55:17
golang/go
d767064170aa3469404d25608d9ff9fa48962337
0b1eed09a34f5a1e0a5c237bc9771eb036b35319
cmd/compile: mark abi.PtrType.Elem sym as used CL 700336 let the compiler see into the abi.PtrType.Elem field, but forgot the MarkTypeSymUsedInInterface to ensure that the symbol is marked as referenced. I am not sure how to write a test for this, but I noticed this when working on further optimizations where I "fixe...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2778,10 +2778,10 @@\n (Load <typ.Uintptr> (ITab (IMake (Convert (Addr {s} sb) _) _)) _) && isFixedSym(s, 0) => (Addr {fixedSym(b.Func, s, 0)} sb)\n \n // Loading constant values from abi.PtrType.Elem.\n-(Load <t> (OffPtr [off] ...
2025-09-05T19:59:33
vercel/next.js
61a8037835a715f36dd52532ba049f81d4f532d4
73a4d0829a8e6a53af5be9c52bcf466e4941344c
Rspack: Fix lockfile test on rspack (#84707) Noticed this on https://github.com/vercel/next.js/pull/84673 We don't run rspack test on every PR, so this wasn't caught before.
[ { "path": "test/development/lockfile/lockfile.test.ts", "patch": "@@ -3,7 +3,7 @@ import execa from 'execa'\n import stripAnsi from 'strip-ansi'\n \n describe('lockfile', () => {\n- const { next, isTurbopack } = nextTestSetup({\n+ const { next, isTurbopack, isRspack } = nextTestSetup({\n files: __dirn...
2025-10-10T00:28:04
rust-lang/rust
fa94367a2ea010bf012eea6d09cbef48c610a963
6d483b6b7687ef83c0e0097bb4dab2d7f3c48477
Remember whether a struct literal had syntax errors. This adds a variant `NoneWithError` to AST and HIR representations of the “rest” or “tail”, which is currently always treated identically to the `None` variant.
[ { "path": "clippy_lints/src/no_effect.rs", "patch": "@@ -242,7 +242,7 @@ fn has_no_effect(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {\n !expr_ty_has_significant_drop(cx, expr)\n && fields.iter().all(|field| has_no_effect(cx, field.expr))\n && match &base {\n-...
2026-03-01T01:25:41
nodejs/node
a613f2f312699154b8d32195c887ea24ba0cc21a
47ae886e43537365ccc54beff0b1ac08a5a5aa19
test: fix test-without-async-context-frame.mjs in debug mode The test is spawning the python test runner directly without considering whether the current build is a debug build or not i.e. does not propage the mode parameter when the test is run with --mode=debug, so it always ends up using the release build to run th...
[ { "path": "test/parallel/test-without-async-context-frame.mjs", "patch": "@@ -49,6 +49,7 @@ describe('without AsyncContextFrame', {\n it(test, async () => {\n const proc = spawn(python, [\n testRunner,\n+ `--mode=${process.features.debug ? 'debug' : 'release'}`,\n '--node-ar...
2025-02-15T19:37:31
electron/electron
77ba40bc01a206b5c3bac27cd6143adabd46d437
2fd04a78a1e774a32e9db926d07de686fd03fb79
chore: avoid crash while notification removal (#43040) * avoid crash of operation on an invalid entry while erase set iterator. * fix notification removal crash due to the nullptr presenter --------- Co-authored-by: bill.shen <shenyb32768@gmail.com>
[ { "path": "shell/browser/notifications/notification.cc", "patch": "@@ -46,7 +46,9 @@ void Notification::NotificationFailed(const std::string& error) {\n void Notification::Remove() {}\n \n void Notification::Destroy() {\n- presenter()->RemoveNotification(this);\n+ if (presenter()) {\n+ presenter()->Rem...
2024-07-26T13:34:40
facebook/react
7b41cdc093c7a28a089e2c402cbe98cac68de509
1eaccd8285f0bd40407705a9356391a171adf3b1
[Flight][Static] Implement halting a prerender behind enableHalt (#30705) enableHalt turns on a mode for flight prerenders where aborts are treated like infinitely stalled outcomes while still completing the prerender. For regular tasks we simply serialize the slot as a promise that never settles. For ReadableStrea...
[ { "path": "packages/react-server-dom-esm/src/server/ReactFlightDOMServerNode.js", "patch": "@@ -20,12 +20,15 @@ import type {Thenable} from 'shared/ReactTypes';\n \n import {Readable} from 'stream';\n \n+import {enableHalt} from 'shared/ReactFeatureFlags';\n+\n import {\n createRequest,\n startWork,\n ...
2024-08-16T21:21:57
rust-lang/rust
d6eefce00d307fbc7d939671e390abb5beed24e6
53fffef2b96022b796b3d2c1491e5b1d7837b627
Remember whether a struct literal had syntax errors. This adds a variant `NoneWithError` to AST and HIR representations of the “rest” or “tail”, which is currently always treated identically to the `None` variant.
[ { "path": "compiler/rustc_ast/src/ast.rs", "patch": "@@ -1724,6 +1724,12 @@ pub enum StructRest {\n Rest(Span),\n /// No trailing `..` or expression.\n None,\n+ /// No trailing `..` or expression, and also, a parse error occurred inside the struct braces.\n+ ///\n+ /// This struct shoul...
2026-03-01T01:25:41
vercel/next.js
b2ce9dd9c34d04c2c8d7f872bd0bb0e0f3a8d31a
7e325d98a2773f1a41596f455516c164835728dc
tweak middlewareClientMaxBodySize handling (#84712) This ensures we captured `middlewareClientMaxBodySize` in the config schema and rather than triggering a hard error, it will buffer up to the limit.
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/middlewareClientMaxBodySize.mdx", "patch": "@@ -0,0 +1,118 @@\n+---\n+title: experimental.middlewareClientMaxBodySize\n+description: Configure the maximum request body size when using middleware.\n+version: experimental\n+---\n+\n+When midd...
2025-10-10T00:10:41
nodejs/node
ff51d83c963e3089477e14258cf58c2e826dca22
44e2671b44503d3ab1520aa9e114de56d90983c6
doc: recommend writing tests in new files and including comments The previous phrasing encouraged or did not discourage appending new test cases to existing files - a practice that can reduce the debuggability of the tests over time as they get bigger and bigger, some times thousands of lines long with hundreds of tes...
[ { "path": "doc/contributing/writing-tests.md", "patch": "@@ -21,9 +21,22 @@ Add tests when:\n ## Test directory structure\n \n See [directory structure overview][] for outline of existing test and locations.\n-When deciding on whether to expand an existing test file or create a new one,\n-consider going thr...
2025-02-15T12:58:08
electron/electron
2fd04a78a1e774a32e9db926d07de686fd03fb79
0886d2f50f35be4810ca0f4de4848b7cb0c8c487
fix: revert BrowserWindow unresponsive handling refactor (#43034) * Revert "refactor: JSify BrowserWindow unresponsive handling (#37902)" This reverts commit 67ba30402bcbf6942fa0846927f2d088cf0a749d. * chore: remove BrowserWindow::SetTitleBarOverlay --------- Co-authored-by: Shelley Vohr <shelley.vohr@gmai...
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -36,29 +36,6 @@ BrowserWindow.prototype._init = function (this: BWT) {\n app.emit('browser-window-focus', event, this);\n });\n \n- let unresponsiveEvent: NodeJS.Timeout | null = null;\n- const emitUnresponsiveEvent = () => {\n- unrespon...
2024-07-25T20:02:02
facebook/react
1016174af520fc89bafab7189405fce8ff3a9bb5
8a531601115927400aa04d26a5f1800d159e1e7e
[compiler] Reposition ref-in-render errors to the read location of .current Summary: Since we want to make ref-in-render errors enabled by default, we should position those errors at the location of the read. Not only will this be a better experience, but it also aligns the behavior of Forget and Flow. This PR also c...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts", "patch": "@@ -15,7 +15,6 @@ import {\n isRefValueType,\n isUseRefType,\n } from '../HIR';\n-import {printPlace} from '../HIR/PrintHIR';\n import {\n eachInstructionValueOperand,\n eachTerminalOper...
2024-08-16T17:27:13
golang/go
0b1eed09a34f5a1e0a5c237bc9771eb036b35319
f5b20689e9a055223a6dbb6b63f53648ed02cd74
vendor/golang.org/x/tools: update to a09a2fb Notably, this includes unitchecker's -fix flag. Also, fix one vet test that failed due to new diagnostic wording. Change-Id: I87751083dcd9cc4b1d8dce7d54bb796c745436d0 Reviewed-on: https://go-review.googlesource.com/c/go/+/701195 Reviewed-by: Dmitri Shuralyov <dmitshur@gol...
[ { "path": "src/cmd/go.mod", "patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.35.0\n \tgolang.org/x/telemetry v0.0.0-20250807160809-1a19826ec488\n \tgolang.org/x/term v0.34.0\n-\tgolang.org/x/tools v0.36.1-0.20250808220315-8866876b956f\n+\tgolang.org/x/tools v0.36.1-0.20250904192731-a09a2fba1c08...
2025-09-04T19:29:52
nodejs/node
44e2671b44503d3ab1520aa9e114de56d90983c6
59cdd4f1c246cceb89a00c37e3c819a08444c888
build: fix GN build failure PR-URL: https://github.com/nodejs/node/pull/57013 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "deps/zstd/unofficial.gni", "patch": "@@ -19,6 +19,7 @@ template(\"zstd_gn_build\") {\n public_configs = [ \":zstd_config\" ]\n sources = gypi_values.zstd_sources\n defines = [ \"XXH_NAMESPACE=ZSTD_\", \"ZSTD_MULTITHREAD\", \"ZSTD_DISABLE_ASM\" ]\n+ cflags_c = [ \"-Wno-unused-functi...
2025-02-15T12:11:49
facebook/react
8a531601115927400aa04d26a5f1800d159e1e7e
7468ac530e73992f28169ac69e18395a75edfc47
[compiler] Don't error on ref-in-render on StartMemoize Test Plan: Fixes the previous issue: ref enforcement ignores memoization marker instructions ghstack-source-id: f35d6a611c5e740e9ea354ec80c3d7cdb3c0d658 Pull Request resolved: https://github.com/facebook/react/pull/30715
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts", "patch": "@@ -185,6 +185,9 @@ function validateNoRefAccessInRenderImpl(\n }\n break;\n }\n+ case 'StartMemoize':\n+ case 'FinishMemoize':\n+ break;\n ...
2024-08-16T17:27:13
vercel/next.js
7e325d98a2773f1a41596f455516c164835728dc
36357eba00b8dcc42c5eca8e6f2c39fbcab29f7d
Fix tags check for expired/stale (#84717) Corrects the expired/stale checks in the tags manifest and updates test case to capture this.
[ { "path": "packages/next/src/server/lib/incremental-cache/tags-manifest.external.ts", "patch": "@@ -12,9 +12,15 @@ export const tagsManifest = new Map<string, TagManifestEntry>()\n export const areTagsExpired = (tags: string[], timestamp: Timestamp) => {\n for (const tag of tags) {\n const entry = tag...
2025-10-10T00:03:39
electron/electron
976f5d1b7558d596c0e28e614a02bf6acfc7e6f8
aa23198ad8ed023a09bf6162f0e268f4aa0aa524
fix: File System API permissions should reset on WebContents destruction (#43009) fix: active File System API permissions should reset on WebContents destruction
[ { "path": "filenames.gni", "patch": "@@ -390,6 +390,8 @@ filenames = {\n \"shell/browser/file_system_access/file_system_access_permission_context.h\",\n \"shell/browser/file_system_access/file_system_access_permission_context_factory.cc\",\n \"shell/browser/file_system_access/file_system_access_...
2024-07-25T13:53:30
golang/go
459b85ccaa30bbce4c22b2779672dfe402a2b2da
87e72769fa74a2ef0bd81a3fd4febe75b8fc6731
cmd/fix: remove all functionality except for buildtag For #73605 Change-Id: I4b46b5eb72471c215f2cc208c1b0cdd1fbdbf81a Reviewed-on: https://go-review.googlesource.com/c/go/+/695855 Reviewed-by: Michael Matloob <matloob@golang.org> Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Alan Donovan <adonovan@googl...
[ { "path": "src/cmd/fix/cftype.go", "patch": "@@ -6,9 +6,6 @@ package main\n \n import (\n \t\"go/ast\"\n-\t\"go/token\"\n-\t\"reflect\"\n-\t\"strings\"\n )\n \n func init() {\n@@ -18,130 +15,11 @@ func init() {\n var cftypeFix = fix{\n \tname: \"cftype\",\n \tdate: \"2017-09-27\",\n-\tf: cfty...
2025-08-13T14:33:14
nodejs/node
e4f2c25527a953ba524058cbb15fd1db60a820e1
1e6a6569dc5235d8f1cfe8b6f7dda59dc1717365
doc: buffer: fix typo on `Buffer.copyBytesFrom(` `offset` option PR-URL: https://github.com/nodejs/node/pull/57015 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/buffer.md", "patch": "@@ -1098,7 +1098,7 @@ added:\n -->\n \n * `view` {TypedArray} The {TypedArray} to copy.\n-* `offset` {integer} The starting offset within `view`. **Default:**: `0`.\n+* `offset` {integer} The starting offset within `view`. **Default:** `0`.\n * `length` {integer} The...
2025-02-14T14:54:29
facebook/react
7468ac530e73992f28169ac69e18395a75edfc47
5030e08575c295ef352c5ae928e2366cc4765d32
[compiler] Fixture to show ref-in-render enforcement issue with useCallback Test Plan: Documents that useCallback calls interfere with it being ok for refs to escape as part of functions into jsx ghstack-source-id: a5df427981ca32406fb2325e583b64bbe26b1cdd Pull Request resolved: https://github.com/facebook/react/pull/...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.return-ref-callback.expect.md", "patch": "@@ -0,0 +1,37 @@\n+\n+## Input\n+\n+```javascript\n+// @flow @validateRefAccessDuringRender @validatePreserveExistingMemoizationGuarantees\n+\n+component Foo() {\n+ const...
2024-08-16T17:27:13
vercel/next.js
36357eba00b8dcc42c5eca8e6f2c39fbcab29f7d
e2713a423002420b3d12f6fa946205581d1151e3
Fix typo on welcome page (#84715)
[ { "path": "apps/docs/app/page.tsx", "patch": "@@ -22,7 +22,7 @@ export default function Home() {\n href=\"https://vercel.com/templates?framework=next.js\"\n className=\"font-medium text-zinc-950 dark:text-zinc-50\"\n >\n- Template\n+ Template...
2025-10-09T23:43:37
golang/go
9d0829963ccab19093c37f21cfc35d019addc78a
ddce0522bee36764c3b9529b8584c3d5b53c5dac
net/http: fix cookie value of "" being interpreted as empty string. In issue #46443, we have established that double-quotes in cookie values should be kept as part of the value, rather than being discarded. However, we have missed the edge case of "" until now. This CL fixes said edge case. Fixes #75244 Change-Id: I...
[ { "path": "src/net/http/cookie.go", "patch": "@@ -459,9 +459,6 @@ func sanitizeCookieName(n string) string {\n // See https://golang.org/issue/7243 for the discussion.\n func sanitizeCookieValue(v string, quoted bool) string {\n \tv = sanitizeOrWarn(\"Cookie.Value\", validCookieValueByte, v)\n-\tif len(v) =...
2025-09-03T18:25:59
rust-lang/rust
af299893fdbf2bef1716705f7c458ea61eb4ddf0
99246f40931ce1d1d29517b61bd70dd9ed4fbe5d
Introduce --ci flag in tidy * add --ci flag in tidy This commit introduces --ci flag in tidy because currently bootstrap can't pass its ci env information to tidy. It also modifies how CiInfo initialize its ci_env variable. tidy codes which uses CiEnv::is_ci for checking ci are now using ci_env in CiInfo. * address r...
[ { "path": "src/bootstrap/src/core/build_steps/test.rs", "patch": "@@ -1320,6 +1320,9 @@ impl Step for Tidy {\n if builder.config.cmd.bless() {\n cmd.arg(\"--bless\");\n }\n+ if builder.config.is_running_on_ci() {\n+ cmd.arg(\"--ci=true\");\n+ }\n ...
2026-02-28T21:37:32
facebook/react
85fb95cdffdd95f2f908ee71974cae06b1c866e1
fa6eab58541330349480690ef4e211520cc08d94
[flow] Eliminate a few React.Element type that will be synced to react-native (#30719) ## Summary Flow will eventually remove the specific `React.Element` type. For most of the code, it can be replaced with `React.MixedElement` or `React.Node`. When specific react elements are required, it needs to be replaced...
[ { "path": "packages/react-native-renderer/src/ReactNativeRenderer.js", "patch": "@@ -8,7 +8,7 @@\n */\n \n import type {ReactPortal, ReactNodeList} from 'shared/ReactTypes';\n-import type {ElementRef, Element, ElementType} from 'react';\n+import type {ElementRef, ElementType, MixedElement} from 'react';\n ...
2024-08-16T16:53:52
electron/electron
aa23198ad8ed023a09bf6162f0e268f4aa0aa524
cfdcf48e1b2cccc9cebe64d84d159713b0832e86
chore: remove more unused #include calls (#43000) * chore: in shell/renderer/renderer_client_base.h, remove include media/base/key_systems_support_registration.h last use removed in c670e38b (##41610) * chore: iwyu electron/fuses.h * chore: iwyu media/base/video_frame.h * chore: iwyu base/functional/callba...
[ { "path": "shell/app/electron_content_client.cc", "patch": "@@ -13,13 +13,11 @@\n #include \"base/files/file_util.h\"\n #include \"base/strings/string_split.h\"\n #include \"content/public/common/content_constants.h\"\n-#include \"content/public/common/content_switches.h\"\n #include \"electron/buildflags/b...
2024-07-25T09:25:45
nodejs/node
1e6a6569dc5235d8f1cfe8b6f7dda59dc1717365
fc7682ca4bf9045864b23e4f43758d97ab36ad4d
tools: fix release URL computation in update-root-certs.mjs Previously this would compute the release tag to be something like FIREFOX_134_0.2_RELEASE which would not lead to a valid URL, failing to pull the latest NSS updates from the Firefox release. It should replace all the dots with underscores to compute somethi...
[ { "path": "tools/dep_updaters/update-root-certs.mjs", "patch": "@@ -65,7 +65,7 @@ const getFirefoxRelease = async (version) => {\n \n const getNSSVersion = async (release) => {\n const latestFirefox = release.version;\n- const firefoxTag = `FIREFOX_${latestFirefox.replace('.', '_')}_RELEASE`;\n+ const f...
2025-02-14T14:15:14
golang/go
00b8474e47a1f0381170734604a7ce8123d7146d
e36c5aead681d8264f1fac725f2a15c1ca2b895a
cmd/trace: don't filter events for profile by whether they have stack Right now the profile-from-trace code blindly discards events that don't have a stack, but this means it can discard 'end' events for goroutine time ranges that don't have stacks, like when a goroutine exits a syscall. This means we drop stack sampl...
[ { "path": "src/cmd/trace/pprof.go", "patch": "@@ -153,10 +153,6 @@ func makeComputePprofFunc(state trace.GoState, trackReason func(string) bool) co\n \t\t\tif ev.Kind() != trace.EventStateTransition {\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\tstack := ev.Stack()\n-\t\t\tif stack == trace.NoStack {\n-\t\t\t\tcont...
2025-08-07T18:53:00
vercel/next.js
5c8fdbe104b7e13bc653cb8b319782052d059bc1
8d475c5468b18cb3aad0de0a50632953d5243db1
misc: allow beta to be triggered (#84713) ![a-picture-of-a-bear-in-a-spaceship-with-the-words-i-have-no-idea-what-i-m-doing](https://github.com/user-attachments/assets/a53076b7-6d4c-4e98-b540-b4f6950d4901) - update codemod script - upgrade both release scripts, not sure which one is correct <!-- Thanks for opening ...
[ { "path": ".github/workflows/trigger_release.yml", "patch": "@@ -6,13 +6,14 @@ on:\n workflow_dispatch:\n inputs:\n releaseType:\n- description: stable, canary, or release candidate?\n+ description: stable, canary, beta, or release candidate?\n required: true\n type...
2025-10-09T23:28:52
nodejs/node
fc7682ca4bf9045864b23e4f43758d97ab36ad4d
69d32d1cfe7e05882e004e26f18beb378e15ff20
crypto: fix missing OPENSSL_NO_ENGINE guard PR-URL: https://github.com/nodejs/node/pull/57012 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -34,7 +34,9 @@ using ncrypto::BIOPointer;\n using ncrypto::ClearErrorOnReturn;\n using ncrypto::CryptoErrorList;\n using ncrypto::DHPointer;\n+#ifndef OPENSSL_NO_ENGINE\n using ncrypto::EnginePointer;\n+#endif // !OPENSSL_NO_ENGINE\n using ncrypto::EVP...
2025-02-14T12:26:15
electron/electron
cfdcf48e1b2cccc9cebe64d84d159713b0832e86
c2c079dc820d7edbac3f875ab4ef8b3444237253
fix: desktopCapturer breaks BrowserWindow resizable on macOS (#43013) * fix: desktopCapturer breaks BrowserWindow resizable on macOS * test: oops fix showing
[ { "path": "lib/browser/api/desktop-capturer.ts", "patch": "@@ -1,3 +1,4 @@\n+import { BrowserWindow } from 'electron/main';\n const { createDesktopCapturer } = process._linkedBinding('electron_browser_desktop_capturer');\n \n const deepEqual = (a: ElectronInternal.GetSourcesOptions, b: ElectronInternal.GetS...
2024-07-25T09:17:37
facebook/react
fa6eab58541330349480690ef4e211520cc08d94
50d2197dd580afc0f87f0acb79c5528bc0f5199c
[Flight] Implement prerender (#30686) Prerendering in flight is similar to prerendering in Fizz. Instead of receiving a result (the stream) immediately a promise is returned which resolves to the stream when the prerender is complete. The promise will reject if the flight render fatally errors otherwise it will res...
[ { "path": "fixtures/flight/__tests__/__e2e__/smoke.test.js", "patch": "@@ -16,6 +16,13 @@ test('smoke test', async ({page}) => {\n await expect(page.getByTestId('promise-as-a-child-test')).toHaveText(\n 'Promise as a child hydrates without errors: deferred text'\n );\n+ await expect(page.getByTestI...
2024-08-15T21:28:28
golang/go
e36c5aead681d8264f1fac725f2a15c1ca2b895a
150fae714eb2bcf0a5fb216ac0e5c7fd76f37e02
log/slog: add multiple handlers support for logger Fixes #65954 Change-Id: Ib01c6f47126ce290108b20c07479c82ef17c427c GitHub-Last-Rev: 34a36ea4bf099b2ad30f35e639155853ff73ef46 GitHub-Pull-Request: golang/go#74840 Reviewed-on: https://go-review.googlesource.com/c/go/+/692237 LUCI-TryBot-Result: Go LUCI <golang-scoped@l...
[ { "path": "api/next/65954.txt", "patch": "@@ -0,0 +1,6 @@\n+pkg log/slog, func NewMultiHandler(...Handler) *MultiHandler #65954\n+pkg log/slog, method (*MultiHandler) Enabled(context.Context, Level) bool #65954\n+pkg log/slog, method (*MultiHandler) Handle(context.Context, Record) error #65954\n+pkg log/slo...
2025-08-27T14:27:31
vercel/next.js
363014645838b7b4e16f9d446032c52ce5434aff
e598a4f9763f3ccdaf23f4caf6aea205b84c5dcd
Add validation for missing default.js in parallel routes (#84702) ### What? Adds build-time validation to require explicit `default.js` files for all parallel route slots (except the implicit "children" slot). This validation is implemented in both Webpack and Turbopack bundlers. ### Why? Parallel routes without `d...
[ { "path": "crates/next-core/src/app_structure.rs", "patch": "@@ -840,6 +840,83 @@ impl Issue for DuplicateParallelRouteIssue {\n }\n }\n \n+#[turbo_tasks::value]\n+struct MissingDefaultParallelRouteIssue {\n+ app_dir: FileSystemPath,\n+ app_page: AppPage,\n+ slot_name: RcStr,\n+}\n+\n+#[turbo_t...
2025-10-09T21:20:52
nodejs/node
85f5a6cc1e9954eaa36cf5d4a13af503e6bf51ab
9ce1fffcdc5a6045e19c6730aa6ae3e271287b23
src: add self-assigment memcpy checks Fixes: https://github.com/nodejs/node/issues/56718 PR-URL: https://github.com/nodejs/node/pull/56986 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/node_sockaddr-inl.h", "patch": "@@ -79,12 +79,16 @@ SocketAddress::SocketAddress(const SocketAddress& addr) {\n }\n \n SocketAddress& SocketAddress::operator=(const sockaddr* addr) {\n- memcpy(&address_, addr, GetLength(addr));\n+ if (reinterpret_cast<const sockaddr*>(&address_) != addr) {\...
2025-02-12T13:13:02
electron/electron
5669a40d5cc8207f8ede8244a28e5ccbf6666207
9fc760bc4cffca6d269d62b7300242efef3f1d4d
feat: add transparency checking to `nativeTheme` (#42862) * feat: add transparency checking to nativeTheme Refs https://chromium-review.googlesource.com/c/chromium/src/+/4684870 * chore: deprecate previous function * chore: fix lint
[ { "path": "docs/api/native-theme.md", "patch": "@@ -72,3 +72,7 @@ or is being instructed to use an inverted color scheme.\n \n A `boolean` indicating whether Chromium is in forced colors mode, controlled by system accessibility settings.\n Currently, Windows high contrast is the only system setting that tri...
2024-07-24T12:38:22
golang/go
b8cc907425c4b851d2b941cf689cf8177ea8a153
8c27a808905b0611b0a7b7bbff08819206be3b86
cmd/internal/obj/loong64: fix the usage of offset in the instructions [X]VLDREPL.{B/H/W/D} The previously defined usage of offset was ambiguous and not easy to understand. For example, to fetch 4 bytes of data from the address base+8 and broadcast it to each word element of vector register V5, the assembly implementat...
[ { "path": "src/cmd/asm/internal/asm/testdata/loong64enc1.s", "patch": "@@ -538,13 +538,29 @@ lable2:\n \n \t// Load data from memory and broadcast to each element of a vector register: VMOVQ offset(Rj), <Vd>.<T>\n \tVMOVQ\t\t(R4), V0.B16\t// 80008030\n-\tVMOVQ\t\t1(R4), V1.H8\t// 81044030\n-\tVMOVQ\t\t2(...
2025-08-29T08:20:16
facebook/react
19bd26beb689e554fceb0b929dc5199be8cba594
c39da3e4de0ad0db56ad99119efe3efc6c72abf1
[Flight/DevTools] Pass the Server Component's "key" as Part of the ReactComponentInfo (#30703) Supports showing the key in DevTools on the Server Component that the key was applied to. We can also use this to reconcile to preserve instance equality when they're reordered. One thing that's a bit weird about this i...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -299,6 +299,7 @@ describe('ReactFlight', () => {\n {\n name: 'Greeting',\n env: 'Server',\n+ key: null,\n owner: null,\n stack: gate(...
2024-08-15T15:04:53
vercel/next.js
8041a382c94ca55440dc9bbf505d7272cb72bdfd
5dcfec401a299498a1866f1973391381ba1cbf85
[Breaking] Require `images.localPatterns` for query in Image src (#84406) This PR modifies Image behavior to require `images.localPatterns.search` value when used with search queries in the `src` property: ```jsx // Error <Image src="/api/user?id=1" width="50" height="50" /> ``` ```ts // next.config.ts export defau...
[ { "path": "docs/01-app/03-api-reference/02-components/image.mdx", "patch": "@@ -528,6 +528,8 @@ module.exports = {\n \n The example above will ensure the `src` property of `next/image` must start with `/assets/images/` and must not have a query string. Attempting to optimize any other path will respond with...
2025-10-09T19:01:42
nodejs/node
b07ff551db152ccb507e71160ce077e235206b16
83ff1ae88f86013db4c058c5963a76d4c16e6a26
build: fix GN build of uv PR-URL: https://github.com/nodejs/node/pull/56955 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
[ { "path": "deps/uv/unofficial.gni", "patch": "@@ -90,7 +90,7 @@ template(\"uv_gn_build\") {\n ldflags = [ \"-pthread\" ]\n }\n if (is_linux) {\n- libs += [\n+ libs = [\n \"m\",\n \"dl\",\n \"rt\",", "additions": 1, "deletions": 1, "language": "Unkn...
2025-02-12T00:58:31
golang/go
b7c20413c5b78b7dfc7f7de52f333a8ca85cd55b
df290384864c0b3cbb557ef11fc95a29d52f6aca
runtime: remove obsolete osArchInit function The osArchInit function was introduced as a workaround for a Linux kernel bug that corrupted vector registers on x86 CPUs during signal delivery. The bug was introduced in Linux 5.2 and fixed in 5.3.15, 5.4.2, and all 5.5 and later kernels. The fix was also back-ported by m...
[ { "path": "src/runtime/os_freebsd_riscv64.go", "patch": "@@ -1,7 +0,0 @@\n-// Copyright 2022 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-package runtime\n-\n-func osArchInit() {}", "additions": 0, ...
2025-09-03T14:15:06
facebook/react
49496d493797d4df1b9496f64a6103d9a7d23968
0ad0fac1dc11db8d5a6831987fb0324cd6d59498
[DevTools] Support Server Components in Tree (#30684) This adds VirtualInstances to the tree. Each Fiber has a list of its parent Server Components in `_debugInfo`. The algorithm is that when we enter a set of fibers, we actually traverse level 0 of all the `_debugInfo` in each fiber. Then level 1 of each `_debugIn...
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -3150,4 +3150,35 @@ describe('InspectedElement', () => {\n <Child> ⚠\n `);\n });\n+\n+ // @reactVersion > 18.2\n+ it('should inspect server components', async () => {\n+ const ChildPromi...
2024-08-14T15:16:51
electron/electron
3e22f992b064a07545a5d265a1a53a72a0cdbca2
364631ee0b4f8a6c705498a79044fceca939711e
chore: bump chromium to 128.0.6611.0 (main) (#42779) * chore: bump chromium in DEPS to 128.0.6577.0 * chore: bump chromium in DEPS to 128.0.6579.0 * 5675706: Reland "Reland "Reland "Reland "Add toolchains without PartitionAlloc-Everywhere for dump_syms et al"""" https://chromium-review.googlesource.com/c/chro...
[ { "path": ".github/actions/checkout/action.yml", "patch": "@@ -87,7 +87,7 @@ runs:\n # Export it\n mkdir -p ../../patches\n git format-patch -1 --stdout --keep-subject --no-stat --full-index > ../../patches/update-patches.patch\n- if (node ./script/push-patch.js 2> /de...
2024-07-23T15:59:44
nodejs/node
43ffcf1d2e50407cc19b587f6030c7d34b0932ec
cbedcd16960c59ba77ee091c8722879fd56735e1
src: improve node::Dotenv trimming the trimming functionality that the dotenv parsing uses currently only takes into consideration plain spaces (' '), other type of space characters such as tabs and newlines are not trimmed, this can cause subtle bugs, so the changes here make sure that such characters get trimmed as ...
[ { "path": "src/node_dotenv.cc", "patch": "@@ -105,15 +105,22 @@ Local<Object> Dotenv::ToObject(Environment* env) const {\n return result;\n }\n \n+// Removes space characters (spaces, tabs and newlines) from\n+// the start and end of a given input string\n std::string_view trim_spaces(std::string_view inp...
2025-02-11T22:26:51
golang/go
df290384864c0b3cbb557ef11fc95a29d52f6aca
4373754bc990fc13b27ae823f977bc6328cc331e
cmd/compile/internal/ssa: load constant values from abi.PtrType.Elem This CL makes the generated code for reflect.TypeFor as simple as an intrinsic function. Fixes #75203 Change-Id: I7bb48787101f07e77ab5c583292e834c28a028d6 Reviewed-on: https://go-review.googlesource.com/c/go/+/700336 LUCI-TryBot-Result: Go LUCI <go...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2767,6 +2767,22 @@\n (Load <typ.Uintptr> (OffPtr [off] (ITab (IMake (Addr {s} sb) _))) _) && isFixedSym(s, off) => (Addr {fixedSym(b.Func, s, off)} sb)\n (Load <typ.Uintptr> (OffPtr [off] (ITab (IMake (Convert (Addr {s} ...
2025-09-01T10:31:29
facebook/react
0ad0fac1dc11db8d5a6831987fb0324cd6d59498
fbfe08de6126f04777da805a493e819989151edf
Fix unstable_useContextWithBailout dispatcher assignment (#30692) One more copy pasta fix Assignments are unique now ``` % cat packages/react-reconciler/src/ReactFiberHooks.js | grep .unstable_useContextWithBailout function unstable_useContextWithBailout<T>( (ContextOnlyDispatcher: Dispatcher).unstable_useCon...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -4622,7 +4622,7 @@ if (__DEV__) {\n };\n }\n if (enableContextProfiling) {\n- (HooksDispatcherOnUpdateInDEV: Dispatcher).unstable_useContextWithBailout =\n+ (HooksDispatcherOnRerenderInDEV: Dispatcher).unstable_useCon...
2024-08-14T15:04:42
electron/electron
8454f4e49ffee64f6a6f3568acee2b08f0ea9a90
60c4c9fec6742b2f1352c4ec3deabed4b53b990a
feat: emit an event when accessing restricted path in File System Access API (#42561) * fix: show a dialog when accessing restricted path in File System Access API * fix: allow overriding initial blocked paths * docs: fix doc * Update docs/api/session.md Co-authored-by: Erick Zhao <erick@hotmail.ca> * f...
[ { "path": "docs/api/session.md", "patch": "@@ -143,6 +143,71 @@ Returns:\n Emitted after an extension is loaded and all necessary browser state is\n initialized to support the start of the extension's background page.\n \n+#### Event: 'file-system-access-restricted'\n+\n+Returns:\n+\n+* `event` Event\n+* `d...
2024-07-22T10:18:15
nodejs/node
cbedcd16960c59ba77ee091c8722879fd56735e1
888e5eb4fde91ebd4e78704c756883d895f0eb46
src: improve error handling in string_bytes/decoder PR-URL: https://github.com/nodejs/node/pull/56978 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/string_bytes.cc", "patch": "@@ -112,16 +112,17 @@ class ExternString: public ResourceType {\n ExternString* h_str = new ExternString<ResourceType, TypeName>(isolate,\n data,\n ...
2025-02-11T16:40:02
golang/go
80038586ed2814a03dcb95cd6f130766f8d803c3
91e76a513bdfa4159ea0aa65a01f89e006e6ead3
cmd/compile: export to DWARF types only referenced through interfaces Delve and viewcore use DWARF type DIEs to display and explore the runtime value of interface variables. This has always been slightly problematic since the runtime type of an interface variable might only be reachable through interfaces and thus be ...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -128,14 +128,29 @@ func Info(ctxt *obj.Link, fnsym *obj.LSym, infosym *obj.LSym, curfn obj.Func) (s\n \t// already referenced by a dwarf var, attach an R_USETYPE relocation to\n \t// the function symbol to insure that the type included in ...
2025-08-18T13:49:50
facebook/react
fbfe08de6126f04777da805a493e819989151edf
2a540194adde100c1af2b57b346e62eee760524c
fix[react-devtools/InspectedElement]: fixed border stylings when some of the panels are not rendered (#30676) Alternative to https://github.com/facebook/react/pull/30667. Basically wrap every section in a `div` with the same class, and only apply `border-bottom` for every instance, except for the last child. We a...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementContextTree.js", "patch": "@@ -60,7 +60,7 @@ export default function InspectedElementContextTree({\n return null;\n } else {\n return (\n- <div className={styles.InspectedElementTree}>\n+ <div>\n ...
2024-08-14T12:35:06
nodejs/node
888e5eb4fde91ebd4e78704c756883d895f0eb46
66549b4ff513ea8d545404b224c52149370f8ce8
src: improve error handling in process_wrap Replace ToLocalChecked uses. PR-URL: https://github.com/nodejs/node/pull/56977 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/process_wrap.cc", "patch": "@@ -20,6 +20,7 @@\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n \n #include \"env-inl.h\"\n+#include \"node_errors.h\"\n #include \"node_external_reference.h\"\n #include \"permission/permission.h\"\n #include \"stream_base-inl.h\"\n@@ -40,7 +41,11 @@ using v8::Han...
2025-02-11T16:28:04
electron/electron
60c4c9fec6742b2f1352c4ec3deabed4b53b990a
296a558c322567104cb2f47771855e7bf8eaf92b
chore: remove unused #includes (#42971) * chore: iwyu buildflags.h * chore: iwyu dictionary.h * chore: iwyu arguments.h * chore: iwyu values.h * chore: iwyu compiler_specific.h * chore: iwyu binder_map.h * chore: iwyu <vector> * chore: iwyu <set> * chore: iwyu raw_ptr * chore: iwyu gfx/canva...
[ { "path": "shell/app/electron_content_client.cc", "patch": "@@ -11,10 +11,7 @@\n \n #include \"base/command_line.h\"\n #include \"base/files/file_util.h\"\n-#include \"base/path_service.h\"\n #include \"base/strings/string_split.h\"\n-#include \"base/strings/string_util.h\"\n-#include \"base/strings/utf_str...
2024-07-22T09:31:32
vercel/next.js
0b14eb2ed2e9b02ee70f5eff5d10e34b83da8f82
1111200bc949e09c44f14e3b51af987ecc2fa6b3
Add note about $ACTION_ properties, remove reference to .entries() (#84459) <!-- 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 maki...
[ { "path": "docs/01-app/02-guides/forms.mdx", "patch": "@@ -50,7 +50,7 @@ export default function Page() {\n }\n ```\n \n-> **Good to know:** When working with forms that have multiple fields, you can use the [`entries()`](https://developer.mozilla.org/en-US/docs/Web/API/FormData/entries) method with JavaScr...
2025-10-09T17:29:50
golang/go
e8f9127d1f47ea9cf252237d387ea61d17651c3e
731e54616686889146c579317c7d1715c85a8505
net/netip: export Prefix.Compare, fix ordering Fixes #61642 Co-authored-by: David Anderson <dave@natulte.net> Change-Id: I54795763bdc5f62da469c2ae20618c36b64396f3 Reviewed-on: https://go-review.googlesource.com/c/go/+/700355 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Rev...
[ { "path": "api/next/61642.txt", "patch": "@@ -0,0 +1 @@\n+pkg net/netip, method (Prefix) Compare(Prefix) int #61642", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/net/netip/61642.md", "patch": "@@ -0,0 +1 @@\n+The new [Prefix.Compa...
2025-09-02T07:44:42
facebook/react
2a540194adde100c1af2b57b346e62eee760524c
8e60bacd08215bd23f0bf05dde407cd133885aa1
[Flight] do not emit error after abort (#30683) When synchronously aborting in a non-async Function Component if you throw after aborting the task would error rather than abort because React never observed the AbortSignal. Using a sigil to throw after aborting during render isn't effective b/c the user code itse...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js", "patch": "@@ -2554,4 +2554,100 @@ describe('ReactFlightDOM', () => {\n </div>,\n );\n });\n+\n+ it('can error synchronously after aborting in a synchronous Component', async () => {\n+ const rejectError = new...
2024-08-14T03:59:45
nodejs/node
5dafb48f1ad10c4eec0bb10176087a59e5ef9c62
211171fe2ca26a5a81930fec155e241bff7e1fc6
module: fix require.resolve() crash on non-string paths Previously, `require.resolve()` could crash when: - The first parameter was a relative path and - The `paths` array contained non-string entries This commit fixes the issue by adding a check in `Module._findPath` to ensure all elements in `paths` are strings, an...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -181,6 +181,7 @@ const {\n \n const {\n codes: {\n+ ERR_INVALID_ARG_TYPE,\n ERR_INVALID_ARG_VALUE,\n ERR_INVALID_MODULE_SPECIFIER,\n ERR_REQUIRE_CYCLE_MODULE,\n@@ -246,6 +247,9 @@ function wrapModuleLoad(request, parent, isMain) {...
2025-02-11T15:24:02
vercel/next.js
396fed36a28dafd0ebdd326c743fe8bcb12f1853
954d40be142cd3dc6b1b52440c1f459893a91853
Remove bailed out SSG routes from the list of SSG (#83861) ### Why? When SSG, the pages can bail out when detected a dynamic usage. However, the routes that bailed out were still marked as SSG, which can confuse the users. ### How? Remove the bailed-out routes from the SSG routes list. If there are no more SSG rout...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -2811,6 +2811,8 @@ export default async function build(\n buildStage: 'static-generation',\n })\n \n+ const hasGSPAndRevalidateZero = new Set<string>()\n+\n // we need to trigger automatic exporting when we have\n // -...
2025-10-09T15:46:04
facebook/react
f6d1df6648a8912ea30550507a9d400802dcdff4
a601d1da3647ed9a20d9f83b87c8019492f24215
[Flight] erroring after abort should not result in unhandled rejection (#30675) When I implemented the ability to abort synchronoulsy in flight I made it possible for erroring async server components to cause an unhandled rejection error. In the current implementation if you abort during the synchronous phase of a ...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js", "patch": "@@ -2485,4 +2485,73 @@ describe('ReactFlightDOM', () => {\n </div>,\n );\n });\n+\n+ it('can error synchronously after aborting without an unhandled rejection error', async () => {\n+ function App()...
2024-08-13T20:42:10
rust-lang/rust
a4c683f7dfdce6781cccd2830e67c6b179fd665f
c1b0b32fe9c150392345c9f9c35f6c056f5ffcd4
fix: use compound assignment in binop_lhs_never_place_diverges test
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/tests/never_type.rs", "patch": "@@ -826,8 +826,7 @@ fn binop_lhs_never_place_diverges() {\n fn foo() {\n unsafe {\n let p: *mut ! = 0 as _;\n- *p + 1;\n-// ^^ adjustments: NeverToAny\n+ *p += 1;\n }\n }\n \"#,", "add...
2026-02-28T18:04:13
nodejs/node
de1b34557bd2a0ecf623e3afab185427613d4744
f9ea8d6dffb7bda454cd7427ae57b8c9e8700cbb
test: improve timeout duration for debugger events PR-URL: https://github.com/nodejs/node/pull/56970 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
[ { "path": "test/common/debugger.js", "patch": "@@ -7,7 +7,8 @@ const BREAK_MESSAGE = new RegExp('(?:' + [\n 'exception', 'other', 'promiseRejection', 'step',\n ].join('|') + ') in', 'i');\n \n-let TIMEOUT = common.platformTimeout(5000);\n+// Some macOS machines require more time to receive the outputs fro...
2025-02-10T23:27:08
rust-lang/rust
5a18412c93a32811b135ed4a6ac8fdc2df33226b
ba1567989ee7774a1fb53aa680a8e4e8daa0f519
Remove `TranslationError`
[ { "path": "compiler/rustc_errors/src/error.rs", "patch": "@@ -1,139 +0,0 @@\n-use std::borrow::Cow;\n-use std::error::Error;\n-use std::fmt;\n-\n-use rustc_error_messages::fluent_bundle::resolver::errors::{ReferenceKind, ResolverError};\n-use rustc_error_messages::{FluentArgs, FluentError};\n-\n-#[derive(De...
2026-02-28T17:34:17
facebook/react
d48603a52564675ce02152fff245e38b6816da47
23830ea2a19bc14f5e7fa7198f9371130f0f8382
Fix unstable_useContextWithBailout incorrect dispatcher assignment (#30673) Fixing a mistaken copy from another dispatcher property assignment
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -4839,7 +4839,7 @@ if (__DEV__) {\n };\n }\n if (enableContextProfiling) {\n- (HooksDispatcherOnUpdateInDEV: Dispatcher).unstable_useContextWithBailout =\n+ (InvalidNestedHooksDispatcherOnMountInDEV: Dispatcher).unsta...
2024-08-13T15:31:44
nodejs/node
72e1a8fbcc29d8d4eaccb90498782f400b9df278
b0c6e10c5e01f4aec1035015dcd26fedb478571a
sqlite: fix coverity warnings related to backup() This commit fixes several coverity warnings related to the recently landed backup() API. PR-URL: https://github.com/nodejs/node/pull/56961 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jas...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -171,9 +171,9 @@ class BackupJob : public ThreadPoolWork {\n env_(env),\n source_(source),\n pages_(pages),\n- source_db_(source_db),\n- destination_name_(destination_name),\n- dest_db_(dest_db) {\n+ source_db_(...
2025-02-10T18:27:01
vercel/next.js
ad90a67439eaab12e048e6def5e11db50a721866
e2eee896592679fd4947735a0ae2ac4649bb89bf
[test] Assert on stable error codes (#84671) Fixes ``` DevErrorOverlay › sends feedback when clicking not helpful button expect(received).toEqual(expected) // deep equality - Expected - 1 + Received + 1 Array [ - "/__nextjs_error_feedback?errorCode=E794&wasHelpful=false", + "/__nextj...
[ { "path": "test/development/error-overlay/app/known-client-error/page.tsx", "patch": "@@ -1,23 +1,18 @@\n 'use client'\n \n-import Link from 'next/link'\n import React from 'react'\n \n export default function Page() {\n- const broken = (\n- <>\n- <Link href=\"/invalid\" as=\"mailto:john@example.co...
2025-10-09T07:20:13
rust-lang/rust
900bfa15eba65dd5597e5b51892e5e4f2bd21eab
180e4a7155c019e50a5c375ba9c33e71b1dd644d
refactor(mgca): Change `DefKind::Const` and `DefKind::AssocConst` to have a `is_type_const` flag * refactor: add `is_type_const` flag to `DefKind::Const` and `AssocConst` * refactor(cleanup) remove the `rhs_is_type_const` query * style: fix formatting * refactor: refactor stuff in librustdoc for new Const and AssocCon...
[ { "path": "clippy_lints/src/loops/needless_range_loop.rs", "patch": "@@ -308,7 +308,7 @@ impl<'tcx> VarVisitor<'_, 'tcx> {\n }\n return false; // no need to walk further *on the variable*\n },\n- Res::Def(DefKind::Static { .. } | DefKind...
2026-02-28T17:27:46
facebook/react
23830ea2a19bc14f5e7fa7198f9371130f0f8382
0d7c12c7790c4a7315af80f8c73ac951f024f4fe
Unit Test for `findNodeHandle` Error Behavior (#30669) ## Summary As promised on https://github.com/facebook/react/pull/29627, this creates a unit test for the `findNodeHandle` error that prevents developers from calling it within render methods. ## How did you test this change? ``` $ yarn test ReactFabric...
[ { "path": "packages/react-native-renderer/src/__tests__/ReactFabric-test.internal.js", "patch": "@@ -1306,6 +1306,40 @@ describe('ReactFabric', () => {\n );\n });\n \n+ it('findNodeHandle errors when called from render', async () => {\n+ class TestComponent extends React.Component {\n+ render...
2024-08-12T23:32:40
electron/electron
5773a2dce6fbcad34dc4f94a9c41b100fcd3cbaf
bc345db351cc0c62cb5a6b70e9040d4f3e7d41da
fix: dangling raw_ptr NodeBindings::uv_env_ (#42933)
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -604,6 +604,7 @@ void ElectronBrowserMainParts::PostMainMessageLoopRun() {\n node_env_->set_trace_sync_io(false);\n js_env_->DestroyMicrotasksRunner();\n node::Stop(node_env_.get(), node::StopFlags::kDoNotTerminateIsolate);\n+ nod...
2024-07-18T04:30:09
nodejs/node
c5c71b2946a01dd05510eab5a4f6df9f85a490e3
03e9adf876e2039604a038b2eb1476bf4a9e1774
src: add nullptr handling for `NativeKeyObject` Fixes: https://github.com/nodejs/node/issues/56899 PR-URL: https://github.com/nodejs/node/pull/56900 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com>
[ { "path": "src/crypto/crypto_keys.cc", "patch": "@@ -1045,6 +1045,7 @@ void NativeKeyObject::New(const FunctionCallbackInfo<Value>& args) {\n CHECK_EQ(args.Length(), 1);\n CHECK(args[0]->IsObject());\n KeyObjectHandle* handle = Unwrap<KeyObjectHandle>(args[0].As<Object>());\n+ CHECK_NOT_NULL(handle);...
2025-02-10T15:09:22
vercel/next.js
6ec80654fd96adea8f63d8d705683ad35570228f
30c64ba0e25985b26fc00cdfb1cfdd80dabfc1a3
fix: strip _NEXTSEP_ from interpolated pathnames (#84430) ## What Fixes an issue where internal route normalization markers (`_NEXTSEP_`) were leaking into compiled URLs for interception routes with adjacent dynamic parameters. ## Why When Next.js normalizes route patterns like `/photos/(.):author/:id` for path-to-...
[ { "path": "packages/next/src/lib/route-pattern-normalizer.ts", "patch": "@@ -14,7 +14,7 @@ import type { Token } from 'next/dist/compiled/path-to-regexp'\n * This unique marker is inserted between adjacent parameters and stripped out\n * during parameter extraction to avoid conflicts with real URL content...
2025-10-09T03:39:35
facebook/react
0d7c12c7790c4a7315af80f8c73ac951f024f4fe
6532c412566f7223f82b1460023180c25e15fca3
[compiler][ez] Enable some sprout tests that no longer need to be disabled Summary: As title. Better support for flow typing, bugfixes, etc fixes these ghstack-source-id: 6326653ce42b33b6c1c76a494434d133382ca80a Pull Request resolved: https://github.com/facebook/react/pull/30591
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/component-declaration-basic.flow.expect.md", "patch": "@@ -7,8 +7,17 @@ export default component Foo(bar: number) {\n return <Bar bar={bar} />;\n }\n \n+component Bar(bar: number) {\n+ return <div>{bar}</div>;\n+}\n+...
2024-08-12T19:55:55
electron/electron
bc345db351cc0c62cb5a6b70e9040d4f3e7d41da
ce45450c28ff34359c6e911671ce43f7c7e0f344
fix: dangling raw_ptr<views::View> in api::View (#42929)
[ { "path": "shell/browser/api/electron_api_view.cc", "patch": "@@ -180,7 +180,7 @@ View::~View() {\n return;\n view_->RemoveObserver(this);\n if (delete_view_)\n- delete view_;\n+ view_.ClearAndDelete();\n }\n \n void View::ReorderChildView(gin::Handle<View> child, size_t index) {", "additi...
2024-07-18T02:31:48
rust-lang/rust
efc150e5b3de648871a9ce88b2ca0acf38b066fd
eeb94be79adc9df7a09ad0b2421f16e60e6d932c
refactor(mgca): Change `DefKind::Const` and `DefKind::AssocConst` to have a `is_type_const` flag * refactor: add `is_type_const` flag to `DefKind::Const` and `AssocConst` * refactor(cleanup) remove the `rhs_is_type_const` query * style: fix formatting * refactor: refactor stuff in librustdoc for new Const and AssocCon...
[ { "path": "compiler/rustc_ast_lowering/src/path.rs", "patch": "@@ -112,7 +112,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {\n }\n // `a::b::Trait(Args)::TraitItem`\n Res::Def(DefKind::AssocFn, _)\n- | Res::Def(D...
2026-02-28T17:27:46
nodejs/node
3844e7e0ed3627c8185270df33b160b9df38ca94
6ba36b4e03316466d89b345f3ef5de835ddee932
2025-02-10, Version 20.18.3 'Iron' (LTS) Notable changes: crypto: * update root certificates to NSS 3.104 (Richard Lau) https://github.com/nodejs/node/pull/55681 doc: * add LJHarb to collaborators (Jordan Harband) https://github.com/nodejs/node/pull/56132 * enforce strict policy to semver-major releases (Rafael...
[ { "path": "CHANGELOG.md", "patch": "@@ -69,7 +69,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V22.md#22.0.0\">22.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.18.2\">20.18.2</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.18.3\">20.18.3...
2025-01-22T13:04:10
vercel/next.js
30c64ba0e25985b26fc00cdfb1cfdd80dabfc1a3
ec560204f97532bae5daa5ef9a907fe2062fc415
Fix interception route rewrites for nested dynamic routes (#84413) ### What? Fixes interception routes with dynamic parameters that were generating rewrite rules in an incorrect format, preventing proper URL rewriting by Vercel and Next.js. ### Why? The failing test `parallel-routes-and-interception-nested-dynamic-...
[ { "path": "packages/next/errors.json", "patch": "@@ -865,5 +865,7 @@\n \"864\": \"Missing value for segment key: \\\"%s\\\" with dynamic param type: %s\",\n \"865\": \"`experimental.rdcForNavigations` is enabled, but `experimental.cacheComponents` is not.\",\n \"866\": \"Both \\\"%s\\\" and \\\"%s\\\"...
2025-10-09T03:38:54
facebook/react
25c584f5672d90ba67d72ea9ba9cc06b12311806
b4c38015d0f8b58e9d0890dd7fd00ad763d3f965
[DevTools] Further Refactoring of Unmounts (#30658) Stacked on #30625 and #30657. This ensures that we only create instances during the commit reconciliation and that we don't create unnecessary instances for things that are filtered or not mounted. This ensures that we also can rely on the reconciliation to do ...
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -34,6 +34,8 @@ describe('InspectedElement', () => {\n let SettingsContextController;\n let StoreContext;\n let TreeContextController;\n+ let TreeStateContext;\n+ let TreeDispatcherContext;\n \n let Test...
2024-08-12T16:41:29
golang/go
4c4cefc19a16924f3aa7135d3fdc6d1687fe26c7
925a3cdcd13472c8f78d51c9ce99a59e77d46eb4
cmd/gofmt: simplify logic to process arguments Rather than stat-ing each argument and taking different code paths depending on whether it's a directory or not, we can leverage the fact that filepath.WalkDir works on regular files and already has to figure out whether each file it walks is a directory or not. We can t...
[ { "path": "src/cmd/gofmt/gofmt.go", "patch": "@@ -87,10 +87,8 @@ func initParserMode() {\n \t}\n }\n \n-func isGoFile(f fs.DirEntry) bool {\n-\t// ignore non-Go files\n-\tname := f.Name()\n-\treturn !strings.HasPrefix(name, \".\") && strings.HasSuffix(name, \".go\") && !f.IsDir()\n+func isGoFilename(name st...
2025-08-30T17:54:43
electron/electron
81bdba67ec1b69b049f2feb31cea1cfe50fb26bd
c210ae9b333a4f77f2021fbb13623210e6416794
feat: Implement password delegate for NSS (#41205) * feat: Implement password delegate for NSS (#41188) Introduce an app event client-certificate-request-password. It allows the user to display a UI to prompt for the password. An alternative would have been to implement a class similar to CryptoModulePasswordD...
[ { "path": "docs/api/app.md", "patch": "@@ -1489,6 +1489,38 @@ This method can only be called after app is ready.\n \n Returns `Promise<string>` - Resolves with the proxy information for `url` that will be used when attempting to make requests using [Net](net.md) in the [utility process](../glossary.md#utili...
2024-07-17T13:48:03
vercel/next.js
6cecc7546480c43fdab6a6bbbd14a0ed8372f40f
8f6155f4a7b7a2e174c1c3d8a9aceef9ddf7f5df
Fix dynamic catchall parameter interpolation in parallel routes (#84279) ### Fixing a bug - Tests added with comprehensive e2e test suite for parallel route navigations - Error handling improved with clearer error messages for missing dynamic parameters ### What? Fixes incorrect parameter interpolation where catcha...
[ { "path": "packages/next/errors.json", "patch": "@@ -861,5 +861,6 @@\n \"860\": \"Client Max Body Size must be a valid number (bytes) or filesize format string (e.g., \\\"5mb\\\")\",\n \"861\": \"Client Max Body Size must be larger than 0 bytes\",\n \"862\": \"Request body exceeded %s\",\n- \"863\": ...
2025-10-09T01:49:39
nodejs/node
1781f6363359f3d0d944360c13f9e6206938418d
a2aa6ca9d72c2d6d7e17a39aa13a801352113ff0
fs: make `FileHandle.readableWebStream` always create byte streams The original implementation of the experimental `FileHandle.readableWebStream` API created non-`type: 'bytes'` streams, which prevented callers from creating `mode: 'byob'` readers from the returned stream, which means they could not achieve the associ...
[ { "path": "doc/api/fs.md", "patch": "@@ -477,11 +477,14 @@ Reads data from the file and stores that in the given buffer.\n If the file is not modified concurrently, the end-of-file is reached when the\n number of bytes read is zero.\n \n-#### `filehandle.readableWebStream([options])`\n+#### `filehandle.read...
2025-02-10T03:40:31
facebook/react
68dbd84b61cc2504c30e19f748f59a52d331f851
8d74e8c73a5cc5e461bb1413a74c6b058c6be134
[DevTools] Unmount by walking previous nodes no longer in the new tree (#30644) This no longer uses the handleCommitFiberUnmount hook to track unmounts. Instead, we can just unmount the DevToolsInstances that we didn't reuse. This doesn't account for cleaning up instances that were unnecessarily created when they w...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -1405,81 +1405,37 @@ export function attach(\n \n // Removes a Fiber (and its alternate) from the Maps used to track their id.\n // This method should always be called when a Fiber is unmounting.\n- function untrackF...
2024-08-12T04:35:42
rust-lang/rust
aa53530f2720f92a442290706539d8275ffd4f72
70bf845cb2b07be5111d7992223ce98aaa1fd6cb
fix: Fix wrong confiditon in `Visibility::min`
[ { "path": "src/tools/rust-analyzer/crates/hir-def/src/visibility.rs", "patch": "@@ -234,7 +234,7 @@ impl Visibility {\n if mod_.krate(db) == krate { Some(Visibility::Module(mod_, exp)) } else { None }\n }\n (Visibility::Module(mod_a, expl_a), Visibility::Module(mod_b,...
2026-02-28T17:00:32
golang/go
925a3cdcd13472c8f78d51c9ce99a59e77d46eb4
3e596d448fb6b9668d144cffaa65e1d12a5fdce8
unicode/utf8: make DecodeRune{,InString} inlineable This change makes the fast path for ASCII characters inlineable in DecodeRune and DecodeRuneInString and removes most instances of manual inlining at call sites. Here are some benchmark results (no change to allocations): goos: darwin goarch: amd64 pkg: unicode/utf...
[ { "path": "src/bufio/bufio.go", "patch": "@@ -311,10 +311,7 @@ func (b *Reader) ReadRune() (r rune, size int, err error) {\n \tif b.r == b.w {\n \t\treturn 0, 0, b.readErr()\n \t}\n-\tr, size = rune(b.buf[b.r]), 1\n-\tif r >= utf8.RuneSelf {\n-\t\tr, size = utf8.DecodeRune(b.buf[b.r:b.w])\n-\t}\n+\tr, size ...
2025-09-02T22:10:40
electron/electron
9023707b9bae3e02256c4303d1b2433a0036011d
2875fab452961a6b293d4d300e1a4b9907191bf5
fix: crash with creating OffScreenWebContentsView (#42920) On the Mac platform, OffScreenWebContentsView uses Automatic Reference Counting (ARC) to handle the lifecycle of offScreenView_. However, this private member variable is not initialized and its value is undefined. In some cases, it is initialized to a garba...
[ { "path": "shell/browser/osr/osr_web_contents_view.h", "patch": "@@ -109,7 +109,7 @@ class OffScreenWebContentsView : public content::WebContentsView,\n raw_ptr<content::WebContents> web_contents_ = nullptr;\n \n #if BUILDFLAG(IS_MAC)\n- RAW_PTR_EXCLUSION OffScreenView* offScreenView_;\n+ RAW_PTR_EXCLUS...
2024-07-17T11:09:32
vercel/next.js
5bb25f9bf4a04d397326d928ba686603c9c609be
112ef61103237b30d0a231ba26306172b45b867a
Fix flakey overlay feedback test (#84662) x-ref: https://github.com/vercel/next.js/actions/runs/18360376124/job/52302677520?pr=84500
[ { "path": "test/development/error-overlay/index.test.tsx", "patch": "@@ -1,5 +1,5 @@\n import { nextTestSetup } from 'e2e-utils'\n-import { assertHasRedbox } from 'next-test-utils'\n+import { assertHasRedbox, retry } from 'next-test-utils'\n \n describe('DevErrorOverlay', () => {\n const { next } = nextTe...
2025-10-08T23:31:17
nodejs/node
a2aa6ca9d72c2d6d7e17a39aa13a801352113ff0
d1f8ccb10daba0b4eb4db4986615a545e11a0d87
test_runner: print formatted errors on summary PR-URL: https://github.com/nodejs/node/pull/56911 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/test_runner/reporter/spec.js", "patch": "@@ -30,6 +30,31 @@ class SpecReporter extends Transform {\n colors.refresh();\n }\n \n+ #formatFailedTestResults() {\n+ if (this.#failedTests.length === 0) {\n+ return '';\n+ }\n+\n+ const results = [\n+ `\\n${reporte...
2025-02-09T18:03:38
facebook/react
8d74e8c73a5cc5e461bb1413a74c6b058c6be134
2504dbd669e0f6ef34834c4445d4e4851e1d0b2a
[compiler] Patch error reporting for blocklisted imports ghstack-source-id: 614c1e9c04828bfa2da13a6abaeff7ce3e67cb9b Pull Request resolved: https://github.com/facebook/react/pull/30652
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Imports.ts", "patch": "@@ -7,32 +7,39 @@\n \n import {NodePath} from '@babel/core';\n import * as t from '@babel/types';\n-import {CompilerError} from '../CompilerError';\n+import {CompilerError, ErrorSeverity} from '../CompilerError';\...
2024-08-09T20:43:21
golang/go
2a7f1d47b0650c92b47f0cd5bc3536d438e4bbbe
b09068041a20ed3cd44685a1d7f4dccbabfc2e94
runtime: use one more address bit for tagged pointers We use one extra bit to placate systems which simulate amd64 binaries on an arm64 host. Allocated arm64 addresses could be as high as 1<<48-1, which would be invalid if we assumed 48-bit sign-extended addresses. (Note that this does not help the other way around, ...
[ { "path": "src/runtime/tagptr_64bit.go", "patch": "@@ -22,10 +22,17 @@ const (\n \t// On AMD64, virtual addresses are 48-bit (or 57-bit) sign-extended.\n \t// Other archs are 48-bit zero-extended.\n \t//\n+\t// We use one extra bit to placate systems which simulate amd64 binaries on\n+\t// an arm64 host. Al...
2025-09-02T22:46:11
rust-lang/rust
4ed37668c4b2d4523ba549890c2d9bee32b013f3
ba1567989ee7774a1fb53aa680a8e4e8daa0f519
Fix LegacyKeyValueFormat report from docker build: disabled
[ { "path": "src/ci/docker/host-x86_64/disabled/dist-aarch64-android/Dockerfile", "patch": "@@ -13,13 +13,12 @@ ENV DEP_Z_ROOT=/android/ndk/arm64-21/sysroot/usr/\n \n ENV HOSTS=aarch64-linux-android\n \n-ENV RUST_CONFIGURE_ARGS \\\n- --aarch64-linux-android-ndk=/android/ndk/arm64-21 \\\n+ENV RUST_CONFIGU...
2026-02-28T16:37:52
electron/electron
fd907bc0a3cdac25a10b99a77c4b19013ffc6a00
c7709747d07c72bda1443c1a32a78eb577f91db9
fix: `getUserMedia` needs macOS system permissions check (#42899) fix: getUserMedia needs macOS system permissions check Closes https://github.com/electron/electron/issues/42714 Closes https://github.com/electron/electron/issues/29861
[ { "path": "shell/browser/web_contents_permission_helper.cc", "patch": "@@ -7,23 +7,29 @@\n #include <string_view>\n #include <utility>\n \n+#include \"components/content_settings/core/common/content_settings.h\"\n+#include \"components/webrtc/media_stream_devices_controller.h\"\n #include \"content/public/b...
2024-07-17T09:30:05
vercel/next.js
112ef61103237b30d0a231ba26306172b45b867a
4f19d01c5269a9d5e3780041b149185e31c4563b
docs: add note clarifying project root in monorepo (#84628) ### What? - Adding a small note to clarify the meaning of the phrase "project root" in the documentation for next.config output, specifically in regards to a monorepo setup ### Why? - While doing some debugging related to a container that I cannot build loca...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/output.mdx", "patch": "@@ -79,6 +79,9 @@ module.exports = {\n \n - There are some cases in which Next.js might fail to include required files, or might incorrectly include unused files. In those cases, you can leverage `outputFileTracingExc...
2025-10-08T23:29:31
golang/go
1eec830f545ae9c75f143d7d5c757013d6d229be
7bba745820b771307593b7278ce17464eeda2f3d
go/doc: linkify interface methods Create doc links for references to interface methods, such as "[Context.Err]". This does not attempt to handle embedded interfaces: The linked-to method must be declared within the named type. Fixes #54033 Change-Id: I4d7a132affe682c85958ca785bcc96571404e6c1 Reviewed-on: https://go...
[ { "path": "src/go/doc/comment_test.go", "patch": "@@ -24,12 +24,12 @@ func TestComment(t *testing.T) {\n \tpkg := New(pkgs[\"pkgdoc\"], \"testdata/pkgdoc\", 0)\n \n \tvar (\n-\t\tinput = \"[T] and [U] are types, and [T.M] is a method, but [V] is a broken link. [rand.Int] and [crand.Reader] are thi...
2025-07-10T22:43:43
nodejs/node
bf12d72faa1b55cfb5fd7d52a221f896886b116c
f5353100be3ba6c05d9ee77524efc42321781d1d
zlib: add zstd support Fixes: https://github.com/nodejs/node/issues/48412 PR-URL: https://github.com/nodejs/node/pull/52100 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "benchmark/zlib/creation.js", "patch": "@@ -5,7 +5,7 @@ const zlib = require('zlib');\n const bench = common.createBenchmark(main, {\n type: [\n 'Deflate', 'DeflateRaw', 'Inflate', 'InflateRaw', 'Gzip', 'Gunzip', 'Unzip',\n- 'BrotliCompress', 'BrotliDecompress',\n+ 'BrotliCompress', 'B...
2024-03-15T21:54:30
facebook/react
0e6d8c3d1a7adf1db5a4dbe8bba6b8d6c0f31097
2d2cc042d7812499baf992804fbf83c20caa7436
[ci] fix path in compiler_typescript.yml (#30651) The path was incorrect, so the job didn\t run on changes to it.
[ { "path": ".github/workflows/compiler_typescript.yml", "patch": "@@ -6,7 +6,7 @@ on:\n pull_request:\n paths:\n - compiler/**\n- - .github/workflows/compiler-typescript.yml\n+ - .github/workflows/compiler_typescript.yml\n \n env:\n TZ: /usr/share/zoneinfo/America/Los_Angeles", "a...
2024-08-09T17:21:24
electron/electron
778d3098a0f0bfc00015d54263674318f4adf6b1
cbd11bb60510360c05f678bcaab8425ae190f2f2
feat: customize border radius of Views (#42320) * feat: add View#setBorderRadius test: initial setBorderRadius tests fix: robustly set border radius chore: add PAUSE_CAPTURE_TESTS for easier screencap dev feat: add view border radius support test: view border radius refactor: cleanup view code * m...
[ { "path": "chromium_src/BUILD.gn", "patch": "@@ -14,6 +14,8 @@ import(\"//third_party/widevine/cdm/widevine.gni\")\n static_library(\"chrome\") {\n visibility = [ \"//electron:electron_lib\" ]\n sources = [\n+ \"//ash/style/rounded_rect_cutout_path_builder.cc\",\n+ \"//ash/style/rounded_rect_cutou...
2024-07-17T00:16:25
vercel/next.js
714a702068c5d5c95354b2b76159e57832b25799
a8f55b92d50b64bc17f7ff935726cf979e80efde
[middleware]: add upper bound to cloneBodyStream (#84539) <!-- 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 Contri...
[ { "path": "packages/next/errors.json", "patch": "@@ -857,5 +857,8 @@\n \"856\": \"`lockfileTryAcquireSync` is not supported by the wasm bindings.\",\n \"857\": \"`lockfileUnlock` is not supported by the wasm bindings.\",\n \"858\": \"`lockfileUnlockSync` is not supported by the wasm bindings.\",\n- \...
2025-10-08T22:47:10
golang/go
d4b17f58695337c7eefa9d066cc51a425842e491
6a08e80399bd65b95e60e3c74b7e1f86754752a7
internal/runtime/atomic: reset wrong jump target in Cas{,64} on loong64 The implementation here needs to be consistent with ssa.OpLOONG64LoweredAtomicCas{32,64}, which was ignored in CL 613396. Change-Id: I72e8d2318e0c1935cc3a35ab5098f8a84e48bcd5 Reviewed-on: https://go-review.googlesource.com/c/go/+/699395 Reviewed-...
[ { "path": "src/internal/runtime/atomic/atomic_loong64.s", "patch": "@@ -19,7 +19,7 @@ TEXT ·Cas(SB), NOSPLIT, $0-17\n \tMOVW\tnew+12(FP), R6\n \n \tMOVBU\tinternal∕cpu·Loong64+const_offsetLOONG64HasLAMCAS(SB), R8\n-\tBEQ\tR8, cas_again\n+\tBEQ\tR8, ll_sc\n \tMOVV\tR5, R7 // backup old value\n \tAMCASDBW\tR...
2025-08-27T06:45:58
nodejs/node
756a24242ed6dd99be7ccaed68346c3b9fd1bbea
c0953d9de72576bb9b748e575db19d093601e90a
build: remove explicit linker call to libm on macOS /usr/lib/libm.tbd is available via libSystem.*.dylib and reexports sanitizer symbols. When building for asan this becomes an issue as the linker will resolve the symbols from the system library rather from libclang_rt.* For V8 that rely on specific version of these ...
[ { "path": "deps/brotli/unofficial.gni", "patch": "@@ -25,7 +25,7 @@ template(\"brotli_gn_build\") {\n } else if (target_os == \"freebsd\") {\n defines = [ \"OS_FREEBSD\" ]\n }\n- if (!is_win) {\n+ if (is_linux) {\n libs = [ \"m\" ]\n }\n if (is_clang || !is_win) {", "ad...
2025-02-03T12:44:36
rust-lang/rust
37364585a10e368918e4a79466be24354ff5cf87
448097dd2386957a36880efbb78cb83021774540
Fix async closure suggestion when no space between || and {
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/traits/suggestions.rs", "patch": "@@ -800,7 +800,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n \n // If this is a zero-argument async closure directly passed as an argument\n // and the expected type is `Future`, suggest using `as...
2026-02-05T10:09:46
electron/electron
cbd11bb60510360c05f678bcaab8425ae190f2f2
81351dd1a9f60010b1a7db2209a1578ebe6a57b0
fix: `BrowserWindow.setBackgroundColor` should work with transparency (#42824) fix: BrowserWindow.setBackgroundColor should work with transparency
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -3729,14 +3729,17 @@ void WebContents::SetBackgroundColor(std::optional<SkColor> maybe_color) {\n type_ == Type::kBrowserView\n ? SK_ColorTRANSPA...
2024-07-16T18:11:49
golang/go
6a08e80399bd65b95e60e3c74b7e1f86754752a7
8bcda6c79d40f49363cd04cdaf5bd7909de8f94f
net/http: skip redirecting in ServeMux when URL path for CONNECT is empty In 1.21 ServeMux, we had a special-case to skip redirection when a given path is empty for CONNECT requests: https://go.googlesource.com/go/+/refs/tags/go1.24.4/src/net/http/servemux121.go#205. This special case seems to not have been carried o...
[ { "path": "src/net/http/server.go", "patch": "@@ -2759,9 +2759,12 @@ func (mux *ServeMux) matchOrRedirect(host, method, path string, u *url.URL) (_ *\n \tdefer mux.mu.RUnlock()\n \n \tn, matches := mux.tree.match(host, method, path)\n-\t// If we have an exact match, or we were asked not to try trailing-slas...
2025-08-29T14:34:10
vercel/next.js
5080edb7dc2ea24cd37adf97fb8de03b9e7b0fdb
22c5a06d8d312d29c4f7705abe4569d52f809af3
[docs] fix missing-data-scroll-behavior doc (#84651) Fixes the code snippets for this doc.
[ { "path": "errors/missing-data-scroll-behavior.mdx", "patch": "@@ -12,30 +12,28 @@ Next.js automatically attempts to detect the smooth scrolling configuration to e\n \n Add `data-scroll-behavior=\"smooth\"` to your `<html>` element if you want to disable smooth scrolling when routing via Next.js.\n \n-```ht...
2025-10-08T20:37:53