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 | 40ad4fa548dc9ecc5d79645996e0a2defd7ac016 | d023213c7dd80b50df276f8193641ce9b2c71ade | Turbopack: fix route format for NFT globs (#82997)
These are effectively the tests for https://github.com/vercel/next.js/pull/82906
`outputFileTracingIncludes` and `outputFileTracingExcludes` match not against the pathname of the routes, but also include the app/pages prefix, e.g. `app/route1` for `src/app/route1/rou... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -34,10 +34,7 @@ use next_core::{\n },\n next_server_utility::{NEXT_SERVER_UTILITY_MERGE_TAG, NextServerUtilityTransition},\n parse_segment_config_from_source,\n- util::{\n- NextRuntime, app_middleware_function_name, module_styles_rul... | 2025-08-26T07:23:12 |
nodejs/node | 19c1b9dff5eef0a969222fb8531696cac10ffd51 | 50b4ada55108b553530b785030ff2832b66578ea | doc: fix ambasador markdown list
PR-URL: https://github.com/nodejs/node/pull/55361
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Benjamin Gru... | [
{
"path": "doc/contributing/advocacy-ambasador-program.md",
"patch": "@@ -45,9 +45,9 @@ If there is no objection within 14 days, the nomination is approved.\n \n To onboard an ambassador, a member of the TSC will:\n \n-* \\[] Add the ambassador to the nodejs/ambassadors team.\n-* \\[] Add the ambassador to ... | 2024-10-13T19:14:48 |
facebook/react | 3adca7a477f7dd025ea02599b59433b86ac8fd59 | 5e11e7fc203754cf95e27baed957c581b9ba44b8 | compiler: fix jsx text attributes with double quotes (#29079)
Fixes #29069 by detecting the presence of double-quotes in JSX attribute
strings and falling back to using an expression container. | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -2040,6 +2040,9 @@ function codegenJsxAttribute(\n switch (innerValue.type) {\n case \"StringLiteral\": {\n value = innerValue;\n+ if (value.value.indexOf('\... | 2024-05-15T21:40:33 |
golang/go | 7fa2c736b3dbcc741b4575f4df758532aaee34f7 | 281cfcfc1b15fbb87fd32660b0a1d50be996d108 | os: disallow Root.Remove(".") on Plan 9, js, and Windows
Windows already forbids this, since removing the root causes a
sharing violation (can't delete the directory while the os.Root
has a handle open to it), but add a more explicit check for
attempts to delete "." and return EINVAL.
Note that this change to Windows... | [
{
"path": "src/internal/syscall/windows/at_windows.go",
"patch": "@@ -192,6 +192,11 @@ func Mkdirat(dirfd syscall.Handle, name string, mode uint32) error {\n }\n \n func Deleteat(dirfd syscall.Handle, name string, options uint32) error {\n+\tif name == \".\" {\n+\t\t// NtOpenFile's documentation isn't expli... | 2025-06-05T21:27:45 |
electron/electron | f229201f41d7cfe241e584d5ba801bf406666e55 | 3a06047e6153ef494b134970892665c55c32931e | refactor: make NativeWindow getter methods const (#40804)
* refactor: make NativeWindow getter methods const
* fixup! refactor: make NativeWindow getter methods const
make GetZOrderLevel() const
* fixup! refactor: make NativeWindow getter methods const
fix oops | [
{
"path": "shell/browser/api/electron_api_base_window.cc",
"patch": "@@ -332,7 +332,7 @@ void BaseWindow::Blur() {\n window_->Focus(false);\n }\n \n-bool BaseWindow::IsFocused() {\n+bool BaseWindow::IsFocused() const {\n return window_->IsFocused();\n }\n \n@@ -351,11 +351,11 @@ void BaseWindow::Hide() ... | 2024-01-04T15:51:59 |
nodejs/node | 50b4ada55108b553530b785030ff2832b66578ea | ac49b20c75696d893149a4b6ca675d591fb4e57a | lib: convert transfer sequence to array in js
This commit lets `tranfer` passed to `structuredClone` get validated at
JS layer by doing webidl conversion. This avoids the C++ to JS function
call overhead in the native implementaiton of `structuredClone`
PR-URL: https://github.com/nodejs/node/pull/55317
Fixes: https:/... | [
{
"path": "lib/internal/bootstrap/web/exposed-window-or-worker.js",
"patch": "@@ -38,8 +38,11 @@ const {\n } = require('internal/process/task_queues');\n defineOperation(globalThis, 'queueMicrotask', queueMicrotask);\n \n-const { structuredClone } = internalBinding('messaging');\n-defineOperation(globalThis... | 2024-10-13T18:11:21 |
facebook/react | 5e11e7fc203754cf95e27baed957c581b9ba44b8 | c93c30f9d4c6339708636c3fbf9189acfe96443f | [heathcheck] Check for namespaced StrictMode (#29076)
Previously, we only checked for StrictMode by searching for
`<StrictMode>` but we should also check for the namespaced version,
`<React.StrictMode>`.
Fixes https://github.com/facebook/react/issues/29075 | [
{
"path": "compiler/packages/react-compiler-healthcheck/src/checks/strictMode.ts",
"patch": "@@ -8,7 +8,7 @@\n import chalk from \"chalk\";\n \n const JsFileExtensionRE = /(js|ts|jsx|tsx)$/;\n-const StrictModeRE = /\\<StrictMode\\>/;\n+const StrictModeRE = /<(React\\.StrictMode|StrictMode)>/;\n let StrictMo... | 2024-05-15T21:15:32 |
rust-lang/rust | 918214c19ae9f44eaca32d03f4a4cb10cc6089e9 | 2a3d765883f559d9e626cce2edda17418fd212ac | style: fix rustfmt formatting | [
{
"path": "src/tools/rust-analyzer/crates/ide-db/src/search.rs",
"patch": "@@ -1370,10 +1370,8 @@ fn is_name_ref_in_import(name_ref: &ast::NameRef) -> bool {\n }\n \n fn is_name_ref_in_test(sema: &Semantics<'_, RootDatabase>, name_ref: &ast::NameRef) -> bool {\n- sema.ancestors_with_macros(name_ref.synta... | 2026-02-18T20:44:34 |
vercel/next.js | badf4b6c17255ecfe8f0ff16f8108c7254dd83ac | 8cd4251f0741b2b1ccb35788ebdd20f19aaf6d85 | feat(build): add client param parsing support for PPR routes (#82621)
### What?
This PR introduces comprehensive type-aware parameter tracking and
fallback handling for dynamic routes in PPR scenarios, with enhanced
client-side parameter resolution capabilities.
### Why?
When using client segment cache with dynamic... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -784,5 +784,12 @@\n \"783\": \"Expected document.currentScript to be a <script> element. Received %s instead.\",\n \"784\": \"Expected document.currentScript src to contain '/_next/'. Received %s instead.\",\n \"785\": \"Expected webSocket to be defi... | 2025-08-25T23:57:53 |
golang/go | 281cfcfc1b15fbb87fd32660b0a1d50be996d108 | 4f86f2267167a63b673c4a2a2994e008b32c90ea | runtime: handle system goroutines later in goroutine profiling
Before CL 650697, there was only one system goroutine that could
dynamically change between being a user goroutine and a system
goroutine, and that was the finalizer/cleanup goroutine. In goroutine
profiles, it was handled explicitly. It's status would be ... | [
{
"path": "src/runtime/mprof.go",
"patch": "@@ -1431,10 +1431,6 @@ func tryRecordGoroutineProfile(gp1 *g, pcbuf []uintptr, yield func()) {\n \t\t// so here we check _Gdead first.\n \t\treturn\n \t}\n-\tif isSystemGoroutine(gp1, false) {\n-\t\t// System goroutines should not appear in the profile.\n-\t\tretu... | 2025-06-10T16:42:59 |
nodejs/node | ac49b20c75696d893149a4b6ca675d591fb4e57a | d881fcba86f72ff506eea53a5eca9a0ab2e4a02f | assert: fix deepEqual always return true on URL
PR-URL: https://github.com/nodejs/node/pull/50853
Fixes: https://github.com/nodejs/node/issues/50836
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "lib/internal/util/comparisons.js",
"patch": "@@ -27,6 +27,7 @@ const {\n \n const { compare } = internalBinding('buffer');\n const assert = require('internal/assert');\n+const { isURL } = require('internal/url');\n const types = require('internal/util/types');\n const {\n isAnyArrayBuffer,\n@@ ... | 2024-10-13T14:01:47 |
facebook/react | c93c30f9d4c6339708636c3fbf9189acfe96443f | cfeb491ee74073a48372c04d31142f5cacf2d5ec | Fix ESLint and Prettier configs for React Compiler (#29073)
Fixes the top-level ESLint and Prettier configs to ignore the compiler.
For now the compiler has its own prettier and linting setup with
different versions/configs. | [
{
"path": ".eslintignore",
"patch": "@@ -13,6 +13,9 @@ scripts/bench/benchmarks/**/*.js\n # React repository clone\n scripts/bench/remote-repo/\n \n+# Compiler uses its own lint setup\n+compiler/\n+\n packages/react-devtools-core/dist\n packages/react-devtools-extensions/chrome/build\n packages/react-devtoo... | 2024-05-15T21:02:57 |
rust-lang/rust | 4a0f916e3388a4efa92e11805d5cb35332befcab | c043085801b7a884054add21a94882216df5971c | fix stale comments left over from ed3711e | [
{
"path": "library/core/src/str/iter.rs",
"patch": "@@ -99,9 +99,6 @@ impl<'a> Iterator for Chars<'a> {\n #[inline]\n fn size_hint(&self) -> (usize, Option<usize>) {\n let len = self.iter.len();\n- // `(len + 3)` can't overflow, because we know that the `slice::Iter`\n- // belo... | 2026-02-18T20:30:59 |
vercel/next.js | af62463a97f6f45e290f2ba5a3efb5bb84d5f466 | 69d604b86b10cce0e5ee95e356865a95e930b360 | fix: add '.next/types/**/*.ts' to the pages router TSConfig (#83029)
See #83010
Previously, typed links only worked in App Router. Now they work in
Pages Router too, but we forgot to update the templates. | [
{
"path": "packages/create-next-app/templates/default-empty/ts/tsconfig.json",
"patch": "@@ -17,6 +17,6 @@\n \"@/*\": [\"./*\"]\n }\n },\n- \"include\": [\"next-env.d.ts\", \"**/*.ts\", \"**/*.tsx\"],\n+ \"include\": [\"next-env.d.ts\", \"**/*.ts\", \"**/*.tsx\", \".next/types/**/*.ts\"],\n ... | 2025-08-25T23:09:20 |
electron/electron | 3a06047e6153ef494b134970892665c55c32931e | 84ba0c6c7d248d7121d1103d2844e7a124b59e3f | docs: note accelerator case insensitivity (#40783)
* Fix PR#38673
As requested in PR#38673 , a line has been added that explicitly states that accelerators are case sensitive
* Update docs/api/accelerator.md
Co-authored-by: Erick Zhao <erick@hotmail.ca>
* Update accelerator.md
---------
Co-authored-b... | [
{
"path": "docs/api/accelerator.md",
"patch": "@@ -4,7 +4,7 @@\n \n Accelerators are strings that can contain multiple modifiers and a single key code,\n combined by the `+` character, and are used to define keyboard shortcuts\n-throughout your application.\n+throughout your application. Accelerators are ca... | 2024-01-04T15:06:12 |
golang/go | 4f86f2267167a63b673c4a2a2994e008b32c90ea | 773701a853a3105696c59c2b92b2eff35e0e055b | testing/synctest, runtime: avoid panic when using linker-alloc WG from bubble
We associate WaitGroups with synctest bubbles by attaching a
special to the WaitGroup. It is not possible to attach a special
to a linker-allocated value, such as:
var wg sync.WaitGroup
Avoid panicking when accessing a linker-allocated... | [
{
"path": "src/internal/synctest/synctest.go",
"patch": "@@ -8,6 +8,7 @@\n package synctest\n \n import (\n+\t\"internal/abi\"\n \t\"unsafe\"\n )\n \n@@ -22,14 +23,25 @@ func Wait()\n //go:linkname IsInBubble\n func IsInBubble() bool\n \n-// Associate associates p with the current bubble.\n-// It returns fa... | 2025-06-05T20:47:06 |
nodejs/node | fdf838aee69939db91bdaf7192a2cf176e3e5fb0 | e9904fe49af2b08ea317da93f5684bd0da76582e | node-api: add napi_create_buffer_from_arraybuffer method
PR-URL: https://github.com/nodejs/node/pull/54505
Fixes: https://github.com/nodejs/node/issues/54440
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Gabriel Schulhof <gabrielschulhof@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -2696,6 +2696,37 @@ is raised.\n JavaScript `TypedArray` objects are described in\n [Section 22.2][] of the ECMAScript Language Specification.\n \n+#### `node_api_create_buffer_from_arraybuffer`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> Stability: 1 - Experime... | 2024-10-11T15:21:57 |
facebook/react | cfeb491ee74073a48372c04d31142f5cacf2d5ec | 71565a932cfc877a42bdc6ad3ffc72bab0788ca5 | Add a `main` field to `eslint-plugin-react-compiler`, fixes #29068. (#29072)
## Summary
The main field is missing, this fixes it.
Fixes #29068.
## How did you test this change?
Manually patched the package and tried it in my codebase. | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/package.json",
"patch": "@@ -2,6 +2,7 @@\n \"name\": \"eslint-plugin-react-compiler\",\n \"version\": \"0.0.0-experimental-e04a001-20240515\",\n \"description\": \"ESLint plugin to display errors found by the React compiler.\",\n+ \"main\": \"... | 2024-05-15T21:02:20 |
rust-lang/rust | 2a3d765883f559d9e626cce2edda17418fd212ac | ffc185a5db9e52f1d32fa48cd0eb80b317ddfe49 | fix: exclude macro refs in tests when excludeTests is enabled | [
{
"path": "src/tools/rust-analyzer/crates/ide-db/src/search.rs",
"patch": "@@ -1370,8 +1370,10 @@ fn is_name_ref_in_import(name_ref: &ast::NameRef) -> bool {\n }\n \n fn is_name_ref_in_test(sema: &Semantics<'_, RootDatabase>, name_ref: &ast::NameRef) -> bool {\n- name_ref.syntax().ancestors().any(|node| ... | 2026-02-18T20:21:08 |
vercel/next.js | 1e0f9d489880c4744a9d203f41c8c8ebcf0e8f2f | 78459a2a7def02e2706ee38dd647572f5b32c4c0 | Turbopack: fix NFT tracing of sharp 0.34 (#82340)
We need a special case for this shared library loading | [
{
"path": "turbopack/crates/turbopack-core/src/lib.rs",
"patch": "@@ -25,6 +25,7 @@ pub mod introspect;\n pub mod issue;\n pub mod module;\n pub mod module_graph;\n+pub mod node_addon_module;\n pub mod output;\n pub mod package_json;\n pub mod proxied_asset;",
"additions": 1,
"deletions": 0,
"la... | 2025-08-25T15:18:57 |
facebook/react | ecccaf6e017911cd0b39e4f54cc570ff1ba29824 | 6457343cd3c22a9eedbd943ec0ff61d7b7134d08 | Fix CI for compiler paths
ghstack-source-id: 43bb0c8c957fc550203445868c90fa706e3a8d11
Pull Request resolved: https://github.com/facebook/react-forget/pull/2968 | [
{
"path": ".github/workflows/compiler-playground.yml",
"patch": "@@ -5,7 +5,7 @@ on:\n branches: [main]\n pull_request:\n paths:\n- - compiler/\n+ - \"compiler/**\"\n - .github/workflows/compiler-playground.yml\n \n defaults:",
"additions": 1,
"deletions": 1,
"language"... | 2024-05-14T15:01:18 |
nodejs/node | acd698a5c83d73901d4da47ba9cd04f930b8ef50 | ccd4faf4bfc869f63d2128b69d3e9308d832acd9 | doc: fix the return type of outgoingMessage.setHeaders()
The actual implementation returns `outgoingMessage` itself, but not
exactly `http.ServerResponse`.
Refs: https://github.com/nodejs/node/blob/20d8b85d3493bec944de541a896e0165dd356345/lib/_http_outgoing.js#L712-L751
PR-URL: https://github.com/nodejs/node/pull/552... | [
{
"path": "doc/api/http.md",
"patch": "@@ -3289,9 +3289,7 @@ added:\n -->\n \n * `headers` {Headers|Map}\n-* Returns: {http.ServerResponse}\n-\n-Returns the response object.\n+* Returns: {this}\n \n Sets multiple header values for implicit headers.\n `headers` must be an instance of [`Headers`][] or `Map`,\... | 2024-10-11T13:03:35 |
electron/electron | 84ba0c6c7d248d7121d1103d2844e7a124b59e3f | 0672f59f2648df29294d507e3789ca6a87877b8a | fix: BrowserView and <webview> should be transparent by default (#40866) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -3778,15 +3778,17 @@ void WebContents::SetImageAnimationPolicy(const std::string& new_policy) {\n }\n \n void WebContents::SetBackgroundColor(absl::optional<SkColor> maybe_color) {\n- web_contents()->SetPageBaseBackgroundColor(maybe_c... | 2024-01-04T15:04:56 |
nodejs/node | f98d9c125cc4216266cf9a15e928107ca32c9c4b | 27f8d9e9d20e33eeaf7d36627ee4c629b3b15aa1 | process: fix `process.features.typescript` when Amaro is unavailable
PR-URL: https://github.com/nodejs/node/pull/55323
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "lib/internal/bootstrap/node.js",
"patch": "@@ -315,7 +315,7 @@ ObjectDefineProperty(process, 'features', {\n const { emitWarning, emitWarningSync } = require('internal/process/warning');\n const { getOptionValue } = require('internal/options');\n \n-let kTypeStrippingMode = null;\n+let kTypeStrip... | 2024-10-11T11:27:16 |
facebook/react | 6948639df67235e3f79755f2373ff5f913e86637 | 67ea821e5fe6ddf3c734ec08ccf3630de9ef73ae | [publish] Add script to publish packages
Adds a script to publish babel-plugin-react-compiler,
eslint-plugin-react-compiler, and react-compiler-healthcheck to npm.
Instructions are in a comment in scripts/publish.js, please read
carefully before using this script!
Test plan:
```
$ yarn npm:publish
yarn run v1.22.1... | [
{
"path": "compiler/package.json",
"patch": "@@ -26,7 +26,8 @@\n \"test\": \"yarn workspaces run test\",\n \"snap\": \"yarn workspace babel-plugin-react-compiler run snap\",\n \"snap:build\": \"yarn workspace snap run build\",\n- \"postinstall\": \"perl -p -i -e 's/react\\\\.element/react.tra... | 2024-05-14T15:01:17 |
vercel/next.js | 78459a2a7def02e2706ee38dd647572f5b32c4c0 | 3596c0334303f464e201d74941a49d2fbe650ecf | Turbopack: support pattern into exports field (#82757)
Support patterns into `exports` field mappings
- for exact mappings (such as `"./foo": "./src/foo/index.js"`), all patterns work
- for wildcard mappings (such as `"./*": "./src/*/index.js"`), only basic patterns of `prefix<dynamic>suffix` are supported. | [
{
"path": "turbopack/crates/turbopack-core/src/resolve/alias_map.rs",
"patch": "@@ -1,9 +1,10 @@\n use std::{\n+ borrow::Cow,\n collections::BTreeMap,\n fmt::{Debug, Formatter},\n- future::Future,\n };\n \n+use anyhow::Result;\n use patricia_tree::PatriciaMap;\n use serde::{\n Deserialize,... | 2025-08-25T14:36:57 |
rust-lang/rust | 3cb093af1fae3eb5370c702a32ca5e334e84dbde | c043085801b7a884054add21a94882216df5971c | interpret: fix comment typo | [
{
"path": "compiler/rustc_const_eval/src/interpret/validity.rs",
"patch": "@@ -647,8 +647,9 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValidityVisitor<'rt, 'tcx, M> {\n }\n } else {\n // This is not CTFE, so it's Miri with recursive checking.\n- // FIXME:... | 2026-02-18T17:22:26 |
golang/go | 773701a853a3105696c59c2b92b2eff35e0e055b | fb0c27c514b7d6bbb88b72cfd7baff01e567f6bb | internal/trace: pass GOTRACEBACK=crash to testprogs
The failures in #70310 are hard to decipher. The cases where the lock is
being held either don't really make sense (the STW failures) or the
goroutine that fails is 'running on another thread' and we don't get a
stack trace. In fact, such a goroutine exists even in t... | [
{
"path": "src/internal/trace/trace_test.go",
"patch": "@@ -600,6 +600,10 @@ func testTraceProg(t *testing.T, progName string, extra func(t *testing.T, trace\n \t\t\tgodebug += \",\" + extraGODEBUG\n \t\t}\n \t\tcmd.Env = append(cmd.Env, \"GODEBUG=\"+godebug)\n+\t\tif _, ok := os.LookupEnv(\"GOTRACEBACK\");... | 2025-06-09T22:54:54 |
electron/electron | dfce1a9eb4de3a5789536cd511e81c6dfd81e393 | baca2e302db0356b3039ab9f1fadf6b725afc04d | fix: ignore all NODE_ envs from foreign parent in node process (#40770)
* fix: ignore all NODE_ envs from foreign parent
* fix: recognize ad-hoc signed binary | [
{
"path": "filenames.gni",
"patch": "@@ -656,6 +656,7 @@ filenames = {\n \"shell/common/node_includes.h\",\n \"shell/common/node_util.cc\",\n \"shell/common/node_util.h\",\n+ \"shell/common/node_util_mac.mm\",\n \"shell/common/options_switches.cc\",\n \"shell/common/options_switches.h... | 2024-01-04T07:34:08 |
nodejs/node | 27f8d9e9d20e33eeaf7d36627ee4c629b3b15aa1 | 82dab76d63e6f3592e15e49d7dba2367044d4869 | build,win: enable pch for clang-cl
Fixes: https://github.com/nodejs/node/issues/55208
PR-URL: https://github.com/nodejs/node/pull/55249
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "node.gypi",
"patch": "@@ -65,15 +65,11 @@\n 'NODE_PLATFORM=\"win32\"',\n '_UNICODE=1',\n ],\n- 'conditions': [\n- ['clang==0', {\n- 'msvs_precompiled_header': 'tools/msvs/pch/node_pch.h',\n- 'msvs_precompiled_source': 'tools/msvs/pch/node_pch.cc... | 2024-10-11T10:28:55 |
facebook/react | 67ea821e5fe6ddf3c734ec08ccf3630de9ef73ae | 5a842dbfb15975597ce51a304bce5a2cf070399f | [publish] Fix `files` field for packages, invalid version range
The [`files` field](https://docs.npmjs.com/cli/v10/commands/npm-publish#files-included-in-package)
controls what files get included in the published package.
This PR specifies the `files` field on our publishable packages to only
include the `dist` direc... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/package.json",
"patch": "@@ -5,7 +5,7 @@\n \"main\": \"dist/index.js\",\n \"license\": \"MIT\",\n \"files\": [\n- \"src\"\n+ \"dist\"\n ],\n \"scripts\": {\n \"build\": \"rimraf dist && rollup --config --bundleConfigAsCjs\",",
... | 2024-05-14T15:01:16 |
vercel/next.js | 3596c0334303f464e201d74941a49d2fbe650ecf | 1029d059a816c2fda85f154daec4561ec0d9c98b | Turbopack: fix race condition in unit test (#82989) | [
{
"path": "turbopack/crates/turbo-tasks-backend/tests/trait_ref_cell.rs",
"patch": "@@ -2,7 +2,7 @@\n #![feature(arbitrary_self_types_pointers)]\n #![allow(clippy::needless_return)] // tokio macro-generated code doesn't respect this\n \n-use std::sync::Mutex;\n+use std::{collections::HashSet, mem::take, syn... | 2025-08-25T12:55:52 |
rust-lang/rust | 61c9af20c7d36fc4f33e0a90fbb86ce5b519a468 | 3f6250a7bb79e600d9036bbc7c8f65af43933643 | avoid delayed-bug ICE for malformed diagnostic attrs
remove -Znext-solver from ui tests | [
{
"path": "compiler/rustc_attr_parsing/src/parser.rs",
"patch": "@@ -522,6 +522,13 @@ impl<'a, 'sess> MetaItemListParserContext<'a, 'sess> {\n return self.parser.dcx().create_err(err);\n }\n \n+ if let ShouldEmit::ErrorsAndLints { recovery: Recovery::Forbidden } = self.should_emit... | 2026-02-18T16:08:35 |
golang/go | fb0c27c514b7d6bbb88b72cfd7baff01e567f6bb | 1cafdfb63bb9b8825c5f4143d154bce3b82ed6a1 | os: do not follow dangling symlinks in Root when O_CREATE|O_EXCL on AIX
OpenFile with O_CREATE|O_EXCL should not follow dangling symlinks.
On AIX it does, because AIX's openat(2) apparently returns ELOOP
in this case. Most Unices return EEXIST.
Ensure that we never follow symlinks in the final component of
the path w... | [
{
"path": "src/os/root_unix.go",
"patch": "@@ -83,8 +83,18 @@ func rootOpenFileNolog(root *Root, name string, flag int, perm FileMode) (*File,\n \tfd, err := doInRoot(root, name, nil, func(parent int, name string) (fd int, err error) {\n \t\tignoringEINTR(func() error {\n \t\t\tfd, err = unix.Openat(parent,... | 2025-05-30T21:05:10 |
nodejs/node | 82dab76d63e6f3592e15e49d7dba2367044d4869 | 9f9069d3130dc336a86271ca4e3c36e9b87cce90 | test: fix tests when Amaro is unavailable
Fix two tests that fail when `node` is configured `--without-amaro`.
PR-URL: https://github.com/nodejs/node/pull/55320
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.... | [
{
"path": "test/es-module/test-esm-loader-entry-url.mjs",
"patch": "@@ -76,7 +76,7 @@ describe('--entry-url', { concurrency: true }, () => {\n );\n });\n \n- it('should support loading TypeScript URLs', async () => {\n+ it('should support loading TypeScript URLs', { skip: !process.config.variables.n... | 2024-10-11T05:27:54 |
vercel/next.js | 1029d059a816c2fda85f154daec4561ec0d9c98b | d58c9df9ef844162ccabb608dac83524beeb1376 | Update 07-fetching-data.mdx (#82862)
Promise.all or any of the other 3 static concurrency methods don't
actually run requests in parallel, rather they execute concurrently.
[Parallelism vs
Concurrency](https://wiki.haskell.org/Parallelism_vs._Concurrency)
[Promise
Concurrency](https://developer.mozilla.org/en-US/docs... | [
{
"path": "docs/01-app/01-getting-started/07-fetching-data.mdx",
"patch": "@@ -504,7 +504,7 @@ export default async function Page({ params }) {\n }\n ```\n \n-You can initiate requests in parallel by defining them outside the components that use the data, and resolving them together, for example, with [`Pro... | 2025-08-25T11:12:22 |
facebook/react | 5a842dbfb15975597ce51a304bce5a2cf070399f | b956024f3d10d82a3f1b9a5186727d8275f42ab4 | Fix healthcheck package.json bin field
ghstack-source-id: 28045c6edb342dea125ea8fcea564ce90626f21d
Pull Request resolved: https://github.com/facebook/react-forget/pull/2964 | [
{
"path": "compiler/packages/react-compiler-healthcheck/package.json",
"patch": "@@ -2,7 +2,9 @@\n \"name\": \"react-compiler-healthcheck\",\n \"version\": \"0.0.0\",\n \"description\": \"Health check script to test violations of the rules of react.\",\n- \"bin\": \"dist/index.js\",\n+ \"bin\": {\n+... | 2024-05-14T15:01:16 |
rust-lang/rust | 6a1537830e393dfb937caf2e97d1c2f80049620f | 9ddb7fc60a596492db05b3ed846c0dc5f1ebbf23 | Fix broken merge | [
{
"path": "src/abi/mod.rs",
"patch": "@@ -58,9 +58,6 @@ pub(crate) fn conv_to_call_conv(\n // Cranelift doesn't currently have anything for this.\n CanonAbi::RustPreserveNone => default_call_conv,\n \n- // Cranelift doesn't currently have anything for this.\n- CanonAbi::RustPre... | 2026-02-18T15:10:37 |
golang/go | 1cafdfb63bb9b8825c5f4143d154bce3b82ed6a1 | a35701b3525ccd140995a216758760c60e7c58d7 | net/http: make the zero value of CrossOriginProtection work
Currently, CrossOriginProtection must be constructed by
NewCrossOriginProtection. If you try to use the zero value, most
methods will panic with a nil dereference.
This CL makes CrossOriginProtection use on-demand initialization
instead, so the zero value ha... | [
{
"path": "src/net/http/csrf.go",
"patch": "@@ -26,23 +26,23 @@ import (\n // Requests without Sec-Fetch-Site or Origin headers are currently assumed to be\n // either same-origin or non-browser requests, and are allowed.\n //\n+// The zero value of CrossOriginProtection is valid and has no trusted origins\... | 2025-06-10T16:26:03 |
nodejs/node | 9f9069d3130dc336a86271ca4e3c36e9b87cce90 | 7a3027d5630cb133c80301c8e0a88fea076b05b7 | fs: fix linter issue
PR-URL: https://github.com/nodejs/node/pull/55353
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "lib/internal/fs/utils.js",
"patch": "@@ -723,7 +723,7 @@ const validatePath = hideStackFrames((path, propName = 'path', options) => {\n \n const pathIsString = typeof path === 'string';\n const pathIsUint8Array = isUint8Array(path);\n- if (options && options.expectFile) {\n+ if (options?.ex... | 2024-10-10T22:50:19 |
facebook/react | b956024f3d10d82a3f1b9a5186727d8275f42ab4 | ce0c08eaad59122422a98b0103e96aa15ff29166 | Fix Jest tests
ghstack-source-id: e2507b7285bb52ee02d2cece35aa16eb0bc0baa5
Pull Request resolved: https://github.com/facebook/react-forget/pull/2963 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/scripts/jest/makeTransform.ts",
"patch": "@@ -176,7 +176,15 @@ function ReactForgetFunctionTransform() {\n }\n }\n \n- const compiled = compile(fn, forgetOptions, \"Other\", null, null);\n+ const compiled = compile(\n+ f... | 2024-05-13T21:09:44 |
vercel/next.js | 85ef3638b3f546bb9117e8cd742771388303af0e | d6794f43c19ef3d64ac7bcc7bbe47433c95d42f9 | Turbopack: don't treat metadata routes as RSC (#82911)
Metadata routes are just `route.ts`\-s in diguise.
Treat them the same regarding the layer (`app-route`) and whether to emit client reference/server actions manifests for them (= don't).
This fixes a panic:
```
thread 'tokio-runtime-worker' panicked at crates/ne... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -1134,8 +1134,8 @@ impl AppEndpoint {\n next_config: Vc<NextConfig>,\n ) -> Result<Vc<AppEntry>> {\n Ok(get_app_metadata_route_entry(\n- self.app_project.rsc_module_context(),\n- self.app_project.edge_rsc_module_c... | 2025-08-25T09:56:47 |
rust-lang/rust | fb635505491c0e5dbdb8d4349a395c14664638b8 | 87ba622af7b5517e8bfdf8f66de0dbe187093414 | Fix broken merge | [
{
"path": "compiler/rustc_codegen_cranelift/src/abi/mod.rs",
"patch": "@@ -58,9 +58,6 @@ pub(crate) fn conv_to_call_conv(\n // Cranelift doesn't currently have anything for this.\n CanonAbi::RustPreserveNone => default_call_conv,\n \n- // Cranelift doesn't currently have anything for ... | 2026-02-18T15:10:37 |
electron/electron | 8c89137ecd1ad23b69ffc03d40385bc219977119 | be4e4ff11b31ef2d6caf322eae947df4bdaf1a16 | chore: bump chromium to 122.0.6194.0 (main) (#40750)
* chore: bump chromium in DEPS to 122.0.6180.0
* chore: update render_widget_host_view_base.patch
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/5079532
minor manual changes to match upstream changes
* chore: update printing.patch
Xre... | [
{
"path": "BUILD.gn",
"patch": "@@ -492,6 +492,7 @@ source_set(\"electron_lib\") {\n \"//third_party/webrtc_overrides:webrtc_component\",\n \"//third_party/widevine/cdm:headers\",\n \"//third_party/zlib/google:zip\",\n+ \"//ui/base:ozone_buildflags\",\n \"//ui/base/idle\",\n \"//ui/co... | 2024-01-03T08:52:49 |
golang/go | a35701b3525ccd140995a216758760c60e7c58d7 | a189516d3a1623f2560f80569c4b64bdffc4ac78 | cmd/dist: only install necessary tools when doing local test
Instead of installing all of cmd, install only the tools that cmd/dist
would normally install.
Also, remove the addition of the buildid tool to the list of commands in
the toolchain in debug mode. The uses of buildid were removed in CL 451360.
For #71867
... | [
{
"path": "src/cmd/dist/build.go",
"patch": "@@ -1390,7 +1390,21 @@ func toolenv() []string {\n \treturn env\n }\n \n-var toolchain = []string{\"cmd/asm\", \"cmd/cgo\", \"cmd/compile\", \"cmd/link\", \"cmd/preprofile\"}\n+var (\n+\ttoolchain = []string{\"cmd/asm\", \"cmd/cgo\", \"cmd/compile\", \"cmd/link\"... | 2025-06-10T15:12:10 |
nodejs/node | 4988bb549e79a6b92391b4ff529f675da32c0687 | fdc23b2f6bd4d0ed4ecfa8a36ca948f7bf70a764 | tools: enforce ordering of error codes in `errors.md`
PR-URL: https://github.com/nodejs/node/pull/55324
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -956,12 +956,6 @@ added: v15.0.0\n \n An invalid JSON Web Key was provided.\n \n-<a id=\"ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE\"></a>\n-\n-### `ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE`\n-\n-The given crypto key object's type is invalid for the attempted operation.\n-\n <a... | 2024-10-10T17:18:20 |
facebook/react | 78da5becaf1e705d0a4ae3fe84596f95d9202045 | 76b7331b0d817bd4b304d31cc049cbce6ba3b3a2 | [healthcheck] Remove console.error
ghstack-source-id: c06d44960cfb831e3dc8162858977c4ef619309d
Pull Request resolved: https://github.com/facebook/react-forget/pull/2958 | [
{
"path": "compiler/packages/react-compiler-healthcheck/src/checks/reactCompiler.ts",
"patch": "@@ -99,9 +99,7 @@ function compile(sourceCode: string, filename: string) {\n \"typescript\",\n COMPILER_OPTIONS\n );\n- } catch (e) {\n- console.error(e);\n- }\n+ } catch {}\n }\n \n const J... | 2024-05-11T04:20:00 |
rust-lang/rust | b0c4cbaa69f9282a29439309f143c6d36b00cdc3 | e299e18e546bee90c64eba55f4276cd62633b4c0 | Fix stale metadata output comment in compile-test
DiagnosticCollector currently writes util/gh-pages/index.html, but the
doc comment still said util/gh-pages/lints.json.
The drift came from the switch to HTML generation in b522e7a94
("Generate lint list in HTML directly instead of JS"), which changed
the output fi... | [
{
"path": "tests/compile-test.rs",
"patch": "@@ -466,7 +466,7 @@ enum DiagnosticOrMessage {\n }\n \n /// Collects applicabilities from the diagnostics produced for each UI test, producing the\n-/// `util/gh-pages/lints.json` file used by <https://rust-lang.github.io/rust-clippy/>\n+/// `util/gh-pages/index.... | 2026-02-18T14:54:28 |
vercel/next.js | d6794f43c19ef3d64ac7bcc7bbe47433c95d42f9 | d89f14dda3f77ec1afc48e045190afc17fbb2ae5 | Turbopack: throw large static metadata error earlier (#82939)
Throw it during bundling, as opposed to at runtime.
This circumnavigates a panic in Turbopack when inlining a 40mb string into a JS module. | [
{
"path": "crates/next-core/src/next_app/metadata/route.rs",
"patch": "@@ -5,12 +5,16 @@\n use anyhow::{Ok, Result, bail};\n use base64::{display::Base64Display, engine::general_purpose::STANDARD};\n use indoc::{formatdoc, indoc};\n-use turbo_rcstr::rcstr;\n+use turbo_rcstr::{RcStr, rcstr};\n use turbo_task... | 2025-08-25T09:09:45 |
electron/electron | be4e4ff11b31ef2d6caf322eae947df4bdaf1a16 | a208d45aca3b19fb661c630880451e26d46c92a6 | fix: make grant_file_protocol_extra_privileges fuse also block CORS fetches (#40801) | [
{
"path": "build/fuses/build.py",
"patch": "@@ -32,6 +32,13 @@\n \n TEMPLATE_CC = \"\"\"\n #include \"electron/fuses.h\"\n+#include \"base/dcheck_is_on.h\"\n+\n+#if DCHECK_IS_ON()\n+#include \"base/command_line.h\"\n+#include \"base/strings/string_util.h\"\n+#include <string>\n+#endif\n \n namespace electro... | 2024-01-02T21:06:33 |
golang/go | a189516d3a1623f2560f80569c4b64bdffc4ac78 | f18d046568496dd331657df4ba90218821cb9ffd | runtime: don't do a direct G handoff in semrelease on systemstack
semrelease is safe to call on the system stack (since it just readies
goroutines) except for the fact that it might perform a direct G
handoff and call into the scheduler. If handoff is set to false this is
exceptionally rare, but could happen, and has ... | [
{
"path": "src/runtime/sema.go",
"patch": "@@ -261,11 +261,13 @@ func semrelease1(addr *uint32, handoff bool, skipframes int) {\n \t\t\ts.ticket = 1\n \t\t}\n \t\treadyWithTime(s, 5+skipframes)\n-\t\tif s.ticket == 1 && getg().m.locks == 0 {\n+\t\tif s.ticket == 1 && getg().m.locks == 0 && getg() != getg().... | 2025-06-09T21:45:33 |
nodejs/node | fdc23b2f6bd4d0ed4ecfa8a36ca948f7bf70a764 | d62075566125455dafa2e84cd41373676cb7e158 | test: use more informative errors in `test-runner-cli`
PR-URL: https://github.com/nodejs/node/pull/55321
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me> | [
{
"path": "test/parallel/test-runner-cli.js",
"patch": "@@ -67,8 +67,6 @@ for (const isolation of ['none', 'process']) {\n `--experimental-${type}-types`, `--experimental-test-isolation=${isolation}`];\n const child = spawnSync(process.execPath, args, { cwd: join(testFixtures, 'matchin... | 2024-10-10T16:11:00 |
vercel/next.js | d8d3b2e07e51d0962c9e82adb61c638b3d903d58 | 94f422e480ac20de0abb9f1b860ca5f8a62c90e4 | Unhook WebSocket (#82931)
Currently, the WebSocket that's used for `next dev` is created in a React hook inside of the `HotReload` component, which is (transitively) rendered by the `ServerRoot` component, but only after the initial RSC response is processed, at least partially.
This creates a problem when integrat... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -780,5 +780,9 @@\n \"779\": \"Route %s used \\\"searchParams\\\" inside \\\"use cache\\\". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \\\"searchParams\\\" outside of... | 2025-08-25T08:51:03 |
facebook/react | 9a6ce3379d6390cf4b952e4ce261f9a975ffd8eb | db34843c424d55da7b39a35b8043bb49a1da9515 | [healthcheck] Fix build
runReactBabelPluginReactCompiler brings in fbt which is unnecessary for
OSS so I removed it.
Also makes it so healthckeck is installed as an executable
ghstack-source-id: ec6c76f8be01483d4ca75d9d74037b3966fccbdb
Pull Request resolved: https://github.com/facebook/react-forget/pull/2955 | [
{
"path": "compiler/packages/healthcheck/package.json",
"patch": "@@ -2,13 +2,16 @@\n \"name\": \"healthcheck\",\n \"version\": \"0.0.0\",\n \"description\": \"Health check script to test violations of the rules of react.\",\n- \"main\": \"dist/index.js\",\n+ \"bin\": \"dist/index.js\",\n \"script... | 2024-05-11T04:19:59 |
electron/electron | a208d45aca3b19fb661c630880451e26d46c92a6 | 7995c56fb0b20b254b379a43e1435a81695a3c7d | fix: titlebar incorrectly displayed on frameless windows (#40749)
* fix: titlebar incorrectly displayed on frameless windows
* fix: enable transparency for Mica windows
* Refactor ShouldWindowContentsBeTransparent
---------
Co-authored-by: clavin <clavin@electronjs.org> | [
{
"path": "patches/chromium/fix_activate_background_material_on_windows.patch",
"patch": "@@ -1,19 +1,23 @@\n From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n From: clavin <clavin@electronjs.org>\n-Date: Wed, 30 Aug 2023 18:15:36 -0700\n+Date: Mon, 11 Dec 2023 20:43:34 -0300\n Subjec... | 2024-01-02T18:59:47 |
golang/go | ee7bfbdbcc75c17c9f6f357f7950cfae0d63811c | 985d600f3aa8654b854f8b2c822552c052ed3d30 | cmd/compile/internal/ssa: fix PPC64 merging of (AND (S[RL]Dconst ...)
CL 622236 forgot to check the mask was also a 32 bit rotate mask. Add
a modified version of isPPC64WordRotateMask which valids the mask is
contiguous and fits inside a uint32.
I don't this is possible when merging SRDconst, the first check should
a... | [
{
"path": "src/cmd/compile/internal/ssa/rewrite.go",
"patch": "@@ -1583,6 +1583,11 @@ func GetPPC64Shiftme(auxint int64) int64 {\n // operation. Masks can also extend from the msb and wrap to\n // the lsb too. That is, the valid masks are 32 bit strings\n // of the form: 0..01..10..0 or 1..10..01..1 or 1.... | 2025-06-04T13:51:11 |
nodejs/node | 00b2f07f9ddeb8ffd2fb2108b0ed9ffa81ea000d | 4a3fffaf58c1f02b309f4ef51daffa173d7aeed5 | fs,win: fix bug in paths with trailing slashes
Fixes: https://github.com/nodejs/node/issues/17801
Refs: https://github.com/nodejs/node/pull/33831
PR-URL: https://github.com/nodejs/node/pull/54160
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "lib/fs.js",
"patch": "@@ -385,7 +385,11 @@ function readFile(path, options, callback) {\n const req = new FSReqCallback();\n req.context = context;\n req.oncomplete = readFileAfterOpen;\n- binding.open(getValidatedPath(path), flagsNumber, 0o666, req);\n+ binding.open(\n+ getValidatedPa... | 2024-10-10T11:14:56 |
rust-lang/rust | b7d95aab1606edcec11255fb60fd573d3ce75b5c | e1fa34ec2fba5ee3488fe608d33521fbd8463695 | internal: Add flycheck test for custom check command and debounce
This adds an integration test for flycheck with a custom check
command.
On its own, the test actually fails due to an issue with the debounce
logic. We would trigger a flycheck when the workspace is loaded, but
the check command references $saved_file ... | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs",
"patch": "@@ -559,17 +559,37 @@ impl FlycheckActor {\n self.cancel_check_process();\n }\n Event::RequestStateChange(StateChange::Restart {\n- generation,\n- ... | 2026-02-17T18:26:39 |
facebook/react | c58142ba35566536999cddfe83f241918856b1d6 | 6b23c25ff93dafce938aa94910b9a94df33bc850 | ReAnimated -> Reanimated
Fixes a small typo by request
ghstack-source-id: 00889150a952308f00d89472c864726222e835d3
Pull Request resolved: https://github.com/facebook/react-forget/pull/2952 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Reanimated.ts",
"patch": "@@ -28,7 +28,7 @@ export function injectReanimatedFlag(options: PluginOptions): PluginOptions {\n ...options,\n environment: {\n ...options.environment,\n- enableCustomTypeDefinitionForReAnim... | 2024-05-11T04:19:58 |
vercel/next.js | 8d3d827552fdc879dccbd5453ed0ef439b02eff5 | 3e0247431e59f6796f8a1c25a39dc17c78f979bc | fix: change "noUnknownAtRules" to "warn" for Biome (#82974)
Temporary patch for #82826 to get Biome lint working with Tailwind until
they release a version with the fix (expected soon).
Note that this will still throw a warning, just not fail the build. | [
{
"path": "packages/create-next-app/templates/app-tw-empty/js/biome.json",
"patch": "@@ -17,7 +17,10 @@\n \"linter\": {\n \"enabled\": true,\n \"rules\": {\n- \"recommended\": true\n+ \"recommended\": true,\n+ \"suspicious\": {\n+ \"noUnknownAtRules\": \"warn\"\n+ }\n ... | 2025-08-24T09:28:52 |
electron/electron | 7995c56fb0b20b254b379a43e1435a81695a3c7d | ab2a4fd836d539194bc5cde5f0d665eddeb6a134 | refactor: use a FixedFlatMap for v8 converting ui::MenuSourceType (#40786) | [
{
"path": "shell/common/gin_converters/content_converter.cc",
"patch": "@@ -69,80 +69,39 @@ namespace {\n \n namespace gin {\n \n+static constexpr auto MenuSourceTypes =\n+ base::MakeFixedFlatMap<base::StringPiece, ui::MenuSourceType>({\n+ {\"adjustSelection\", ui::MENU_SOURCE_ADJUST_SELECTION},\n... | 2023-12-20T23:44:17 |
golang/go | 985d600f3aa8654b854f8b2c822552c052ed3d30 | 848a768ba76d7c386c2aa4f05bc2e9e51b5948b9 | runtime: use small struct TestSynctest to ensure cleanups run
Finalizers and cleanup funcs weren't running on the windows-arm64
builder. Put finalizers/cleanups on a small struct containing a pointer
rather than an *int, which fixes the problem.
Also uncomment a synctest.Wait that was accidentally commented out.
Fix... | [
{
"path": "src/runtime/testdata/testsynctest/main.go",
"patch": "@@ -9,6 +9,7 @@ import (\n \t\"runtime\"\n \t\"runtime/metrics\"\n \t\"sync/atomic\"\n+\t\"unsafe\"\n )\n \n // This program ensures system goroutines (GC workers, finalizer goroutine)\n@@ -27,6 +28,11 @@ func numGCCycles() uint64 {\n \treturn... | 2025-06-06T19:59:04 |
nodejs/node | 4a3fffaf58c1f02b309f4ef51daffa173d7aeed5 | 31a37e777dcb137aa61e1692e4f3a701e81c36a0 | doc: move `ERR_INVALID_PERFORMANCE_MARK` to legacy errors
PR-URL: https://github.com/nodejs/node/pull/55247
Refs: https://github.com/nodejs/node/pull/14680
Refs: https://github.com/nodejs/node/pull/39297
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -2003,13 +2003,6 @@ An invalid [`package.json`][] file failed parsing.\n The `package.json` [`\"exports\"`][] field contains an invalid target mapping\n value for the attempted module resolution.\n \n-<a id=\"ERR_INVALID_PERFORMANCE_MARK\"></a>\n-\n-### `ERR_INVAL... | 2024-10-10T09:52:42 |
facebook/react | 9d76c954cfe134d7f541c3e706e344e6845ba235 | 2c022b847ed2171c59d37db9f71b394e0082ae3f | [Flight] Error if a legacy React Element is attempted to be rendered (#29043)
This errors on the client normally but in the case the `type` is a
function - i.e. a Server Component - it wouldn't be transferred to error
on the client so you end up with a worse error message. So this just
implements the same check as ... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -938,13 +938,29 @@ describe('ReactFlight', () => {\n });\n });\n \n+ // @gate renameElementSymbol\n it('should emit descriptions of errors in dev', async () => {\n const ClientErrorBoundary = clientReference(Error... | 2024-05-10T13:37:42 |
vercel/next.js | 1400faa489e38f1fd97765944bb46fb0e5c75433 | 1fa24a41084da75145a33289602eddcf67def60b | Turbopack: bigger small value blocks (#82370)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### ... | [
{
"path": "turbopack/crates/turbo-persistence/src/static_sorted_file_builder.rs",
"patch": "@@ -18,16 +18,16 @@ use crate::{\n };\n \n /// The maximum number of entries that should go into a single key block\n-const MAX_KEY_BLOCK_ENTRIES: usize = 100 * 1024;\n+const MAX_KEY_BLOCK_ENTRIES: usize = MAX_KEY_BL... | 2025-08-23T05:23:38 |
golang/go | 848a768ba76d7c386c2aa4f05bc2e9e51b5948b9 | 049a5e603634dfdbc73b4255c7e72eabc3922d5b | runtime: clarify stack traces for bubbled goroutines
Use the synctest bubble ID to identify bubbles in traces,
rather than the goroutine ID of the bubble's root goroutine.
Some waitReasons include a "(synctest)" suffix to distinguish
a durably blocking state from a non-durable one. For example,
"chan send" vs. "chan ... | [
{
"path": "src/runtime/runtime2.go",
"patch": "@@ -1093,10 +1093,10 @@ const (\n \twaitReasonGCWeakToStrongWait // \"GC weak to strong wait\"\n \twaitReasonSynctestRun // \"synctest.Run\"\n \twaitReasonSynctestWait // \"synctest.Wai... | 2025-06-05T21:21:47 |
electron/electron | 95d094d75bddb99c83d2902fbc9a4335632a41cf | ba976799012d33a2ddfe40f8692029dc37e99115 | fix: add partition alloc check for MacOS 13/14+ (#40757) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -127,3 +127,4 @@ feat_allow_passing_of_objecttemplate_to_objecttemplatebuilder.patch\n chore_remove_check_is_test_on_script_injection_tracker.patch\n fix_restore_original_resize_performance_on_macos.patch\n feat_allow_code_cache_in_custom_schemes.patch\n+e... | 2023-12-14T21:47:31 |
nodejs/node | 31a37e777dcb137aa61e1692e4f3a701e81c36a0 | e79ae1bf0c82489d80b5f3eb2bd9b089fdfafb36 | module: wrap swc error in ERR_INVALID_TYPESCRIPT_SYNTAX
PR-URL: https://github.com/nodejs/node/pull/55316
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -2094,6 +2094,18 @@ An element in the `iterable` provided to the [WHATWG][WHATWG URL API]\n represent a `[name, value]` tuple – that is, if an element is not iterable, or\n does not consist of exactly two elements.\n \n+<a id=\"ERR_INVALID_TYPESCRIPT_SYNTAX\"></a>... | 2024-10-10T09:12:39 |
vercel/next.js | 11c995310c038b4c96c3c1744ccb6738de5b6b1a | c9b8d7f7fb627931e9365af3439acd7e74445c81 | fix: add path normalization to getRelativePath for Windows (#82918)
See
https://github.com/vercel/next.js/pull/82761#pullrequestreview-3130058419 | [
{
"path": "packages/next/src/server/lib/router-utils/route-types-utils.ts",
"patch": "@@ -20,6 +20,7 @@ import {\n UNDERSCORE_GLOBAL_ERROR_ROUTE,\n UNDERSCORE_NOT_FOUND_ROUTE,\n } from '../../../shared/lib/entry-constants'\n+import { normalizePathSep } from '../../../shared/lib/page-path/normalize-path-... | 2025-08-22T20:56:29 |
golang/go | 049a5e603634dfdbc73b4255c7e72eabc3922d5b | ac1686752bf65eaefebb340bd642177e2cc27bde | runtime: return a different bubble deadlock error when main goroutine is done
The synctest.Test function waits for all goroutines in a bubble to
exit before returning. If there is ever a point when all goroutines
in a bubble are durably blocked, it panics and reports a deadlock.
Panic with a different message dependi... | [
{
"path": "src/internal/synctest/synctest_test.go",
"patch": "@@ -488,7 +488,7 @@ func TestDeadlockRoot(t *testing.T) {\n }\n \n func TestDeadlockChild(t *testing.T) {\n-\tdefer wantPanic(t, \"deadlock: all goroutines in bubble are blocked\")\n+\tdefer wantPanic(t, \"deadlock: main bubble goroutine has exit... | 2025-06-05T20:55:35 |
electron/electron | a94fb2cb5da84edcddfa58efaf407fd1abca91ca | 80d85c0e8ec6675052a945d490c3b2b763316c0c | fix: don't reject `loadURL()` promise from `did-fail-load` - use `did-finish-load` instead (#40661) | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -333,24 +333,31 @@ WebContents.prototype.loadFile = function (filePath, options = {}) {\n }));\n };\n \n+type LoadError = { errorCode: number, errorDescription: string, url: string };\n+\n WebContents.prototype.loadURL = function (url, options) {\n... | 2023-12-12T19:45:14 |
nodejs/node | 33fe88a0b30b8343c02dab70208dcd21bfce48e3 | 4eeeab09f02a1b430c8867881ee65b1fdaca0389 | doc: add pmarchini to collaborators
Fixes: https://github.com/nodejs/node/issues/55053
PR-URL: https://github.com/nodejs/node/pull/55331
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "README.md",
"patch": "@@ -410,6 +410,8 @@ For information about the governance of the Node.js project, see\n **Filip Skokan** <<panva.ip@gmail.com>> (he/him)\n * [pimterry](https://github.com/pimterry) -\n **Tim Perry** <<pimterry@gmail.com>> (he/him)\n+* [pmarchini](https://github.com/pmarch... | 2024-10-09T14:47:31 |
vercel/next.js | b478e57de89fb1611e7124b38bbbe7070b6eb1a3 | 84e9332399c6a62f4245ec06b0f2c826484bbf88 | [turbopack] Fix a few small things in the analyzer (#82899)
* Delete some dead code
* Remove some unnecessary `async` and `pub` modifiers
* i think the `async`'s were made unnecesssary when we made `FilesystemPath` no longer be a `Vc<>` | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/mod.rs",
"patch": "@@ -4,10 +4,8 @@ use std::{\n borrow::Cow,\n cmp::Ordering,\n fmt::{Display, Formatter, Write},\n- future::Future,\n hash::{BuildHasherDefault, Hash, Hasher},\n mem::take,\n- pin::Pin,\n sync::Arc,... | 2025-08-22T17:19:21 |
golang/go | da0e8c4517178f545ee78b11e3d91e1daa7ce07a | 7800f4f0adbc749be95d13be48524e9702c50bbc | cmd/compile: relax reshaping condition
CL 641955 changes the Unified IR reader to not doing shapify when
reading reshaping expression. However, this condition only matters with
pointer type shaping, which will lose the original type, causes the
reshaping ends up with a completely different type.
This CL relaxes the c... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -1014,7 +1014,25 @@ func (pr *pkgReader) objDictIdx(sym *types.Sym, idx index, implicits, explicits\n \t// arguments.\n \tfor i, targ := range dict.targs {\n \t\tbasic := r.Bool()\n-\t\tif dict.shaped && !pr.reshaping {\n+\t\tisPointerShape ... | 2025-06-03T14:35:20 |
rust-lang/rust | cc3115d386eb4836f84b3fba0971c1780ed76bd4 | cf246bd45dcb8b702ae5409df999a8a2c9f19a1d | Enable debug printing on more types | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs",
"patch": "@@ -382,6 +382,7 @@ enum FlycheckCommandOrigin {\n ProjectJsonRunnable,\n }\n \n+#[derive(Debug)]\n enum StateChange {\n Restart {\n generation: DiagnosticsGeneration,\n@@ -435,6 +436,7 @@ enum DiagnosticsRec... | 2026-02-17T14:37:45 |
electron/electron | 80d85c0e8ec6675052a945d490c3b2b763316c0c | 66b2f697ea6ad16eced011383b982d716c32e83c | fix: incorrectly mapped toggleDevTools in custom menu fiddle (#40703) | [
{
"path": "docs/fiddles/menus/customize-menus/main.js",
"patch": "@@ -102,7 +102,7 @@ const template = [\n })(),\n click: (item, focusedWindow) => {\n if (focusedWindow) {\n- focusedWindow.toggleDevTools()\n+ focusedWindow.webContents.toggleDevTools()\n ... | 2023-12-12T19:36:34 |
nodejs/node | 4eeeab09f02a1b430c8867881ee65b1fdaca0389 | 54b5ec94e067650f72a680ea5bf6a84da36ea096 | benchmark: rewrite detect-esm-syntax benchmark
Syntax detection has been unflagged so it's no longer meaningful
to toggle the detection based on CLI flags. It was also previously
benchmarking cached module imports which isn't very meaningful
for subsequent loads. This patch updates the benchmark to toggle
the detectio... | [
{
"path": "benchmark/esm/detect-esm-syntax.js",
"patch": "@@ -4,34 +4,33 @@\n // We use the TypeScript fixture because it's a very large CommonJS file with no ESM syntax: the worst case.\n const common = require('../common.js');\n const tmpdir = require('../../test/common/tmpdir.js');\n-const fixtures = req... | 2024-10-09T14:16:01 |
vercel/next.js | 84e9332399c6a62f4245ec06b0f2c826484bbf88 | f6193b35bee3fbbd27d862e9ff49a909f7f30e9d | Turbopack: print failing module during panic (#82938)
Include the actual module in the panic, not only the merged chunk item.
Particularly with the "scope hoisting bit width issue".
Well, and also make it a bail instead of a panic. | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -42,7 +42,7 @@ use std::{\n sync::Arc,\n };\n \n-use anyhow::{Context, Result, bail};\n+use anyhow::{Context, Result, anyhow, bail};\n use chunk::EcmascriptChunkItem;\n use code_gen::{CodeGeneration, CodeGenerationHoistedStmt};\n... | 2025-08-22T17:13:32 |
facebook/react | 151cce37401dc2ff609701119d61a17d92fce4ab | 04b058868c9fc61c78124b12efb168734d79d09e | Track Stack of JSX Calls (#29032)
This is the first step to experimenting with a new type of stack traces
behind the `enableOwnerStacks` flag - in DEV only.
The idea is to generate stacks that are more like if the JSX was a
direct call even though it's actually a lazy call. Not only can you see
which exact JSX c... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -43,6 +43,7 @@ import {\n enablePostpone,\n enableRefAsProp,\n enableFlightReadableStream,\n+ enableOwnerStacks,\n } from 'shared/ReactFeatureFlags';\n \n import {\n@@ -563,6 +564,7 @@ function createElement(\n key: mixed,\n ... | 2024-05-09T16:23:05 |
golang/go | 7800f4f0adbc749be95d13be48524e9702c50bbc | d184f8dc020ac635cea02c046ab1d0b87dfd624d | log/slog: fix level doc on handlers
Fixed doc on {JSON,Text}Handler.Handle: the level is never omitted.
Fixes #73943.
Change-Id: Ia470cbe5d713ab18dd80eeea1c0ab8f5e6d30f3f
Reviewed-on: https://go-review.googlesource.com/c/go/+/680055
Auto-Submit: Jonathan Amsterdam <jba@google.com>
LUCI-TryBot-Result: Go LUCI <golang... | [
{
"path": "src/log/slog/json_handler.go",
"patch": "@@ -63,9 +63,7 @@ func (h *JSONHandler) WithGroup(name string) Handler {\n // Otherwise, the key is \"time\"\n // and the value is output as with json.Marshal.\n //\n-// If the Record's level is zero, the level is omitted.\n-// Otherwise, the key is \"leve... | 2025-06-08T12:49:25 |
rust-lang/rust | fb94e5883ed1b648ae00fd3bc85e3dc002068a78 | 8387095803f21a256a9a772ac1f9b41ed4d5aa0a | Fix an ICE while checking param env shadowing on an erroneous trait impl | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs",
"patch": "@@ -299,6 +299,12 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n let trait_def_id = alias.trait_def_id(tcx);\n let rebased_args = alias.args.rebase_onto(tcx, trait_def_id, impl_substs);\n \n+ ... | 2026-02-18T10:12:34 |
electron/electron | 83f15bd957b19f753a12a806f6a4225aea371469 | a6417cc2657b11a122620d0d32da3c84b1faa24e | chore: cleanup tests creating crashpad handler in the test runner process (#40668)
* chore: cleanup tests creating crashpad handler in the test runner process
* ci: logging
* ci: enable logging
* ci: more logging
* ci: run all tests
* ci: more logging
* ci: increase timeout
* Revert "ci: increase ... | [
{
"path": "spec/api-crash-reporter-spec.ts",
"patch": "@@ -5,7 +5,6 @@ import * as Busboy from 'busboy';\n import * as path from 'node:path';\n import { ifdescribe, ifit, defer, startRemoteControlApp, repeatedly, listen } from './lib/spec-helpers';\n import { app } from 'electron/main';\n-import { crashRepo... | 2023-12-12T10:38:42 |
nodejs/node | 755b89772d1fd5d3abd7ddabc51215096a9a9592 | 1d38bd1122adaaf2f34c658cd04f5afa5d068d97 | doc: fix `events.once()` example using `AbortSignal`
PR-URL: https://github.com/nodejs/node/pull/55144
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> | [
{
"path": "doc/api/events.md",
"patch": "@@ -1459,8 +1459,7 @@ async function foo(emitter, event, signal) {\n }\n \n foo(ee, 'foo', ac.signal);\n-ac.abort(); // Abort waiting for the event\n-ee.emit('foo'); // Prints: Waiting for the event was canceled!\n+ac.abort(); // Prints: Waiting for the event was can... | 2024-10-09T07:32:00 |
rust-lang/rust | 39edacad9cc0efa63f0ba798d233fbc478a6f454 | 8387095803f21a256a9a772ac1f9b41ed4d5aa0a | Fix incorrect target
The target was `-musl`, but should be `-gnu`. | [
{
"path": "src/doc/rustc/src/platform-support/aarch64-unknown-linux-gnu.md",
"patch": "@@ -29,7 +29,7 @@ If cross-compiling, make sure your C compiler is included in `$PATH`, then add i\n `bootstrap.toml`:\n \n ```toml\n-[target.aarch64-unknown-linux-musl]\n+[target.aarch64-unknown-linux-gnu]\n cc = \"aarch... | 2026-02-18T09:14:28 |
facebook/react | 1717ab017123cbca9f36238b064e47c4c3259966 | 0e6ea6991eef6d1f0d203965c9e4606698fe6944 | React DevTools 5.1.0 -> 5.2.0 (#29022)
Full list of changes (not a public changelog):
* fix[react-devtools/ci]: fix configurations for e2e testing
([hoxyq](https://github.com/hoxyq) in
[#29016](https://github.com/facebook/react/pull/29016))
* feat[react-devtools]: display forget badge for components in profiling
... | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.1.0\",\n+ \"version\": \"5.2.0\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\... | 2024-05-08T12:26:14 |
golang/go | d184f8dc020ac635cea02c046ab1d0b87dfd624d | 0ccfbc834a489f92745613b2e06275c2cfe6ace0 | runtime: check for gsignal in racecall on loong64
This issue has been fixed for amd64, arm64 and other platforms
in CL 643875, but it was missed when the race support was
submitted for loong64.
Fixes #71395.
Change-Id: I678f381e868214f1b3399be43187db49e1660933
Reviewed-on: https://go-review.googlesource.com/c/go/+/6... | [
{
"path": "src/runtime/race_loong64.s",
"patch": "@@ -461,8 +461,13 @@ TEXT\tracecall<>(SB), NOSPLIT|NOFRAME, $0-0\n \t// Switch to g0 stack.\n \tMOVV\tR3, R23\t// callee-saved, preserved across the CALL\n \tMOVV\tR1, R24\t// callee-saved, preserved across the CALL\n+\n+\t// Switch to g0 stack if we aren't ... | 2025-06-05T11:23:55 |
nodejs/node | 09d10b50dcdf44b5ab0e97d22fc56dc52c594bd5 | 3fb7426f8379e0d08de0c91733c55fae0e550b39 | sqlite: disable DQS misfeature by default
Double-quoted string (DQS) literals are not allowed by the SQL standard,
which defines that text enclosed in double quotes is to be interpreted
as an identifier only and never as a string literal. Nevertheless, for
historical reasons, SQLite allows double-quoted string literal... | [
{
"path": "doc/api/sqlite.md",
"patch": "@@ -112,6 +112,10 @@ added: v22.5.0\n legacy database schemas. The enforcement of foreign key constraints can be\n enabled and disabled after opening the database using\n [`PRAGMA foreign_keys`][]. **Default:** `true`.\n+ * `enableDoubleQuotedStringLiter... | 2024-10-08T21:49:38 |
vercel/next.js | c40e71fa58330096ea22468307df19730ea73da6 | 08bf0e08f74304afb3a9f79e521e5148b77bf96e | fix(edge-runtime): clone requests properly (#82878) | [
{
"path": "packages/next/src/server/web/sandbox/context.test.ts",
"patch": "@@ -0,0 +1,72 @@\n+import { getModuleContext } from './context'\n+import { validateURL } from '../utils'\n+\n+jest.mock('../utils', () => ({\n+ ...jest.requireActual('../utils'),\n+ validateURL: jest.fn(jest.requireActual('../util... | 2025-08-22T14:36:02 |
electron/electron | 08a51f333902247be7ee7528f2192e3bf4c2c045 | 890a557eed6a6917e7854b76e5a691eff1f5e9ae | chore: bump chromium to 121.0.6159.0 (main) (#40632)
* chore: bump chromium in DEPS to 121.0.6154.0
* chore: bump chromium in DEPS to 121.0.6155.0
* fix patches
* chore: update patches
* patch out reference to GetOcclusionTracker
* un-flag PIPOcclusionTracker
* chore: bump chromium in DEPS to 121.0.6... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '121.0.6147.0',\n+ '121.0.6159.0',\n 'node_version':\n 'v20.10.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "chromi... | 2023-12-11T20:58:26 |
facebook/react | 0e6ea6991eef6d1f0d203965c9e4606698fe6944 | b37e4b4e616d6d66c1cde9c0a4c2cbd866b0b582 | fix[react-devtools/InspectedElementView.css]: dont draw bottom border for empty badge list (#29023)
Forward fix to https://github.com/facebook/react/pull/29014, the bug was
discovered while testing v5.2.0. | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementSharedStyles.css",
"patch": "@@ -1,6 +1,5 @@\n .InspectedElementTree {\n padding: 0.25rem;\n- border-top: 1px solid var(--color-border);\n }\n .InspectedElementTree:first-of-type {\n border-top: none;",
"additio... | 2024-05-08T12:16:27 |
rust-lang/rust | 0a6961d2e002bd7730c427c18c8e65e84a5991c0 | 6de75dcc05cc41b46f7687f9c19c651a2cfa9cc0 | fix: prevent path transformation of parameter names matching modules | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_missing_impl_members.rs",
"patch": "@@ -2534,6 +2534,86 @@ impl Test for () {\n ${0:todo!()}\n }\n }\n+\"#,\n+ );\n+ }\n+\n+ #[test]\n+ fn test_param_name_not_qualified() {\n+ check_assist(\n+ ... | 2026-02-18T06:46:34 |
nodejs/node | 3fb7426f8379e0d08de0c91733c55fae0e550b39 | 3a42085ee4eb618b68752d95d25b3db060a6a0f7 | module: check --experimental-require-module separately from detection
Previously we assumed if `--experimental-detect-module` is true, then
`--experimental-require-module` is true, which isn't the case, as
the two can be enabled/disabled separately. This patch fixes the
checks so `--no-experimental-require-module` is ... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -1449,7 +1449,7 @@ function loadESMFromCJS(mod, filename) {\n * @param {'commonjs'|undefined} format Intended format of the module.\n */\n function wrapSafe(filename, content, cjsModuleInstance, format) {\n- assert(format !== 'module'); // ESM... | 2024-10-08T20:26:13 |
golang/go | 0ccfbc834a489f92745613b2e06275c2cfe6ace0 | 78eadf5b3de568297456fe137b65ff16e8cc8bb6 | os/signal: doc link to syscall.EPIPE
Add godoc link for EPIPE error.
Change-Id: I5df35f700684510328f92bb5d4946c5123ba5f2c
Reviewed-on: https://go-review.googlesource.com/c/go/+/667757
Auto-Submit: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Michael Knyszek <mknysz... | [
{
"path": "src/os/signal/doc.go",
"patch": "@@ -98,12 +98,13 @@ the behavior depends on the file descriptor number. A write to a\n broken pipe on file descriptors 1 or 2 (standard output or standard\n error) will cause the program to exit with a SIGPIPE signal. A write\n to a broken pipe on some other file ... | 2025-04-24T14:46:44 |
vercel/next.js | 08bf0e08f74304afb3a9f79e521e5148b77bf96e | 9436dce61f1a3ff9478261dc2eba47e0527acf3d | Add special marker in terminal if all error stack frames are ignore-listed (#82915) | [
{
"path": "packages/next/src/server/patch-error-inspect.ts",
"patch": "@@ -12,7 +12,7 @@ import {\n import { parseStack, type StackFrame } from './lib/parse-stack'\n import { getOriginalCodeFrame } from '../next-devtools/server/shared'\n import { workUnitAsyncStorage } from './app-render/work-unit-async-sto... | 2025-08-22T07:35:17 |
facebook/react | b37e4b4e616d6d66c1cde9c0a4c2cbd866b0b582 | e150a324259c5c63ab635b227f601052b133a99f | Clean up fastAddProperties and make it more correct (#29015)
## Summary
This PR makes some fixes to the `fastAddProperties` function:
- Use `if (!attributeConfig)` instead of `if (attributeConfig ===
undefined)` to account for `null`.
- If a prop has an Object `attributeConfig` with a `diff` function
defined on... | [
{
"path": "packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js",
"patch": "@@ -446,65 +446,65 @@ function diffProperties(\n }\n \n function fastAddProperties(\n- updatePayload: null | Object,\n- nextProps: Object,\n+ payload: null | Object,\n+ props: Object,\n validAttributes: Attr... | 2024-05-08T12:10:04 |
nodejs/node | 5a3da7b4e445d6000cd9442984d26608579e4d16 | 78f421de886b80be099e597845d8b3235200fdfa | tools: enforce errors to not be documented in legacy section
PR-URL: https://github.com/nodejs/node/pull/55218
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -2325,6 +2325,17 @@ compiled with ICU support.\n \n A non-context-aware native addon was loaded in a process that disallows them.\n \n+<a id=\"ERR_OPERATION_FAILED\"></a>\n+\n+### `ERR_OPERATION_FAILED`\n+\n+<!-- YAML\n+added: v15.0.0\n+-->\n+\n+An operation faile... | 2024-10-08T16:59:53 |
electron/electron | 890a557eed6a6917e7854b76e5a691eff1f5e9ae | 5094cb4115d52b8e915849cc9c7b9ca9bc37edd9 | chore: bump node to v20.10.0 (main) (#40675)
* chore: bump node in DEPS to v20.10.0
* chore: update feat_initialize_asar_support.patch
no code changes; patch just needed an update due to nearby upstream changes
Xref: https://github.com/nodejs/node/pull/49986
* chore: update pass_all_globals_through_require... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '121.0.6147.0',\n 'node_version':\n- 'v20.9.0',\n+ 'v20.10.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language":... | 2023-12-11T20:09:50 |
facebook/react | e150a324259c5c63ab635b227f601052b133a99f | ec15267a001086deb4ab5412d3f8b7e13573d6a5 | fix[react-devtools/ci]: fix configurations for e2e testing (#29016)
This should fix failing DevTools e2e tests on `main`.
With these changes, running tests locally successfully passes all cases. | [
{
"path": "package.json",
"patch": "@@ -109,7 +109,7 @@\n },\n \"scripts\": {\n \"build\": \"node ./scripts/rollup/build-all-release-channels.js\",\n- \"build-for-devtools\": \"cross-env RELEASE_CHANNEL=experimental yarn build react/index,react/jsx,react-dom/index,react-dom/client,react-dom/unsta... | 2024-05-08T11:04:51 |
nodejs/node | 78f421de886b80be099e597845d8b3235200fdfa | accb23927230b0149321a62d6c7b64fe6ce7d65e | lib: fix module print timing when specifier includes `"`
PR-URL: https://github.com/nodejs/node/pull/55150
Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> | [
{
"path": "lib/internal/util/debuglog.js",
"patch": "@@ -173,7 +173,7 @@ function formatTime(ms) {\n }\n \n function safeTraceLabel(label) {\n- return label.replace(/\\\\/g, '\\\\\\\\');\n+ return label.replace(/\\\\/g, '\\\\\\\\').replaceAll('\"', '\\\\\"');\n }\n \n /**",
"additions": 1,
"deleti... | 2024-10-08T16:59:37 |
golang/go | 78eadf5b3de568297456fe137b65ff16e8cc8bb6 | 4d1c255f159d90557b43ede07f8b9a209e1fb49c | all: update vendored dependencies [generated]
The Go 1.25 RC is due soon. This is the time to once again update all
golang.org/x/... module versions that contribute packages to the std and
cmd modules in the standard library to latest master versions.
For #36905.
[git-generate]
go install golang.org/x/build/cmd/upda... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -4,18 +4,18 @@ go 1.25\n \n require (\n \tgithub.com/google/pprof v0.0.0-20250208200701-d0013a598941\n-\tgolang.org/x/arch v0.14.0\n-\tgolang.org/x/build v0.0.0-20250211223606-a5e3f75caa63\n-\tgolang.org/x/mod v0.24.1-0.20250508140430-9d3333156f46\n-\tgolang.org/x/sy... | 2025-06-04T19:35:31 |
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.