repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
vercel/next.js | fc008727f0034eba395cafb7f4d68a6de3cac096 | bab9377990b9c437b176a6f2961e0edb3563d9e3 | Turbopack: guard against more eventual consistency (#81080)
These might be `None` due to eventual consistency. Don't crash the build because of that. | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -1302,8 +1302,16 @@ async fn merge_modules(\n \n let export_contexts = contents\n .iter()\n- .map(|(module, content)| (*module, content.export_contexts.as_ref().unwrap()))\n- .collect::<FxHashMap<_, _>>();\n... | 2025-07-01T06:20:24 |
nodejs/node | 4b4a9319d99897ea4d43823a0ce166dbf165a2b2 | 86415e4688f466c67878d525db4ebc545492bcd7 | test_runner: fix escaping in snapshot tests
Snapshotted values are escaped after serialization.
This happens when serializing a value for comparison
when snapshots already exist, and also when updating them.
That is, snapshots are escaped in the internal storage,
but when written to disk, one "level" of escaping is re... | [
{
"path": "lib/internal/test_runner/snapshot.js",
"patch": "@@ -146,7 +146,9 @@ class SnapshotManager {\n );\n }\n \n- this.snapshots = context.exports;\n+ for (const key in context.exports) {\n+ this.snapshots[key] = templateEscape(context.exports[key]);\n+ }\n thi... | 2024-07-15T14:55:43 |
facebook/react | 2eed1328478e8c923fcb4e6abf5efbd9e1233402 | bb1d8d166799eb97892be6c7826179270ba283d0 | refactor[devtools/extension]: more stable element updates polling to avoid timed out errors (#27357)
Some context:
- When user selects an element in tree inspector, we display current
state of the component. In order to display really current state, we
start polling the backend to get available updates for the elem... | [
{
"path": "packages/react-devtools-extensions/src/background/index.js",
"patch": "@@ -83,7 +83,7 @@ chrome.runtime.onConnect.addListener(port => {\n }\n \n if (isNumeric(port.name)) {\n- // Extension port doesn't have tab id specified, because its sender is the extension.\n+ // DevTools page port ... | 2023-09-12T14:05:39 |
golang/go | b613d21ffd17c1dda480b205f0cce5031bdbd5dd | ba50de84299667dcaa2f4e6663078340bbae8c67 | testing: allow manual timer control in testing.B.Loop
Fixes #72922
Change-Id: I56610d2d11d151a8f95b6434bbedbfcd5c11c317
Reviewed-on: https://go-review.googlesource.com/c/go/+/658975
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Commit-Queue: Junyang Shao <shaojunyang@google... | [
{
"path": "src/testing/benchmark.go",
"patch": "@@ -368,16 +368,16 @@ func (b *B) ReportMetric(n float64, unit string) {\n }\n \n func (b *B) stopOrScaleBLoop() bool {\n-\ttimeElapsed := highPrecisionTimeSince(b.start)\n-\tif timeElapsed >= b.benchTime.d {\n+\tt := b.Elapsed()\n+\tif t >= b.benchTime.d {\n ... | 2025-03-18T21:13:23 |
electron/electron | e0c348a2f8122dabbe2253d7bddc52be13bf1bca | eb613ef3d474f374874e5494a57bb06639811bdd | feat: Allow usage of an absolute path for partitions used in a session (#37604)
* Allow an absolute path to be used for creating sessions
Allows an absolute path to be used for creating sessions
by adding the session.fromPath() API.
* Fixup! Clarify that an emptry string is not permitted as a parameter to fromP... | [
{
"path": "docs/api/session.md",
"patch": "@@ -42,6 +42,22 @@ To create a `Session` with `options`, you have to ensure the `Session` with the\n `partition` has never been used before. There is no way to change the `options`\n of an existing `Session` object.\n \n+### `session.fromPath(path[, options])`\n+\n... | 2023-03-20T14:34:49 |
vercel/next.js | d5d10e17a9330abd2cf7dab5c0b3ae742b9b5c57 | bd8e04be7512994be9e7a366d583d5dc5406b264 | [turbopack] Make internal functions private and use rcstr! macro (#81041)
## Refactor resolve module and improve RcStr usage
### What?
- Made several internal methods private that were unnecessarily public
- Removed unused methods like `ResolveResult.map()`
- Removed redundant fragment resolution code path
- Improved... | [
{
"path": "crates/next-core/src/next_server/resolve.rs",
"patch": "@@ -1,6 +1,6 @@\n use anyhow::Result;\n use serde::{Deserialize, Serialize};\n-use turbo_rcstr::RcStr;\n+use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{NonLocalValue, ResolvedVc, Vc, trace::TraceRawVcs};\n use turbo_tasks_fs::{self, Fi... | 2025-06-30T23:44:32 |
nodejs/node | 59fde99db8841ee9e4b469d05243748df1ad02fd | cae5831ab48470ff060a5aaa12eb6e5a7acaf91e | url: fix typo
PR-URL: https://github.com/nodejs/node/pull/53827
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/url.js",
"patch": "@@ -349,7 +349,7 @@ class URLSearchParams {\n throw new ERR_ARG_NOT_ITERABLE('Query pairs');\n }\n \n- // The following implementationd differs from the URL specification:\n+ // The following implementation differs from the URL speci... | 2024-07-14T15:18:19 |
golang/go | ba50de84299667dcaa2f4e6663078340bbae8c67 | 9dc572eab55b085b61877ecd4d7cc492e34dc3ab | os: skip atime checks in TestRootChtimes on plan9
Plan 9 doesn't permit setting arbitrary atimes.
Fixes #72957
Change-Id: Ia4e14c75ed7dcdefd4669c0c21884d5ead9ab2fb
Reviewed-on: https://go-review.googlesource.com/c/go/+/659615
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Damien Neil <dneil@google.com>... | [
{
"path": "src/os/root_test.go",
"patch": "@@ -427,6 +427,9 @@ func TestRootChmod(t *testing.T) {\n }\n \n func TestRootChtimes(t *testing.T) {\n+\t// Don't check atimes if the fs is mounted noatime,\n+\t// or on Plan 9 which does not permit changing atimes to arbitrary values.\n+\tcheckAtimes := !hasNoatim... | 2025-03-20T16:30:19 |
electron/electron | eb613ef3d474f374874e5494a57bb06639811bdd | 7ed3c7a359c78c725ba02eaf5edd28968e356a32 | fix: invoke `app.dock.{hide|show}` instead of duplicating logic (#37599)
fix: invoke app.dock.{hide|show} instead of duplicating logic | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -23,6 +23,7 @@\n #include \"content/public/browser/browser_task_traits.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/browser/desktop_media_id.h\"\n+#include \"shell/browser/browser.h\"\n #include \"shell/br... | 2023-03-20T14:30:49 |
vercel/next.js | 824f853747a63702526803aea373895a8177ed7e | 626998177ec746d238e9c215be7c82fcf2859efe | [devtools]: move RestartServerButton to panel footer (#81082)
This moves the restart button to the footer in the new panel UI. It also
properly gates to only be enabled with Turbopack + Persistent Cache.
Because it's no longer part of the error overlay, I refactored the logic
a bit to hoist the flag into overlay stat... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel-footer.tsx",
"patch": "@@ -2,13 +2,16 @@ import type { OverlayState } from '../../shared'\n \n import { DevToolsPanelVersionInfo } from './devtools-panel-version-info'\n import { css } from '../../utils/css'\n+im... | 2025-06-30T21:18:47 |
nodejs/node | 74ddce8853e8c3de90f1037940ee5dcf38201b65 | da185dd12f788724c667d9fd52faa46e831f5c2f | stream: improve inspector ergonomics
PR-URL: https://github.com/nodejs/node/pull/53800
Fixes: https://github.com/nodejs/node/issues/53789
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "lib/internal/webstreams/readablestream.js",
"patch": "@@ -2041,8 +2041,8 @@ function readableStreamError(stream, error) {\n assert(stream[kState].state === 'readable');\n stream[kState].state = 'errored';\n stream[kState].storedError = error;\n- stream[kIsClosedPromise].reject(error);\n ... | 2024-07-12T18:00:27 |
golang/go | 665af869920432879629c1d64cf59f129942dcd6 | 84e0061460d7c9a624a74e13f0212f443b079531 | cmd/go: fail go clean command when failed to find go cache directory
Currently, if computing of the go cache directory fails it does not expose the error. Commands like go clean, exec, modindex that use go cache directory continue execution producing incorrect or no result. This patch adds an error to the return value... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2343,7 +2343,7 @@\n //\t\tThe directory where 'go install' will install a command.\n //\tGOCACHE\n //\t\tThe directory where the go command will store cached\n-//\t\tinformation for reuse in future builds.\n+//\t\tinformation for reuse in future builds. Must ... | 2025-03-18T20:02:03 |
rust-lang/rust | 34cdaebf37dba363d96c434fd4b6d6b3739660df | 9f4b56a5aed81e8c36cc26b3c1b4666ead6b71fc | Fix typos in riscv64a23-unknown-linux-gnu.md | [
{
"path": "src/doc/rustc/src/platform-support/riscv64a23-unknown-linux-gnu.md",
"patch": "@@ -3,7 +3,7 @@\n **Tier: 2 (without Host Tools)**\n \n RISC-V target using the ratified [RVA23 Profile](https://github.com/riscv/riscv-profiles/blob/main/src/rva23-profile.adoc).\n-This target will enable all mandary ... | 2026-02-05T07:24:44 |
electron/electron | b8f970c1c710c7e43cff6770fa845b96445cdaf8 | 48d0b09ad932aabc91ef072c862f3489202e40fd | fix: properly bubble up cookie creation failure message (#37586) | [
{
"path": "shell/browser/api/electron_api_cookies.cc",
"patch": "@@ -180,7 +180,7 @@ std::string InclusionStatusToString(net::CookieInclusionStatus status) {\n return \"Failed to parse cookie\";\n if (status.HasExclusionReason(\n net::CookieInclusionStatus::EXCLUDE_INVALID_DOMAIN))\n- ret... | 2023-03-16T12:48:14 |
vercel/next.js | 626998177ec746d238e9c215be7c82fcf2859efe | 4e53b980a1926dffc70274ac8fbdd485cabe5320 | Turbopack: fix exposed modules in scope hoisting (#81073)
Closes PACK-4943
Closes https://github.com/vercel/next.js/issues/80998
If we have to split up a merged group because multiple chunks have different execution order, we need to make sure that the references that cross merged groups because of this actually w... | [
{
"path": "turbopack/crates/turbopack-core/src/module_graph/merged_modules.rs",
"patch": "@@ -436,30 +436,53 @@ pub async fn compute_merged_modules(module_graph: Vc<ModuleGraph>) -> Result<Vc<\n list.truncate(common_occurrence.entry);\n let before_list = &*list;\n \n- ... | 2025-06-30T20:40:33 |
facebook/react | a4aceafc63a4a54b507ab60d530b25d9ff189024 | 627b7abd62eb27f70af3934ca45b858103d4f30d | Fix: Skip hidden inputs before text instance (#27358)
Found a hydration bug that happens when you pass a Server Action to
`formAction` and the next node is a text instance.
The HTML generated by Fizz is something like this:
```html
<button name="$ACTION_REF_5" formAction="" formEncType="multipart/form-data" fo... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -1216,7 +1216,15 @@ export function canHydrateTextInstance(\n if (text === '') return null;\n \n while (instance.nodeType !== TEXT_NODE) {\n- if (!inRootOrSingleton || !enableHostSingletons) {\n+ if (\n+ e... | 2023-09-11T22:22:37 |
nodejs/node | 24648b5769dbfa71896fa32a402ddcb8ee348a8d | c126a1f0dc9504218c9b975c02fffc4c92260d92 | lib,esm: handle bypass network-import via data:
PR-URL: https://github.com/nodejs-private/node-private/pull/522
Refs: https://hackerone.com/bugs?subject=nodejs&report_id=2092749
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
CVE-ID: CVE-2024-22020
P... | [
{
"path": "lib/internal/modules/esm/resolve.js",
"patch": "@@ -1067,6 +1067,16 @@ function defaultResolve(specifier, context = {}) {\n if (parsed != null) {\n // Avoid accessing the `protocol` property due to the lazy getters.\n protocol = parsed.protocol;\n+\n+ if (protocol === 'data:' &&\n+ ... | 2024-07-12T12:48:54 |
golang/go | 84e0061460d7c9a624a74e13f0212f443b079531 | 2fb5610c3a2f0b61714f167ff8f701518fbc9370 | net/http/httputil: document ReverseProxy removal of response headers
Fixes #30359
Change-Id: I5dfb2cd63c737959fd2f6a0dbf50ff8de18bb15d
Reviewed-on: https://go-review.googlesource.com/c/go/+/658535
Reviewed-by: Cherry Mui <cherryyz@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservi... | [
{
"path": "src/net/http/httputil/reverseproxy.go",
"patch": "@@ -102,6 +102,13 @@ func (r *ProxyRequest) SetXForwarded() {\n //\n // 1xx responses are forwarded to the client if the underlying\n // transport supports ClientTrace.Got1xxResponse.\n+//\n+// Hop-by-hop headers (see RFC 9110, section 7.6.1), inc... | 2025-03-17T18:39:31 |
rust-lang/rust | 691e2263690537f825e217d9ae03b45ad2637a5c | 1826ec0715d0a394d862d1c78eec6d95277da399 | fix: handle false negative for `str_to_string`
Replace `ToString::to_string` with `ToOwned::to_owned` when the function is passed as is:
```rust
fn issue16511(x: Option<&str>) -> String {
// Replace with ToOwned::to_owned
x.map(ToString::to_string)
}
``` | [
{
"path": "clippy_lints/src/strings.rs",
"patch": "@@ -5,6 +5,7 @@ use clippy_utils::{\n SpanlessEq, get_expr_use_or_unification_node, get_parent_expr, is_lint_allowed, method_calls, peel_blocks, sym,\n };\n use rustc_errors::Applicability;\n+use rustc_hir::def::{DefKind, Res};\n use rustc_hir::def_id::... | 2026-02-05T05:35:07 |
facebook/react | edd9c52142609b8eeaa81b64f9505ebf068f96a5 | e8d130bd1dcb093c28ff8197278e49cf9a671419 | Sprout tests to double-check our destructuring
I wanted to double-check the semantics of when default values are used, so i
wrote out some fixtures with sprout enabled. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/destructuring-default-at-array-hole.expect.md",
"patch": "@@ -0,0 +1,33 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ // destructure slot index has a hole in the input, should return default\n+ co... | 2023-09-08T00:17:03 |
vercel/next.js | b1ea75541598855fd564c015a969cfe7f1c0b7ad | 75e00d6a52518dd845f27f4b9af98a38911359c5 | [turbopack[ Fix a bug in top level `this` analysis (#81076)
### What
Fix a bug where we incorrectly identified a `this` reference in a getter prop of an object literal as being 'top level'.
Reported here: https://github.com/vercel/next.js/pull/80925#issuecomment-3018327194 | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs",
"patch": "@@ -797,11 +797,13 @@ pub fn is_in_try(ast_path: &AstNodePath<AstParentNodeRef<'_>>) -> bool {\n .iter()\n .rev()\n .find_map(|ast_ref| match ast_ref.kind() {\n- AstParentKind::ArrowExpr(Arr... | 2025-06-30T17:25:39 |
electron/electron | 48d0b09ad932aabc91ef072c862f3489202e40fd | c5fc5efc00fc79c283f261be068ee881a5c9d9a3 | chore: bump chromium to 113.0.5653.0 (main) (#37587)
* chore: bump chromium in DEPS to 113.0.5653.0
* chore: update patches
* [Extensions c2s] Move HasActiveTabAndCanAccess() to //extensions
https://chromium-review.googlesource.com/c/chromium/src/+/4305558
* [Privacy Hub] Respecting ChromeOS geoloc setting... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '113.0.5651.0',\n+ '113.0.5653.0',\n 'node_version':\n 'v18.15.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2023-03-16T10:03:53 |
nodejs/node | b6ca3d732a97cadb410b3f0f87ef1fa6b9ab117f | 3ad2e1207331f9f7fb8b13d6d26f0680d3e7f239 | fs: reduce throwing unnecessary errors on glob
PR-URL: https://github.com/nodejs/node/pull/53632
Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "lib/internal/fs/glob.js",
"patch": "@@ -38,12 +38,30 @@ function lazyMinimatch() {\n const isWindows = process.platform === 'win32';\n const isOSX = process.platform === 'darwin';\n \n+/**\n+ * @param {string} path\n+ * @returns {Promise<DirentFromStats|null>}\n+ */\n async function getDirent(pat... | 2024-07-11T18:51:35 |
facebook/react | 0052f2e591622fec493752b37af54e82a5752dac | ee77d91ca2a3862cd60b8f59391a9a13241607ea | TryStatement: enable sprout on new tests
Enables sprout for all the new try/catch fixtures in this stack. I added new
helpers and tried to make sure we're testing the most interesting codepath of
each fixture. This is where property testing would help, since we could test
multiple paths with a single block of code... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/try-catch-mutate-outer-value.expect.md",
"patch": "@@ -2,52 +2,70 @@\n ## Input\n \n ```javascript\n+const { shallowCopy, throwErrorWithMessage } = require(\"shared-runtime\");\n+\n function Component(props) {\n const x... | 2023-09-07T23:50:24 |
rust-lang/rust | 0932068b6c9330f54eab92d5888131e6c877b3ce | 7bcb7a281e6cb36d9d87ca28e4d0edbaddaf5eef | Move the `QueryOverflow` and `QueryOverflowNote` errors.
They are defined in `rustc_query_system` but used in `rustc_query_impl`.
This is very much *not* how things are supposed to be done; I suspect
someone got lazy and took a shortcut at some point.
This commit moves the errors into `rustc_query_impl`. This require... | [
{
"path": "Cargo.lock",
"patch": "@@ -4534,9 +4534,11 @@ version = \"0.0.0\"\n dependencies = [\n \"measureme\",\n \"rustc_data_structures\",\n+ \"rustc_errors\",\n \"rustc_hashes\",\n \"rustc_hir\",\n \"rustc_index\",\n+ \"rustc_macros\",\n \"rustc_middle\",\n \"rustc_query_system\",\n \"rustc_seri... | 2026-02-02T05:05:26 |
golang/go | b59b0580a164478877a684ff3c347a15b03b14fe | 03cb8d408e0372693f165b63dff1410c47d9cd1b | os: don't wrap os.Getgroups error in tests
The error returned is an os.PathError which already provides enough
context.
Change-Id: Ib9391c00afc56bca673b8086d5dc19cf9b99b285
Reviewed-on: https://go-review.googlesource.com/c/go/+/658957
Reviewed-by: Cherry Mui <cherryyz@google.com>
Auto-Submit: Ian Lance Taylor <iant@g... | [
{
"path": "src/os/os_unix_test.go",
"patch": "@@ -64,7 +64,7 @@ func TestChown(t *testing.T) {\n \t// Then try all the auxiliary groups.\n \tgroups, err := Getgroups()\n \tif err != nil {\n-\t\tt.Fatalf(\"getgroups: %s\", err)\n+\t\tt.Fatal(err)\n \t}\n \tt.Log(\"groups: \", groups)\n \tfor _, g := range gr... | 2025-03-18T23:33:22 |
vercel/next.js | 890c19fa2c16774eb1520ebdddb7584de575fbb1 | b9cabd28137040e847b7ba1fa67b5a13409f195d | [test] fix browser chunk test failure (#81074) | [
{
"path": "packages/next/src/client/react-client-callbacks/error-boundary-callbacks.ts",
"patch": "@@ -13,7 +13,6 @@ import { reportGlobalError } from './report-global-error'\n import { originConsoleError } from '../../next-devtools/userspace/app/errors/intercept-console-error'\n import { ErrorBoundaryHandl... | 2025-06-30T16:06:18 |
nodejs/node | 096e44a8a9dd20e3159ee15bc2563c6a58dc344f | 97918364f67ff2eafcf89d7a0c1068167094a661 | util: fix crashing when emitting new Buffer() deprecation warning #53075
PR-URL: https://github.com/nodejs/node/pull/53089
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Tim Perry <pimterry@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.co... | [
{
"path": "lib/internal/util.js",
"patch": "@@ -37,6 +37,7 @@ const {\n SafeWeakRef,\n StringPrototypeIncludes,\n StringPrototypeReplace,\n+ StringPrototypeStartsWith,\n StringPrototypeToLowerCase,\n StringPrototypeToUpperCase,\n Symbol,\n@@ -515,11 +516,14 @@ function isInsideNodeModules() {\n... | 2024-07-11T12:13:20 |
rust-lang/rust | 7bf6355886f3cc17713d449e8da45c997caf7c59 | 794c7fb2ea5881a86da038bfc9d38fe429a12be5 | Hard code the error code registry for custom drivers | [
{
"path": "src/parse/session.rs",
"patch": "@@ -401,7 +401,7 @@ mod tests {\n let source =\n String::from(r#\"extern \"system\" fn jni_symbol!( funcName ) ( ... ) -> {} \"#);\n source_map.new_source_file(filename(&source_map, \"foo.rs\"), source);\n- let re... | 2026-02-04T12:59:06 |
facebook/react | e3622ee41383c84982dd9ffcb79efe24e0a0d166 | ff0b05848b514e347d93fe8145bae24a4d21dc40 | TryStatement: disallow throw inside try/catch
Modeling `throw` inside of a try/catch is awkward because it's basically a
variable reassignment and a goto together. Thankfully that is an antipattern —
using exceptions instead of control-flow — so it seems pretty reasonable to just
put a todo here and leave it. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -199,6 +199,19 @@ function lowerStatement(\n case \"ThrowStatement\": {\n const stmt = stmtPath as NodePath<t.ThrowStatement>;\n const value = lowerExpressionToTemporary(builder, stmt.get(\"argument\"))... | 2023-09-07T23:32:54 |
golang/go | af0d51c70fe18f860572767d6accdedb7f180358 | b1ec5ad00ae6ddf2e022a90432547a96292098f0 | os: fix typos in comments
* peformed -> performed
* reprots -> reports
Found when reviewing
Change-Id: I9474074199f6a610f40b4bcf798c6d77948f3d3c
Reviewed-on: https://go-review.googlesource.com/c/go/+/658956
Reviewed-by: Cherry Mui <cherryyz@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun... | [
{
"path": "src/os/root.go",
"patch": "@@ -57,7 +57,7 @@ func OpenInRoot(dir, name string) (*File, error) {\n // such as NUL and COM1.\n // - On Unix, [Root.Chmod], [Root.Chown], and [Root.Chtimes] are vulnerable to a race condition.\n // If the target of the operation is changed from a regular fil... | 2025-03-18T23:28:31 |
electron/electron | 061e2e5e7312d419f15a8ff1f6229c984531b873 | bf1cc1aeb2a55a07d8ed794df1e6a630221bd69a | chore: bump chromium to 113.0.5651.0 (main) (#37553)
* chore: bump chromium in DEPS to 113.0.5645.0
* chore: update patches/chromium/mas_avoid_usage_of_private_macos_apis.patch
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/4300129
Fix simple code shear
* chore: update patches/chromium/bui... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '113.0.5636.0',\n+ '113.0.5651.0',\n 'node_version':\n 'v18.15.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2023-03-15T09:20:32 |
vercel/next.js | b9cabd28137040e847b7ba1fa67b5a13409f195d | 82c85a5b7bfbe38ee9c979d9da739925da20723c | [devtools]: width/height adjustments (#81072)
Before:
https://github.com/user-attachments/assets/f4fdda52-452c-4990-818d-0a0db331a02b
After:
https://github.com/user-attachments/assets/ee58f986-96b3-4cf0-920e-aaee3370eea5
Fixes NEXT-4575 | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel.tsx",
"patch": "@@ -277,11 +277,7 @@ export const DEVTOOLS_PANEL_STYLES = css`\n }\n \n @media (min-width: 992px) {\n- max-width: 960px;\n- }\n-\n- @media (min-width: 1200px) {\n- max-widt... | 2025-06-30T16:00:38 |
facebook/react | 0977115440b53ca505a62e793ab3ec44355f69aa | 20203cd889328ea3792febd2bfda77f2cfb881d1 | TryStatement: maybe-throw terminal for per-instruction throw points
Adds a "maybe-throw" terminal which represents the possibility that the block
may or may not throw, and can either continue forward or exit to an exception
handler (`catch`). Also updates HIRBuilder to track the current mode, and when
inside a try... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/HIR.ts",
"patch": "@@ -279,7 +279,8 @@ export type Terminal =\n | TernaryTerminal\n | OptionalTerminal\n | LabelTerminal\n- | SequenceTerminal;\n+ | SequenceTerminal\n+ | MaybeThrowTerminal;\n \n function _staticInvariantTerminalHasLoca... | 2023-09-07T21:22:28 |
rust-lang/rust | 1851937577eaf46ef18c437ac2ad9b2a5f3e3606 | 8bccf1224deab49b54694c9090e577bfe90a94e6 | Hard code the error code registry for custom drivers | [
{
"path": "compiler/rustc_driver_impl/src/lib.rs",
"patch": "@@ -197,10 +197,6 @@ impl Callbacks for TimePassesCallbacks {\n }\n }\n \n-pub fn diagnostics_registry() -> Registry {\n- Registry::new(rustc_errors::codes::DIAGNOSTICS)\n-}\n-\n /// This is the primary entry point for rustc.\n pub fn run_c... | 2026-02-04T12:59:06 |
nodejs/node | 97918364f67ff2eafcf89d7a0c1068167094a661 | 345b3de602aaba24900fdd741187863dbaccc6ce | src: fix error handling in ExportJWKAsymmetricKey
Because call sites check IsNothing() on the return value of
ExportJWKAsymmetricKey() and ignore the boolean value if the return
value is Just (i.e., not nothing), this function must return Nothing()
instead of Just(false) when throwing a JavaScript error.
PR-URL: http... | [
{
"path": "src/crypto/crypto_keys.cc",
"patch": "@@ -505,7 +505,7 @@ Maybe<bool> ExportJWKAsymmetricKey(\n case EVP_PKEY_X448: return ExportJWKEdKey(env, key, target);\n }\n THROW_ERR_CRYPTO_JWK_UNSUPPORTED_KEY_TYPE(env);\n- return Just(false);\n+ return Nothing<bool>();\n }\n \n std::shared_ptr<K... | 2024-07-10T20:46:33 |
electron/electron | bf1cc1aeb2a55a07d8ed794df1e6a630221bd69a | e480cb7103df6702d0364cf76d1f20724efc49dc | fix: don't set delegate for `QLPreviewPanel` (#37530)
fix: don't set delegate for QLPreviewPanel | [
{
"path": "shell/browser/ui/cocoa/electron_ns_window.mm",
"patch": "@@ -276,12 +276,10 @@ - (BOOL)acceptsPreviewPanelControl:(QLPreviewPanel*)panel {\n }\n \n - (void)beginPreviewPanelControl:(QLPreviewPanel*)panel {\n- panel.delegate = [self delegate];\n panel.dataSource = static_cast<id<QLPreviewPanelD... | 2023-03-14T13:41:34 |
golang/go | 57dac327d15b4debe33057b9ca785e303731e81c | 4bc6c71ee013addb613c39dae364cf7a06694b47 | misc/linkcheck: remove unused tool
Fixes #72953
Change-Id: I8a0c8da3f8309841147412a078bc82095a93c5b9
Reviewed-on: https://go-review.googlesource.com/c/go/+/659275
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian ... | [
{
"path": "misc/linkcheck/linkcheck.go",
"patch": "@@ -1,191 +0,0 @@\n-// Copyright 2013 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-// The linkcheck command finds missing links in the godoc website.\n-... | 2025-03-19T16:34:43 |
vercel/next.js | 3327565c43e1e224665f11a8ad69d1d3a32285f7 | e0a7a95fb20ccce92abe94c1679fd004144f1376 | docs(fetch): update wording on conflicting cache and revalidate options (#80591)
Clarifies that using conflicting options such as `{ revalidate: 3600,
cache: 'no-store' }` results in a warning in the terminal rather than an
error.
This change helps accurately reflect the current runtime behavior and
avoids misleading... | [
{
"path": "docs/01-app/03-api-reference/04-functions/fetch.mdx",
"patch": "@@ -71,7 +71,7 @@ Set the cache lifetime of a resource (in seconds). [Data Cache](/docs/app/guides\n >\n > - If an individual `fetch()` request sets a `revalidate` number lower than the [default `revalidate`](/docs/app/api-reference/... | 2025-06-30T08:12:38 |
facebook/react | ee7f9c9351f8902e07ceacf4234ef75e7e4ecd73 | b9be4537c2459f8fc0312b796570003620bc8600 | useId: Remove unnecessary try/finally blocks (#27340)
To generate IDs for useId, we modify a context variable whenever
multiple siblings are rendered, or when a component includes a useId
hook.
When this happens, we must ensure that the context is reset properly on
unwind if something errors or suspends. When I ... | [
{
"path": "packages/react-server/src/ReactFizzServer.js",
"patch": "@@ -1021,12 +1021,13 @@ function renderIndeterminateComponent(\n const prevTreeContext = task.treeContext;\n const totalChildren = 1;\n const index = 0;\n+ // Modify the id context. Because we'll need to reset this if... | 2023-09-06T20:30:29 |
nodejs/node | a848206847504656502253c61e8a996ff96abd5c | fd21dd45d56ed8f3e202dc0aef92378519551b64 | src: use Maybe<void> in node::crypto::error
With recent versions of V8, it is not necessary to use Maybe<bool>
anymore.
PR-URL: https://github.com/nodejs/node/pull/53766
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: James M Snell <jasnell@gmail.co... | [
{
"path": "src/crypto/crypto_util.cc",
"patch": "@@ -29,7 +29,7 @@ using v8::Exception;\n using v8::FunctionCallbackInfo;\n using v8::HandleScope;\n using v8::Isolate;\n-using v8::Just;\n+using v8::JustVoid;\n using v8::Local;\n using v8::Maybe;\n using v8::MaybeLocal;\n@@ -457,9 +457,10 @@ ByteSource ByteS... | 2024-07-10T19:48:53 |
golang/go | f23373985037221899b42cd8f33384f850ff89b4 | 48240ad3f927b593de69d9aa6b22f96db982c578 | internal/syscall/unix: fix number of params for unlinkat
This reverts the change to Unlinkat done in CL 659415, as it appears
to be wrong.
While at it, let's unify argument formatting for better readability
(and also so those parameters are easier to count).
Change-Id: I092105f85de107e0495afed3cd66c039343250f1
Revie... | [
{
"path": "src/internal/syscall/unix/at_libc.go",
"patch": "@@ -35,7 +35,11 @@ func Unlinkat(dirfd int, path string, flags int) error {\n \t\treturn err\n \t}\n \n-\t_, _, errno := syscall6(uintptr(unsafe.Pointer(&procUnlinkat)), 4, uintptr(dirfd), uintptr(unsafe.Pointer(p)), uintptr(flags), 0, 0, 0)\n+\t_,... | 2025-03-19T23:56:21 |
electron/electron | e58f0411d9e8d5ec4f6b48c81c823c294e9c8c3b | e61728beb9f4a1c7ae6c993494f7e7b6b11c02e7 | chore: fixup filenames.libcxx.gni (#37567) | [
{
"path": "filenames.libcxx.gni",
"patch": "@@ -45,6 +45,7 @@ libcxx_headers = [\n \"//buildtools/third_party/libc++/trunk/include/__algorithm/iter_swap.h\",\n \"//buildtools/third_party/libc++/trunk/include/__algorithm/iterator_operations.h\",\n \"//buildtools/third_party/libc++/trunk/include/__algor... | 2023-03-13T17:55:25 |
vercel/next.js | 2ae5e2af6c24a7c8182218a932df360dfdab9ad1 | 030463929eb9baa59dfff76a84395dcb52a3eb21 | chore(turbopack): Fix typo (#80983)
### What?
Fix a typo
### Why?
https://github.com/vercel/next.js/pull/80830#pullrequestreview-2964742420 | [
{
"path": "turbopack/crates/turbo-tasks/src/persisted_graph.rs",
"patch": "@@ -150,7 +150,7 @@ pub struct DeactivateResult {\n pub more_tasks_to_deactivate: SmallVec<[TaskId; 4]>,\n }\n \n-pub type TypeIds = SmallVec<[TaskId; 4]>;\n+pub type TaskIds = SmallVec<[TaskId; 4]>;\n \n pub trait PersistedGraph... | 2025-06-30T04:10:57 |
facebook/react | 59504e1cb49733d00e4d1613cfd712c5d29c7bfb | a93aa8f3228c32b0a03a8efd2336e15c2a1e10a2 | [hir] Traverse function to capture deps, not just body node
Technically there is a body node created for implicit return expression in a
arrow function, so the existing logic should've worked fine. But there seems to
be a Babel bug, so let's work around it by traversing the function.
Added a test case that captur... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -3058,7 +3058,7 @@ function gatherCapturedDeps(\n }\n }\n \n- fn.get(\"body\").traverse({\n+ fn.traverse({\n Expression(path) {\n visit(path);\n },",
"additions": 1,
"deletions": 1,
"l... | 2023-09-06T13:58:04 |
nodejs/node | 33a6d1fe3a92d81df33024525fd3407744611afc | 059f2f43b814619cdc0f93cf3683bd8f5c349c6a | crypto: remove ERR_CRYPTO_SCRYPT_INVALID_PARAMETER
It is confusing to have both ERR_CRYPTO_SCRYPT_INVALID_PARAMETER and
ERR_CRYPTO_INVALID_SCRYPT_PARAMS. The former was the original error
code, added in 371103dae8b97264471e17de1989199ffcd2718e, but parameter
validation gradually changed and now produces
ERR_CRYPTO_INV... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -1010,7 +1010,8 @@ An invalid message length was provided.\n added: v15.0.0\n -->\n \n-Invalid scrypt algorithm parameters were provided.\n+One or more [`crypto.scrypt()`][] or [`crypto.scryptSync()`][] parameters are\n+outside their legal range.\n \n <a id=\"ERR_... | 2024-07-10T16:38:00 |
golang/go | 48240ad3f927b593de69d9aa6b22f96db982c578 | cb0d767a1022ac3e1384761facd949ea00f3a761 | internal/syscall/unix: use correct number of params in unlinkat, fchownat
We were calling syscall6 with an incorrect parameter count, omitting
the flags parameter.
Change-Id: Ife606bd57c1e4b899c0340767e9197bbe0aa81a9
Reviewed-on: https://go-review.googlesource.com/c/go/+/659415
Auto-Submit: Damien Neil <dneil@google.... | [
{
"path": "src/internal/syscall/unix/at_libc.go",
"patch": "@@ -35,7 +35,7 @@ func Unlinkat(dirfd int, path string, flags int) error {\n \t\treturn err\n \t}\n \n-\t_, _, errno := syscall6(uintptr(unsafe.Pointer(&procUnlinkat)), 3, uintptr(dirfd), uintptr(unsafe.Pointer(p)), uintptr(flags), 0, 0, 0)\n+\t_, ... | 2025-03-19T20:13:51 |
vercel/next.js | 5d9ed230185f4fae4f7374cd9d26d79d572221da | 36930024ff9e0d9d070f4c3e5ba1f865202c4c23 | Stop installing test apps that are skipped anyways (#81043)
In dev test mode, when running with `--prerender-debug`, instead of skipping the test suite, we can split up the test matrix to avoid installing the non-applicable test apps. | [
{
"path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.platform-dynamic.test.ts",
"patch": "@@ -1,20 +1,30 @@\n-import { nextTestSetup } from 'e2e-utils'\n+import { isNextDev, nextTestSetup } from 'e2e-utils'\n import { assertNoErrorToast } from 'next-test-utils'\n import { getPrerenderOutput } fro... | 2025-06-29T21:22:20 |
electron/electron | feaf18e371e04c7c14bc6c675e62db43823755fd | 8ee58e18fd31a7d33ccab78820d61bab9ec1ec69 | chore: bump chromium to 113.0.5636.0 (main) (#37130)
* chore: bump chromium in DEPS to 112.0.5576.0
* 4211172: Use the Mac ImageTransportSurface on iOS.
https://chromium-review.googlesource.com/c/chromium/src/+/4211172
* 4191759: Reuse PrintBackend process from query for printing
https://chromium-review.go... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -54,7 +54,7 @@ executors:\n type: enum\n enum: [\"macos.x86.medium.gen2\", \"large\"]\n macos:\n- xcode: 13.3.0\n+ xcode: 14.0.0\n resource_class: << parameters.size >>\n \n # Electron Runners\n@@ -434,10 +434,17 @@ step... | 2023-03-10T16:07:42 |
nodejs/node | eaffed65f0bc1dbd82a436d5c4cd14519d9ad632 | e849dd66322332638a0a14eea3a2ea9ea9e5970c | src: fix implementation of `PropertySetterCallback`
V8 does not allow returning arbitrary values from the interceptor
setter callbacks, only a boolean return value is allowed. Since
default return value is `true`, it's not even necessary to set
the return value on a successful path.
Refs: https://crbug.com/348660658
... | [
{
"path": "src/node_contextify.cc",
"patch": "@@ -614,7 +614,6 @@ Intercepted ContextifyContext::PropertySetterCallback(\n // property\n if (desc_obj->HasOwnProperty(context, env->get_string()).FromMaybe(false) ||\n desc_obj->HasOwnProperty(context, env->set_string()).FromMaybe(false)) {\n- ... | 2024-06-24T08:42:18 |
facebook/react | b9be4537c2459f8fc0312b796570003620bc8600 | 2c2bdd0ffe54df60201ee93b29de5cb7b93ff029 | [Flight] provide property descriptors for client references (#27328)
Client reference proxy should implement getOwnPropertyDescriptor. One
practical place where this shows up is when consuming CJS module.exports
in ESM modules. Node creates named exports it statically infers from the
underlying source but it only s... | [
{
"path": "fixtures/flight/src/App.js",
"patch": "@@ -10,6 +10,10 @@ const Counter3 = await(AsyncModule);\n import ShowMore from './ShowMore.js';\n import Button from './Button.js';\n import Form from './Form.js';\n+import {Dynamic} from './Dynamic.js';\n+import {Client} from './Client.js';\n+\n+import {Not... | 2023-09-05T20:45:16 |
golang/go | f9f5d1e8442e3268489f3cfab2f9b65922bd4b5b | 011b7ce8d12c14e9bd9b95a2519a6513a407bfc9 | runtime/race: detect when TestRace fails to run all tests, skip failures
TestRace runs a collection of tests, some of which are expected
to fail with data races. Make TestRace more robust at detecting
when the test run is cut short, such as when a test causes
an unhandled panic.
Skip TestRaceRangeFuncIterator, which ... | [
{
"path": "src/runtime/race/race_test.go",
"patch": "@@ -14,6 +14,7 @@ package race_test\n import (\n \t\"bufio\"\n \t\"bytes\"\n+\t\"errors\"\n \t\"fmt\"\n \t\"internal/testenv\"\n \t\"io\"\n@@ -112,21 +113,21 @@ func processLog(testName string, tsanLog []string) string {\n \t\t\tgotRace = true\n \t\t\tbre... | 2025-03-18T17:22:04 |
rust-lang/rust | 34c6ae0d488f34be9f9d3576a8dae675d5e30d17 | 1d05e3c131d7181eb3df1a8c261f43135c99200d | Fix GitHub CI summary in CodeBuild | [
{
"path": "src/ci/docker/run.sh",
"patch": "@@ -359,11 +359,11 @@ docker \\\n rust-ci \\\n \"${command[@]}\"\n \n-if isCI; then\n- cat $objdir/${SUMMARY_FILE} >> \"${GITHUB_STEP_SUMMARY}\"\n-fi\n-\n if [ -f /.dockerenv ]; then\n rm -rf $objdir\n docker cp checkout:/checkout/obj $objdir\n fi\n+\n+... | 2026-02-04T15:41:21 |
facebook/react | 9d6170ab98cdd811ccc7cdf1b53d8520aa7f5c15 | 6a71868d4c159c8089f0c70f17bfcf2abc68173d | Update snap fixture
Missed this in my last PR | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/for-of-mutate.expect.md",
"patch": "@@ -2,15 +2,13 @@\n ## Input\n \n ```javascript\n-import { makeObject_Primitives, mutateObject, Stringify } from \"shared-runtime\";\n+import { makeObject_Primitives, mutate, Stringify ... | 2023-09-05T19:07:37 |
electron/electron | 77bd80dfb21e0d4419eff093e5232dd8fb05432f | 0d3aee26b9e653e27ae6fe9d28586fd0a87fe2a7 | fix: fallback to X11 capturer if pipewire fails on Wayland (#37511)
* fix: fallback to x11 desktop capturer on Wayland
* fix: sanitize window/screen capturer inputs
* chore: clean up patch description | [
{
"path": "patches/config.json",
"patch": "@@ -21,5 +21,7 @@\n \n \"src/electron/patches/Mantle\": \"src/third_party/squirrel.mac/vendor/Mantle\",\n \n- \"src/electron/patches/ReactiveObjC\": \"src/third_party/squirrel.mac/vendor/ReactiveObjC\"\n+ \"src/electron/patches/ReactiveObjC\": \"src/third_party... | 2023-03-07T21:59:06 |
nodejs/node | b4e8f1b6bb3616ba222c4513218aa1fa9d543d8e | 1a1639de3e2508cfa428f0aab90e1fc71c6233cc | lib,src,test,doc: add node:sqlite module
PR-URL: https://github.com/nodejs/node/pull/53752
Fixes: https://github.com/nodejs/node/issues/53264
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Vinícius Lo... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -1049,6 +1049,14 @@ added:\n \n Use this flag to enable [ShadowRealm][] support.\n \n+### `--experimental-sqlite`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+Enable the experimental [`node:sqlite`][] module.\n+\n ### `--experimental-test-coverage`\n \n <!-- YAML\n@@... | 2024-07-09T20:33:38 |
golang/go | 011b7ce8d12c14e9bd9b95a2519a6513a407bfc9 | 1aa9c31ffc8af3fd33bfa995ecf55f08daf33f81 | go/types, types2: fix silly logic error in commonUnder
Fixes #72936.
Change-Id: I79ed8d559c8565fa960b974f8c1207ee442f4c26
Reviewed-on: https://go-review.googlesource.com/c/go/+/659256
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Robert Griesemer <gri@google.co... | [
{
"path": "src/cmd/compile/internal/types2/under.go",
"patch": "@@ -112,11 +112,13 @@ func commonUnder(t Type, cond func(t, u Type) *typeError) (Type, *typeError) {\n \t\t\t\t}\n \t\t\t\t// If we have different channel directions, keep the restricted one\n \t\t\t\t// and complain if they conflict.\n-\t\t\t\... | 2025-03-19T16:38:51 |
rust-lang/rust | 78b55fc337e0ff9eb5f83aef0031abee0c8996b3 | 930ecbcdf8905c5c8549056c73fcabdd8d6e1b3d | Fix incorrect RSS on systems with non-4K page size
`get_resident_set_size` computed RSS by multiplying the number of pages
from `/proc/self/statm` with a hard-coded 4096-byte page size. This
produces incorrect results on systems where the runtime page size is
not 4 KiB.
Use `sysconf(_SC_PAGESIZE)` to determine the ac... | [
{
"path": "compiler/rustc_data_structures/src/profiling.rs",
"patch": "@@ -995,12 +995,14 @@ cfg_select! {\n }\n unix => {\n pub fn get_resident_set_size() -> Option<usize> {\n+ use libc::{sysconf, _SC_PAGESIZE};\n let field = 1;\n let contents = fs::read(\... | 2026-02-04T15:29:18 |
facebook/react | a374287feae1b37f19fb43d428463b153d552b20 | a27df56a5cc54b77a9206d1344b457af4ec64b30 | React DevTools 4.28.2 -> 4.28.3 (#27337)
This is a patch version to fix some bugs in a previous internal release.
I am expecting this one also to be internal-only, need to make sure that
extension is stable in Chrome. Some changes and improvements are
expected for Firefox, though, before going public.
* refactor... | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.28.2\",\n+ \"version\": \"4.28.3\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j... | 2023-09-05T17:58:27 |
electron/electron | 0d3aee26b9e653e27ae6fe9d28586fd0a87fe2a7 | efde7a140bc48e0e3e08404f41f6179c26858ce4 | docs: fixup WebUSB fiddle (#37455)
docs: fixup webusb fiddle | [
{
"path": "docs/fiddles/features/web-usb/main.js",
"patch": "@@ -1,5 +1,4 @@\n const {app, BrowserWindow} = require('electron')\n-const e = require('express')\n const path = require('path')\n \n function createWindow () {\n@@ -44,7 +43,6 @@ function createWindow () {\n }\n })\n \n-\n mainWindow.webC... | 2023-03-07T20:36:31 |
golang/go | 1aa9c31ffc8af3fd33bfa995ecf55f08daf33f81 | deb6790fcfe943c640a4ef393036690eef5eef5c | net/http/httputil: don't call WriteHeader after Hijack
CL 637939 changed ReverseProxy to report errors encountered when
copying data on an hijacked connection. This is generally not useful,
and when using the default error handler results in WriteHeader
being called on a hijacked connection.
While this is harmless wi... | [
{
"path": "src/net/http/httputil/reverseproxy.go",
"patch": "@@ -802,9 +802,6 @@ func (p *ReverseProxy) handleUpgradeResponse(rw http.ResponseWriter, req *http.R\n \tif err == nil {\n \t\terr = <-errc\n \t}\n-\tif err != nil && err != errCopyDone {\n-\t\tp.getErrorHandler()(rw, req, fmt.Errorf(\"can't copy:... | 2025-03-19T16:26:31 |
nodejs/node | 1a1639de3e2508cfa428f0aab90e1fc71c6233cc | d15f514077502c1bbe9b81783669eb704d6e041c | deps: V8: cherry-pick 9ebca66a5740
Original commit message:
[rab/gsab] Remove --harmony-rab-gsab (has been on by default for a while)
Bug: v8:11111
Change-Id: Ie74e7737f3e2e8730820cf00f1cbc7ae02b515af
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5516580
Commit-Queue: Marja Hölt... | [
{
"path": "deps/v8/src/api/api.cc",
"patch": "@@ -8953,9 +8953,6 @@ std::unique_ptr<v8::BackingStore> v8::ArrayBuffer::NewBackingStore(\n // static\n std::unique_ptr<BackingStore> v8::ArrayBuffer::NewResizableBackingStore(\n size_t byte_length, size_t max_byte_length) {\n- Utils::ApiCheck(i::v8_flags.h... | 2024-06-23T22:31:33 |
vercel/next.js | a9fac70b261a4b80e40810a9647825d475d6b7b5 | 2a75a93388ac9a9f1106f2d04a0fcca28d0ff477 | [tests]: fix failing searchparams test (#81013)
- Adds a more reliable heuristic for when the test should start
navigating (after prefetches are initiated) as `waitForIdleNetwork` is
discouraged
- Normalizes RSC request keys to ignore the redirect value from the
middleware case | [
{
"path": "test/e2e/app-dir/searchparams-reuse-loading/searchparams-reuse-loading.test.ts",
"patch": "@@ -178,6 +178,16 @@ describe('searchparams-reuse-loading', () => {\n { resolve: () => Promise<void> }\n >()\n \n+ // Track prefetch requests to know when initial prefetching is don... | 2025-06-27T20:39:32 |
facebook/react | a27df56a5cc54b77a9206d1344b457af4ec64b30 | 9b4f847d93aa302c953543ae0631023c06408ad3 | refactor[devtools/extension]: handle ports disconnection, instead of frequent reconnection (#27336)
- Instead of reconnecting ports from devtools page and proxy content
script, now handling their disconnection properly
- `proxy.js` is now dynamically registered as a content script, which
loaded for each page. This ... | [
{
"path": "packages/react-devtools-extensions/src/background/dynamicallyInjectContentScripts.js",
"patch": "@@ -2,26 +2,46 @@\n \n import {IS_FIREFOX} from '../utils';\n \n-async function dynamicallyInjectContentScripts() {\n- const contentScriptsToInject = [\n- {\n- id: '@react-devtools/hook',\n- ... | 2023-09-05T17:41:39 |
electron/electron | efde7a140bc48e0e3e08404f41f6179c26858ce4 | 4e85bb921bef97a5bedb4188d0e360ec4a0b70c0 | fix: WebUSB on ARM64 macs (#37441) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -126,3 +126,4 @@ chore_patch_out_partition_attribute_dcheck_for_webviews.patch\n expose_v8initializer_codegenerationcheckcallbackinmainthread.patch\n chore_patch_out_profile_methods_in_profile_selections_cc.patch\n fix_x11_window_restore_minimized_maximize... | 2023-03-07T17:40:40 |
golang/go | deb6790fcfe943c640a4ef393036690eef5eef5c | 56e5476e10db25ce71f562bd6ee0910a83532b04 | cmd/compile: remove implicit deref from len(p) where p is ptr-to-array
func f() *[4]int { return nil }
_ = len(f())
should not panic. We evaluate f, but there isn't a dereference
according to the spec (just "arg is evaluated").
Update #72844
Change-Id: Ia32cefc1b7aa091cd1c13016e015842b4d12d5b4
Reviewed-on: https://... | [
{
"path": "src/cmd/compile/internal/typecheck/expr.go",
"patch": "@@ -634,16 +634,16 @@ func tcIndex(n *ir.IndexExpr) ir.Node {\n func tcLenCap(n *ir.UnaryExpr) ir.Node {\n \tn.X = Expr(n.X)\n \tn.X = DefaultLit(n.X, nil)\n-\tn.X = implicitstar(n.X)\n \tl := n.X\n \tt := l.Type()\n \tif t == nil {\n \t\tn.S... | 2025-03-14T20:19:18 |
nodejs/node | d15f514077502c1bbe9b81783669eb704d6e041c | 307430e490a6a81f45942311003d015dd9c46e71 | deps: V8: cherry-pick e061cf9970d9
Original commit message:
[arraybuffers] initialize max byte length of empty array buffers
Without initializing the max byte length field, any empty array
buffer captured in the snapshot can make the snapshot unreproducible.
Refs: https://github.com/nodejs/node/issu... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.15',\n+ 'v8_embedder_string': '-node.16',\n \n ##### V8 defaults for Node.js #####\n... | 2024-07-07T18:22:17 |
facebook/react | 9b4f847d93aa302c953543ae0631023c06408ad3 | 7022e8d6a3222c97d287dfa0f2361acc8a30683a | refactor[devtools/extension]: migrate from using setInterval for polling if react is loaded (#27323)
`chrome.devtools.inspectedWindow.eval` is asynchronous, so using it in
`setInterval` is a mistake.
Sometimes this results into mounting React DevTools twice, and user sees
errors about duplicated fibers in store.
... | [
{
"path": "packages/react-devtools-extensions/src/main/index.js",
"patch": "@@ -29,7 +29,23 @@ import registerEventsLogger from './registerEventsLogger';\n import getProfilingFlags from './getProfilingFlags';\n import './requestAnimationFramePolyfill';\n \n-function executeIfReactHasLoaded(callback) {\n+// ... | 2023-09-01T15:23:04 |
vercel/next.js | b91297d9c8d2bad4e93043628d0dab0e87473e5f | 186913a23a343109e01e4fd1b34c2e4fd57e7c90 | Use snapshots to verify dynamic validation errors in dev mode (#80992)
Follow-up to #80946, asserting on the collapsed redbox errors in dev mode.
> [!NOTE]
> This PR is best reviewed with hidden whitespace changes. | [
{
"path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.platform-dynamic.test.ts",
"patch": "@@ -1,119 +1,154 @@\n import { nextTestSetup } from 'e2e-utils'\n+import { assertNoErrorToast } from 'next-test-utils'\n import { getPrerenderOutput } from './utils'\n \n describe.each([\n- { inDebugMode: t... | 2025-06-27T15:35:11 |
electron/electron | c8f715f9a1c116ccb3796e3290fea89989cc0f6e | 829fb4f586ee4f0c5b6bbbc6ae9c9853a710eba6 | fix: Showing the about panel is async on all platforms (#37440)
* fix: about panel is a base::Value::Dict
* nix this test for a diff PR
* what if the about dialog was not blocking
* add this test back in
* document synchronicity
* github editor is a fan of spaces | [
{
"path": "docs/api/app.md",
"patch": "@@ -1357,7 +1357,7 @@ This API must be called after the `ready` event is emitted.\n \n ### `app.showAboutPanel()`\n \n-Show the app's about panel options. These options can be overridden with `app.setAboutPanelOptions(options)`.\n+Show the app's about panel options. Th... | 2023-03-06T14:46:35 |
golang/go | 1aee4f3464b678f135912e2b2703e0f6c060b980 | 24b395119b4df7f16915b9f01a6aded647b79bbd | cmd/internal/obj/riscv: prevent panics on bad branches
Syntactically incorrect branches, such as
BEQ X5, X6, $1
BEQ X5, X6, 31(X10)
cause the assembler to panic, which they shouldn't really do. It's
better for the user to see a normal error, as reported for other
syntax errors in riscv64 assembly. The panics also ... | [
{
"path": "src/cmd/asm/internal/asm/testdata/riscv64error.s",
"patch": "@@ -30,6 +30,8 @@ TEXT errors(SB),$0\n \tSLLI\t$64, X5, X6\t\t\t// ERROR \"immediate out of range 0 to 63\"\n \tSRLI\t$64, X5, X6\t\t\t// ERROR \"immediate out of range 0 to 63\"\n \tSRAI\t$64, X5, X6\t\t\t// ERROR \"immediate out of ra... | 2024-12-11T13:03:17 |
nodejs/node | 307430e490a6a81f45942311003d015dd9c46e71 | c0962dc3bfd94409162fcb77a9da20bce98848c7 | fs: improve error performance of `fs.dir`
PR-URL: https://github.com/nodejs/node/pull/53667
Reviewed-By: Daniel Lemire <daniel@lemire.me>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> | [
{
"path": "lib/internal/fs/dir.js",
"patch": "@@ -26,7 +26,6 @@ const {\n getDirent,\n getOptions,\n getValidatedPath,\n- handleErrorFromBinding,\n } = require('internal/fs/utils');\n const {\n validateFunction,\n@@ -155,27 +154,26 @@ class Dir {\n \n readSyncRecursive(dirent) {\n const path ... | 2024-07-09T14:38:01 |
facebook/react | 7022e8d6a3222c97d287dfa0f2361acc8a30683a | b70a0d70224ceb4e277bd8ac535a2caafa5c075a | fix[devtools/extension]: fixed duplicating panels in firefox (#27320)
Multiple `chrome.panels.create` calls result into having duplicate
panels created in Firefox, these changes fix that.
Now calling `chrome.panels.create` only if there are no panels created
yet. | [
{
"path": "packages/react-devtools-extensions/src/main/index.js",
"patch": "@@ -340,16 +340,24 @@ function ensureInitialHTMLIsCleared(container) {\n \n function createComponentsPanel() {\n if (componentsPortalContainer) {\n+ // Panel is created and user opened it at least once\n render('components'... | 2023-08-31T17:24:26 |
vercel/next.js | 33477b7e64fbfaa5f59e833a4cc161cf0793ede6 | c1f4e3e759ed6eb5f27a028fc547f513a7386d92 | [segment-explorer] display the builtin conventions (#80961)
Track built-in conventions in segment explorer. The default `global-not-found.js` and `global-error.js` will be displayed.
Their style will be different to the others, we'll follow up in the later PRs.
Closes NEXT-4576 | [
{
"path": "crates/next-core/src/app_structure.rs",
"patch": "@@ -931,6 +931,14 @@ async fn directory_tree_to_loader_tree_internal(\n .await?,\n );\n }\n+ if modules.global_error.is_none() {\n+ modules.global_error = Some(\n+ get_next_p... | 2025-06-27T14:41:07 |
electron/electron | 829fb4f586ee4f0c5b6bbbc6ae9c9853a710eba6 | 17ccb3c6ecca1b16fb3e10504ffe0135b4e1794c | fix: don't double-log unhandled rejections (#37464) | [
{
"path": "shell/browser/electron_browser_main_parts.cc",
"patch": "@@ -279,7 +279,7 @@ void ElectronBrowserMainParts::PostEarlyInitialization() {\n env->set_trace_sync_io(env->options()->trace_sync_io);\n \n // We do not want to crash the main process on unhandled rejections.\n- env->options()->unhand... | 2023-03-06T10:04:43 |
nodejs/node | c0962dc3bfd94409162fcb77a9da20bce98848c7 | 213fea0c55e5d57eea0f9e5ced5b66c00b1e095d | vm,src: add property query interceptors
Distinguish named property and indexed property when enumerating keys
and handle query interceptions.
Co-Authored-By: Michaël Zasso <targos@protonmail.com>
PR-URL: https://github.com/nodejs/node/pull/53517
Fixes: https://github.com/nodejs/node/issues/52720
Reviewed-By: Michaël ... | [
{
"path": "src/node_contextify.cc",
"patch": "@@ -50,10 +50,13 @@ using v8::FunctionCallbackInfo;\n using v8::FunctionTemplate;\n using v8::HandleScope;\n using v8::IndexedPropertyHandlerConfiguration;\n+using v8::IndexFilter;\n using v8::Int32;\n+using v8::Integer;\n using v8::Intercepted;\n using v8::Isol... | 2024-06-20T09:14:57 |
golang/go | 24b395119b4df7f16915b9f01a6aded647b79bbd | 2e749a645a6d03c7ac11bb172c4591564061b29e | cmd/internal/obj/riscv: prevent duplicate error reports
The riscv64 Go assembler can output certain errors, ones produced by
instructionsForProg, multiple times. These errors are guaranteed to
be output at least twice and can appear three or more times if a
rescan is needed to recompute branch addresses. For example... | [
{
"path": "src/cmd/asm/internal/asm/endtoend_test.go",
"patch": "@@ -489,6 +489,10 @@ func TestRISCVErrors(t *testing.T) {\n \ttestErrors(t, \"riscv64\", \"riscv64error\")\n }\n \n+func TestRISCVValidation(t *testing.T) {\n+\ttestErrors(t, \"riscv64\", \"riscv64validation\")\n+}\n+\n func TestS390XEndToEnd(... | 2024-12-10T16:02:26 |
facebook/react | 3808b01b3a6d116151b5de742866360ed70450c7 | 29b405b2de6b4abaa67ff53f3b5e067f80b106d3 | React DevTools 4.28.1 -> 4.28.2 (#27318)
List of changes:
* fix[devtools/extension]: handle tab navigation events before react is
loaded ([hoxyq](https://github.com/hoxyq) in
[#27316](https://github.com/facebook/react/pull/27316)) | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.28.1\",\n+ \"version\": \"4.28.2\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j... | 2023-08-30T18:47:08 |
electron/electron | 76c825d6193e6da540b64190ff2d2298d53da5ea | 692876c73740d039ac840c91c719f7e9cf3b7e76 | fix: draggable regions on MAS (#37466) | [
{
"path": "shell/browser/ui/cocoa/electron_ns_window.mm",
"patch": "@@ -11,6 +11,9 @@\n #include \"shell/browser/ui/cocoa/root_view_mac.h\"\n #include \"ui/base/cocoa/window_size_constants.h\"\n \n+#import <objc/message.h>\n+#import <objc/runtime.h>\n+\n namespace electron {\n \n int ScopedDisableResize::di... | 2023-03-02T19:21:51 |
vercel/next.js | c1f4e3e759ed6eb5f27a028fc547f513a7386d92 | c910be03ee262e75187d9c477e71b9d24024b1f7 | Turbopack: fix sourcemaps of scopehoisted comments (#80987)
There was a bug in the source mappings for scope hoisted comments. They actually contained invalid mappings, which was only caught by the invalid mapping landing exactly on an invalid multibyte character boundary, which triggered a debug assertion:
![Bildsch... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -2416,6 +2416,21 @@ enum CodeGenResultCommentsConsumable<'a> {\n unsafe impl Send for CodeGenResultComments {}\n unsafe impl Sync for CodeGenResultComments {}\n \n+/// All BytePos in Spans in the AST are encoded correctly in [`merge_... | 2025-06-27T14:09:48 |
facebook/react | 29b405b2de6b4abaa67ff53f3b5e067f80b106d3 | d23b8b5dbf72cd0a3a1a85e22af19772b32feacd | fix[devtools/extension]: handle tab navigation events before react is loaded (#27316)
This is mostly hotfix for https://github.com/facebook/react/pull/27215.
Contains 3 fixes:
- Handle cases when `react` is not loaded yet and user performs in-tab
navigation. Previously, because of the uncleared interval we would ... | [
{
"path": "packages/react-devtools-extensions/src/background/index.js",
"patch": "@@ -95,7 +95,7 @@ function isNumeric(str: string): boolean {\n return +str + '' === str;\n }\n \n-chrome.runtime.onConnect.addListener(async port => {\n+chrome.runtime.onConnect.addListener(port => {\n if (port.name === 'p... | 2023-08-30T18:31:18 |
nodejs/node | 213fea0c55e5d57eea0f9e5ced5b66c00b1e095d | 2b068ffc4a8bc4b2ef0fd46124d48e55af1231b8 | src: remove unused ContextifyContext::WeakCallback
PR-URL: https://github.com/nodejs/node/pull/53517
Fixes: https://github.com/nodejs/node/issues/52720
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "src/node_contextify.cc",
"patch": "@@ -81,7 +81,6 @@ using v8::Symbol;\n using v8::Uint32;\n using v8::UnboundScript;\n using v8::Value;\n-using v8::WeakCallbackInfo;\n \n // The vm module executes code in a sandboxed environment with a different\n // global object than the rest of the code. This... | 2024-06-19T23:01:54 |
golang/go | 2e749a645a6d03c7ac11bb172c4591564061b29e | 21483099632c11743d01ec6f38577f31de26b0d0 | internal/godebugs: fix changed version for winsymlink and winreadlinkvolume to 1.23
https://go.dev/doc/godebug#go-123 documents changes to winsymlink and
winreadlinkvolume in Go 1.23.
This fixes the registered "changed" minor version to Go 1.23,
so that defaults when building a Go 1.22 module are correct.
Fixes #729... | [
{
"path": "src/internal/godebugs/table.go",
"patch": "@@ -61,8 +61,8 @@ var All = []Info{\n \t{Name: \"tlsmlkem\", Package: \"crypto/tls\", Changed: 24, Old: \"0\", Opaque: true},\n \t{Name: \"tlsrsakex\", Package: \"crypto/tls\", Changed: 22, Old: \"1\"},\n \t{Name: \"tlsunsafeekm\", Package: \"crypto/tls\... | 2025-03-19T00:27:07 |
facebook/react | 2fba484cd095ea79b940364cea5107fa4ca9f0c8 | ddff504695f33c19e8c0792bff82bd8f8b8f7c05 | useFormState fix: action -> target (#27309)
I mixed these attributes up in
https://github.com/facebook/react/pull/27302 | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMForm-test.js",
"patch": "@@ -354,7 +354,7 @@ describe('ReactFlightDOMForm', () => {\n \n // @gate enableFormActions\n // @gate enableAsyncActions\n- it(\"useFormState can change the action's target with the `permalink` argument\",... | 2023-08-30T02:17:15 |
electron/electron | 692876c73740d039ac840c91c719f7e9cf3b7e76 | c3f06ef037cb2eaf649d963f13d27265a68d7018 | docs(clipboard): fix an issue of demo code (#37438)
doc(clipboard): fix an issue of demo code | [
{
"path": "docs/api/clipboard.md",
"patch": "@@ -226,7 +226,7 @@ clipboard.writeBuffer('public/utf8-plain-text', buffer)\n \n const ret = clipboard.readBuffer('public/utf8-plain-text')\n \n-console.log(buffer.equals(out))\n+console.log(buffer.equals(ret))\n // true\n ```\n ",
"additions": 1,
"deleti... | 2023-03-02T11:24:59 |
golang/go | bfb27fb36f2f651eb52e3f2ff20542f4302359ce | fcb27f717b0eccb2a3de1bc05a7d222325ad5aeb | bytes,strings: document Fields trimming of leading and trailing characters
Fixes #72841
Change-Id: I46875c61e3147c69da759bf4bf4f0539cbd4f437
Reviewed-on: https://go-review.googlesource.com/c/go/+/658218
Reviewed-by: Alan Donovan <adonovan@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result:... | [
{
"path": "src/bytes/bytes.go",
"patch": "@@ -451,7 +451,9 @@ var asciiSpace = [256]uint8{'\\t': 1, '\\n': 1, '\\v': 1, '\\f': 1, '\\r': 1, ' ': 1}\n // Fields interprets s as a sequence of UTF-8-encoded code points.\n // It splits the slice s around each instance of one or more consecutive white space\n //... | 2025-03-17T15:21:39 |
nodejs/node | 2b068ffc4a8bc4b2ef0fd46124d48e55af1231b8 | 66a635cece74eda6772b062ed4df9f683e66accd | build: fix build warning of c-ares under GN build
PR-URL: https://github.com/nodejs/node/pull/53750
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "deps/cares/unofficial.gni",
"patch": "@@ -65,11 +65,17 @@ template(\"cares_gn_build\") {\n sources += gypi_values.cares_sources_mac\n }\n \n- if (is_clang || !is_win) {\n- cflags_c = [\n- \"-Wno-implicit-fallthrough\",\n- \"-Wno-unreachable-code\",\n- ]\n+ ... | 2024-07-09T08:42:40 |
vercel/next.js | c910be03ee262e75187d9c477e71b9d24024b1f7 | 345d4d4f25ab7ddb832d196dce00acb5271318d2 | Use snapshots to verify error stack traces for dynamic validation errors (#80946)
For now, this is just documenting the current state of affairs with regards to how we print dynamic validation errors during prerendering.
Previously, the tests were run with and without `experimental.serverMinification`. Now, we're r... | [
{
"path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.platform-dynamic.test.ts",
"patch": "@@ -1,94 +1,119 @@\n import { nextTestSetup } from 'e2e-utils'\n+import { getPrerenderOutput } from './utils'\n \n-import { createExpectError } from './utils'\n+describe.each([\n+ { inDebugMode: true, name:... | 2025-06-27T12:42:13 |
facebook/react | 87903245629715e99a95e546acce9a20b89d5129 | 4f55a66d5c643757e95fbe25b20b4fff2e1b16cb | Workaround serious Babel bug
I ran into the same issue that @poteto and @gsathya (and probably @mofeiZ) have
run into: "Duplicate declaration of '$'" caused by Babel visiting a function
twice despite our calling `skip()`. This PR keeps a set of nodes that we have
already visited to avoid visiting them again, as a ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -65,6 +65,10 @@ function compileAndInsertNewFunctionDeclaration(\n >,\n pass: CompilerPass\n ): boolean {\n+ if (ALREADY_COMPILED.has(fnPath.node)) {\n+ return false;\n+ }\n+\n let compiledFn: CodegenF... | 2023-08-30T12:21:51 |
electron/electron | c3f06ef037cb2eaf649d963f13d27265a68d7018 | 9b20b3a722a7b807c161813cf2b616e74aee660d | fix: DCHECK in MessageSync in rare cases (#37439) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1857,22 +1857,23 @@ class ReplyChannel : public gin::Wrappable<ReplyChannel> {\n }\n const char* GetTypeName() override { return \"ReplyChannel\"; }\n \n+ void SendError(const std::string& msg) {\n+ v8::Isolate* isolate = elec... | 2023-03-02T09:03:52 |
nodejs/node | b9289a6e29e54beeaa3f781bde1195e48df0da75 | 39f207023a0f3d4cf3d54f2983da5f775d22e8ca | lib,permission: support fs.lstat
PR-URL: https://github.com/nodejs-private/node-private/pull/486/
Fixes: https://hackerone.com/bugs?subject=nodejs&report_id=2145862
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
CVE-ID: CVE-2024-22018 | [
{
"path": "lib/fs.js",
"patch": "@@ -1550,6 +1550,10 @@ function lstat(path, options = { bigint: false }, callback) {\n }\n callback = makeStatsCallback(callback);\n path = getValidatedPath(path);\n+ if (permission.isEnabled() && !permission.has('fs.read', path)) {\n+ callback(new ERR_ACCESS_DENIE... | 2024-06-17T18:17:42 |
vercel/next.js | 345d4d4f25ab7ddb832d196dce00acb5271318d2 | 3e170746b2e70cd9c0cdd27a06c7aaf3a80fc58e | Use proper reexports in entry-base.ts (#80988)
Purely a cosmetic change I noticed while debugging a Turbopack bug (but unrelated to that) | [
{
"path": "packages/next/src/server/app-render/entry-base.ts",
"patch": "@@ -10,41 +10,45 @@ export {\n // eslint-disable-next-line import/no-extraneous-dependencies\n export { unstable_prerender as prerender } from 'react-server-dom-webpack/static.edge'\n \n-import LayoutRouter from '../../client/component... | 2025-06-27T11:10:41 |
golang/go | c8eced8580028328fde7c03cbfcb720ce15b2358 | 6b18311bbc94864af48d10aad73fd4eb7ea0d9a1 | net/http/httputil: document ProxyRequest.SetURL limitations
Fixes #50337
Change-Id: I898ff6352f46f0f9b540b053049c5116e2165827
Reviewed-on: https://go-review.googlesource.com/c/go/+/658536
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c... | [
{
"path": "src/net/http/httputil/reverseproxy.go",
"patch": "@@ -42,6 +42,8 @@ type ProxyRequest struct {\n // SetURL routes the outbound request to the scheme, host, and base path\n // provided in target. If the target's path is \"/base\" and the incoming\n // request was for \"/dir\", the target request w... | 2025-03-17T19:20:32 |
facebook/react | 4f55a66d5c643757e95fbe25b20b4fff2e1b16cb | ddc9f8030e179f01959e465261c0fd5acfe0eb4e | Compile args to forwardRef/memo
Completes a todo (ie fixes a silly mistake) from a PR earlier in the stack, so
we now correctly recognize and compile arguments to `React.forwardRef()` and
`React.memo()`. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -455,33 +455,43 @@ function isForwardRefCallback(path: NodePath<t.Expression>): boolean {\n */\n \n function isMemoCallback(path: NodePath<t.Expression>): boolean {\n- return !!(\n+ return (\n path.parentP... | 2023-08-29T21:09:42 |
electron/electron | 9b20b3a722a7b807c161813cf2b616e74aee660d | 8f2917db0169c81d293db7e32902252612ac68f5 | chore: improve `contents.takeHeapSnapshot` error messages (#37434)
* chore: improve contents.takeHeapSnapshot error messages
* fix wstring conversion issue | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -3609,18 +3609,26 @@ v8::Local<v8::Promise> WebContents::TakeHeapSnapshot(\n flags = base::File::AddFlagsForPassingToUntrustedProcess(flags);\n base::File file(file_path, flags);\n if (!file.IsValid()) {\n- promise.RejectWithE... | 2023-03-01T15:50:36 |
vercel/next.js | 3e170746b2e70cd9c0cdd27a06c7aaf3a80fc58e | 08aad0c425b70086df238832f8340cc7000e3a33 | [devtools] polish icon and label color (#80976)
* In devtool panel the icons should be gray-1000 Closes NEXT-4584

* In segment explorer the page label color should be -900 Closes NEXT-4581
 => void\n }) {\n+ if (runtimeErrors.length === 0) {... | 2025-06-27T10:58:42 |
nodejs/node | d39e993903e27bb5761dd98b0a93964dcaabac65 | 4fe0f826a80365ce2512b8193ceaa9466c288aa5 | src,permission: fix UNC path resolution
PR-URL: https://github.com/nodejs-private/node-private/pull/581
Fixes: https://hackerone.com/bugs?subject=nodejs&report_id=2079103
CVE-ID: CVE-2024-37372 | [
{
"path": "src/permission/fs_permission.cc",
"patch": "@@ -49,15 +49,18 @@ bool is_tree_granted(\n const std::string_view& param) {\n std::string resolved_param = node::PathResolve(env, {param});\n #ifdef _WIN32\n- // is UNC file path\n- if (resolved_param.rfind(\"\\\\\\\\\", 0) == 0) {\n- // ret... | 2024-04-22T21:45:13 |
golang/go | 6b18311bbc94864af48d10aad73fd4eb7ea0d9a1 | a17c092c2c5e8ad45482ebbb9e17ef7f92edb96c | cmd/go/internal/clean: add logging to help debug openbsd flakes
This change adds extra logging in the case where there's an error
removing all the files in the gomodcache using modfetch.RemoveAll.
It logs the names of the files found in GOMODCACHE as well as their
modes. The modes are included because they should all ... | [
{
"path": "src/cmd/go/internal/clean/clean.go",
"patch": "@@ -7,8 +7,10 @@ package clean\n \n import (\n \t\"context\"\n+\t\"errors\"\n \t\"fmt\"\n \t\"io\"\n+\t\"io/fs\"\n \t\"os\"\n \t\"path/filepath\"\n \t\"runtime\"\n@@ -216,6 +218,15 @@ func runClean(ctx context.Context, cmd *base.Command, args []strin... | 2025-03-18T17:00:42 |
facebook/react | eaa696876ee40bb048727aefe995be1bbb7384a8 | 4129ea8c922b950be3964f98d2bb74ff4a1c5431 | fix: devtools source field disappears after component remount (#27297)
## Summary
Fixes: https://github.com/facebook/react/issues/27296
On actions that cause a component to change its signature, and therefore
to remount, the `_debugSource` property of the fiber updates in delay
and causes the `devtools` source... | [
{
"path": "packages/react-reconciler/src/ReactFiber.js",
"patch": "@@ -7,7 +7,7 @@\n * @flow\n */\n \n-import type {ReactElement} from 'shared/ReactElementType';\n+import type {ReactElement, Source} from 'shared/ReactElementType';\n import type {ReactFragment, ReactPortal, ReactScope} from 'shared/ReactTy... | 2023-08-29T15:42:35 |
rust-lang/rust | b902f89f92429eef8cff9aa8431a99624a71e2b7 | 4429f0916cef234bf83327c020becd3c66e5834b | Remove panicking default impl of `DepNodeKey::to_fingerprint`
There don't appear to be any trait impls relying on this default body. | [
{
"path": "compiler/rustc_query_system/src/dep_graph/dep_node.rs",
"patch": "@@ -173,12 +173,7 @@ pub trait DepNodeKey<Tcx: DepContext>: fmt::Debug + Sized {\n \n /// This method turns a query key into an opaque `Fingerprint` to be used\n /// in `DepNode`.\n- ///\n- /// Not all `DepNodeKey` im... | 2026-02-04T10:19:38 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.