repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
26bfae531f24082ceeeb89efc026f0970a3116a9
01233410f7fb4b00c12a918d02eaea5dd1716818
test: deflake test-net-throttle Sometimes the test completes with only two data chunks received on the client. Fixes: https://github.com/nodejs/node/issues/40507 PR-URL: https://github.com/nodejs/node/pull/48599 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Liv...
[ { "path": "test/parallel/test-net-throttle.js", "patch": "@@ -84,5 +84,5 @@ server.listen(0, () => {\n \n process.on('exit', () => {\n assert.strictEqual(chars_recved, totalLength);\n- assert.strictEqual(npauses > 2, true);\n+ assert.ok(npauses > 1, `${npauses} > 1`);\n });", "additions": 1, "de...
2023-06-29T13:21:00
facebook/react
fe0356ce2baa0b6569de6cbae6d54166bebb1fdb
02f411578a8e58af8ec28e385f6b0dcb768cdc41
DevTools: Fix passing extensionId in evaled postMessage calls (#22590)
[ { "path": "packages/react-devtools-extensions/src/main.js", "patch": "@@ -216,7 +216,7 @@ function createPanelIfReactLoaded() {\n chrome.devtools.inspectedWindow.eval(\n `window.postMessage({\n source: 'react-devtools-inject-backend',\n- extensionId: \"${CU...
2021-10-19T21:43:59
electron/electron
d79ebc6dc6cb1a39435c3f07ef52bd8c501c629c
cd3c6f9e37053f536bc92a141a1b87a8c6b8995f
fix: pdf viewer permissions (#29210) * fix: pdf viewer permissions * fixup for getAllExtensions
[ { "path": "shell/browser/api/electron_api_session.cc", "patch": "@@ -851,7 +851,7 @@ v8::Local<v8::Value> Session::GetAllExtensions() {\n std::vector<const extensions::Extension*> extensions_vector;\n for (const auto& extension : *installed_extensions) {\n if (extension->location() !=\n- exte...
2021-05-19T23:08:24
rust-lang/rust
9f1066b1c1934c1ce76aececa7b0973776704281
facf7adc357fc8d06bd2f1c5586813ce13333631
Basic support for FFI callbacks This commit adds basic support for FFI callbacks by registering a shim function via libffi. This shim function currently only exits with an error. The main motivation for this is to prevent miri segfaulting as described in [4639](https://github.com/rust-lang/miri/issues/4639). In the f...
[ { "path": "src/tools/miri/src/alloc_addresses/mod.rs", "patch": "@@ -12,6 +12,7 @@ use rustc_middle::ty::TyCtxt;\n \n pub use self::address_generator::AddressGenerator;\n use self::reuse_pool::ReusePool;\n+use crate::alloc::MiriAllocParams;\n use crate::concurrency::VClock;\n use crate::diagnostics::SpanDed...
2025-11-27T17:57:00
golang/go
a7689a013432244b0e7e99606cdf89c2722351e0
bd3bb5adf9b68483e904d6e3076190a4fa28ffec
cmd/go: avoid making some paths relative in go work use filepath.Rel can sometimes return the a relative path that doesn't work. If the basepath contains a symlink as a path component, and the targpath does not exist with the directory pointed to by the innermost symlink, the relative path can "cross" the symlink. The...
[ { "path": "src/cmd/go/internal/base/path.go", "patch": "@@ -5,11 +5,14 @@\n package base\n \n import (\n+\t\"errors\"\n \t\"os\"\n \t\"path/filepath\"\n \t\"runtime\"\n \t\"strings\"\n \t\"sync\"\n+\n+\t\"cmd/go/internal/str\"\n )\n \n var cwd string\n@@ -36,19 +39,52 @@ func Cwd() string {\n }\n \n // Shor...
2024-08-05T20:10:14
vercel/next.js
ef42b84e34ad7e31761cdd1259db67db1607a470
8a6e71a4d956ddce2151097ed59e05039d10b8ae
[dev-overlay] use absolute font src url (#76229) Fix font loading from a non-root URL: Repro: ``` pnpm next dev test/development/app-dir/owner-stack/ ``` and Visit http://localhost:3000/browser/uncaught Shows ``` GET /browser/__nextjs_font/geist-latin.woff2 404 in 330ms ```
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/font/font-styles.tsx", "patch": "@@ -11,7 +11,7 @@ export const FontStyles = () => {\n font-style: normal;\n font-weight: 400 600;\n font-display: swap;\n- src: url(__nextjs_font/geist-latin-ext.wof...
2025-02-19T22:42:57
facebook/react
2af4a79333108f59600970ef23e2614c3a5324e4
b1acff0cc27a4c9844cb8049fae2ec6576a0f956
Hydrate using SuspenseComponent as the parent (#22582) * Add a failing test for Suspense hydration * Include salazarm's changes to the test * The hydration parent of a suspense boundary should be the boundary itself This eventually got set when we popped back out of its children but it doesn't start out that...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js", "patch": "@@ -160,6 +160,64 @@ describe('ReactDOMServerPartialHydration', () => {\n expect(ref.current).toBe(span);\n });\n \n+ it('can hydrate siblings of a suspended component without errors', async () => ...
2021-10-19T00:44:34
rust-lang/rust
979704dacdbb0ba839de2c3f73acee891be17a63
854f1f8db1dfe427dc348eb6567e081d23d8e6eb
Fix not applicable on statement for convert_to_guarded_return Fix not applicable in statement when exist else block Example --- ```rust fn main() { some_statements(); if$0 let Ok(x) = Err(92) { foo(x); } else { return; } some_statements(); } ``` **Before this PR** Assist not appl...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_to_guarded_return.rs", "patch": "@@ -95,7 +95,9 @@ fn if_expr_to_guarded_return(\n \n let parent_block = if_expr.syntax().parent()?.ancestors().find_map(ast::BlockExpr::cast)?;\n \n- if parent_block.tail_expr()? != if_expr.clo...
2025-10-26T08:18:50
electron/electron
77297f37a3df4e430e2627accdaa1c9235684a08
014bdc9f8ade76dcaaf45cadee746ed3aa71a4b2
fix: adjust initial webContents focus calculation (#29204) * fix: adjust initial webContents focus calculation * fix: active window check on mac * fix: about:blank focus behavior * chore: add spec Co-authored-by: Raymond Zhao <raymondzhao@microsoft.com>
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -20,20 +20,6 @@ BrowserWindow.prototype._init = function (this: BWT) {\n nativeSetBounds.call(this, bounds, ...opts);\n };\n \n- // Sometimes the webContents doesn't get focus when window is shown, so we\n- // have to force focusing on webC...
2021-05-19T09:27:35
golang/go
7f05a255a012db7ba15747bcc4b175ef5ecf926d
5de9811f37a802028754f7010ff31b98e05009ca
cmd/go: scale go list with GOMAXPROCS Benchmark from the go-list-benchmark branch shows the following result: goos: darwin goarch: arm64 pkg: cmd/go cpu: Apple M1 Max │ old.txt │ new.txt │ │ sec/op │ sec/op vs base │ L...
[ { "path": "src/cmd/go/internal/modload/list.go", "patch": "@@ -21,6 +21,7 @@ import (\n \t\"cmd/go/internal/modfetch/codehost\"\n \t\"cmd/go/internal/modinfo\"\n \t\"cmd/go/internal/search\"\n+\t\"cmd/internal/par\"\n \t\"cmd/internal/pkgpattern\"\n \n \t\"golang.org/x/mod/module\"\n@@ -273,19 +274,29 @@ fu...
2024-08-26T19:27:00
vercel/next.js
8a6e71a4d956ddce2151097ed59e05039d10b8ae
a2cba246fafb1b1a668ec4a5f90e5970228d1bb4
fix: NextConfig.rewrites type for fallback (#75784) ### What? Below is a snippet for [Incremental adoption of Next.js](https://nextjs.org/docs/app/api-reference/config/next-config-js/rewrites#incremental-adoption-of-nextjs) configuration. ```typescript module.exports = { async rewrites() { return { fallb...
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -734,9 +734,9 @@ export interface NextConfig extends Record<string, any> {\n rewrites?: () => Promise<\n | Rewrite[]\n | {\n- beforeFiles: Rewrite[]\n- afterFiles: Rewrite[]\n- fallback: Rewrite[]\n+ be...
2025-02-19T22:37:21
nodejs/node
c2c72601af8e17afde8f0faf3bf047d51ffb8b97
0e9138d173f80898784ea318f536af4f9fb2387c
bootstrap: use correct descriptor for Symbol.{dispose,asyncDispose} Followup to #48518; fixes #48699 PR-URL: https://github.com/nodejs/node/pull/48703 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Nitzan Uziely <linkgoron@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Benjamin Gru...
[ { "path": "lib/internal/process/pre_execution.js", "patch": "@@ -128,9 +128,26 @@ function prepareExecution(options) {\n function setupSymbolDisposePolyfill() {\n // TODO(MoLow): Remove this polyfill once Symbol.dispose and Symbol.asyncDispose are available in V8.\n // eslint-disable-next-line node-core...
2023-07-12T06:21:40
electron/electron
6f9df7983d60ed23a60258a558e9cd168854ef96
d518b6abc887787ac169270cbcf71c4626e2caaf
docs: update style guide (#29029) * clearer heading rules * docs: clarify documentation style guide rules * Update docs/styleguide.md Co-authored-by: Mark Lee <malept@users.noreply.github.com> * fixes Co-authored-by: Mark Lee <malept@users.noreply.github.com>
[ { "path": "docs/styleguide.md", "patch": "@@ -2,15 +2,14 @@\n \n These are the guidelines for writing Electron documentation.\n \n-## Titles\n+## Headings\n \n * Each page must have a single `#`-level title at the top.\n-* Chapters in the same page must have `##`-level titles.\n-* Sub-chapters need to incre...
2021-05-19T02:55:36
golang/go
7c7d6d31f3a88d79d66ae2224e1a8ef61da4cd67
96d8ff00c2d6a88384863a656fb5e53716b614d3
internal/runtime/sys: fix typo in comment just removed a single byte :) Change-Id: Icd734f9f8f22b2ed0d9d0125d18b6d291bb14cd6 GitHub-Last-Rev: 93c0fd00d863c8a992c63f1bc01c0877b1bdff0c GitHub-Pull-Request: golang/go#69056 Reviewed-on: https://go-review.googlesource.com/c/go/+/607878 LUCI-TryBot-Result: Go LUCI <golang-...
[ { "path": "src/internal/runtime/sys/nih.go", "patch": "@@ -14,7 +14,7 @@ type nih struct{}\n // Other types can embed NotInHeap to make it not-in-heap. Specifically, pointers\n // to these types must always fail the `runtime.inheap` check. The type may be used\n // for global variables, or for objects in un...
2024-08-24T17:36:18
facebook/react
996da67b2991f480b6219471e38aeaa7280bd00c
163e81c1f88a47749e092f2d5b31b7c919f07de8
Replace global `jest` heuristic with `IS_REACT_ACT_ENVIRONMENT` (#22562) * Remove `jest` global check in concurrent roots In concurrent mode, instead of checking `jest`, we check the new `IS_REACT_ACT_ENVIRONMENT` global. The default behavior is `false`. Legacy mode behavior is unchanged. React's own interna...
[ { "path": "packages/react-devtools-scheduling-profiler/src/import-worker/__tests__/preprocessData-test.internal.js", "patch": "@@ -17,6 +17,8 @@ import {\n } from '../../constants';\n import REACT_VERSION from 'shared/ReactVersion';\n \n+global.IS_REACT_ACT_ENVIRONMENT = true;\n+\n describe('getLanesFromTra...
2021-10-18T15:59:18
vercel/next.js
a2cba246fafb1b1a668ec4a5f90e5970228d1bb4
034972215c624e340265d7ec6c3d2d1eeaeb4eb7
docs: Fix link on UPGRADING.md (#75761) ### What? Fix the upgrade instructions in `UPGRADING.md`. ### Why? The `/docs/02-app` path does not exist. --------- Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "UPGRADING.md", "patch": "@@ -1 +1 @@\n-This document has been moved to [nextjs.org/docs/upgrading](https://nextjs.org/docs/upgrading). It's also available in this repository on [/docs/02-app/01-building-your-application/11-upgrading](/docs/02-app/01-building-your-application/11-upgrading).\n+This...
2025-02-19T22:34:47
nodejs/node
ffb1929b6a9b42d9c751723b842a4405154f0d15
43e57982834f91a55fd2fd31c9ff8a463d7deae5
esm: fix emit deprecation on legacy main resolve PR-URL: https://github.com/nodejs/node/pull/48664 Refs: https://github.com/nodejs/node/pull/48325 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "lib/internal/modules/esm/resolve.js", "patch": "@@ -30,7 +30,7 @@ const { getOptionValue } = require('internal/options');\n const policy = getOptionValue('--experimental-policy') ?\n require('internal/process/policy') :\n null;\n-const { sep, relative, toNamespacedPath } = require('path');\n+...
2023-07-11T16:49:06
electron/electron
d518b6abc887787ac169270cbcf71c4626e2caaf
2806664bd0abf80551873d3cf0099081b95dc4e5
fix: window bounds not scaled from screen coordinates (#29162)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -82,19 +82,7 @@\n \n namespace electron {\n \n-namespace {\n-\n #if defined(OS_WIN)\n-const LPCWSTR kUniqueTaskBarClassName = L\"Shell_TrayWnd\";\n-\n-void FlipWindowStyle(HWND handle, bool on, DWORD flag) {\n- DWORD style = ::GetWindowLong(han...
2021-05-19T01:34:40
facebook/react
545d4c2de7934a43b0c5d3ce050d77b4c3113bd3
c3a19e5af0b12f3535ad6f8dee8643252f985e74
Prevent errors/crashing when multiple installs of DevTools are present (#22517) ## Summary This commit is a proposal for handling duplicate installation of DevTools, in particular scoped to duplicates such as a dev build or the internal versions of DevTools installed alongside the Chrome Web Store extension. Spe...
[ { "path": "packages/react-devtools-extensions/build.js", "patch": "@@ -102,6 +102,17 @@ const build = async (tempPath, manifestPath) => {\n }\n manifest.description += `\\n\\nCreated from revision ${commit} on ${dateString}.`;\n \n+ if (process.env.NODE_ENV === 'development') {\n+ // When building t...
2021-10-14T21:15:31
vercel/next.js
034972215c624e340265d7ec6c3d2d1eeaeb4eb7
52284fedb6b9acc677bccd54e877376599fbc047
Consolidate `next/link` error tests (#76214)
[ { "path": "packages/next/src/client/link.tsx", "patch": "@@ -293,7 +293,8 @@ const Link = React.forwardRef<HTMLAnchorElement, LinkPropsReal>(\n return new Error(\n `Failed prop type: The prop \\`${args.key}\\` expects a ${args.expected} in \\`<Link>\\`, but got \\`${args.actual}\\` instead...
2025-02-19T22:34:04
rust-lang/rust
4b34f4f4fbc1cb43307d31ed349909c53843a6d1
644eff67f64cf9e1677d4bbb04431fa21672d379
minor: Fix some minor FIXMEs
[ { "path": "src/tools/rust-analyzer/crates/hir-def/src/expr_store.rs", "patch": "@@ -57,8 +57,7 @@ impl HygieneId {\n Self(ctx)\n }\n \n- // FIXME: Inline this\n- pub(crate) fn lookup(self) -> SyntaxContext {\n+ pub(crate) fn syntax_context(self) -> SyntaxContext {\n self.0\n ...
2026-01-02T09:19:02
golang/go
96d8ff00c2d6a88384863a656fb5e53716b614d3
08707d66c350927560faa11b0c195d37d281ab89
bytes: fix a typo Change-Id: Iecbfe986da386b5c9b8c366904f659acc8f34cfc GitHub-Last-Rev: ed6c744bbd9ff61874e8dd92f4cef01851ed1f09 GitHub-Pull-Request: golang/go#69039 Reviewed-on: https://go-review.googlesource.com/c/go/+/608015 Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@...
[ { "path": "src/bytes/bytes.go", "patch": "@@ -187,7 +187,7 @@ func IndexRune(s []byte, r rune) int {\n \t\treturn -1\n \n \tfallback:\n-\t\t// Switch to bytealg.Index, if available, or a brute for search when\n+\t\t// Switch to bytealg.Index, if available, or a brute force search when\n \t\t// IndexByte ret...
2024-08-23T13:19:17
nodejs/node
8a725c7d026b8d12b1fae597e93f90367c1da2fa
f08341c70f1855719b4141553147e9d79a48cef7
deps: V8: cherry-pick cb00db4dba6c Original commit message: [compiler] fix CompileFunction ignoring kEagerCompile v8::ScriptCompiler::CompileFunction was ignoring kEagerCompile. Unlike the other functions in v8::ScriptCompiler, it was not actually propagating kEagerCompile to the parser. The newly up...
[ { "path": "deps/v8/src/codegen/compiler.cc", "patch": "@@ -3686,7 +3686,7 @@ MaybeHandle<JSFunction> Compiler::GetWrappedFunction(\n // functions fully non-lazy instead thus preventing source positions from\n // being omitted.\n flags.set_collect_source_positions(true);\n- // flags.set_eager(...
2023-07-06T07:28:15
electron/electron
2806664bd0abf80551873d3cf0099081b95dc4e5
071fa2ab8fd6bc41f6f7fb9a798db66b0ecdc344
fix: AdjustAmountOfExternalAllocatedMemory regression in NativeImage destructor (#29179)
[ { "path": "shell/common/api/electron_api_native_image.cc", "patch": "@@ -139,7 +139,7 @@ NativeImage::~NativeImage() {\n auto* const image_skia = image_.ToImageSkia();\n if (!image_skia->isNull()) {\n isolate_->AdjustAmountOfExternalAllocatedMemory(\n- image_skia->bitmap()->computeByt...
2021-05-19T01:04:34
facebook/react
7142d110b00ecb5bb7566128c431fee02963e543
8ee4ff88361eff8e8a8aeec32ba3315ad2065131
Bugfix: Nested useOpaqueIdentifier references (#22553) * Handle render phase updates explicitly We fire a warning in development if a component is updated during the render phase (with the exception of local hook updates, which have their own defined behavior). Because it's not a supported React pattern, we do...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationHooks-test.js", "patch": "@@ -1975,5 +1975,40 @@ describe('ReactDOMServerHooks', () => {\n container.getElementsByTagName('span')[0].getAttribute('id'),\n ).not.toBeNull();\n });\n+\n+ it('useOpaqueIdentifier with mult...
2021-10-13T22:44:36
vercel/next.js
52284fedb6b9acc677bccd54e877376599fbc047
b76775a6ccb390b5de36cdde2baf52143ee00b6a
misc: remove vendored node-fetch usages (#75741) ## What This PR replaces the usage of node-fetch in the next/font/google loader code, which runs as part of every next build. `node-fetch` relies on `punycode`, which shows a deprecration warning from Node.js 22, affecting every users on Next.js and Node 22. This PR a...
[ { "path": "packages/font/src/google/fetch-css-from-google-fonts.ts", "patch": "@@ -1,7 +1,5 @@\n-// @ts-ignore\n-import fetch from 'next/dist/compiled/node-fetch'\n import { nextFontError } from '../next-font-error'\n-import { getProxyAgent } from './get-proxy-agent'\n+import { fetchResource } from './fetch...
2025-02-19T22:13:34
golang/go
08707d66c350927560faa11b0c195d37d281ab89
3b36d92c96436b9fcc2ee3b174edc369a598c163
database/sql: fix panic with concurrent Conn and Close The current implementation has a panic when the database is closed concurrently with a new connection attempt. connRequestSet.CloseAndRemoveAll sets connRequestSet.s to a nil slice. If this happens between calls to connRequestSet.Add and connRequestSet.Delete, th...
[ { "path": "src/database/sql/sql.go", "patch": "@@ -1368,8 +1368,8 @@ func (db *DB) conn(ctx context.Context, strategy connReuseStrategy) (*driverConn\n \n \t\t\tdb.waitDuration.Add(int64(time.Since(waitStart)))\n \n-\t\t\t// If we failed to delete it, that means something else\n-\t\t\t// grabbed it and is a...
2024-08-22T23:37:00
nodejs/node
0c8539e336bfe81c816a85dce71894dbef9ab371
eece8d755c69d393a7bcc14f9c9454020d91ed1d
events: fix bug listenerCount don't compare wrapped listener When add listener by once, it will be wrapped into another function. And when pass listener and there is just one event listener added by once, it will return 0 even if passed listener equal wrapped event listener. Refs: https://github.com/nodejs/node/pull/...
[ { "path": "lib/events.js", "patch": "@@ -847,7 +847,7 @@ function listenerCount(type, listener) {\n \n if (typeof evlistener === 'function') {\n if (listener != null) {\n- return listener === evlistener ? 1 : 0;\n+ return listener === evlistener || listener === evlistener.listener ? ...
2023-07-10T06:33:51
facebook/react
8ee4ff88361eff8e8a8aeec32ba3315ad2065131
1e247ff892985488c6bcb87e924d7881f5c37261
Surface backend errors during inspection in the frontend UI (#22546)
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -35,6 +35,9 @@ describe('InspectedElement', () => {\n let legacyRender;\n let testRendererInstance;\n \n+ let ErrorBoundary;\n+ let errorBoundaryInstance;\n+\n beforeEach(() => {\n utils = require('./...
2021-10-13T14:35:21
electron/electron
5656493676763b37c0f94e7afc09b0cdd3053ba8
adb85f341ba619a8477c87fbb69ec61334c2d656
docs: update macos-dark-mode fiddle and guide content (#29198) * update macos dark mode docs for Electron v12 * pr review fixes * more pr review fixes * reorg paragraphs for better flow * Update docs/tutorial/dark-mode.md Co-authored-by: Erick Zhao <erick@hotmail.ca> * pr fixes Co-authored-by: Eri...
[ { "path": "docs/fiddles/features/macos-dark-mode/main.js", "patch": "@@ -1,11 +1,12 @@\n const { app, BrowserWindow, ipcMain, nativeTheme } = require('electron')\n+const path = require('path')\n \n function createWindow () {\n const win = new BrowserWindow({\n width: 800,\n height: 600,\n webP...
2021-05-19T01:02:12
vercel/next.js
2491b7ea976d798ff877fa2664df42b17c8a3ce6
357361bcea604f2191ef5f370b515c13e455ec88
fix: overlapping query and param names should not conflict (#76177) When the query parameters overlap with the params, previously we mutated the value. This ensures we only mutate a copy which is safe to mutate and preserves the initial search parameters along with the route parameters. <!-- Thanks for opening a PR! ...
[ { "path": "packages/next/src/server/base-server.ts", "patch": "@@ -1198,33 +1198,38 @@ export default abstract class Server<\n }\n \n const pathnameBeforeRewrite = parsedUrl.pathname\n- const rewriteParams = utils.handleRewrites(req, parsedUrl)\n- const rewriteParamKeys...
2025-02-19T21:30:29
golang/go
1e9c5bbc8a428da5832137e84d08ff2b8e99dfaa
2cee5d810974040b10ff8d19119758ac6e7270e1
crypto/aes: add missing aes-gcm buffer overlap checks to PPC64 The tests added by CL 601778 highlighted missing buffer overlap checks in the ppc64 specific aes-gcm implementation. Fixes #69007 Change-Id: I80c3b5628c5079cfed2c3dace7298512c16a8f46 Reviewed-on: https://go-review.googlesource.com/c/go/+/607519 Reviewed-...
[ { "path": "src/crypto/aes/gcm_ppc64x.go", "patch": "@@ -8,6 +8,7 @@ package aes\n \n import (\n \t\"crypto/cipher\"\n+\t\"crypto/internal/alias\"\n \t\"crypto/subtle\"\n \t\"errors\"\n \t\"internal/byteorder\"\n@@ -171,6 +172,9 @@ func (g *gcmAsm) Seal(dst, nonce, plaintext, data []byte) []byte {\n \t}\n \n...
2024-08-22T14:50:08
facebook/react
579c008a752fae70f670047d0ab687552fd8d160
6485ef747249295c7bfb8e599b9dde76df143cec
[Fizz/Flight] pipeToNodeWritable(..., writable).startWriting() -> renderToPipeableStream(...).pipe(writable) (#22450) * Rename pipeToNodeWritable to renderToNodePipe * Add startWriting API to Flight We don't really need it in this case because there's way less reason to delay the stream in Flight. * Pass the...
[ { "path": "fixtures/flight/server/handler.server.js", "patch": "@@ -1,6 +1,6 @@\n 'use strict';\n \n-const {pipeToNodeWritable} = require('react-server-dom-webpack/writer');\n+const {renderToPipeableStream} = require('react-server-dom-webpack/writer');\n const {readFile} = require('fs');\n const {resolve} =...
2021-10-06T04:31:06
nodejs/node
eece8d755c69d393a7bcc14f9c9454020d91ed1d
0fd7ca52fa0e2931a5b207eadf4dca38d2b92035
doc: clarify transform._transform() callback argument logic Clarify that `transform._transform()` callback second argument is used only if the first argument is `null`, i.e. no error occured processing the chunk. PR-URL: https://github.com/nodejs/node/pull/48680 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewe...
[ { "path": "doc/api/stream.md", "patch": "@@ -4517,7 +4517,8 @@ The `callback` function must be called only when the current chunk is completely\n consumed. The first argument passed to the `callback` must be an `Error` object\n if an error occurred while processing the input or `null` otherwise. If a second...
2023-07-08T20:11:30
electron/electron
adb85f341ba619a8477c87fbb69ec61334c2d656
af426cbdab38e8b0c480040bdb69a065e90d4a3e
docs: update drag and drop tutorial (#29200) * Working * Working * Make the native-file drag and drop documents use context bridge * Add per-file sections * Use the updated link format * Use path.join instead of string interpolation. Co-authored-by: Antón Molleda <molant@users.noreply.github.com> ...
[ { "path": "docs/fiddles/features/drag-and-drop/index.html", "patch": "@@ -7,12 +7,9 @@\n </head>\n <body>\n <h1>Hello World!</h1>\n- <p>\n- We are using node <script>document.write(process.versions.node)</script>,\n- Chrome <script>document.write(process.versions.chrome)</script>,\n- ...
2021-05-19T00:55:24
rust-lang/rust
aa4ec54dfe9e63f146847265ed0655ffa9027cea
343cde9ccc907587a72eb6154c51d5633ec23fcc
fix: `cmp_owned` wrongly unmangled macros
[ { "path": "clippy_lints/src/operators/cmp_owned.rs", "patch": "@@ -1,6 +1,6 @@\n use clippy_utils::diagnostics::span_lint_and_then;\n use clippy_utils::res::MaybeQPath;\n-use clippy_utils::source::snippet;\n+use clippy_utils::source::snippet_with_context;\n use clippy_utils::ty::{implements_trait, is_copy};...
2026-01-02T04:52:22
vercel/next.js
739646224a254bdf79e26988e315000539124041
a7d481850365df47a876b6359947338a8cdb662d
Fix stale snapshots (#76237)
[ { "path": "test/development/acceptance/hydration-error.test.ts", "patch": "@@ -91,7 +91,7 @@ describe('Error overlay for hydration errors in Pages router', () => {\n \n if (isReact18) {\n expect(await session.getRedboxDescriptionWarning()).toMatchInlineSnapshot(\n- `undefined`\n+ `nu...
2025-02-19T21:13:02
facebook/react
6485ef747249295c7bfb8e599b9dde76df143cec
cadf94df1f77a75f3cc67f284fa951c6024e51d2
Remove duplicate error code (#22513)
[ { "path": "scripts/error-codes/codes.json", "patch": "@@ -396,7 +396,6 @@\n \"407\": \"Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering.\",\n \"408\": \"Missing getServerSnapshot, which is required for server-rendered content.\",\n \"409\": \"Ca...
2021-10-06T02:59:46
electron/electron
9b164e5e16b9e8139e7d9a2cbda74ca3b3538df6
dcbabcb23cf850582928bb98e2c57136d238c3fd
chore: remove blink_fix_prototype_assert (#29194)
[ { "path": "patches/chromium/.patches", "patch": "@@ -18,7 +18,6 @@ v8_context_snapshot_generator.patch\n boringssl_build_gn.patch\n pepper_plugin_support.patch\n no_cache_storage_check.patch\n-blink_fix_prototype_assert.patch\n gtk_visibility.patch\n sysroot.patch\n mas_blink_no_private_api.patch", "add...
2021-05-18T22:44:11
vercel/next.js
675b928411dc97c5ad8428ebee93a80de8e325cc
e5f1910a7ee849cef84a38770762ef1b4ad993e4
[dev-overlay] do not allow dismissing build error for dev indicator (#76209) ### Why? Since the build error, including missing tags, cannot be dismissed until resolved, the "Close Icon" on the indicator does nothing but confuse the user, so remove it. | Before | After | |--------|--------| | ![CleanShot 2025-02-19 a...
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/app/react-dev-overlay.tsx", "patch": "@@ -37,11 +37,13 @@ export default function ReactDevOverlay({\n \n <RenderError state={state} isAppDir={true}>\n {({ runtimeErrors, totalErrorCount }) => {\n+ con...
2025-02-19T14:37:40
electron/electron
c68c65f383f7b210c2ad93715dd70dbb9dcb4798
5e6f8349ec09f2d1be53cf17aae7cf3099b154fa
refactor: implement <webview> using contextBridge (#29037) * refactor: implement <webview> using contextBridge * chore: address PR feedback * chore: address PR feedback * fix: check for HTMLIFrameElement instance in attachGuest
[ { "path": "filenames.auto.gni", "patch": "@@ -167,9 +167,13 @@ auto_filenames = {\n ]\n \n isolated_bundle_deps = [\n+ \"lib/common/type-utils.ts\",\n+ \"lib/common/web-view-methods.ts\",\n \"lib/isolated_renderer/init.ts\",\n+ \"lib/renderer/web-view/web-view-attributes.ts\",\n \"lib/r...
2021-05-15T07:42:07
vercel/next.js
e5f1910a7ee849cef84a38770762ef1b4ad993e4
30b8c4f4a198aca068134b05109cd3e65866b08b
[dev-overlay] rename `readyErrors` to `runtimeErrors` (#76208) ### Why? The variable name `readyErrors` should be `runtimeErrors`, but was left as is for a while due to low priority. For the following PRs, renamed it to distinguish between build error vs runtime error.
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/app/react-dev-overlay.tsx", "patch": "@@ -36,7 +36,7 @@ export default function ReactDevOverlay({\n <ComponentStyles />\n \n <RenderError state={state} isAppDir={true}>\n- {({ readyErrors, totalErrorCount...
2025-02-19T14:36:12
golang/go
10ed134afe1319403a9a6a8b6bb798f29e5a4d5e
d2879efd0227df32d6aeee1be58c325b477f22d4
os: improve Windows fixLongPath CL 574695 added caching the os.Chdir argument for Windows, and used the cached value to assess the length of the current working directory in addExtendedPrefix (used by fixLongPath). It did not take into account that Chdir can accept relative paths, and thus the pathLength calculation ...
[ { "path": "src/os/file.go", "patch": "@@ -344,8 +344,13 @@ func Chdir(dir string) error {\n \t\treturn &PathError{Op: \"chdir\", Path: dir, Err: e}\n \t}\n \tif runtime.GOOS == \"windows\" {\n+\t\tabs := filepathlite.IsAbs(dir)\n \t\tgetwdCache.Lock()\n-\t\tgetwdCache.dir = dir\n+\t\tif abs {\n+\t\t\tgetwdC...
2024-08-21T22:11:38
electron/electron
cba6626af8c78bd835b1abfe77701b42a7fef7ba
b7a23450b7ec345929d282dcf0e2c8a75c179d51
fix: ensure extensions w/o a background page have file access (#29123)
[ { "path": "shell/browser/electron_browser_client.cc", "patch": "@@ -27,6 +27,7 @@\n #include \"base/task/post_task.h\"\n #include \"chrome/browser/browser_process.h\"\n #include \"chrome/common/chrome_paths.h\"\n+#include \"chrome/common/chrome_switches.h\"\n #include \"chrome/common/chrome_version.h\"\n #i...
2021-05-14T12:06:55
facebook/react
f2c381131fb58c107e6153255bc8d1d6340db506
0ecbbe142201ef65830f0b7a19d52c1f77043e86
fix: useSyncExternalStoreExtra (#22500) * move setting memoizedSnapshot * Revert "move setting memoizedSnapshot" This reverts commit f01320689cebfcbc4f3a53208f879ed4a8d6613d. * add failed tests * Revert "Revert "move setting memoizedSnapshot"" This reverts commit cb43c4fdc6b0dcab3480f27d6fbbb3137dbc47bb...
[ { "path": "packages/use-sync-external-store/src/__tests__/useSyncExternalStoreShared-test.js", "patch": "@@ -818,4 +818,93 @@ describe('Shared useSyncExternalStore behavior (shim and built-in)', () => {\n 'Sibling: 1',\n ]);\n });\n+\n+ describe('selector and isEqual error handling in extra', (...
2021-10-04T14:39:51
nodejs/node
d9438ccbd8f6cbd6c8ebfae84b0f2782d2c1fca7
a1fe0d75cdbace2815918516088f441240b937f5
doc: fix copy node executable in Windows Windows where command lists all places it finds a pattern in Path. The first one is the one that executes when called. So the old code was overriding the first executable by any other match. PR-URL: https://github.com/nodejs/node/pull/48624 Reviewed-By: Darshan Sen <raisinten@...
[ { "path": "doc/api/single-executable-applications.md", "patch": "@@ -58,16 +58,8 @@ tool, [postject][]:\n \n * On Windows:\n \n- Using PowerShell:\n-\n- ```powershell\n- cp (Get-Command node).Source hello.exe\n- ```\n-\n- Using Command Prompt:\n-\n ```text\n- for /F \"tokens=*\" %n IN ('wh...
2023-07-06T19:28:59
golang/go
422f4705ca5487184c232cc5709e543ce5f37cd6
c7faf7f51478b8a91a78bebb3f7740972ac76d6e
cmd/dist: set go version in bootstrap go.mod file The commands to build the bootstrap toolchains and go commands are run from modules created by two bootstrap go.mod files: one is used when building toolchain1 and go_bootstrap, and the other is used for toolchain2 and toolchain3, and the final build. Currently the fir...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -17,6 +17,7 @@ import (\n \t\"path/filepath\"\n \t\"regexp\"\n \t\"sort\"\n+\t\"strconv\"\n \t\"strings\"\n \t\"sync\"\n \t\"time\"\n@@ -261,8 +262,12 @@ func xinit() {\n \tos.Unsetenv(\"GOFLAGS\")\n \tos.Setenv(\"GOWORK\", \"off\")\n \n+\t// Create the go.mod...
2024-08-13T17:53:50
electron/electron
b7a23450b7ec345929d282dcf0e2c8a75c179d51
4073599f59023360fbaff0a6e90f34dc26246338
fix: illegal access errors with nodeIntegrationInSubFrames (#29093)
[ { "path": "shell/renderer/electron_render_frame_observer.cc", "patch": "@@ -79,6 +79,7 @@ void ElectronRenderFrameObserver::DidInstallConditionalFeatures(\n bool is_main_world = IsMainWorld(world_id);\n bool is_main_frame = render_frame_->IsMainFrame();\n bool allow_node_in_sub_frames = prefs.node_int...
2021-05-14T11:36:15
facebook/react
a4bc8ae4c1db471bb34d908dd890a09d4c774303
5f3b376c56c6c523e7018f5128a768cbd67a8a6f
Reopen #22481 Fixed modal closing issue (#22484) Co-authored-by: Brian Vaughn <brian.david.vaughn@gmail.com>
[ { "path": "packages/react-devtools-shared/src/devtools/views/hooks.js", "patch": "@@ -239,7 +239,7 @@ export function useModalDismissSignal(\n ownerDocument = ((modalRef.current: any): HTMLDivElement).ownerDocument;\n ownerDocument.addEventListener('keydown', handleDocumentKeyDown);\n if (...
2021-10-02T14:26:15
rust-lang/rust
d68c980c22d95c95ce97b82d03cfd9d48badce30
056908d7f44ab901ae6573cf2d9c1d8b166ed1c5
library: Document panic condition for `Iterator::last` Added a `# Panics` section to `Iterator::last` to match `Iterator::count`, after the change made in Rust 1.92.0 where now `std::iter::Repeat` panics in these methods instead of doing an infinite `loop`. Cites https://github.com/rust-lang/rust/issues/149707
[ { "path": "library/core/src/iter/traits/iterator.rs", "patch": "@@ -236,6 +236,11 @@ pub trait Iterator {\n /// doing so, it keeps track of the current element. After [`None`] is\n /// returned, `last()` will then return the last element it saw.\n ///\n+ /// # Panics\n+ ///\n+ /// This ...
2026-01-02T02:53:02
vercel/next.js
3ecef51b8c761e52e7c24bbe5f554418d9657abb
5216f2ccba4c089d158f07124fecc3b474eddec6
Turbopack: compute async info from module graph (#76118) Just quickly propagate this boolean in the graph, as opposed to chunking. Enables us to eventually get rid of `AvailableModules` and also to reimplement chunking generally. Closes PACK-3667 TODO: - [x] Per-layout segment computation of the async info - [x]...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -54,7 +54,7 @@ use turbopack_core::{\n asset::AssetContent,\n chunk::{\n availability_info::AvailabilityInfo, ChunkableModule, ChunkableModules, ChunkingContext,\n- ChunkingContextExt, EntryChunkGroupResult, EvaluatableAsset, Evalua...
2025-02-19T10:49:06
nodejs/node
b5e16adb1d155759e7db405eead5a43cd425785d
c3ab1843733426a9e1870a4e7770f02ab06b7253
http2: send RST code 8 on AbortController signal Fixes: https://github.com/nodejs/node/issues/47321 Refs: https://www.rfc-editor.org/rfc/rfc7540#section-7 PR-URL: https://github.com/nodejs/node/pull/48573 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: ...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -2319,10 +2319,17 @@ class Http2Stream extends Duplex {\n // this stream's close and destroy operations.\n // Previously, this always overrode a successful close operation code\n // NGHTTP2_NO_ERROR (0) with sessionCode because the use of the ...
2023-07-06T00:59:39
golang/go
c7faf7f51478b8a91a78bebb3f7740972ac76d6e
64a5d1d7de14ad74b1a77614de0e17c659ef12b6
runtime: fix nanotime1 on windows/arm nanotime1 is broken on windows/arm since CL 526358, which unintentionally removed a necessary instruction. It hasn't been noticed till now because the there is no windows/arm builder. This CL restores the instruction. Fixes #68996. Change-Id: I52ef6891a3bd8e608b8538f456d181e08f...
[ { "path": "src/runtime/sys_windows_arm.s", "patch": "@@ -205,6 +205,7 @@ TEXT runtime·read_tls_fallback(SB),NOSPLIT,$0\n \tRET\n \n TEXT runtime·nanotime1(SB),NOSPLIT,$0-8\n+\tMOVW\t$_INTERRUPT_TIME, R3\n loop:\n \tMOVW\ttime_hi1(R3), R1\n \tDMB\tMB_ISH", "additions": 1, "deletions": 0, "languag...
2024-08-22T13:02:49
electron/electron
4073599f59023360fbaff0a6e90f34dc26246338
2eb3bddb05b6efc92e36c22ed55c37021d84276a
fix: remove background color hack in vibrancy (#29114)
[ { "path": "docs/api/browser-window.md", "patch": "@@ -238,7 +238,7 @@ It creates a new `BrowserWindow` with native properties as set by the `options`.\n window shadow and window animations. Default is `true`.\n * `vibrancy` String (optional) - Add a type of vibrancy effect to the window, only on\n ...
2021-05-14T09:05:34
facebook/react
5f3b376c56c6c523e7018f5128a768cbd67a8a6f
bdd6d5064dd820705de4ce4b5a92f9d055550ced
Show different error boundary UI for timeouts than normal errors (#22483)
[ { "path": "packages/react-devtools-shared/src/TimeoutError.js", "patch": "@@ -0,0 +1,21 @@\n+/**\n+ * Copyright (c) Facebook, Inc. and its affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ *\n+ * @flow\n+ */\...
2021-10-01T19:03:36
rust-lang/rust
66c4ead02dda94846a0801cc88c04fb04cc561fe
bf2078bfcad890114e0aa17501e706e3bc1b4df0
fix: added further `CHECK-SAME` labels and replaced all `struct` input tests with `NonZero<u8>` input
[ { "path": "tests/codegen-llvm/issues/multiple-option-or-permutations.rs", "patch": "@@ -3,12 +3,16 @@\n \n #![crate_type = \"lib\"]\n \n+extern crate core;\n+use core::num::NonZero;\n+\n // CHECK-LABEL: @or_match_u8\n+// CHECK-SAME: (i1{{.+}}%0, i8 %1, i1{{.+}}%optb.0, i8 %optb.1)\n #[no_mangle]\n pub fn or...
2026-01-02T02:22:42
vercel/next.js
5216f2ccba4c089d158f07124fecc3b474eddec6
0970697a1e5b2fee4081a204cc998e6f41c3bb78
[dev-overlay] hide scrollbar and fix text overflow (#76196)
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/dialog/styles.ts", "patch": "@@ -28,6 +28,10 @@ const styles = css`\n \n [data-nextjs-dialog] {\n outline: none;\n+ overflow: hidden;\n+ }\n+ [data-nextjs-dialog]::-webkit-scrollbar {\n+ display:...
2025-02-19T10:26:20
nodejs/node
f802aa06452673e1ed4e522eb4c981274875af5f
8fc3851da7333daa7602bed94f5e1d6a26201a0f
doc: fix 'partial' typo PR-URL: https://github.com/nodejs/node/pull/48657 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/globals.md", "patch": "@@ -591,7 +591,7 @@ added: REPLACEME\n \n > Stability: 1 - Experimental\n \n-A patrial implementation of the [Navigator API][].\n+A partial implementation of the [Navigator API][].\n \n ## `navigator`\n \n@@ -601,7 +601,7 @@ added: REPLACEME\n \n > Stability: 1 - Ex...
2023-07-05T16:15:47
golang/go
854349eeb45d89c32ccf9fdbce8b857bc4064cd7
fd985d23dcc792354c4d60108dc01f992f4bdbc2
os/user: speed up Current on Windows [This is a roll-forward of CL 597255, which had to be rolled back because it broke the windows-arm64 builder, whose current user display name is unavailable. This new CL fixes the issue by reintroducing the historical behavior of falling back to the user name instead of returning a...
[ { "path": "src/internal/syscall/windows/security_windows.go", "patch": "@@ -156,3 +156,22 @@ type UserInfo4 struct {\n //\n //go:linkname GetSystemDirectory\n func GetSystemDirectory() string // Implemented in runtime package.\n+\n+// GetUserName retrieves the user name of the current thread\n+// in the spe...
2024-08-13T13:08:32
electron/electron
2eb3bddb05b6efc92e36c22ed55c37021d84276a
9cf71d72abf97c7583b200063915aa9c8fb23e15
chore: bump chromium to 92.0.4505.0 (master) (#29058) * chore: bump chromium in DEPS to 92.0.4500.2 * resolve conflicts * update patches * chore: cherry-pick 82434206f306 from chromium (#29060) * fix patch * chore: bump chromium in DEPS to 92.0.4501.0 * chore: bump chromium in DEPS to 92.0.4502.0 ...
[ { "path": "DEPS", "patch": "@@ -14,7 +14,7 @@ gclient_gn_args = [\n \n vars = {\n 'chromium_version':\n- '92.0.4499.0',\n+ '92.0.4505.0',\n 'node_version':\n 'v14.16.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "build/args/all....
2021-05-14T01:21:36
facebook/react
a724a3b578dce77d427bef313102a4d0e978d9b4
f5d946da6be8d0cefd66ab3d029a55ab54ebb460
[RFC] Codemod invariant -> throw new Error (#22435) * Hoist error codes import to module scope When this code was written, the error codes map (`codes.json`) was created on-the-fly, so we had to lazily require from inside the visitor. Because `codes.json` is now checked into source, we can import it a single t...
[ { "path": ".eslintrc.js", "patch": "@@ -127,6 +127,41 @@ module.exports = {\n },\n \n overrides: [\n+ {\n+ // By default, anything error message that appears the packages directory\n+ // must have a corresponding error code. The exceptions are defined\n+ // in the next override entry.\...
2021-09-30T19:01:28
nodejs/node
3ce51ae9c08fb1281591f563568d760192ea07a2
586fcff06194dd9c44fdc971a60f056cd0709dc8
module: harmonize error code between ESM and CJS PR-URL: https://github.com/nodejs/node/pull/48606 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "lib/internal/modules/package_json_reader.js", "patch": "@@ -10,7 +10,7 @@ const {\n } = require('internal/errors').codes;\n const { internalModuleReadJSON } = internalBinding('fs');\n const { toNamespacedPath } = require('path');\n-const { kEmptyObject } = require('internal/util');\n+const { kEmp...
2023-07-04T09:52:56
golang/go
92dd05682c514bc84352ec716280b5d3a66399e4
23c9efa24446186562ec23c1af7c9a549bc18362
internal/pkgbits: fix incorrect doc comment Change-Id: I71d1dfec11657ffa8ffe12e87f6dbd65cbb1854b Reviewed-on: https://go-review.googlesource.com/c/go/+/607475 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submi...
[ { "path": "src/internal/pkgbits/encoder.go", "patch": "@@ -295,7 +295,7 @@ func (w *Encoder) Len(x int) { assert(x >= 0); w.Uint64(uint64(x)) }\n // Int encodes and writes an int value into the element bitstream.\n func (w *Encoder) Int(x int) { w.Int64(int64(x)) }\n \n-// Len encodes and writes a uint valu...
2024-08-21T16:54:36
vercel/next.js
eece69c6627fa5338b9ad918b5dda5d9a0bc2522
9966e7e1b3a9e5541c870759787f99675b53a781
Add devDependency and loader util for additional bundler (#75980) This adds `@rspack/core` as a `devDependency` to Next.js, as it will be conditionally referenced in core in the future and will only run when the real dependency is added via a future plugin. This also creates a `getRspackCore` utility which performs t...
[ { "path": "package.json", "patch": "@@ -102,6 +102,8 @@\n \"@next/third-parties\": \"workspace:*\",\n \"@opentelemetry/api\": \"1.4.1\",\n \"@picocss/pico\": \"1.5.10\",\n+ \"@rspack/core\": \"npm:@rspack-canary/core@1.2.0-canary-37cc738d-20250207113050\",\n+ \"@rspack/plugin-react-refresh...
2025-02-19T05:18:25
electron/electron
4b70ccde26c057a3376c52eb563431943ebc3be6
e1b58182b9aa6430ed31a42a39229b2cb52bd1ba
build: make patch auto fixes come from PatchUp rather than Electron Bot (#29153)
[ { "path": ".circleci/config.yml", "patch": "@@ -272,7 +272,7 @@ step-gclient-sync: &step-gclient-sync\n if ! git diff-index --quiet HEAD --; then\n # There are changes to the patches. Make a git commit with the updated patches\n git add patches\n- GIT_COMMITTER_N...
2021-05-13T07:23:00
rust-lang/rust
a3e6de6e81977797fb885e9004a15901d88c7c82
fcd630976c460c819c4bbcaf107d0c94501205d8
docs: fix typo in AsMut documentation Corrected "work" to "works", and "byte vector" to "a byte vector" to match the phrasing of "a byte slice" in the documentation of the trait `AsMut` Fixes https://github.com/rust-lang/rust/issues/149609
[ { "path": "library/core/src/convert/mod.rs", "patch": "@@ -308,8 +308,8 @@ pub const trait AsRef<T: PointeeSized>: PointeeSized {\n /// both `AsMut<Vec<T>>` and `AsMut<[T]>`.\n ///\n /// In the following, the example functions `caesar` and `null_terminate` provide a generic\n-/// interface which work with a...
2026-01-02T02:21:59
facebook/react
47177247f8c792fbb9a33328c913e246ff139a2d
7d38e4fd896911f7204165853236e1b7f2786a60
DevTools: Fixed potential cache miss when insepcting elements (#22472)
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -384,6 +384,67 @@ describe('InspectedElement', () => {\n `);\n });\n \n+ // See github.com/facebook/react/issues/22241#issuecomment-931299972\n+ it('should properly recover from a cache miss on the fronte...
2021-09-30T16:48:53
nodejs/node
586fcff06194dd9c44fdc971a60f056cd0709dc8
2f369ccacfb60c034de806f24164524910301825
src: fix logically dead code reported by Coverity Value of the `nwrite` variable will always be less than 0 when it reaches the `switch` statement because of the previous check, which causes `case 0` to never be executed, change the check to allow 0 or less. PR-URL: https://github.com/nodejs/node/pull/48589 Reviewed-...
[ { "path": "src/quic/session.cc", "patch": "@@ -792,7 +792,7 @@ uint64_t Session::SendDatagram(Store&& data) {\n 1,\n uv_hrtime());\n \n- if (nwrite < 0) {\n+ if (nwrite < 1) {\n // Nothing was writt...
2023-07-04T06:57:45
golang/go
755c18ecdfe64df060be91fb669ca1a68527830b
f38d42f2c4c6ad0d7cbdad5e1417cac3be2a5dcb
unique: use TypeFor instead of TypeOf to get type in Make Currently the first thing Make does it get the abi.Type of its argument, and uses abi.TypeOf to do it. However, this has a problem for interface types, since the type of the value stored in the interface value will bleed through. This is a classic reflection mi...
[ { "path": "src/internal/abi/type.go", "patch": "@@ -177,6 +177,15 @@ func TypeOf(a any) *Type {\n \treturn (*Type)(NoEscape(unsafe.Pointer(eface.Type)))\n }\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...
2024-08-21T14:38:30
vercel/next.js
9966e7e1b3a9e5541c870759787f99675b53a781
3c858f399b83363973ef025b392783d12da63c34
[dev-overlay] fix Geist fonts (#76166) ### What? Two issues need to be solved: 1. Font isn't working. Dev overlay uses Geist fonts. Currently does not work if they are not installed in OS. 2. Even if fonts worked, we would be downloading fonts from Google for the dev overlay, which is not ideal for slow internet & us...
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/app/react-dev-overlay.tsx", "patch": "@@ -12,6 +12,8 @@ import { ErrorOverlay } from '../internal/components/errors/error-overlay/error-\n import { DevToolsIndicator } from '../internal/components/errors/dev-tools-indicator/dev-t...
2025-02-19T04:55:12
facebook/react
7d38e4fd896911f7204165853236e1b7f2786a60
ec4ac97500e850a90f837668a261533e780f40f4
CodeSandbox CI: Fall back to local build (#22473) The `download-experimental-build` script has been flaky on CodeSandbox CI, I think because of GitHub rate limiting. Until we figure out how to fix that, I've updated it to fall back to a local build.
[ { "path": "package.json", "patch": "@@ -144,6 +144,6 @@\n \"publish-prereleases\": \"node ./scripts/release/publish-using-ci-workflow.js\",\n \"download-build\": \"node ./scripts/release/download-experimental-build.js\",\n \"download-build-for-head\": \"node ./scripts/release/download-experiment...
2021-09-30T15:12:25
nodejs/node
5ff46dbb31fd056aeb09e155bed5c551ff4d26c8
d312bd96d397c62164cf16fd539e3d2a88db384b
src: fix uninitialized field access in AsyncHooks Co-authored-by: Joyee Cheung <joyeec9h3@gmail.com> PR-URL: https://github.com/nodejs/node/pull/48566 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jo...
[ { "path": "src/env.cc", "patch": "@@ -170,15 +170,13 @@ bool AsyncHooks::pop_async_context(double async_id) {\n }\n \n void AsyncHooks::clear_async_id_stack() {\n- if (env()->can_call_into_js()) {\n+ if (!js_execution_async_resources_.IsEmpty() && env()->can_call_into_js()) {\n Isolate* isolate = env(...
2023-07-03T11:44:50
golang/go
f38d42f2c4c6ad0d7cbdad5e1417cac3be2a5dcb
24fd1a043d1a81267d4a8175c114b59a86928ddd
cmd/link: support wasmexport on js/wasm Add export functions to the wasm module on GOOS=js. (Other parts work the same way as wasip1.) Add a test. Fixes #65199. Change-Id: Ia22580859fe40631d487f70ee293c12867e0c988 Reviewed-on: https://go-review.googlesource.com/c/go/+/606855 Reviewed-by: Zxilly Chou <zxilly@outlook...
[ { "path": "misc/wasm/wasm_exec.js", "patch": "@@ -216,10 +216,15 @@\n \t\t\t\treturn decoder.decode(new DataView(this._inst.exports.mem.buffer, saddr, len));\n \t\t\t}\n \n+\t\t\tconst testCallExport = (a, b) => {\n+\t\t\t\treturn this._inst.exports.testExport(a, b);\n+\t\t\t}\n+\n \t\t\tconst timeOrigin = ...
2024-08-19T19:17:04
vercel/next.js
70fbf2a89c3eddeb89682b16d8d5944c6114940c
7208cb522abe07e3f0dfe572fd81d1619529dfb8
[dev-overlay]: disabling dev indicator should only show errors (#76178) - If you explicitly disable the indicator, we should only show error feedback, and not the popover - It shouldn't be possible to close the issue count as we're not going to render the normal indicator ## Before ![CleanShot 2025-02-18 at 16 ...
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/app/react-dev-overlay.stories.tsx", "patch": "@@ -20,6 +20,7 @@ type Story = StoryObj<typeof ReactDevOverlay>\n const state: OverlayState = {\n nextId: 0,\n buildError: null,\n+ disableDevIndicator: false,\n errors: [\n ...
2025-02-19T01:36:06
rust-lang/rust
f71e93821eff7df12483ee1cb1d0dd7d397a4555
bad0c3230f4adab2dd3cd81ce97f9a3a01e34228
mgca: Re-merge split out tests Now that we avoid a fatal error, they can all be one test.
[ { "path": "tests/ui/const-generics/mgca/explicit_anon_consts-2.rs", "patch": "@@ -1,10 +0,0 @@\n-#![feature(associated_const_equality, generic_const_items, min_generic_const_args)]\n-#![expect(incomplete_features)]\n-// library crates exercise weirder code paths around\n-// DefIds which were created for con...
2026-01-01T22:44:07
facebook/react
ec4ac97500e850a90f837668a261533e780f40f4
201af81b0168cabea3cc07cd8201378a4fec4aaf
Fixed Link on Documentation (#22465)
[ { "path": "README.md", "patch": "@@ -20,7 +20,7 @@ You can use React as a `<script>` tag from a [CDN](https://reactjs.org/docs/cdn-\n \n ## Documentation\n \n-You can find the React documentation [on the website](https://reactjs.org/docs). \n+You can find the React documentation [on the website](https://re...
2021-09-30T13:58:01
nodejs/node
d312bd96d397c62164cf16fd539e3d2a88db384b
1aabfa8732fb438cdcee21e81d389bcab28d2460
test_runner: fixed `test` shorthands return type `test.todo`, `test.only` and `test.skip` are expected to return the same as `test`. This commit corrects the inconsistent behavior of these shorthands. Fixes: https://github.com/nodejs/node/issues/48557 PR-URL: https://github.com/nodejs/node/pull/48555 Reviewed-By: Mos...
[ { "path": "lib/internal/test_runner/harness.js", "patch": "@@ -216,9 +216,7 @@ function runInParentContext(Factory) {\n \n const test = (name, options, fn) => run(name, options, fn);\n ArrayPrototypeForEach(['skip', 'todo', 'only'], (keyword) => {\n- test[keyword] = (name, options, fn) => {\n- r...
2023-07-03T09:04:11
golang/go
a5d61d75e3d314323d07914ae36daf69c96f0bf8
830621bc09c175d1b87496fd1be79bdcd1ce27c8
runtime: deprecate GOROOT Fixes #51473. Change-Id: Ic868790f480b21b472c98b39be797bcffb1fa892 Reviewed-on: https://go-review.googlesource.com/c/go/+/564142 Reviewed-by: Ian Lance Taylor <iant@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> LUCI-TryBot...
[ { "path": "api/next/51473.txt", "patch": "@@ -0,0 +1 @@\n+pkg runtime, func GOROOT //deprecated #51473", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/runtime/51473.md", "patch": "@@ -0,0 +1,3 @@\n+The [GOROOT] function is now depre...
2024-02-15T00:08:02
vercel/next.js
bff86fdadc4f34825c98155f4a1bfca0c70fb923
ca4af2131ca6c98249e00f86706f07ccb736748f
[dev-overlay] fix the code frame title alignment (#76175) ### What Aligb the text to left and avoid icon being shrinked | after | before | |:-----|:-------| | ![image](https://github.com/user-attachments/assets/bb39379d-ec52-4f2e-9a6b-ccf102e40556) | ![image](https://github.com/user-attachments/assets/cc495680-18b8-...
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/code-frame/code-frame.tsx", "patch": "@@ -69,12 +69,16 @@ export function CodeFrame({ stackFrame, codeFrame }: CodeFrameProps) {\n onClick={open}\n >\n <p className=\"code-frame-link\">\n...
2025-02-18T23:44:16
electron/electron
c0bfef16a043c56a2a6e059871d9409611fd6680
65ff8d940be978e6a8d355f40db2d15459854951
docs: revise Mac App Store Submission Guide (#28922) * docs: revise Mac App Store Submission Guide * chore: update repo URL Co-authored-by: Mark Lee <malept@users.noreply.github.com> * chore: apply suggestions from code review Co-authored-by: Erick Zhao <erick@hotmail.ca> * chore: update to match style ...
[ { "path": "docs/tutorial/mac-app-store-submission-guide.md", "patch": "@@ -1,53 +1,111 @@\n # Mac App Store Submission Guide\n \n-Since v0.34.0, Electron allows submitting packaged apps to the Mac App Store\n-(MAS). This guide provides information on: how to submit your app and the\n-limitations of the MAS ...
2021-05-13T02:01:36
rust-lang/rust
bad0c3230f4adab2dd3cd81ce97f9a3a01e34228
c7e368543c2728c76a41008577b64b0ede7f708e
mgca: Remove resolved FIXME
[ { "path": "compiler/rustc_hir_analysis/src/hir_ty_lowering/mod.rs", "patch": "@@ -2604,20 +2604,6 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {\n _ => expr,\n };\n \n- // FIXME(mgca): remove this delayed bug once we start checking this\n- // when lowering `Ty/ConstKind::Param...
2025-12-31T02:13:56
facebook/react
7843b142ac804655990157a7be1e4641b4b6695f
d9fb383d6f627bf3f6e53ec7b14ba4d1260959d5
[Fizz/Flight] Pass in Destination lazily to startFlowing instead of in createRequest (#22449) * Pass in Destination lazily in startFlowing instead of createRequest * Delay fatal errors until we have a destination to forward them to * Flow can now be inferred by whether there's a destination set We can drop th...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServerNode-test.js", "patch": "@@ -154,7 +154,7 @@ describe('ReactDOMFizzServer', () => {\n it('should error the stream when an error is thrown at the root', async () => {\n const reportedErrors = [];\n const {writable, output, completed} = g...
2021-09-28T22:32:09
nodejs/node
1aabfa8732fb438cdcee21e81d389bcab28d2460
651c02cbbcdb570ac4a7c4438921e837805b88af
doc: fix options order Move the `joinDuplicateHeaders` option to the correct alphabetical order. PR-URL: https://github.com/nodejs/node/pull/48617 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "doc/api/http.md", "patch": "@@ -3255,6 +3255,10 @@ changes:\n * `IncomingMessage` {http.IncomingMessage} Specifies the `IncomingMessage`\n class to be used. Useful for extending the original `IncomingMessage`.\n **Default:** `IncomingMessage`.\n+ * `joinDuplicateHeaders` {boolean} It j...
2023-07-03T06:20:24
vercel/next.js
5fb83787991b40aa118838ba9c075b8694410619
bd9b11e9ddd0000763e004fe808b04ceef32a6a8
[metadata] handle navigation API in streaming metadata (#76156) ### What When streaming metadata is enabled, the whole metadata result is under the suspense boundary and will be streamed to client if it takes some time. Right now we only had the metadata itself rendered under the suspense boundary. But we also need t...
[ { "path": "packages/next/src/lib/metadata/async-metadata.tsx", "patch": "@@ -1,22 +1,41 @@\n 'use client'\n \n-import { use, type JSX } from 'react'\n+import { Suspense, use } from 'react'\n import { useServerInsertedMetadata } from '../../server/app-render/metadata-insertion/use-server-inserted-metadata'\n...
2025-02-18T23:00:46
golang/go
54c948de9a18949c88b1453d3288253f86256ce9
a4cb37d4afd4b6b386ed7b51466c8c57c6045f9c
src: fix typos Fix typos in ~30 files Change-Id: Ie433aea01e7d15944c1e9e103691784876d5c1f9 GitHub-Last-Rev: bbaeb3d1f88a5fa6bbb69607b1bd075f496a7894 GitHub-Pull-Request: golang/go#68964 Reviewed-on: https://go-review.googlesource.com/c/go/+/606955 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Cherry Mu...
[ { "path": "src/cmd/cgo/internal/testerrors/argposition_test.go", "patch": "@@ -41,16 +41,16 @@ func (v *Visitor) Visit(node ast.Node) ast.Visitor {\n \t\t\tvar errorMessage strings.Builder\n \t\t\tfor caseIndex, expectedPos := range expectedPositions {\n \t\t\t\tactualPosition := v.fset.PositionFor(ident.Po...
2024-08-20T17:54:39
rust-lang/rust
c7e368543c2728c76a41008577b64b0ede7f708e
319735d8c9851db41a1fd0a1c435a72e5eec9df0
Use more principled check for generics in const ops Instead of using a visitor in typeck, we just check, whenever lowering a use of a param, whether the parent item is an MCG anon const during hir ty lowering (and instantiate_value_path). If so, we report an error since MCG anon consts should never be able to use gene...
[ { "path": "compiler/rustc_hir_analysis/src/hir_ty_lowering/mod.rs", "patch": "@@ -38,8 +38,8 @@ use rustc_middle::middle::stability::AllowUnstable;\n use rustc_middle::mir::interpret::LitToConstInput;\n use rustc_middle::ty::print::PrintPolyTraitRefExt as _;\n use rustc_middle::ty::{\n- self, Const, Gene...
2025-12-30T07:31:46
electron/electron
5ceec9189e543639f12e2639f19ad2d33b3b100e
432ce94d20fb6f2b265d1b51f5d128bee835d6d1
fix: Menu.setApplicationMenu can return a useless array 29088 (#29118)
[ { "path": "lib/browser/api/menu.ts", "patch": "@@ -177,7 +177,7 @@ Menu.setApplicationMenu = function (menu: MenuType) {\n bindings.setApplicationMenu(menu);\n } else {\n const windows = BaseWindow.getAllWindows();\n- return windows.map(w => w.setMenu(menu));\n+ windows.map(w => w.setMenu(me...
2021-05-12T19:02:30
facebook/react
eba248c390a5e32488536a100e2f7c0e55d43da6
66388150ef1dfef1388c634a2d2ce6760a92012f
[Fizz/Flight] Remove reentrancy hack (#22446) * Remove reentrant check from Fizz/Flight * Make startFlowing explicit in Flight This is already an explicit call in Fizz. This moves flowing to be explicit. That way we can avoid calling it in start() for web streams and therefore avoid the reentrant call. * ...
[ { "path": "package.json", "patch": "@@ -35,7 +35,7 @@\n \"@babel/preset-flow\": \"^7.10.4\",\n \"@babel/preset-react\": \"^7.10.4\",\n \"@babel/traverse\": \"^7.11.0\",\n- \"@mattiasbuelens/web-streams-polyfill\": \"^0.3.2\",\n+ \"web-streams-polyfill\": \"^3.1.1\",\n \"abort-controlle...
2021-09-28T00:47:56
vercel/next.js
c43d73dd2495c48024c1e39cab5920deaa9a476d
afa34e933452874b13d480986925cbe595b87cf8
chore(github): add Error Overlay area (#76167) ## Why? Adding an `Error Overlay` area (will add label as well) so we can start tracking issues with the new Error Overlay.
[ { "path": ".github/ISSUE_TEMPLATE/1.bug_report.yml", "patch": "@@ -84,6 +84,7 @@ body:\n - 'dynamicIO'\n - 'Dynamic Routes'\n - 'Error Handling'\n+ - 'Error Overlay'\n - 'Lazy Loading'\n - 'Font (next/font)'\n - 'Form (next/form)'", "additions": 1, ...
2025-02-18T20:52:17
golang/go
98ed865a9e7525f7a30ec7fc7b360a45e966bf90
819b1b45756086a1ad5c36551ce33e526c05c027
doc/next: revert incorrect change to 62516.md made in CL 603959 Change-Id: I0d19f77f8c4b99350e3ed1e7f92db6ae198e812a Reviewed-on: https://go-review.googlesource.com/c/go/+/607077 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@gola...
[ { "path": "doc/next/6-stdlib/99-minor/testing/62516.md", "patch": "@@ -1,2 +1,2 @@\n-The new [T.Context] and [B.Context] methods return a context that is canceled\n-after the test completes and before test cleanup functions run.\n+The new [T.Chdir] and [B.Chdir] methods can be used to change the working\n+d...
2024-08-20T16:27:14
rust-lang/rust
bf2078bfcad890114e0aa17501e706e3bc1b4df0
80acf74fb6f5e8a101dddb33973b559ccfb76ecb
fix: add `CHECK-SAME` labels to verify generated function type for `u8` and `[u8; 1]` cases Co-authored-by: scottmcm <scottmcm@users.noreply.github.com>
[ { "path": "tests/codegen-llvm/issues/multiple-option-or-permutations.rs", "patch": "@@ -19,6 +19,7 @@ pub fn or_match_u8(opta: Option<u8>, optb: Option<u8>) -> Option<u8> {\n }\n \n // CHECK-LABEL: @or_match_alt_u8\n+// CHECK-SAME: (i1{{.+}}%opta.0, i8 %opta.1, i1{{.+}}%optb.0, i8 %optb.1)\n #[no_mangle]\n ...
2026-01-02T01:31:55
electron/electron
06f51b7283e913217e2f47d47aa7eec818263c46
82946133b18150c2d8d091bb8878b41e0dc3a1a3
fix: prevent crash on web-contents creation when error is thrown (#28971) * fix: prevent crash when error occurs during event emitter CallMethod * wip: emit error event within trycatch * fix: handle uncaught exceptions within node on web_contents init * fix: create gin_helper::CallMethodCatchException * te...
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -3708,7 +3708,11 @@ gin::Handle<WebContents> WebContents::New(\n const gin_helper::Dictionary& options) {\n gin::Handle<WebContents> handle =\n gin::CreateHandle(isolate, new WebContents(isolate, options));\n+ v8::TryCatch...
2021-05-11T20:57:11
nodejs/node
acf071e9d56d0eaf47e197def5c4e2f96b7020eb
50477fa35367bb76e5f56ac93d661b01a5578cec
deps: upgrade to libuv 1.46.0 Notable changes - fs: use WTF-8 on Windows: https://github.com/libuv/libuv/pull/2970 - linux: add some more iouring backed fs ops: https://github.com/libuv/libuv/pull/4012 Important bugs fixed - linux: work around io_uring IORING_OP_CLOSE bug: https://github.com/libuv/libuv/pull/4059 - s...
[ { "path": "deps/uv/.readthedocs.yaml", "patch": "@@ -6,6 +6,7 @@ sphinx:\n fail_on_warning: false\n \n build:\n+ os: \"ubuntu-22.04\"\n tools:\n python: \"3.9\"\n ", "additions": 1, "deletions": 0, "language": "YAML" }, { "path": "deps/uv/AUTHORS", "patch": "@@ -542,3 +542,9...
2023-07-02T23:23:35
facebook/react
c88fb49d37fd01024e0a254a37b7810d107bdd1d
05726d72ccd3940a927462d520d0d2674012ad85
Improve DEV errors if string coercion throws (Temporal.*, Symbol, etc.) (#22064) * Revise ESLint rules for string coercion Currently, react uses `'' + value` to coerce mixed values to strings. This code will throw for Temporal objects or symbols. To make string-coercion safer and to improve user-facing error me...
[ { "path": ".eslintrc.js", "patch": "@@ -108,6 +108,10 @@ module.exports = {\n // CUSTOM RULES\n // the second argument of warning/invariant should be a literal string\n 'react-internal/no-primitive-constructors': ERROR,\n+ 'react-internal/safe-string-coercion': [\n+ ERROR,\n+ {isPro...
2021-09-27T17:05:07
rust-lang/rust
f74896fc01a995ea3adea70cf4d658ef0347a8d0
fcd630976c460c819c4bbcaf107d0c94501205d8
Cleanup `debuginfo_compression` unstable flag It isn't necessary to declare the option as a top-level flag when it is accessible from `unstable_opts`.
[ { "path": "compiler/rustc_codegen_llvm/src/back/write.rs", "patch": "@@ -250,7 +250,7 @@ pub(crate) fn target_machine_factory(\n \n let use_emulated_tls = matches!(sess.tls_model(), TlsModel::Emulated);\n \n- let debuginfo_compression = match sess.opts.debuginfo_compression {\n+ let debuginfo_comp...
2026-01-02T01:30:02
golang/go
1a90dcdaaf46d9dd0ee61781dcb9b6e05b80d926
6fb6ace3089edb868ceaefc2a804a794d6889574
go/types, types2: unalias tilde terms in underIs Unalias the ~T terms during underIs. Before, if T was an alias of U, it may pass T to the iteration function. The iterator function expects an underlying type, under(U), to be passed. This caused several bugs where underIs is used without eventually taking the underlyin...
[ { "path": "src/cmd/compile/internal/types2/typeset.go", "patch": "@@ -131,8 +131,8 @@ func (s *_TypeSet) underIs(f func(Type) bool) bool {\n \t}\n \tfor _, t := range s.terms {\n \t\tassert(t.typ != nil)\n-\t\t// x == under(x) for ~x terms\n-\t\tu := t.typ\n+\t\t// Unalias(x) == under(x) for ~x terms\n+\t\t...
2024-08-15T23:48:42
vercel/next.js
afa34e933452874b13d480986925cbe595b87cf8
88601928e33146806a47a46854aff58d700a8a23
[dev-overlay] Fix off-by-one column sourcemapping in Webpack (#76152)
[ { "path": "packages/next/src/build/webpack/plugins/wellknown-errors-plugin/parseNotFoundError.ts", "patch": "@@ -76,7 +76,8 @@ async function getSourceFrame(\n file: fileName,\n methodName: '',\n lineNumber: loc.start.line,\n- column: loc.start.column,\n+ // l...
2025-02-18T19:39:55
electron/electron
821c81f5ee09099a39157db06c0c5104f469cbbd
dca3b41ee6633718e0a541aa4c2f5a44c608b242
fix: update NSView radii on fullscreen transition (#29084)
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -161,6 +161,8 @@ class NativeWindowMac : public NativeWindow,\n // Use a custom content view instead of Chromium's BridgedContentView.\n void OverrideNSWindowContentView();\n \n+ void UpdateVibrancyRadii(bool fullscreen);\n+\n // Set the att...
2021-05-11T07:45:21
nodejs/node
fe4ac37ecfcc1803b3e281b34eab28cd1247fb5c
0ffad8afc5cd65430d22428cf0280404f083753f
doc: update return type for describe PR-URL: https://github.com/nodejs/node/pull/48572 Fixes: https://github.com/nodejs/node/issues/48571 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "doc/api/test.md", "patch": "@@ -981,7 +981,7 @@ same as [`test([name], { only: true }[, fn])`][it options].\n declaring all subtests and subsuites.\n The first argument to this function is a [`SuiteContext`][] object.\n **Default:** A no-op function.\n-* Returns: `undefined`.\n+* Returns: {...
2023-06-29T05:39:44
facebook/react
05726d72ccd3940a927462d520d0d2674012ad85
c9d64e5f4c2b7cc70a618eec78900dbfd6d201e8
[Fix] Errors should not "unsuspend" a transition (#22423) If an error is thrown during a transition where we would have otherwise suspended without showing a fallback (i.e. during a refresh), we should still suspend. The current behavior is that the error will force the fallback to appear, even if it's completel...
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.new.js", "patch": "@@ -1445,7 +1445,8 @@ export function renderDidSuspend(): void {\n export function renderDidSuspendDelayIfPossible(): void {\n if (\n workInProgressRootExitStatus === RootIncomplete ||\n- workInProgressRootExitStatus ===...
2021-09-27T15:44:39