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 |
|---|---|---|---|---|---|
golang/go | 8ace10dad2774a760b5028140a7d3f8140e6e1c0 | 3573227fe3fe8d141dbf06e257609a59871d5248 | os: add (*Process).WithHandle
Implement (*Process).WithHandle, add tests for all platforms.
Fixes #70352
Change-Id: I7a8012fb4e1e1b4ce1e75a59403ff6e77504fc56
Reviewed-on: https://go-review.googlesource.com/c/go/+/699615
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewe... | [
{
"path": "api/next/70352.txt",
"patch": "@@ -0,0 +1,2 @@\n+pkg os, method (*Process) WithHandle(func(uintptr)) error #70352\n+pkg os, var ErrNoHandle error #70352",
"additions": 2,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/os/70352.md",
"patch... | 2025-08-28T05:39:25 |
nodejs/node | c0788f0e8608233a61b146646a01f1a9e6dfa283 | c8b9d38fd862b552148bd3b051ef1e52b42c21f8 | lib: make getCallSites sourceMap option truly optional
When calling the `util.getCallSites(...)` API, if the `options`
argument is omitted, then the `options.sourceMap` option is defaulted
to false. However, if any empty `options` is passed, it would throw
an error is `sourceMap` was not explicitly given. This relaxes... | [
{
"path": "lib/util.js",
"patch": "@@ -388,7 +388,9 @@ function getCallSites(frameCount = 10, options) {\n // If frameCount is an object, it is the options object\n options = frameCount;\n validateObject(options, 'options');\n- validateBoolean(options.sourceMap, 'options.sourceMap');\... | 2025-03-09T15:40:23 |
electron/electron | bba31189a06f59d5b828e25defe14571cb502157 | 0f55b452826ca82ca387d7b0df921ffa5d38395e | feat: accept-encoding zstd (#43150)
* fix: accept-encoding zstd
* Update shell/browser/net/system_network_context_manager.cc
Co-authored-by: Sam Maddock <smaddock@slack-corp.com>
* chore: make lint happy
---------
Co-authored-by: Sam Maddock <smaddock@slack-corp.com> | [
{
"path": "shell/browser/net/system_network_context_manager.cc",
"patch": "@@ -195,6 +195,8 @@ SystemNetworkContextManager::CreateDefaultNetworkContextParams() {\n void SystemNetworkContextManager::ConfigureDefaultNetworkContextParams(\n network::mojom::NetworkContextParams* network_context_params) {\n ... | 2024-08-12T14:00:04 |
facebook/react | 127a0fbf1a4b2607c11854f97d8798a9f6dd99f8 | ff89ba734668fdac06e8de476486830bbf9e0785 | Add build-for-flight-dev script to package.json (#30326)
Similar to the build-for-devtools script. I often have to build locally
for the flight fixture. This builds a subset that makes it work (in
DEV). | [
{
"path": "package.json",
"patch": "@@ -112,6 +112,7 @@\n \"build-for-devtools\": \"cross-env RELEASE_CHANNEL=experimental yarn build react/index,react/jsx,react/compiler-runtime,react-dom/index,react-dom/client,react-dom/unstable_testing,react-dom/test-utils,react-is,react-debug-tools,scheduler,react-t... | 2024-07-12T22:03:10 |
golang/go | 3573227fe3fe8d141dbf06e257609a59871d5248 | 68c6a73380e82a0ea9a93c1a75ab8a38f28f3a3d | os: add and use errProcessReleased
This error is already used in three places, so let's define it.
Change-Id: I73565d94aebcf3d5a278201d96839d82db85a2d4
Reviewed-on: https://go-review.googlesource.com/c/go/+/702436
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: M... | [
{
"path": "src/os/exec.go",
"patch": "@@ -14,8 +14,12 @@ import (\n \t\"time\"\n )\n \n-// ErrProcessDone indicates a [Process] has finished.\n-var ErrProcessDone = errors.New(\"os: process already finished\")\n+var (\n+\t// ErrProcessDone indicates a [Process] has finished.\n+\tErrProcessDone = errors.New(... | 2025-09-11T02:00:19 |
vercel/next.js | 2e327560519ef5f641bf211877b404da7b5edbae | 32476071fe331948d89a35c391eb578aed8de979 | Include server latency in debug info (#84580)
The debug info of the promise created by the Flight client represents
the latency between when the navigation starts and when it's passed to
React. Most importantly, it should include the time it takes for the
client to start receiving data from the server.
Before this PR... | [
{
"path": "packages/next/src/client/components/router-reducer/create-initial-router-state.test.tsx",
"patch": "@@ -139,6 +139,7 @@ describe('createInitialRouterState', () => {\n cache: expectedCache,\n nextUrl: '/linking',\n previousNextUrl: null,\n+ debugInfo: null,\n }\n \n ... | 2025-10-15T21:39:42 |
nodejs/node | 1189a26f65ad620adf3e19c69cc0e3cebfb2bd31 | d55f11b94324f8f27f667ff761a6e9609fd9bd3f | src: cleanup aliased_buffer.h
- Mark `AliasedBufferBase` as `final` as nothing derives from it.
- Simplify scalar check with `std::is_scalar_v`.
- Remove redundant `const`-qualifiers from function declaration
parameters.
- Add `const`-qualifiers to function definition parameters where
appropriate.
- Remove redundant `... | [
{
"path": "src/aliased_buffer.h",
"patch": "@@ -22,19 +22,19 @@ typedef size_t AliasedBufferIndex;\n *\n * While this technique is computationally efficient, it is effectively a\n * write to JS program state w/out going through the standard\n- * (monitored) API. Thus any VM capabilities to detect the mod... | 2025-03-13T12:32:28 |
facebook/react | ff89ba734668fdac06e8de476486830bbf9e0785 | 400e82227747f6b60fecbc3b43f7515b4fd89d8c | Disable consoleWithStackDev Transform except in RN/WWW (#30313)
Stacked on #30308.
This is now a noop module so we can stop applying the transform of
console.error using the Babel plugin in the mainline builds. I'm keeping
the transform for RN/WWW for now although it might be nice if the
transform moved into tho... | [
{
"path": "packages/react-client/src/ReactClientConsoleConfigBrowser.js",
"patch": "@@ -7,8 +7,6 @@\n * @flow\n */\n \n-import {warn, error} from 'shared/consoleWithStackDev';\n-\n const badgeFormat = '%c%s%c ';\n // Same badge styling as DevTools.\n const badgeStyle =\n@@ -65,12 +63,6 @@ export function ... | 2024-07-12T18:39:38 |
rust-lang/rust | 8a824ee3019c77c5c26b3e7b8a0855ba34759f5a | 2be5835a7e0dea5deb0f5595b0c02264e5fa3d11 | Fix performance of early lints | [
{
"path": "compiler/rustc_hir_analysis/src/lib.rs",
"patch": "@@ -88,6 +88,7 @@ use rustc_abi::{CVariadicStatus, ExternAbi};\n use rustc_hir as hir;\n use rustc_hir::def::DefKind;\n use rustc_hir::lints::DelayedLint;\n+use rustc_lint::DecorateAttrLint;\n use rustc_middle::mir::interpret::GlobalId;\n use rus... | 2026-03-02T22:27:55 |
electron/electron | c9b7806418d145abf4098ec60b964bfd24b2369c | 23bcca3ffcf31d6874fe3b0f69335a8e58755e43 | chore: bump chromium to 129.0.6650.0 (main) (#43266)
* chore: bump chromium in DEPS to 129.0.6645.0
* chore: update patches
* chore: bump chromium in DEPS to 129.0.6646.0
* refactor: remove ppapi dependency
PPAPI removal - https://issues.chromium.org/issues/40511450
PDF viewer migration - https://issues.c... | [
{
"path": ".github/workflows/pipeline-segment-electron-gn-check.yml",
"patch": "@@ -127,7 +127,8 @@ jobs:\n cd src\n gn check out/Default //electron:electron_lib\n gn check out/Default //electron:electron_app\n- gn check out/Default //electron/shell/common/api:mojo\n+ g... | 2024-08-12T08:28:33 |
vercel/next.js | 32476071fe331948d89a35c391eb578aed8de979 | 1da5efa1482e2eadce9719fb94d2f74148321973 | Turbopack: fix spacing on EcmascriptModuleAssetType (#84915)
### What?
typo | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -300,10 +300,10 @@ impl Display for EcmascriptModuleAssetType {\n EcmascriptModuleAssetType::Typescript { tsx, analyze_types } => {\n write!(f, \"typescript\")?;\n if *tsx {\n- ... | 2025-10-15T20:19:58 |
golang/go | dabe2bb4fbf47e64729591e896f7231bda0c42a7 | 3ec0b25ab7a130709863cf0837190d2995e176a4 | [dev.simd] cmd/compile: fix holes in mask peepholes
It turns out that ".Masked" is implemented by VPANDQ *and* VPANDD.
The shape of bitwise AND doesn't matter, the correctness of the rules is
guaranteed by the way the mask is generated.
This CL fix the holes in the peephole rules.
Change-Id: I2d15c4d17afed6fdbb2f390... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules",
"patch": "@@ -1768,6 +1768,10 @@\n (VPANDQ512 x (VPMOVMToVec32x16 k)) => (VMOVDQU32Masked512 x k)\n (VPANDQ512 x (VPMOVMToVec16x32 k)) => (VMOVDQU16Masked512 x k)\n (VPANDQ512 x (VPMOVMToVec8x64 k)) => (VMOVDQU8Masked512 x k)\n+(VPANDD512 x (VPMOVMT... | 2025-09-14T20:17:55 |
facebook/react | 400e82227747f6b60fecbc3b43f7515b4fd89d8c | 1e8efe7fd401384226865fb4e220038f3505a748 | Remove Component Stack from React Logged Warnings and Error Reporting (#30308)
React transpiles some of its own `console.error` calls into a helper
that appends component stacks to those calls. However, this doesn't
cover user space `console.error` calls - which includes React helpers
that React has moved into thir... | [
{
"path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js",
"patch": "@@ -866,16 +866,40 @@ describe('ReactInternalTestUtils console assertions', () => {\n const message = expectToThrowFailure(() => {\n expect(root).toMatchRenderedOutput(<div>foobarbaz</div>);\n })... | 2024-07-12T17:02:22 |
nodejs/node | c16e26d066b2a187eeff8c5bee4baaed4572e1ca | a0139e06a0754058ffd891f779be55584665f8a8 | doc: fix small typo in `process.md`
PR-URL: https://github.com/nodejs/node/pull/57333
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/process.md",
"patch": "@@ -4249,7 +4249,7 @@ added: v23.9.0\n -->\n \n * `previousValue` {Object} A previous return value from calling\n- `process.cpuUsage()`\n+ `process.threadCpuUsage()`\n * Returns: {Object}\n * `user` {integer}\n * `system` {integer}",
"additions": 1,
"d... | 2025-03-13T12:15:45 |
rust-lang/rust | f5a2bb6263ad332ceb2d9b3b82afe935259a7723 | 8ddf4ef064fb702fed0f3d239ec8d0bac607484e | Add hygiene annotations for tokens in macro_rules! bodies
`-Zunpretty=expanded,hygiene` was not printing syntax context annotations
for identifiers and lifetimes inside `macro_rules!` bodies. These tokens
are printed via `print_tt()` → `token_to_string_ext()`, which converts
tokens to strings without calling `ann_post... | [
{
"path": "compiler/rustc_ast_pretty/src/pprust/state.rs",
"patch": "@@ -735,6 +735,23 @@ pub trait PrintState<'a>: std::ops::Deref<Target = pp::Printer> + std::ops::Dere\n TokenTree::Token(token, spacing) => {\n let token_str = self.token_to_string_ext(token, convert_dollar_crat... | 2026-03-02T20:28:16 |
electron/electron | c35739d60df88b78383af0376cb094566bf5ed55 | c4dfff98440c857992ad0847b5132f2cbb2085ec | refactor: use url::DomainIs() to check cookie domains (#43262)
* test: add tests to exercise pre-exsiting cookie domain matching behavior
* refactor: use url::DomainIs() to match cookie domains
* docs: fix typo | [
{
"path": "docs/api/cookies.md",
"patch": "@@ -74,7 +74,7 @@ The following methods are available on instances of `Cookies`:\n `url`. Empty implies retrieving cookies of all URLs.\n * `name` string (optional) - Filters cookies by name.\n * `domain` string (optional) - Retrieves cookies whose domains ... | 2024-08-09T23:35:18 |
facebook/react | ff3f1fac65e7b82efe3f90af42af1278bc6f1d5d | df5f273629d8da586351573347e8b32ba19dafa7 | [RN] Set enableOwnerStacks and enableUseDeferredValueInitialArg to false
In www, the experimental versions get a .modern.js or .classic.js prefix
and get copied into the same folder. In RN, they don't seem to have
.modern.js and .classic.js versions so they end up getting the same
name.
sebmarkbage's theory is that w... | [
{
"path": "packages/shared/forks/ReactFeatureFlags.native-oss.js",
"patch": "@@ -57,7 +57,7 @@ export const enableLegacyFBSupport = false;\n export const enableLegacyHidden = false;\n export const enableNoCloningMemoCache = false;\n export const enableObjectFiber = false;\n-export const enableOwnerStacks = ... | 2024-07-12T15:21:10 |
golang/go | 8320fe8f0e5283eb67429de30b4e24be6a85c7a7 | 080882a928c96f997a1cb67cef40d2cc6126ffcd | runtime: deduplicate syscall assembly for darwin
The darwin port provides different syscall functions that only
differ on how they handle the errors, and they are all written
in assembly.
This duplication can be removed by factoring out the error handling
logic to arch-agnostic Go code and leaving the assembly functi... | [
{
"path": "src/runtime/sys_darwin.go",
"patch": "@@ -10,37 +10,56 @@ import (\n \t\"unsafe\"\n )\n \n+//go:nosplit\n+func libcError() uintptr {\n+\terrPtr, _ := syscall(abi.FuncPCABI0(libc_error_trampoline), 0, 0, 0)\n+\treturn errPtr\n+}\n+func libc_error_trampoline()\n+\n // The X versions of syscall expe... | 2025-08-26T09:47:51 |
vercel/next.js | 1da5efa1482e2eadce9719fb94d2f74148321973 | de7393051378a4acb1f3fdc6fbde7ad82beb67c3 | fix: process.env.TURBOPACK maybe undefined (#84885) | [
{
"path": "packages/next-rspack/index.js",
"patch": "@@ -4,7 +4,7 @@ module.exports = function withRspack(config) {\n // we have already been called. This can happen when using build workers.\n return config\n }\n- if (process.env.TURBOPACK === 'auto') {\n+ if (!process.env.TURBOPACK || process... | 2025-10-15T20:16:43 |
nodejs/node | ebbc5f701708cc5d7fe10c3b2072aa976a807bac | 64f56e415693106a7ca6765794b5c3cd12f963a7 | assert: implement partial error comparison
assert.partialDeepStrictEqual now also handled error properties as
expected. On top of that, the main implementation also handles
non-string `name` and `message` properties and the comparison is a
tad faster by removing duplicated comparison steps.
As a drive-by fix this als... | [
{
"path": "lib/internal/util/comparisons.js",
"patch": "@@ -10,17 +10,17 @@ const {\n Error,\n NumberIsNaN,\n NumberPrototypeValueOf,\n- ObjectGetOwnPropertySymbols,\n+ ObjectGetOwnPropertySymbols: getOwnSymbols,\n ObjectGetPrototypeOf,\n ObjectIs,\n ObjectKeys,\n- ObjectPrototypeHasOwnProper... | 2025-03-10T17:20:32 |
electron/electron | c4dfff98440c857992ad0847b5132f2cbb2085ec | 346244ef9e89d6f7d4a16e9c20af498609420c33 | fix: accidental handle copying in a range loop (#43260)
fix: accidental handle copying
Xref: https://github.com/electron/electron/pull/37857 | [
{
"path": "shell/browser/api/message_port.cc",
"patch": "@@ -9,6 +9,7 @@\n #include <utility>\n \n #include \"base/containers/contains.h\"\n+#include \"base/containers/to_vector.h\"\n #include \"base/strings/string_number_conversions.h\"\n #include \"base/task/single_thread_task_runner.h\"\n #include \"gin/... | 2024-08-09T18:38:03 |
facebook/react | 5dcf3ca8d45a276a8b4cee0cedd234967661ca35 | 433068eece2071a96de98b60f99ce6a9121a629c | Add FB RSC Entry for React Package (#30310)
I noticed that the www-modern builds pick up the `.experimental.js`
entry points but these flags that are associated with these exports are
not enabled in www, so it gets the wrong builds.
This file is just a clone over the stable `ReactServer.js` one. We
should probab... | [
{
"path": "packages/react/src/ReactServer.fb.js",
"patch": "@@ -0,0 +1,60 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ *\n+ * @flow\n+ */\n+\n+export ... | 2024-07-11T22:44:49 |
golang/go | 080882a928c96f997a1cb67cef40d2cc6126ffcd | ac803b5949f6dbc5bfa559afe506d35f9e1b3195 | net: use context.AfterFunc in connect
This saves a goroutine when ctx can be but is not canceled during
the connect call.
The redundant fd.Close() call is removed, because the caller closes
the fd on error.
Change-Id: I124d7e480294a48ef74d5650d8ef0489bdfc64d6
Reviewed-on: https://go-review.googlesource.com/c/go/+/69... | [
{
"path": "src/net/fd_unix.go",
"patch": "@@ -74,46 +74,32 @@ func (fd *netFD) connect(ctx context.Context, la, ra syscall.Sockaddr) (rsa sysc\n \tif err := fd.pfd.Init(fd.net, true); err != nil {\n \t\treturn nil, err\n \t}\n-\tif deadline, hasDeadline := ctx.Deadline(); hasDeadline {\n-\t\tfd.pfd.SetWrite... | 2025-08-27T09:38:13 |
vercel/next.js | 776625634df4260cf7c6f5459ffc74c98ba9f136 | 7e11a155cca95dbe1a8ef655c8389ec7ca266598 | Remove deprecated experimental_ppr route-level configuration (#84871)
### What?
Removes the deprecated `experimental_ppr` route-level configuration
option from Next.js.
### Why?
The PPR configuration feature has been deprecated in favor of the cache
components feature flag. The `experimental_ppr` route-level option... | [
{
"path": "crates/next-core/src/segment_config.rs",
"patch": "@@ -89,7 +89,6 @@ pub struct NextSegmentConfig {\n pub fetch_cache: Option<NextSegmentFetchCache>,\n pub runtime: Option<NextRuntime>,\n pub preferred_region: Option<Vec<RcStr>>,\n- pub experimental_ppr: Option<bool>,\n pub mid... | 2025-10-15T19:03:00 |
nodejs/node | d615a3cfcbc357ccebd07a37fa0002fee162d9ce | 59f00d713299bfe7d18d15c4504ac14bd5b428a8 | src: suggest --use-system-ca when a certificate error occurs
PR-URL: https://github.com/nodejs/node/pull/57362
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "doc/api/tls.md",
"patch": "@@ -547,6 +547,12 @@ description are taken from deps/openssl/openssl/crypto/x509/x509_txt.c\n * `'CERT_REJECTED'`: Certificate rejected.\n * `'HOSTNAME_MISMATCH'`: Hostname mismatch.\n \n+When certificate errors like `UNABLE_TO_VERIFY_LEAF_SIGNATURE`,\n+`DEPTH_ZERO_SELF... | 2025-03-12T13:21:22 |
electron/electron | f49f6ff68b5edef36ec503a3fe08569b116f74fd | 0718c2b9eec4fac19cd799359cf546c165405b96 | fix: check screen capture permissions in `desktopCapturer` (#43080)
fix: check screen capture permissions in desktopCapturer | [
{
"path": "shell/browser/api/electron_api_desktop_capturer.cc",
"patch": "@@ -42,6 +42,10 @@\n #include \"ui/gfx/x/randr.h\"\n #endif\n \n+#if BUILDFLAG(IS_MAC)\n+#include \"ui/base/cocoa/permissions_utils.h\"\n+#endif\n+\n #if BUILDFLAG(IS_LINUX)\n // Private function in ui/base/x/x11_display_util.cc\n bas... | 2024-08-09T08:08:49 |
facebook/react | 433068eece2071a96de98b60f99ce6a9121a629c | af28f480e8e74ce71bb33259b61fef8a5a228f74 | Remove top stack frame from getCurrentStack (#30306)
The full stack is the current execution stack (`new Error().stack`) +
the current owner stack (`React.captureOwnerStack()`).
The idea with the top frame was that when we append it to console.error
we'd include both since otherwise the true reason would be obscu... | [
{
"path": "packages/react-reconciler/src/ReactCurrentFiber.js",
"patch": "@@ -33,7 +33,7 @@ export function getCurrentFiberOwnerNameInDevOrNull(): string | null {\n return null;\n }\n \n-function getCurrentFiberStackInDev(stack: null | Error): string {\n+function getCurrentFiberStackInDev(): string {\n ... | 2024-07-11T22:34:41 |
golang/go | ac803b5949f6dbc5bfa559afe506d35f9e1b3195 | 889e71c2ac43f22dbd41c0b935acac2e778c8f87 | cmd/go/internal/work: copy vet tool's stdout to our stdout
The go command connects both the stdout and stderr files of
its child commands (cmd/compile, cmd/vet, etc) to the go
command's own stderr. If the child command is supposed to
produce structure output on stderr, as is the case for
go vet -json or go fix -diff, ... | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -1184,6 +1184,7 @@ type vetConfig struct {\n \tPackageVetx map[string]string // map package path to vetx data from earlier vet run\n \tVetxOnly bool // only compute vetx data; don't report detected problems\n \tVetxOutput stri... | 2025-09-11T15:02:03 |
vercel/next.js | 1112dce6b70827e160f5fe6b073117b5ef864bd0 | c6a6c7365b24df5ace37f9d68e7f6c0730152416 | [dev-overlay] Never dedupe errors with different names or messages (#84908) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/shared.ts",
"patch": "@@ -324,6 +324,9 @@ export function useErrorOverlayReducer(\n const pendingEvents = events.filter((event) => {\n // Filter out duplicate errors\n return (\n+ // SpiderMonkey and JavaScriptCore don't include t... | 2025-10-15T16:45:37 |
nodejs/node | a446e3bdc96b0f263fd363ce89b9c739b066240f | 1b655c76313b36fd6c1a368af4311c4610132b89 | sqlite: reset statement immediately in run()
This commit updates StatementSync.prototype.run() to reset the
prepared statement immediately after calling sqlite3_step() to
return the correct change metadata.
Fixes: https://github.com/nodejs/node/issues/57344
PR-URL: https://github.com/nodejs/node/pull/57350
Reviewed-B... | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -1866,13 +1866,9 @@ void StatementSync::Run(const FunctionCallbackInfo<Value>& args) {\n return;\n }\n \n- auto reset = OnScopeLeave([&]() { sqlite3_reset(stmt->statement_); });\n- r = sqlite3_step(stmt->statement_);\n- if (r != SQLITE_ROW && r != SQLITE... | 2025-03-11T00:33:27 |
facebook/react | a09950ed418adb26a5e735b4ee9eca5e5282ffc7 | a5cc797b8801dfe58c7a34c99a9fa60c6c9c8274 | Gate inlined consoleWithStackDev transpilation (#30317)
This code is getting deleted in #30313 anyway but it should've been
gated all along.
This code exists to basically manually transpile console.error to
consoleWithStackDev because the transpiler doesn't work on `.apply` or
`.bind` or the dynamic look up. We ... | [
{
"path": "packages/react-client/src/ReactClientConsoleConfigBrowser.js",
"patch": "@@ -65,9 +65,9 @@ export function printToConsole(\n );\n }\n \n- if (methodName === 'error') {\n+ if (methodName === 'error' && __DEV__) {\n error.apply(console, newArgs);\n- } else if (methodName === 'warn') {\... | 2024-07-11T17:05:26 |
electron/electron | 0718c2b9eec4fac19cd799359cf546c165405b96 | 1a6563fb66455d3ec68efaeb62c11f3c25187c62 | fix: system-context-menu with frameless BrowserWindows (#43243) | [
{
"path": "shell/browser/native_window_views_win.cc",
"patch": "@@ -288,6 +288,15 @@ bool NativeWindowViews::PreHandleMSG(UINT message,\n \n return false;\n }\n+ case WM_RBUTTONUP: {\n+ if (!has_frame()) {\n+ bool prevent_default = false;\n+ NotifyWindowSystemContextMenu(GET_... | 2024-08-09T08:08:01 |
golang/go | 911455fe1893bcd90d30246117415dfbce658d88 | f1fd13016ab51b93f5d39b0c46aa8c2b42e8f761 | cmd/link: don't count tbss section in TestFlagD
TestFlagD looks for a data-like section at the lowest address.
On OpenBSD, the .tbss section matches the current condition, which
has address 0, causing the test fail. Don't count TLS sections.
Also, print the section name on error.
Fixes #75444.
Change-Id: Ic0aa1a2bb... | [
{
"path": "src/cmd/link/elf_test.go",
"patch": "@@ -627,30 +627,30 @@ func testFlagD(t *testing.T, dataAddr string, roundQuantum string, expectedAddr\n \tdefer ef.Close()\n \n \t// Find the first data-related section to verify segment placement\n-\tvar firstDataSectionAddr uint64\n-\tvar found bool = false\... | 2025-09-12T16:36:38 |
vercel/next.js | c6a6c7365b24df5ace37f9d68e7f6c0730152416 | b7b153f6231ddc69f8eea8c0762463652c98008e | Turbopack: better errors for strip_prefix_len (#84882)
To help debugging | [
{
"path": "turbopack/crates/turbopack-core/src/resolve/alias_map.rs",
"patch": "@@ -610,7 +610,9 @@ where\n \n if is_match {\n let mut remaining = self.request.clone();\n- remaining.strip_prefix_len(prefix.len());\n+ ... | 2025-10-15T16:34:49 |
nodejs/node | 823c9b70c727e2efaa6dfd8e97551c31b45ff666 | 7a1b26e357f67ad2715f39d06e0bacac058f7172 | doc: fix usage of module.registerSync in comment
PR-URL: https://github.com/nodejs/node/pull/57328
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/module.md",
"patch": "@@ -1226,7 +1226,7 @@ opt-in to using the non-default behavior:\n import { readFile } from 'node:fs/promises';\n \n // Asynchronous version accepted by module.register(). This fix is not needed\n-// for the synchronous version accepted by module.registerSync().\n+// ... | 2025-03-10T21:25:56 |
facebook/react | a5cc797b8801dfe58c7a34c99a9fa60c6c9c8274 | 85acf2d19527df568136ba08be97aa766d427ff2 | Updates ViewConfig types to delegate isInAParentText context (#29872)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting ... | [
{
"path": "packages/react-native-renderer/src/ReactNativeTypes.js",
"patch": "@@ -85,13 +85,15 @@ export type ViewConfig = $ReadOnly<{\n }>,\n ...\n }>,\n+ supportsRawText?: boolean,\n uiViewClassName: string,\n validAttributes: AttributeConfiguration,\n }>;\n \n export type PartialViewConfig... | 2024-07-11T16:47:20 |
electron/electron | 70dda694e222a73fd11276908b03509783513e2d | aa19087bed8da3fdd3872e36b272b8673fa15bc7 | build: fix build when `enable_pdf_viewer` and `enable_electron_extensions` disabled (#43206)
build: fix build when enable_pdf_viewer and enable_electron_extensions disabled | [
{
"path": "shell/browser/api/electron_api_session.cc",
"patch": "@@ -48,6 +48,7 @@\n #include \"net/base/completion_repeating_callback.h\"\n #include \"net/base/load_flags.h\"\n #include \"net/base/network_anonymization_key.h\"\n+#include \"net/base/registry_controlled_domains/registry_controlled_domain.h\"... | 2024-08-07T12:51:38 |
golang/go | dc960d0bfeb6ce6abd0cfa2c096476d98e9ec7cd | 7acb0d044695ca0fbedf94dca7abfdfd991bc69a | cmd/compile, reflect: further allow inlining of TypeFor
Previous CLs optimized direct use of abi.Type, but reflect.Type is
indirected, so was not benefiting.
For TypeFor, we can use toRType directly without a nil check because the
types are statically known.
Normally, I'd think SSA would remove the nil check, but du... | [
{
"path": "src/cmd/compile/internal/reflectdata/reflect.go",
"patch": "@@ -717,6 +717,10 @@ func writeType(t *types.Type) *obj.LSym {\n \t}\n \ts.SetSiggen(true)\n \n+\tif !tbase.HasShape() {\n+\t\tTypeLinksym(t) // ensure lsym.Extra is set\n+\t}\n+\n \tif !NeedEmit(tbase) {\n \t\tif i := typecheck.BaseType... | 2025-09-06T03:04:58 |
vercel/next.js | b7b153f6231ddc69f8eea8c0762463652c98008e | f80c92261ebbb0b376e45f0b15bd5657609a03d9 | [Cache Components] Fix cacheSignal in dev render (#84846)
This PR changes the timing used in `CacheSignal.cacheReady()` to work
correctly when rendering, not just prerendering. When rendering, React
schedules new work in `setImmediate` (as opposed to using a microtask
when prerendering), and `CacheSignal.cacheReady()`... | [
{
"path": "packages/next/src/server/app-render/cache-signal.ts",
"patch": "@@ -12,7 +12,7 @@ export class CacheSignal {\n private earlyListeners: Array<() => void> = []\n private listeners: Array<() => void> = []\n private tickPending = false\n- private taskPending = false\n+ private pendingTimeoutC... | 2025-10-15T16:32:43 |
nodejs/node | fbe37d501ec45c79ca3904b392f8858e63e42c0b | 599ec77679d55912e47116a8a1b0804a9bbc962d | esm: fix module.exports export on CJS modules
PR-URL: https://github.com/nodejs/node/pull/57366
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/modules/esm/translators.js",
"patch": "@@ -188,10 +188,13 @@ function createCJSModuleWrap(url, source, isMain, format, loadCJS = loadCJSModul\n const { exportNames, module } = cjsPreparseModuleExports(filename, source, format);\n cjsCache.set(url, module);\n \n- const wrapperNam... | 2025-03-07T21:05:09 |
facebook/react | 6587fe19338d22076b9c0fe50185717218b4a8bc | 29552c7907230222acd3f2c586784d24f9da6200 | feat(compiler): Ignore `TSInterfaceDeclaration` (#30314)
## Summary
The following was not supported:
```ts
function A() {
interface C {
id: number;
}
return 0;
}
```
Message:
> Todo: (BuildHIR::lowerStatement) Handle TSInterfaceDeclaration
statements (2:4)
Playground:
https://playground... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -1332,6 +1332,7 @@ function lowerStatement(\n return;\n }\n case \"TypeAlias\":\n+ case \"TSInterfaceDeclaration\":\n case \"TSTypeAliasDeclaration\": {\n // We do not preserve type annotat... | 2024-07-11T02:11:04 |
electron/electron | 45891aa75b77061edc548dd142f4ccf8a5deae4d | 6293bbced0e2282e2a4076fd5cc422a2a90f1ed5 | build: fix patchup logic only running on one platform (#43139) | [
{
"path": ".github/actions/checkout/action.yml",
"patch": "@@ -75,7 +75,7 @@ runs:\n \"$GITHUB_SERVER_URL/$GITHUB_REPOSITORY\"\n \n ELECTRON_USE_THREE_WAY_MERGE_FOR_PATCHES=1 gclient sync --with_branch_heads --with_tags -vvvvv\n- if [ \"${{ inputs.is-release }}\" != \"true\" ]; then\n+ ... | 2024-08-07T08:01:59 |
golang/go | 7acb0d044695ca0fbedf94dca7abfdfd991bc69a | 60c1ee91834d6c9701c5058830645da6eaa0cee9 | runtime: fix syscall9 on darwin/arm64
The aarch64 ABI says that only the first 8 arguments should be
passed as registers, subsequent arguments should be put on
the stack.
Syscall9 is not putting the 9th argument on the stack, and it should.
The standard library hasn't hit this issue because it uses Syscall9
for fun... | [
{
"path": "src/runtime/sys_darwin_arm64.s",
"patch": "@@ -724,13 +724,9 @@ TEXT runtime·syscall9(SB),NOSPLIT,$0\n \tMOVD\t56(R0), R6\t// a7\n \tMOVD\t64(R0), R7\t// a8\n \tMOVD\t72(R0), R8\t// a9\n+\tMOVD\tR8, 0(RSP)\t// the 9th arg and onwards must be passed on the stack\n \tMOVD\t8(R0), R0\t// a1\n \n-\t/... | 2025-09-10T14:34:22 |
facebook/react | 29552c7907230222acd3f2c586784d24f9da6200 | fe9828954adcc51aa2bd21fe53d969a44dd3c9d2 | Override the getCurrentStack temporarily while printing uncaught errors (#30309)
This is just a follow up to #30300.
I forgot the uncaught branch. | [
{
"path": "packages/react-reconciler/src/ReactFiberErrorLogger.js",
"patch": "@@ -46,27 +46,29 @@ export function defaultOnUncaughtError(\n 'Consider adding an error boundary to your tree to customize error handling behavior.\\n' +\n 'Visit https://react.dev/link/error-boundaries to learn more a... | 2024-07-10T20:58:46 |
vercel/next.js | f80c92261ebbb0b376e45f0b15bd5657609a03d9 | c34ea8f280d1fc6e7ab9c1665fd7f8efd40b8336 | Turbopack: expose client static assets correctly (#84695)
This is about whether `new URL("logo.png", import.meta.url)` and `import logo from "./logo.png"` return a client or a server asset:
- a server asset is a file that will be read by the server during rendering, for example a Wasm or font file (if you think about... | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -1082,13 +1082,11 @@ impl Project {\n no_mangling: self.no_mangling(),\n scope_hoisting: self.next_config().turbo_scope_hoisting(self.next_mode()),\n debug_ids: self.next_config().turbopack_debug_ids(),\n+ ... | 2025-10-15T16:06:50 |
nodejs/node | 9df0ff7015bed1613c09cc0b15b76390d21ee178 | 9a9a45adb700125cb7a2888a14341f7db484daf5 | test_runner: change ts default glob
PR-URL: https://github.com/nodejs/node/pull/57359
Fixes: https://github.com/nodejs/node/issues/56546
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Paolo Inso... | [
{
"path": "doc/api/test.md",
"patch": "@@ -418,12 +418,9 @@ By default, Node.js will run all files matching these patterns:\n Unless [`--no-experimental-strip-types`][] is supplied, the following\n additional patterns are also matched:\n \n-* `**/*.test.{cts,mts,ts}`\n-* `**/*-test.{cts,mts,ts}`\n-* `**/*_t... | 2025-03-09T12:55:40 |
electron/electron | a4dcb0fb3229f037560f63337f860ae218f9bcaf | acd39bd077b28588e5b1488739f6f650b9b3c1b7 | build: fixup patches in main (#43218)
chore: fixup patches in main | [
{
"path": "patches/chromium/fix_potential_draggable_region_crash_when_no_mainframeimpl.patch",
"patch": "@@ -16,10 +16,10 @@ MainFrameImpl is not null.\n Upstreamed in https://chromium-review.googlesource.com/c/chromium/src/+/5756619\n \n diff --git a/third_party/blink/renderer/core/exported/web_view_impl.c... | 2024-08-05T17:51:17 |
facebook/react | 34dccefeb9302c1f4a39a7bde00eb8b1a6a36bdf | 9647333b3d5a5d2a3ca7fe2a78d2d3da24bc4984 | Convert some tests to use assertConsoleErrorDev or just avoid mocking (#30307)
This is mainly so that I can rely on the helpers more for component
stack testing. | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -1812,83 +1812,59 @@ describe('ReactDOMFizzServer', () => {\n );\n }\n \n- // We can't use the toErrorDev helper here because this is an async act.\n- const originalConsoleError = console.error;\n- const... | 2024-07-10T20:23:55 |
golang/go | a4e25c3d657cf7c3f3a921cc99ea60ad5a337b82 | dd8276657f2244193d399f01941ee1d76a79529d | net,internal/poll: skip TestAllocs when race is enabled on Windows
The Windows implementation of several network protocols make use of
sync.Pool, which randomly drops cached items when race is enabled.
While here, zero out the control buffer to allow it to be garbage
collected.
Fixes #75341
Change-Id: Ie20e21adef2e... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -196,6 +196,8 @@ func freeWSAMsg(msg *windows.WSAMsg) {\n \t// Clear pointers to buffers so they can be released by garbage collector.\n \tmsg.Buffers.Len = 0\n \tmsg.Buffers.Buf = nil\n+\tmsg.Control.Len = 0\n+\tmsg.Control.Buf = nil\n \twsaMsgPool.... | 2025-09-12T08:13:15 |
vercel/next.js | c34ea8f280d1fc6e7ab9c1665fd7f8efd40b8336 | 8cab15c0c947a71eb8606ba29da719a2e121fc88 | fix: always use the safe stable stringify (#84909) | [
{
"path": "packages/next/src/lib/is-error.ts",
"patch": "@@ -1,4 +1,5 @@\n import { isPlainObject } from '../shared/lib/is-plain-object'\n+import safeStringify from 'next/dist/compiled/safe-stable-stringify'\n \n // We allow some additional attached properties for Next.js errors\n export interface NextError... | 2025-10-15T16:02:07 |
rust-lang/rust | 853967a62b2fca1372ae23f95a6f3a420d533660 | 0ecb4371975c5a580a9b64e859542f86ca35bb07 | Don't crash if `#[rustc_{dump_item_bounds,variance}]` was applied to the wrong item kind
Attr parsing already reports an error for this, an subsequent ICE isn't really helpful.
Side note: We certainly don't want convert the `bug!(…)`s in the respective queries to
delayed bugs! It's imperative that these queries eager... | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/rustc_dump.rs",
"patch": "@@ -1,5 +1,5 @@\n-use rustc_hir::{MethodKind, Target};\n use rustc_hir::attrs::AttributeKind;\n+use rustc_hir::{MethodKind, Target};\n use rustc_span::{Span, Symbol, sym};\n \n use crate::attributes::prelude::Allow;",
"addit... | 2026-03-02T15:00:32 |
facebook/react | 9647333b3d5a5d2a3ca7fe2a78d2d3da24bc4984 | 2d3f81bb6a650386832d885d7b63a7d0d517ba15 | Add RN fork of consoleWithStackDev so we can improve the mainline one (#30305)
We're removing this wrapper from the mainline but RN is still using
component stacks to filter out warnings.
This is unfortunate since it'll be hard to keep track of the interplay
with these, DevTools and how you're supposed to impleme... | [
{
"path": "packages/shared/forks/consoleWithStackDev.rn.js",
"patch": "@@ -0,0 +1,59 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ */\n+\n+import React... | 2024-07-10T17:37:56 |
electron/electron | acd39bd077b28588e5b1488739f6f650b9b3c1b7 | 3d766e9ccb82dbec81c03b83171c3f149f71cde8 | ci: auto label bug issues with platform (#43198) | [
{
"path": ".github/workflows/issue-opened.yml",
"patch": "@@ -86,6 +86,29 @@ jobs:\n }\n }\n \n+ const operatingSystems = select('heading:has(> text[value=\"What operating system(s) are you using?\"]) + paragraph > text', tree)?.value.trim().split(', ');\n+ co... | 2024-08-05T13:52:49 |
golang/go | 73676e322396f6d49b4328456023233a2fe5693e | 0e1b98993ea6574819813cfad89d7fd1d1c47552 | cmd/go: run cgo and cgo compiles in their own actions
This change splits package builds further into even more actions.
Between the cache action (and cover action, if present) and the actual
build action we insert three layers of actions:
Check Cache Action
| |
| V... | [
{
"path": "src/cmd/go/internal/work/action.go",
"patch": "@@ -19,6 +19,7 @@ import (\n \t\"internal/platform\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"slices\"\n \t\"strings\"\n \t\"sync\"\n \t\"time\"\n@@ -578,6 +579,47 @@ func (ca *coverActor) Act(b *Builder, ctx context.Context, a *Action) error {\n \tret... | 2025-08-08T21:35:43 |
nodejs/node | 9a9a45adb700125cb7a2888a14341f7db484daf5 | 725089a17325bce4c797d6faf6fe99a3cead880d | src: do not pass nullptr to std::string ctor
fixes -Wnonnull warning on some compilers
PR-URL: https://github.com/nodejs/node/pull/57354
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Shelley Vohr <shelle... | [
{
"path": "src/debug_utils.cc",
"patch": "@@ -254,7 +254,7 @@ class Win32SymbolDebuggingContext final : public NativeSymbolDebuggingContext {\n USE(GetLastError());\n #endif // DEBUG\n }\n- return nullptr;\n+ return {};\n }\n \n SymbolInfo LookupSymbol(void* address) override {",
"a... | 2025-03-09T03:48:08 |
vercel/next.js | 8cab15c0c947a71eb8606ba29da719a2e121fc88 | c3c2e574dc07144f04c573eeae44655e49b62814 | [Cache Components] Remove `unstable` prefix from `unstable_cacheLife` (#84877)
`cacheLife` is now stable and does not require an unstable prefix | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -652,7 +652,7 @@ impl ReactServerComponentValidator {\n \"revalidatePath\",\n \"revalidateTag\",\n // \"unstable_cache\", // useless in cl... | 2025-10-15T15:14:04 |
facebook/react | 2d3f81bb6a650386832d885d7b63a7d0d517ba15 | 378b305958eb7259cacfce8ad0e66eec07e07074 | Format DOM Nesting Warning as Diff View + An Additional Log for Stack Trace (#30302)
Currently we're printing parent stacks at the end of DOM nesting even
with owner stacks enabled. That's because the context of parent tree is
relevant for determining why two things are nested. It might not be
sufficient to see the... | [
{
"path": "packages/react-dom-bindings/src/client/validateDOMNesting.js",
"patch": "@@ -7,7 +7,54 @@\n * @flow\n */\n \n-import {getCurrentParentStackInDev} from 'react-reconciler/src/ReactCurrentFiber';\n+import type {Fiber} from 'react-reconciler/src/ReactInternalTypes';\n+import type {HydrationDiffNode... | 2024-07-10T16:17:13 |
electron/electron | 3d766e9ccb82dbec81c03b83171c3f149f71cde8 | 687767139065860dcde89e0ceac65c79eb1b84b5 | perf: don't build unused vectors in HidChooserContext (#43192)
* refactor: remove unused code in HidChooserContext::DeviceRemoved()
* refactor: remove unused code in HidChooserContext::OnHidManagerConnectionError()
* refactor: use structured bindings for readability | [
{
"path": "shell/browser/hid/hid_chooser_context.cc",
"patch": "@@ -273,13 +273,8 @@ void HidChooserContext::DeviceRemoved(device::mojom::HidDeviceInfoPtr device) {\n if (CanStorePersistentEntry(*device))\n return;\n \n- std::vector<url::Origin> revoked_origins;\n- for (auto& map_entry : ephemeral_d... | 2024-08-05T13:31:58 |
rust-lang/rust | 797f06675afb89616e7fc99704e4869d012ea52c | ba1567989ee7774a1fb53aa680a8e4e8daa0f519 | Fix LegacyKeyValueFormat report from docker build: host-aarch64 | [
{
"path": "src/ci/docker/host-aarch64/aarch64-gnu-llvm-20/Dockerfile",
"patch": "@@ -37,20 +37,19 @@ RUN sh /scripts/sccache.sh\n \n # We are disabling CI LLVM since this builder is intentionally using a host\n # LLVM, rather than the typical src/llvm-project LLVM.\n-ENV NO_DOWNLOAD_CI_LLVM 1\n-ENV EXTERNAL... | 2026-02-28T16:21:09 |
nodejs/node | b3b9f5224342c366ece5f24618410baa8110c6b3 | 7c2709de33d644c09bc878ab1af2b3718b0b2c21 | src: fix process exit listeners not receiving unsettled tla codes
fix listeners registered via `process.on('exit', ...` not receiving
error code 13 when an unsettled top-level-await is encountered in
the code
PR-URL: https://github.com/nodejs/node/pull/56872
Fixes: https://github.com/nodejs/node/issues/53551
Reviewed... | [
{
"path": "doc/api/process.md",
"patch": "@@ -1893,8 +1893,28 @@ A number which will be the process exit code, when the process either\n exits gracefully, or is exited via [`process.exit()`][] without specifying\n a code.\n \n-Specifying a code to [`process.exit(code)`][`process.exit()`] will override any\n... | 2025-03-08T19:54:30 |
golang/go | 0e1b98993ea6574819813cfad89d7fd1d1c47552 | 84e9ab398438bc728683ca68485c6e89526b0441 | testing: exit B.Loop early upon saturation
There's a cap of 1 billion benchmark iterations because more than that
is usually not going to give more useful data. Unfortunately, the
existing implementation neglected to check whether the 1e9 cap had
already been exceeded when it adjusted the number of iterations in the
B... | [
{
"path": "src/testing/benchmark.go",
"patch": "@@ -298,6 +298,9 @@ func (b *B) doBench() BenchmarkResult {\n \treturn b.result\n }\n \n+// Don't run more than 1e9 times. (This also keeps n in int range on 32 bit platforms.)\n+const maxBenchPredictIters = 1_000_000_000\n+\n func predictN(goalns int64, prevI... | 2025-08-31T17:34:47 |
vercel/next.js | 9864120483fcf26555b7c408cf1aad0ba7b9d1ec | 4ee2f4ad8711401c51e51d0f941b1aeb803b537e | Turbopack: process task result as part of the task completion (#84638)
### What?
* Set the task output when finishing the task
* Remove setting task as initial dirty in the normal execution
* Fix race condition when setting output and invalidating dependents | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -52,7 +52,7 @@ use crate::{\n AggregatedDataUpdate, AggregationUpdateJob, AggregationUpdateQueue,\n CleanupOldEdgesOperation, ConnectChildOperation, ExecuteContext, ExecuteContextImpl,\n Ope... | 2025-10-15T07:07:26 |
facebook/react | 14fdd0e21c420deb4bb96fc1e9021b531543d15a | 3b2e5f27c5b72708677da27779852b9aa83ef909 | [Flight] Serialize rate limited objects in console logs as marker an increase limit (#30294)
This marker can then be emitted as a getter. When this object gets
accessed we use a special error to let the user know what is going on.
<img width="1350" alt="Screenshot 2024-07-08 at 10 13 46 PM"
src="https://github.co... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -1231,6 +1231,29 @@ function parseModelString(\n }\n // Fallthrough\n }\n+ case 'Y': {\n+ if (__DEV__) {\n+ // In DEV mode we encode omitted objects in logs as a getter that throws\n+ ... | 2024-07-10T04:15:15 |
electron/electron | 687767139065860dcde89e0ceac65c79eb1b84b5 | e64302cc91af38e96aa65c17c021ad9d7f302e9d | fix: gin_helper::MicrotasksScope instantiation (#43185) | [
{
"path": "shell/browser/api/electron_api_auto_updater.cc",
"patch": "@@ -46,9 +46,9 @@ void AutoUpdater::OnError(const std::string& message) {\n gin::StringToV8(isolate, message),\n };\n \n- gin_helper::MicrotasksScope microtasks_scope(\n+ gin_helper::MicrotasksScope microtasks_scope{\n ... | 2024-08-05T13:24:27 |
nodejs/node | abd73d865ae25df50d9c91b65d6843b48a2e8d9f | 27f98c3cd1cee93efb28efea11d59e51ba9be4b9 | build: fix compatibility with V8's `depot_tools`
Recent changes to `depot_tools`'s `ninja.py` proxy is causing infinite
recursion in our V8 CI builds as we checkout `depot_tools` into a
directory with a leading `_` (i.e. `_depot_tools`) and the proxy now
checks for an exact match (i.e. `== "depot_tools"`) instead of
`... | [
{
"path": "tools/make-v8.sh",
"patch": "@@ -53,7 +53,7 @@ if [ \"$ARCH\" = \"s390x\" ] || [ \"$ARCH\" = \"ppc64le\" ]; then\n gn gen -v \"out.gn/$BUILD_ARCH_TYPE\" --args=\"is_component_build=false is_debug=false use_goma=false goma_dir=\\\"None\\\" use_custom_libcxx=false v8_target_cpu=\\\"$TARGET_ARCH\\... | 2025-03-07T15:35:36 |
facebook/react | 3b2e5f27c5b72708677da27779852b9aa83ef909 | 39e69dc665ef6f6dd1f9fe2f63348afb09694eab | [Fiber] Override the getCurrentStack temporarily while printing errors (#30300)
Only for parent stacks. This ensures that we can use the regular
mechanism for appending stack traces. E.g. you can polyfill it.
This is mainly so that I can later remove the automatic appending. | [
{
"path": "packages/react-reconciler/src/ReactFiberErrorLogger.js",
"patch": "@@ -95,7 +95,19 @@ export function defaultOnCaughtError(\n errorBoundaryName || 'Anonymous'\n }.`;\n \n- if (enableOwnerStacks) {\n+ const prevGetCurrentStack = ReactSharedInternals.getCurrentStack;\n+ if (!... | 2024-07-10T04:15:00 |
vercel/next.js | 1bd1a33e04f94e673a9bb2f9fbce4f14ea8ed0c5 | 7e45ab1a47fccaf038247dcf91dbd5545685f0eb | Bump eslint-plugin-react to 7.37.0 (#84876)
The version of `eslint-config-next`'s dependency `eslint-plugin-react`
is `^7.37.0`, but the repo is `7.35.0`. This difference caused an ESLint
error when developing `eslint-config-next`.
x-ref:
https://github.com/vercel/next.js/actions/runs/18512010193/job/52754871898?pr=8... | [
{
"path": "package.json",
"patch": "@@ -199,7 +199,7 @@\n \"eslint-plugin-jest\": \"27.6.3\",\n \"eslint-plugin-jsdoc\": \"48.0.4\",\n \"eslint-plugin-mdx\": \"3.1.5\",\n- \"eslint-plugin-react\": \"7.35.0\",\n+ \"eslint-plugin-react\": \"7.37.0\",\n \"eslint-plugin-react-hooks\": \"0.... | 2025-10-14T23:04:36 |
electron/electron | 78995b956effdebb33b2f4ceed59ec7cb5b03b99 | f508f6b6b570481a2b61d8c4f8c1951f492e4309 | fix: potential draggable regions crash in DevTools (#43179) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -130,3 +130,4 @@ fix_font_face_resolution_when_renderer_is_blocked.patch\n feat_enable_passing_exit_code_on_service_process_crash.patch\n chore_remove_reference_to_chrome_browser_themes.patch\n feat_enable_customizing_symbol_color_in_framecaptionbutton.pat... | 2024-08-05T07:56:08 |
nodejs/node | 4cc69f9470b752292ea50990745d6fd101e40218 | f161033bd559f5e59ddd069fea67a6da5564fff1 | src: allow embedder customization of OOMErrorHandler
PR-URL: https://github.com/nodejs/node/pull/57325
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Jake Yueson... | [
{
"path": "src/api/environment.cc",
"patch": "@@ -233,7 +233,10 @@ void SetIsolateErrorHandlers(v8::Isolate* isolate, const IsolateSettings& s) {\n auto* fatal_error_cb = s.fatal_error_callback ?\n s.fatal_error_callback : OnFatalError;\n isolate->SetFatalErrorHandler(fatal_error_cb);\n- isolate-... | 2025-03-07T10:15:49 |
vercel/next.js | 299fe7409eacaeeffaa6aa280114495bea7c1643 | d540fbd3e604d1838722542acd9b518ac6688b73 | [turbopack] Remove the implementation of `TaskInput` from `AutoSet` (#84867)
TaskInputs should have deterministic serialization and that isn't really possible with `AutoSet`
This was only used as part of the `CapturedIssues` api, so that is modified to wrap the autoset in a `cell` instead of an `Arc`. Originally the... | [
{
"path": "crates/next-api/src/operation.rs",
"patch": "@@ -38,7 +38,7 @@ async fn entrypoints_without_collectibles_operation(\n ) -> Result<Vc<Entrypoints>> {\n let _ = entrypoints.resolve_strongly_consistent().await?;\n let _ = entrypoints.take_collectibles::<Box<dyn Diagnostic>>();\n- let _ = ... | 2025-10-14T19:41:05 |
facebook/react | b73dcdc04ffa2dd9f2197d796388657d64ad53be | 8aafbcf115e67df899ddbb180ef025c7c260a3fe | [Fizz] Refactor Component Stack Nodes (#30298)
Component stacks have a similar problem to the problem with keyPath
where we had to move it down and set it late right before recursing.
Currently we work around that by popping exactly one off when something
suspends. That doesn't work with the new server stacks being... | [
{
"path": "packages/react-devtools-shared/src/backend/DevToolsFiberComponentStack.js",
"patch": "@@ -47,6 +47,7 @@ export function describeFiber(\n case HostComponent:\n return describeBuiltInComponentFrame(workInProgress.type);\n case LazyComponent:\n+ // TODO: When we support Thenables ... | 2024-07-09T19:44:01 |
nodejs/node | f161033bd559f5e59ddd069fea67a6da5564fff1 | 365faa7a4fbf973741600990b606d848ce0dcc14 | win,build: add option to enable Control Flow Guard
PR-URL: https://github.com/nodejs/node/pull/56605
Fixes: https://github.com/nodejs/node/issues/42100
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "common.gypi",
"patch": "@@ -28,6 +28,7 @@\n 'clang%': 0,\n 'error_on_warn%': 'false',\n 'suppress_all_error_on_warn%': 'false',\n+ 'control_flow_guard%': 'false',\n \n 'openssl_product': '<(STATIC_LIB_PREFIX)openssl<(STATIC_LIB_SUFFIX)',\n 'openssl_no_asm%': 0,\n@@ -310,6 +... | 2025-03-07T07:09:26 |
rust-lang/rust | 88cec3a1c0fb586200f20e0bd2bc54fa83b3bd9b | 4d09563d8df41a9c26cccaf291bcf461b539b4e8 | update debuginfo visualizers and tests | [
{
"path": "src/etc/gdb_providers.py",
"patch": "@@ -18,6 +18,12 @@ def unwrap_unique_or_non_null(unique_or_nonnull):\n return ptr if ptr.type.code == gdb.TYPE_CODE_PTR else ptr[ptr.type.fields()[0]]\n \n \n+def unwrap_scalar_wrappers(wrapper):\n+ while not wrapper.type.is_scalar:\n+ wrapper = ... | 2026-02-24T11:27:08 |
electron/electron | 5b18cc46bc4ef293a5cfe54c52b94447bd7dc11c | 7c79221a543eeb874b1f1aef90ccda894a7dc623 | chore: bump chromium to 129.0.6630.0 (main) (#43087)
* chore: bump chromium in DEPS to 129.0.6623.0
* chore: update mas_avoid_private_macos_api_usage.patch.patch
remove the changes to media/audio/mac/audio_manager_mac.cc,
since upstream has also made this change now.
Xref: https://chromium-review.googlesourc... | [
{
"path": "BUILD.gn",
"patch": "@@ -38,7 +38,7 @@ if (is_mac) {\n import(\"build/rules.gni\")\n \n assert(\n- mac_deployment_target == \"10.15\",\n+ mac_deployment_target == \"11.0\",\n \"Chromium has updated the mac_deployment_target, please update this assert, update the supported vers... | 2024-08-02T14:02:11 |
vercel/next.js | 17c99ca4e5356bc4ca8947757d77d0810acb338c | 81b35a698cc4bb3ff85a886c52b098792dd09028 | [turbopack] fix typo in docs (#84868)
https://github.com/vercel/next.js/pull/84837 merged a bit too quickly | [
{
"path": "docs/01-app/03-api-reference/08-turbopack.mdx",
"patch": "@@ -134,7 +134,7 @@ This can lead to subtle rendering changes when adopting Turbopack, if applicatio\n \n ### Bundle Sizes\n \n-From our testing on production applications, we observed that Turbopack generally produces bundles that are sim... | 2025-10-14T17:45:46 |
facebook/react | c3cdbec0a78d39b5ff7329384cb41c4573a38212 | 491a4eacce69fec4144725beaac7141da269e8cf | [Flight] Add context for non null prototype error (#30293)
We already added this for other thrown errors, not just console.errors.
There's a production form of this. We just missed adding this context.
Mainly the best context is the line number though which comes from owner
stacks. | [
{
"path": "packages/react-client/src/ReactFlightReplyClient.js",
"patch": "@@ -692,7 +692,8 @@ export function processReply(\n if (temporaryReferences === undefined) {\n throw new Error(\n 'Only plain objects, and a few built-ins, can be passed to Server Actions. ' +\n- ... | 2024-07-09T02:51:59 |
golang/go | 5a0446d4498fb59853c81300ec387374a98f23bd | c39b2fdd1ec86f68668141a0901d5f3fc634854e | [dev.simd] simd/_gen/simdgen, cmd/compile: add memory op machine ops
This CL adds the machine ops for memory-op and also their prog writing
logic.
This CL also fixes a bug in the XED parser. Previously the
merge of machine ops is not checking the CPU feature, so some AVX
instruction might have their "memFeatures" fie... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1353,6 +1353,514 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPSHRDQMasked512:\n \t\tp = simdV2kvImm8(s, v)\n \n+\tcase ssa.OpAMD64VPABSDMasked128load,\n+\t\tssa.OpAMD64VPABSDMasked256load,\n+\t\tssa.OpAM... | 2025-09-04T18:20:59 |
rust-lang/rust | 66786fc407e79f013c6f0f256f36de7efcd96ae0 | e7d90c695a39426baf5ae705de2f9570a72229de | fix next-solver ICE on PointeeSized goals | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs",
"patch": "@@ -2632,6 +2632,8 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n trait_def_id != def_id\n && trait_name == self.tcx.item_name(def_id)\n && trait_has_same_params(de... | 2026-02-01T17:07:19 |
facebook/react | 491a4eacce69fec4144725beaac7141da269e8cf | 274c980c535bb34e17f5d97cc22ef4dd296ab413 | [DevTools] Print component stacks as error objects to get source mapping (#30289)
Before:
<img width="844" alt="Screenshot 2024-07-04 at 3 20 34 PM"
src="https://github.com/facebook/react/assets/63648/0fd8a53f-538a-4429-a4cf-c22f85a09aa8">
After:
<img width="845" alt="Screenshot 2024-07-05 at 6 08 28 PM"
sr... | [
{
"path": ".eslintrc.js",
"patch": "@@ -490,6 +490,7 @@ module.exports = {\n 'packages/react-devtools-extensions/**/*.js',\n 'packages/react-devtools-shared/src/hook.js',\n 'packages/react-devtools-shared/src/backend/console.js',\n+ 'packages/react-devtools-shared/src/backend/... | 2024-07-08T22:42:58 |
vercel/next.js | def2220ff5164a0b9cb5ab9e07e796f48f5c5531 | f77473c01c90fa084ac8ce17a188e44d83e9076c | Add codemod for Middleware API to Proxy API (#84824)
Stacked on https://github.com/vercel/next.js/pull/84764
### Test Plan
Tested on local fixtures as well. | [
{
"path": "packages/next-codemod/transforms/__testfixtures__/middleware-to-proxy/next-config-basic.input.ts",
"patch": "@@ -0,0 +1,12 @@\n+import type { NextConfig } from 'next'\n+\n+const nextConfig: NextConfig = {\n+ experimental: {\n+ middlewarePrefetch: 'strict',\n+ middlewareClientMaxBodySize: '... | 2025-10-14T17:19:02 |
electron/electron | 7c79221a543eeb874b1f1aef90ccda894a7dc623 | e7ca92a574a47dcfc2e00dc2d0a49410146f2284 | docs: fixed broken electron-fiddle links in the "Tutorial - Publishing and Updating" doc (#43129)
fixed electron-fiddle build and config links | [
{
"path": "docs/tutorial/tutorial-6-publishing-updating.md",
"patch": "@@ -222,8 +222,8 @@ rest of our docs and happy developing! If you have questions, please stop by our\n [code-signed]: ./code-signing.md\n [discord server]: https://discord.gg/electronjs\n [electron fiddle]: https://www.electronjs.org/fid... | 2024-08-02T01:28:50 |
golang/go | cf5e993177dac0d9fd30e961416a391c37da1815 | cdb3d467fa2df80611cc7576ce3b3806aa715fa3 | cmd/link: allow one to specify the data section in the internal linker
Fixes #74945
Change-Id: Ia73a8dcdf707222e822522daaa7f31a38b1c31e6
GitHub-Last-Rev: da1526ad8cebd5cfa2f979d49d86f3424d192ce0
GitHub-Pull-Request: golang/go#75117
Reviewed-on: https://go-review.googlesource.com/c/go/+/698355
Reviewed-by: Mark Freema... | [
{
"path": "src/cmd/link/elf_test.go",
"patch": "@@ -59,6 +59,12 @@ package main\n func main() {}\n `\n \n+var goSourceWithData = `\n+package main\n+var globalVar = 42\n+func main() { println(&globalVar) }\n+`\n+\n // The linker used to crash if an ELF input file had multiple text sections\n // with the same... | 2025-09-10T19:25:49 |
facebook/react | df783f9ea1b6f95e05f830602da1de5ffb325d30 | 1b0132c05acabae5aebd32c2cadddfb16bda70bc | Add unknown location information to component stacks (#30290)
This is the same change as in #30289 but for the main runtime - e.g.
parent stacks in errorInfo.componentStack, appended stacks to
console.error coming from React itself and when we add virtual frames to
owner stacks.
Since we don't add location infor... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMSingletonComponents-test.js",
"patch": "@@ -475,7 +475,7 @@ describe('ReactDOM HostSingleton', () => {\n expect(hydrationErrors).toEqual([\n [\n \"Hydration failed because the server rendered HTML didn't match the client.\",\n- 'at... | 2024-07-08T15:54:14 |
vercel/next.js | f77473c01c90fa084ac8ce17a188e44d83e9076c | 7ee397e9e862c2cc99db06c0be85e14c74e27ab0 | warnOnce for Middleware deprecation (#84862)
<!-- 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
### I... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -1203,7 +1203,7 @@ export default async function build(\n `Both \"${MIDDLEWARE_FILENAME}\" and \"${PROXY_FILENAME}\" files are detected. Please use \"${PROXY_FILENAME}\" instead.`\n )\n }\n- Log.warn(\n+ L... | 2025-10-14T16:39:04 |
golang/go | fef360964c85d47406bdfbf7333591686720663b | 7d562b8460a210ad9d0b65a44fbfb71d2ea81789 | archive/tar: fix typo in benchmark name
This was accidentally introduced in CL 662835.
Change-Id: I5c7ac67337e33e82037414377912b57d2a45be91
Reviewed-on: https://go-review.googlesource.com/c/go/+/702275
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit:... | [
{
"path": "src/archive/tar/strconv_test.go",
"patch": "@@ -440,7 +440,7 @@ func TestFormatPAXRecord(t *testing.T) {\n \t}\n }\n \n-func BenchmarkParsePAXTIme(b *testing.B) {\n+func BenchmarkParsePAXTime(b *testing.B) {\n \ttests := []struct {\n \t\tname string\n \t\tin string",
"additions": 1,
"de... | 2025-09-10T00:24:20 |
electron/electron | 3a07bd8821f3ea70edc0a86d90270a47adf0309d | cc956420ef39c9b659a11965721bcc972b0f6d88 | fix: take bluetooth serial ports into account in `serial.getPorts()` (#43101)
* fix: take bluetooth serial ports into account in serial.getPorts()
* chore: remove port.path.LossyDisplayName() | [
{
"path": "shell/browser/serial/serial_chooser_context.cc",
"patch": "@@ -25,14 +25,15 @@ namespace electron {\n \n constexpr char kPortNameKey[] = \"name\";\n constexpr char kTokenKey[] = \"token\";\n+constexpr char kBluetoothDevicePathKey[] = \"bluetooth_device_path\";\n #if BUILDFLAG(IS_WIN)\n-const char... | 2024-08-01T16:13:31 |
facebook/react | f38c22b244086f62ae5ed851b6ed17029ec44be5 | 0b5835a46f6e19a0a0ead0f4cd30b0db14bc72f7 | [Flight] Set Current Owner / Task When Calling console.error or invoking onError/onPostpone (#30206)
Stacked on #30197.
This is similar to #30182 and #21610 in Fizz.
Track the current owner/stack/task on the task. This tracks it for
attribution when serializing child properties.
This lets us provide the righ... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -2761,10 +2761,61 @@ describe('ReactFlight', () => {\n );\n });\n \n+ // @gate __DEV__ && enableOwnerStacks\n+ it('can get the component owner stacks for onError in dev', async () => {\n+ const thrownError = new Err... | 2024-07-04T16:31:23 |
vercel/next.js | 27821674a6d239b5159bdb285d4633c8435c3568 | 051351309f13215d80fb6aacab3bf6c7b0de5b03 | improve next config schema validation errors (#84847) | [
{
"path": "packages/next/src/server/config.ts",
"patch": "@@ -22,7 +22,7 @@ import { loadWebpackHook } from './config-utils'\n import { imageConfigDefault } from '../shared/lib/image-config'\n import type { ImageConfig } from '../shared/lib/image-config'\n import { loadEnvConfig, updateInitialEnv } from '@n... | 2025-10-14T15:45:11 |
nodejs/node | 8032e96cc82934bf020aaaaec81a30edefc3bea6 | 117c1ca9eb09e378c5992e7a25b26022b514e3d8 | doc: use more clear name in getSystemErrorMessage's example
In the previous example, `name` actually points to the `message`.
So I changed this name to fit the context of the example.
Fixes: https://github.com/nodejs/node/issues/57305
PR-URL: https://github.com/nodejs/node/pull/57310
Reviewed-By: Joyee Cheung <joyeec... | [
{
"path": "doc/api/util.md",
"patch": "@@ -668,8 +668,8 @@ The mapping between error codes and string messages is platform-dependent.\n \n ```js\n fs.access('file/that/does/not/exist', (err) => {\n- const name = util.getSystemErrorMessage(err.errno);\n- console.error(name); // No such file or directory\n... | 2025-03-04T12:46:38 |
electron/electron | 2337d8676dbde6cd10f6112a13e73e3bb18a28e5 | 45e5ccc55e8b13a45899bacff5cb98c9994446f2 | fix: handle failing to enter fullscreen on macOS (#43112)
* fix: handle failing to enter/exit fullscreen on macOS
On macOS, failing to enter/exit fullscreen can fail. If this happens,
properly restore the original window state.
* refactor: remove fail to exit fullscreen handlers
Seem to be unnecessary since ... | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -167,6 +167,7 @@ class NativeWindowMac : public NativeWindow,\n void DetachChildren() override;\n \n void NotifyWindowWillEnterFullScreen();\n+ void NotifyWindowDidFailToEnterFullScreen();\n void NotifyWindowWillLeaveFullScreen();\n \n // ... | 2024-08-01T10:13:13 |
golang/go | c34958234414a6ec8512967b3681d45314b50d3a | 253dd08f5df3a45eafc97eec388636fcabfe0174 | crypto/rsa: don't test CL 687836 against v1.0.0 FIPS 140-3 module
Fixes #75343 (again)
Updates #74115
Change-Id: I6a6a696431d12e45ec9e302e63ed18990c5ee9d9
Reviewed-on: https://go-review.googlesource.com/c/go/+/702615
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Michael Pratt <mpratt@google.com>
Rev... | [
{
"path": "src/crypto/rsa/rsa_test.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"crypto\"\n \t\"crypto/internal/boring\"\n \t\"crypto/internal/cryptotest\"\n+\t\"crypto/internal/fips140\"\n \t\"crypto/rand\"\n \t. \"crypto/rsa\"\n \t\"crypto/sha1\"\n@@ -1245,6 +1246,9 @@ func TestModifiedPrivateKey(t *tes... | 2025-09-10T21:06:39 |
facebook/react | 0b5835a46f6e19a0a0ead0f4cd30b0db14bc72f7 | 8e9de898d3a8a0945fcdc1a02959560bce2bbc30 | [Flight] Implement captureStackTrace and owner stacks on the Server (#30197)
Wire up owner stacks in Flight to the shared internals. This exposes it
to `captureOwnerStack()`.
In this case we install it permanently as we only allow one RSC renderer
which then supports async contexts. Same thing we do for owner.
... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -81,6 +81,7 @@ let ErrorBoundary;\n let NoErrorExpected;\n let Scheduler;\n let assertLog;\n+let assertConsoleErrorDev;\n \n describe('ReactFlight', () => {\n beforeEach(() => {\n@@ -102,6 +103,7 @@ describe('ReactFlight', (... | 2024-07-04T16:15:51 |
rust-lang/rust | 5bd28b85bd5cc0000f67035a1c37fd0b150eccd6 | 5677f7c70676a99c6cae3b636098ffbf5f8c70f5 | Remove `FromCycleError` impl for `SymbolName`.
It has no effect.
`symbol_name` is the only query that produces a `SymbolName`. If it was
marked with `cycle_delayed_bug`/`cycle_stash` then this `FromCycleError`
impl would make sense, but that's not the case. Maybe it was the case in
the past. | [
{
"path": "compiler/rustc_query_impl/src/from_cycle_error.rs",
"patch": "@@ -56,18 +56,6 @@ impl<'tcx> FromCycleError<'tcx> for Result<ty::EarlyBinder<'_, Ty<'_>>, CyclePla\n }\n }\n \n-impl<'tcx> FromCycleError<'tcx> for ty::SymbolName<'_> {\n- fn from_cycle_error(tcx: TyCtxt<'tcx>, _: CycleError, _... | 2026-02-27T05:15:59 |
vercel/next.js | 051351309f13215d80fb6aacab3bf6c7b0de5b03 | 7336c550033789e5969d3150b5587f56201e1408 | Fix build compile mode if pages dir does not exist in Next.js 16 (#84783)
## Fixing a bug
### What?
Fixes `next build --experimental-build-mode=compile` for standalone
output when there is no pages directory (app-dir only projects) in Next
16.
### Why?
When building a Next.js 16 application with:
- `output: 'stand... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -765,17 +765,22 @@ async function writeStandaloneDirectory(\n )\n }\n \n- await recursiveCopy(\n- path.join(distDir, SERVER_DIRECTORY, 'pages'),\n- path.join(\n- distDir,\n- STANDALONE_DIRECTORY,\n-... | 2025-10-14T15:32:45 |
nodejs/node | 5401ac687cd0dd745f78efc7429d2e5118512394 | a7909014f77d737b5998f0bef92687507e992217 | doc: recommend setting `noEmit: true` in `tsconfig.json`
PR-URL: https://github.com/nodejs/node/pull/57320
Fixes: https://github.com/nodejs/node/issues/57294
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "doc/api/typescript.md",
"patch": "@@ -81,6 +81,7 @@ but we recommend version 5.8 or newer with the following `tsconfig.json` setting\n ```json\n {\n \"compilerOptions\": {\n+ \"noEmit\": true, // Optional - see note below\n \"target\": \"esnext\",\n \"module\": \"nodenext\",\n ... | 2025-03-06T22:30:59 |
golang/go | 253dd08f5df3a45eafc97eec388636fcabfe0174 | 2009e6c596551673ebb12050daa30171171cb432 | debug/macho: filter non-external symbols when reading imported symbols without LC_DYSYMTAB
File.ImportedSymbols will return symbols with a type that has one of the
N_STAB (0xe0) bits set and no section. That's not the expected behavior,
as those symbols might not be external.
We should expand the type check to also a... | [
{
"path": "src/debug/macho/file.go",
"patch": "@@ -735,9 +735,10 @@ func (f *File) ImportedSymbols() ([]string, error) {\n \t\tconst (\n \t\t\tN_TYPE = 0x0e\n \t\t\tN_UNDF = 0x0\n+\t\t\tN_EXT = 0x01\n \t\t)\n \t\tfor _, s := range st.Syms {\n-\t\t\tif s.Type&N_TYPE == N_UNDF && s.Sect == 0 {\n+\t\t\tif s.T... | 2025-09-10T11:16:00 |
electron/electron | a68a33f036ad782165140ab36d9054a03a2d194a | 791e6df82a691b0282d64bfa582e2cd853b5f155 | docs: fix broken link in bug report template (#43105)
chore: fix broken link in bug report template | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -20,8 +20,8 @@ body:\n description: |\n What version of Electron are you using?\n \n- Note: Please only report issues for [currently supported versions of Electron](https://www.electronjs.org/docs/latest/tutorial/support#currentl... | 2024-07-31T15:45:07 |
facebook/react | 3da26163a35969b32b5d7876a3f0c95bea61bc2b | 15ca8b6bad9c2e51f1a3b6e943c9af494b62a1a6 | fix: path handling in react devtools (#29199)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please m... | [
{
"path": "packages/react-devtools-shared/src/__tests__/utils-test.js",
"patch": "@@ -26,6 +26,7 @@ import {\n REACT_STRICT_MODE_TYPE as StrictMode,\n } from 'shared/ReactSymbols';\n import {createElement} from 'react';\n+import {symbolicateSource} from '../symbolicateSource';\n \n describe('utils', () =>... | 2024-07-04T14:34:48 |
rust-lang/rust | 5677f7c70676a99c6cae3b636098ffbf5f8c70f5 | 6f111d21a5ab57069727be85fd94f910a49665aa | Rename trait `Value` as `FromCycleError`.
`Value` is an unhelpfully generic name. Standard naming procedure for a
trait with a single method is for the trait name to match the method
name, which is what this commit does. Likewise, the enclosing module is
renamed from `values` to `from_cycle_error`.
Also add a comment... | [
{
"path": "compiler/rustc_middle/src/queries.rs",
"patch": "@@ -150,10 +150,10 @@ use crate::{dep_graph, mir, thir};\n // `Providers` that the driver creates (using several `rustc_*` crates).\n //\n // The result type of each query must implement `Clone`, and additionally\n-// `ty::query::values::Value`, wh... | 2026-02-27T04:11:18 |
vercel/next.js | f06d951d6addca43cf47c43c61f368221c889e28 | ef16156880a1c6c300b5680fe3a0d096bf31f2cb | [Cache Components] Dev - restart render on cache miss (#84088)
This PR replaces the previous approach to the dev-time cache warmup. On
full-page requests, we
1. We attempt an initial RSC render. It uses a RequestStore, but
includes a `cacheSignal` and a `prerenderResumeDataCache` to be filled
1. if there's no cache mi... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -872,5 +872,7 @@\n \"871\": \"Image with src \\\"%s\\\" is using a query string which is not configured in images.localPatterns.\\\\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns\",\n \"872\": \"updateTag can only be... | 2025-10-14T14:33:05 |
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.