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 |
|---|---|---|---|---|---|
facebook/react | c323f8290c2336713b62c69322bb30ed63234c24 | 59831c98cffe0edf706238b067928e7cf54d1065 | Encode better error messages when part of the context is a client reference (#28355)
Alternative to #28354.
If a client reference is one of the props being describes as part of
another error, we call toString on it, which errors.
We should error explicitly when a Symbol prop is extracted.
However, pragmatica... | [
{
"path": "packages/react-server-dom-turbopack/src/ReactFlightTurbopackReferences.js",
"patch": "@@ -92,7 +92,11 @@ export function registerServerReference<T: Function>(\n const PROMISE_PROTOTYPE = Promise.prototype;\n \n const deepProxyHandlers = {\n- get: function (target: Function, name: string, receive... | 2024-02-19T16:49:25 |
golang/go | 8cb0941a85de6ddbd6f49f8e7dc2dd3caeeee61c | 68f4434df02c3d1bde5b42c9adeaf79d15858ff3 | net: use runtime.AddCleanup instead of runtime.SetFinalizer
Adds TODO for replacement of runtime.SetFinalizer.
Fixes #70907
Change-Id: Ic009018a93ccc46a776ae34afac44635d2340cbf
Reviewed-on: https://go-review.googlesource.com/c/go/+/638557
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golan... | [
{
"path": "src/net/fd_fake.go",
"patch": "@@ -104,13 +104,15 @@ func (fd *netFD) accept() (netfd *netFD, err error) {\n func (fd *netFD) setAddr(laddr, raddr Addr) {\n \tfd.laddr = laddr\n \tfd.raddr = raddr\n+\t// TODO Replace with runtime.AddCleanup.\n \truntime.SetFinalizer(fd, (*netFD).Close)\n }\n \n f... | 2024-12-23T16:52:43 |
nodejs/node | 6b9413e41add92d79f1ee572940eebaa9850889a | 5e4da33d97296f8c6a759b7d3069501813b3188a | worker: throw InvalidStateError in postMessage after close
This update addresses expected failures for invalid postMessage
after close in WPT.
PR-URL: https://github.com/nodejs/node/pull/55206
Reviewed-By: Mattias Buelens <mattias@buelens.com>
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> | [
{
"path": "lib/internal/worker/io.js",
"patch": "@@ -402,7 +402,7 @@ class BroadcastChannel extends EventTarget {\n if (arguments.length === 0)\n throw new ERR_MISSING_ARGS('message');\n if (this[kHandle] === undefined)\n- throw new DOMException('BroadcastChannel is closed.');\n+ thr... | 2024-10-03T02:37:34 |
vercel/next.js | 88383fccf0e398ff341db66ba40d0ed500e98857 | 5d4e85d2c51b382d5a1d3cf2e6e5c2f68dba138c | Fix fetch logging after revalidation via server action (#82643)
When revalidating a tag or path with a server action, we do want to log
any fetches that are made during the subsequent rerendering, when [fetch
logging](https://nextjs.org/docs/app/api-reference/config/next-config-js/logging#fetching)
is enabled.
This g... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -1454,7 +1454,6 @@ async function renderToHTMLOrFlightImpl(\n renderOpts: RenderOpts,\n workStore: WorkStore,\n parsedRequestHeaders: ParsedRequestHeaders,\n- requestEndedState: { ended?: boolean },\n postponedState: Postp... | 2025-08-14T15:12:31 |
rust-lang/rust | 71e4b03b02dcd190d48b508e14d70146fa7007ef | b451b42018616243f66ffd96f40b2cc1cee08561 | fix: no complete suggest param in complex pattern
Example
---
```rust
fn foo(bar: u32) {}
fn bar((a, bar$0)) {}
```
**Before this PR**
```rust
fn foo(bar: u32) {}
fn bar(bar: u32)) {}
```
**After this PR**
Not complete `bar: u32` | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/fn_param.rs",
"patch": "@@ -25,7 +25,7 @@ pub(crate) fn complete_fn_param(\n ctx: &CompletionContext<'_>,\n pattern_ctx: &PatternContext,\n ) -> Option<()> {\n- let (ParamContext { param_list, kind, .. }, impl_or_trait) = ma... | 2026-02-14T14:01:28 |
facebook/react | c1fd2a91b1042c137d750be85e5998f699a54d2a | fef30c2e0403e0c6986904be89fcd01e665866ee | Include the function name for context on invalid function child (#28362)
Also warn for symbols.
It's weird because for objects we throw a hard error but functions we do
a dev only check. Mainly because we have an object branch anyway.
In the object branch we have some built-ins that have bad errors like
forwar... | [
{
"path": "packages/react-dom/src/__tests__/ReactComponent-test.js",
"patch": "@@ -635,8 +635,9 @@ describe('ReactComponent', () => {\n });\n }).toErrorDev(\n 'Warning: Functions are not valid as a React child. This may happen if ' +\n- 'you return a Component instead of <Comp... | 2024-02-17T21:41:59 |
golang/go | c0e149b6b1aa2daca64c00804809bc2279e21eee | db3e02994c98f1d6dc00f7df807579c4619885c7 | net/http: document that ServeMux.Handler can also synthetize a 405
Also, fix a minor typo in ServeMux.Handle and ServeMux.HandleFunc.
Change-Id: I6a6a46565719104cb8f2484daf0e39f35b55a078
Reviewed-on: https://go-review.googlesource.com/c/go/+/675835
Reviewed-by: David Chase <drchase@google.com>
Auto-Submit: Filippo Va... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -2674,7 +2674,8 @@ func stripHostPort(h string) string {\n // the path that will match after following the redirect.\n //\n // If there is no registered handler that applies to the request,\n-// Handler returns a “page not found” handler and an empty pattern.... | 2025-05-23T10:44:24 |
electron/electron | 5d6023ae0dfa289b8ce1427722b0a8c0ab24e648 | dc4476d4802ca9b13d0a74e709831109d38c4a34 | docs: fix some string union typings (#40180) | [
{
"path": "docs/api/app.md",
"patch": "@@ -1134,11 +1134,11 @@ indicates success while any other value indicates failure according to Chromium\n resolver will attempt to use the system's DNS settings to do DNS lookups\n itself. Enabled by default on macOS, disabled by default on Windows and\n Li... | 2023-10-13T10:00:44 |
rust-lang/rust | 40a3ca1189940ad1805c8deb3ba60744fa16dc57 | 5d04477ea8118ba54d9ce402848dda19a41d61eb | fix: remove unused source span | [
{
"path": "src/librustdoc/html/render/mod.rs",
"patch": "@@ -2779,46 +2779,12 @@ fn render_call_locations<W: fmt::Write>(\n let needs_expansion = line_max - line_min > NUM_VISIBLE_LINES;\n let locations_encoded = serde_json::to_string(&line_ranges).unwrap();\n \n- let source_map = tcx... | 2026-02-15T14:01:01 |
vercel/next.js | f79cd752e3dea17562399d3760a8f15c923e58b7 | 0bd7423844e218b19537880a7fa4314749fdf57d | Turbopack: patch sourcemap crate (#82641)
The source content was somethings incorrect with scope hoisting on Turbopack:
<img width="2018" height="721" alt="image" src="https://github.com/user-attachments/assets/e2e1bf1c-2a84-4acb-8388-a809670b4902" />
Fix is in https://github.com/swc-project/swc-sourcemap/pull/7 | [
{
"path": "Cargo.lock",
"patch": "@@ -8246,8 +8246,7 @@ dependencies = [\n [[package]]\n name = \"swc_sourcemap\"\n version = \"9.3.3\"\n-source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"3cd6e0cad02163875258edaf9ae6004e2526be137bdde6a46c540515615949b1\"\n+source = \"git+http... | 2025-08-14T12:02:28 |
golang/go | db3e02994c98f1d6dc00f7df807579c4619885c7 | db55b83ce437577c0738f56808853b078d656a0b | runtime/trace: fix flaky test for SetMinAge
This change fixes the flaky test which expects setting SetMinAge to a
small ammount. It expects two sync events but should realistically
expect up to 3.
Change-Id: Ibd02fe55ebca99eb880025eb968fcebae9cb09c9
Reviewed-on: https://go-review.googlesource.com/c/go/+/675597
Review... | [
{
"path": "src/runtime/trace/flightrecorder_test.go",
"patch": "@@ -170,7 +170,7 @@ func TestFlightRecorderLog(t *testing.T) {\n \t}\n }\n \n-func TestFlightRecorderOneGeneration(t *testing.T) {\n+func TestFlightRecorderGenerationCount(t *testing.T) {\n \ttest := func(t *testing.T, fr *trace.FlightRecorder)... | 2025-05-22T17:33:28 |
electron/electron | 344f8fd384e6cbb8344bdcbde05cd36b62909d56 | 592a30aa0bdee49c8e76ac278a76fa443831e565 | chore: formally deprecate `gpu-process-crashed` event (#40169) | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -103,6 +103,19 @@ win.webContents.on('render-process-gone', (event, details) => { /* ... */ })\n webview.addEventListener('render-process-gone', (event) => { /* ... */ })\n ```\n \n+### Deprecated: `gpu-process-crashed` event on `app`\n+\n+The `gpu-process-... | 2023-10-12T18:53:52 |
facebook/react | fef30c2e0403e0c6986904be89fcd01e665866ee | 62a9c7db185b0852fccd0e48797a3de05520f120 | Fix crash running `yarn flags --sort flag` (#28344) | [
{
"path": "scripts/flags/flags.js",
"patch": "@@ -318,11 +318,15 @@ for (const flag of allFlagsUniqueFlags) {\n let sorted = table;\n if (isDiff || argv.sort) {\n const sortChannel = argToHeader(isDiff ? argv.diff[0] : argv.sort);\n- sorted = Object.fromEntries(\n- Object.entries(table).sort(([, rowA]... | 2024-02-17T14:28:35 |
rust-lang/rust | 88f0ac34dce0e0d21da576aa111ce3b7d66bfafc | ce0bf0b22b646bacf91f73393483f684a44848ca | Fix const normalization for generic const items with trait assoc consts | [
{
"path": "compiler/rustc_trait_selection/src/traits/query/normalize.rs",
"patch": "@@ -376,10 +376,14 @@ impl<'a, 'tcx> QueryNormalizer<'a, 'tcx> {\n // `tcx.normalize_canonicalized_projection` may normalize to a type that\n // still has unevaluated consts, so keep normalizing here if that'... | 2026-02-07T09:51:44 |
vercel/next.js | 3c142be74c73a675c24e12e8c7e39c33162d07a0 | 4a3383a25d3b7a17bdb4bd2c748c80834f1f497a | Turbopack: fix edge function name (#82617)
Edge functions with route `/` had `"name": "/"` in the `middleware-manifest.json`. When deploying to Vercel, this wouldn't work as the Vercel builder turned that into `"name": ""`.
For the root function, Webpack emits a name like `"app/page"` or `"pages/index"`.
This aligns T... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -34,7 +34,10 @@ use next_core::{\n },\n next_server_utility::{NEXT_SERVER_UTILITY_MERGE_TAG, NextServerUtilityTransition},\n parse_segment_config_from_source,\n- util::{NextRuntime, module_styles_rule_condition, styles_rule_condition},\n+ ... | 2025-08-14T07:22:38 |
golang/go | db55b83ce437577c0738f56808853b078d656a0b | aec96d686be16fda519f6fd4a6e3bbfe3454c0b9 | doc: fix TBD mark
Change-Id: I2133e3c62b4de0cec08eeb120d593c644643a62c
Reviewed-on: https://go-review.googlesource.com/c/go/+/675755
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-sc... | [
{
"path": "doc/next/5-toolchain.md",
"patch": "@@ -38,7 +38,7 @@ successfully in Go 1.25. If this change is affecting your code, the solution is\n the non-nil error check earlier in your code, preferably immediately after\n the error-generating statement.\n \n-<!-- CLs 653856, 657937, 663795, TBD 664299 -->... | 2025-05-22T22:17:37 |
electron/electron | 3c31246343b3b4e9457d4672eebe46d64c673d0a | 7ab2a821669d4ce603a118b904f68e342ef3d807 | fix: store portal restore token under the right source ID (#40098)
XDG Desktop Portal provides restore tokens to restore a previously
selected PipeWire stream instead of prompting the user again. This
restore token is single use only and it has to be replaced when the
stream is completed/stopped.
BaseCapturerPip... | [
{
"path": "patches/webrtc/.patches",
"patch": "@@ -1,3 +1,4 @@\n fix_fallback_to_x11_capturer_on_wayland.patch\n fix_mark_pipewire_capturer_as_failed_after_session_is_closed.patch\n fix_check_pipewire_init_before_creating_generic_capturer.patch\n+pipewire_capturer_make_restore_tokens_re-usable_more_than_one... | 2023-10-12T11:17:27 |
rust-lang/rust | 9fb9225cf498b6f215502df4bf0023809c2f3056 | 75b9d89c68a4a92758349272aa4e35a8eb7a6708 | Disable debug_assert_not_in_new_nodes for multiple threads | [
{
"path": "compiler/rustc_middle/src/dep_graph/graph.rs",
"patch": "@@ -9,7 +9,7 @@ use rustc_data_structures::fx::{FxHashMap, FxHashSet};\n use rustc_data_structures::profiling::QueryInvocationId;\n use rustc_data_structures::sharded::{self, ShardedHashMap};\n use rustc_data_structures::stable_hasher::{Has... | 2026-02-15T11:41:46 |
facebook/react | 6a44f352ecdfa93949cade1d2e74755e7d7e9aaa | ef72271c2d1234c9d1e1358f8083021089a50faa | Consume the RSC stream twice in the Flight fixture (#28353)
We have an unresolved conflict where the Flight client wants to execute
inside Fizz to emit side-effects like preloads (which can be early) into
that stream. However, the FormState API requires the state to be passed
at the root, so if you're getting that ... | [
{
"path": "fixtures/flight/server/global.js",
"patch": "@@ -37,6 +37,7 @@ const React = require('react');\n \n const {renderToPipeableStream} = require('react-dom/server');\n const {createFromNodeStream} = require('react-server-dom-webpack/client');\n+const {PassThrough} = require('stream');\n \n const app ... | 2024-02-16T23:25:09 |
vercel/next.js | 3c9c995985a7631199b4ef4c57e4bd5bddfa9dd1 | 1b821389dce73a0e468dbb84318b91e41475b49f | docs: fix typos (#82503)
## Summary
Fix typos and spelling errors in various MDX documentation files to
improve clarity and consistency.
Documentation:
- Standardize 'cacheable' spelling across self-hosting guide
- Correct 'potentionally' to 'potentially' in image component references
- Fix 'unecessary' to 'unnecess... | [
{
"path": "docs/01-app/02-guides/self-hosting.mdx",
"patch": "@@ -215,7 +215,7 @@ module.exports = {\n \n ## Usage with CDNs\n \n-When using a CDN in front on your Next.js application, the page will include `Cache-Control: private` response header when dynamic APIs are accessed. This ensures that the result... | 2025-08-13T22:28:28 |
nodejs/node | 14b53df33cdb4c0498be6fa583a757b7dc4ffd4d | 5ff9b072b2346b4c2220fd67e88123f02ceee751 | doc: fix unordered error anchors
PR-URL: https://github.com/nodejs/node/pull/55242
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -1295,18 +1295,20 @@ added: v16.7.0\n \n When using [`fs.cp()`][], `src` or `dest` pointed to an invalid path.\n \n-<a id=\"ERR_FS_CP_FIFO_PIPE\"></a>\n+<a id=\"ERR_HTTP_BODY_NOT_ALLOWED\"></a>\n \n ### `ERR_HTTP_BODY_NOT_ALLOWED`\n \n An error is thrown when writ... | 2024-10-02T18:45:39 |
golang/go | aec96d686be16fda519f6fd4a6e3bbfe3454c0b9 | c684dfcb8a8fe38a8414bfd07b94e9995e5cd308 | doc: mention stack allocation of variable-sized make calls
Also mention the bisect tool and flag used to track down
incorrect uses.
Change-Id: Id36a236e1bb2733b8611b22a5b16916e7d9f5522
Reviewed-on: https://go-review.googlesource.com/c/go/+/666075
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Keith ... | [
{
"path": "doc/next/5-toolchain.md",
"patch": "@@ -38,6 +38,18 @@ successfully in Go 1.25. If this change is affecting your code, the solution is\n the non-nil error check earlier in your code, preferably immediately after\n the error-generating statement.\n \n+<!-- CLs 653856, 657937, 663795, TBD 664299 --... | 2025-04-16T20:50:44 |
electron/electron | 7ab2a821669d4ce603a118b904f68e342ef3d807 | 5c821d33791345446eef3a90a6bea9c920d001d8 | chore: bump node to v18.18.1 (main) (#40174)
* chore: bump node in DEPS to v18.18.1
* Revert "deps: upgrade to libuv 1.46.0"
https://github.com/nodejs/node/pull/50036
* chore: fixup patch indices
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '119.0.6045.0',\n 'node_version':\n- 'v18.18.0',\n+ 'v18.18.1',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2023-10-12T07:53:37 |
rust-lang/rust | 7733f65ff9fbd5b033e5ad012250f0fc4bee44ad | 646418838fc494822f4814e6fd58a59f08d3575a | fix: use `ExprIsRead::Yes` for rhs of ordinary assignments
the rhs of an ordinary assignment `x = *never_ptr` was inferred with
`ExprIsRead::No`, which prevented `NeverToAny` coercion for place
expressions of type `!`. this caused false type mismatches and missing
divergence detection. the destructuring assignment pat... | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/expr.rs",
"patch": "@@ -751,7 +751,7 @@ impl<'db> InferenceContext<'_, 'db> {\n \n if let Some(lhs_ty) = lhs_ty {\n self.write_pat_ty(target, lhs_ty);\n- self.infer_expr_coerce(value, &Expectati... | 2026-02-15T11:37:51 |
facebook/react | d6406d8360c5d90fc777dfd1a720ba235c5a8a12 | 9c419dfd804efa4646784120790e606bb74bd905 | Validate hook calls in object methods
Adds some test cases for hook calls in object methods. Initially we didn't catch
these because InferTypes doesn't actually visit ObjectMethod bodies. Once we fix
that we correctly reject these examples. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/TypeInference/InferTypes.ts",
"patch": "@@ -69,7 +69,10 @@ function apply(func: HIRFunction, unifier: Unifier): void {\n const { lvalue, value } = instr;\n lvalue.identifier.type = unifier.get(lvalue.identifier.type);\n \n- if (valu... | 2024-02-16T19:27:52 |
vercel/next.js | 1b821389dce73a0e468dbb84318b91e41475b49f | e771609a7afff7139e279a9374c4a9c4988440ca | fix: use in operator to check dev indicator option when its obj (#82629) | [
{
"path": "packages/next/src/server/config.ts",
"patch": "@@ -585,7 +585,8 @@ function assignDefaults(\n \n // Handle buildActivityPosition migration (needs to be done after merging with defaults)\n if (\n- result.devIndicators !== false &&\n+ result.devIndicators &&\n+ typeof result.devIndicat... | 2025-08-13T22:24:16 |
golang/go | c684dfcb8a8fe38a8414bfd07b94e9995e5cd308 | bfbf736564925fd91701a08395f903955cb4cbc7 | runtime: don't spin looking for a tiny alloc address with asan or race
CL 674655 modified the checkfinalizers test to spin looking for an
appropriate address to trip the detector, but this doesn't work with
ASAN or in race mode, which both disable the tiny allocator.
Fixes #73834.
Change-Id: I27416da1f29cd9532716985... | [
{
"path": "src/runtime/testdata/testprog/checkfinalizers.go",
"patch": "@@ -5,6 +5,8 @@\n package main\n \n import (\n+\t\"internal/asan\"\n+\t\"internal/race\"\n \t\"runtime\"\n \t\"runtime/debug\"\n \t\"unsafe\"\n@@ -39,20 +41,25 @@ func DetectFinalizerAndCleanupLeaks() {\n \t\t**cNoLeak = x\n \t}, int(0)... | 2025-05-22T00:29:14 |
nodejs/node | 28ffa4b7512bda51fe7245cf7d60b92fc5672484 | 834316d541246068f2924594b6ad1628efd9f84b | build: fix not valid json in coverage
PR-URL: https://github.com/nodejs/node/pull/55179
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> | [
{
"path": ".nycrc",
"patch": "@@ -4,7 +4,7 @@\n \"test/**\",\n \"tools/**\",\n \"benchmark/**\",\n- \"deps/**\",\n+ \"deps/**\"\n ],\n \"reporter\": [\n \"html\",",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2024-09-30T20:27:55 |
electron/electron | 5c821d33791345446eef3a90a6bea9c920d001d8 | 3e70692e4b3044a10e5b1e5148a97a3f62bec4cb | fix: `webContents.capturePage()` for hidden windows on Windows/Linux (#39730) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -469,9 +469,16 @@ base::IDMap<WebContents*>& GetAllWebContents() {\n void OnCapturePageDone(gin_helper::Promise<gfx::Image> promise,\n base::ScopedClosureRunner capture_handle,\n const SkBi... | 2023-10-12T07:35:23 |
facebook/react | a9cc32511a12c261ee719e5383818182800d6af4 | 2ba1b7856975fb350ff1cabe575e6364cc6e8465 | stash the component stack on the thrown value and reuse (#25790)
ErrorBoundaries are currently not fully composable. The reason is if you
decide your boundary cannot handle a particular error and rethrow it to
higher boundary the React runtime does not understand that this throw is
a forward and it recreates the co... | [
{
"path": "packages/react-reconciler/src/ReactCapturedValue.js",
"patch": "@@ -11,8 +11,10 @@ import type {Fiber} from './ReactInternalTypes';\n \n import {getStackByFiberInDevAndProd} from './ReactFiberComponentStack';\n \n+const CapturedStacks: WeakMap<any, string> = new WeakMap();\n+\n export type Captur... | 2024-02-16T04:44:44 |
vercel/next.js | e771609a7afff7139e279a9374c4a9c4988440ca | 925f8a9446ca67551324825033febea3accd6419 | Fix generate-metadata.mdx typo (#82624)
<!-- 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
### Improv... | [
{
"path": "docs/01-app/03-api-reference/04-functions/generate-metadata.mdx",
"patch": "@@ -889,7 +889,7 @@ export const metadata = {\n \n ### `facebook`\n \n-You can connect a Facebook app or Facebook account to you webpage for certain Facebook Social Plugins [Facebook Documentation](https://developers.face... | 2025-08-13T21:58:12 |
golang/go | bfbf736564925fd91701a08395f903955cb4cbc7 | b1f259b1b42f055863a67492e7815ec752eae56b | cmd/compile: do not shapify when reading reshaping expr
Fixes #71184
Change-Id: I22e7ae5203311e86a90502bfe155b0597007887d
Reviewed-on: https://go-review.googlesource.com/c/go/+/641955
Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -49,6 +49,9 @@ type pkgReader struct {\n \t// but bitwise inverted so we can detect if we're missing the entry\n \t// or not.\n \tnewindex []index\n+\n+\t// indicates whether the data is reading during reshaping.\n+\treshaping bool\n }\n \n ... | 2025-01-10T05:49:59 |
nodejs/node | 3111ed7011e03eef7ccf7a27d0d7657e6a4e1cc4 | bbf08c6a1bef277e59f1a03ea557f05a0a949d04 | stream: handle undefined chunks correctly in decode stream
Align TextDecoderStream behavior with WPT requirements by treating
undefined chunks as errors. This change ensures that TextDecoderStream
properly handles unexpected chunk types and throws an error when
receiving undefined input.
This update addresses the fai... | [
{
"path": "lib/internal/webstreams/encoding.js",
"patch": "@@ -20,6 +20,7 @@ const { customInspect } = require('internal/webstreams/util');\n \n const {\n codes: {\n+ ERR_INVALID_ARG_TYPE,\n ERR_INVALID_THIS,\n },\n } = require('internal/errors');\n@@ -133,6 +134,9 @@ class TextDecoderStream {\n ... | 2024-09-30T17:54:43 |
facebook/react | 2ba1b7856975fb350ff1cabe575e6364cc6e8465 | fea900e45447214ddd6ef69076ab7e38433b5ffd | Downgrade pmmmwh/react-refresh-webpack-plugin in the Flight fixture (#28352)
The newer version triggers an error due to require() not being compiled.
This was upgraded in #27328. I'm not sure why that was needed. Maybe it
was just because it was allowed by the caret and something else upgraded
but I haven't been ... | [
{
"path": "fixtures/flight/package.json",
"patch": "@@ -7,7 +7,7 @@\n \"@babel/core\": \"^7.16.0\",\n \"@babel/plugin-proposal-private-property-in-object\": \"^7.18.6\",\n \"@babel/preset-react\": \"^7.22.5\",\n- \"@pmmmwh/react-refresh-webpack-plugin\": \"^0.5.3\",\n+ \"@pmmmwh/react-refr... | 2024-02-16T03:23:30 |
electron/electron | 3e70692e4b3044a10e5b1e5148a97a3f62bec4cb | c892c61b901b760c83c81e21b2922b84c68e42ac | chore: formally deprecate `crashed` and `renderer-process-crashed` events (#40089) | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -75,6 +75,34 @@ console.log(app.runningUnderRosettaTranslation)\n console.log(app.runningUnderARM64Translation)\n ```\n \n+### Deprecated: `renderer-process-crashed` event on `app`\n+\n+The `renderer-process-crashed` event on `app` has been deprecated.\n+Us... | 2023-10-10T23:49:01 |
facebook/react | 530f2c293d6b104c6ada1f2328fa7372be502c5f | ac8971275021c3488a03cf32620c2d563468770b | Add test fixture showing invalid location
Add test fixture showing invalid location
The error should be on the node mutating the output, not in the read location. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.invalid-mutation-in-closure.expect.md",
"patch": "@@ -0,0 +1,28 @@\n+\n+## Input\n+\n+```javascript\n+function useInvalidMutation(options) {\n+ function test() {\n+ foo(options.foo); // error should not point on... | 2024-02-16T00:00:21 |
vercel/next.js | 925f8a9446ca67551324825033febea3accd6419 | fdbe67678bc9ec8f885f76b1035c1847b829b008 | fix: find root dir on fs root (#82590)
Attempt at fixing from our side:
https://github.com/vercel/next.js/issues/82577
Rather, the issue is that when the project is at the root of the file
system - `findRootDir` loops indefinitely, and we keep pushing to the
lockFiles found.
I also noticed the warning claims we use ... | [
{
"path": "packages/next/src/lib/find-root.ts",
"patch": "@@ -23,21 +23,25 @@ export function findRootDir(cwd: string) {\n \n const lockFiles = [lockFile]\n while (true) {\n- const nextDir = dirname(dirname(lockFiles[lockFiles.length - 1]))\n- const newLockFile = findRootLockFile(nextDir)\n+ co... | 2025-08-13T21:33:18 |
nodejs/node | 33bbf3751b9f6a516f605cb7088adb786a3f8cfb | 65fbc95949cd129533c5106e095842451a87930a | src: fixup Error.stackTraceLimit during snapshot building
When V8 creates a context for snapshot building, it does not
install Error.stackTraceLimit. As a result, error.stack would
be undefined in the snapshot builder script unless users
explicitly initialize Error.stackTraceLimit, which may be
surprising.
This patch... | [
{
"path": "lib/internal/main/mksnapshot.js",
"patch": "@@ -23,17 +23,18 @@ const { emitWarningSync } = require('internal/process/warning');\n const {\n initializeCallbacks,\n namespace: {\n- addSerializeCallback,\n addDeserializeCallback,\n isBuildingSnapshot,\n },\n+ addAfterUserSerialize... | 2024-09-25T12:51:41 |
golang/go | b1f259b1b42f055863a67492e7815ec752eae56b | 155ba387a93fddbd6ced288fe539a55c31b2597e | cmd/compile: fix ICE with recursive alias type parameter
CL 585399 fixed an initialization loop during IR contruction that
involving alias type, by avoiding publishing alias declarations until
the RHS type expression has been constructed.
There's an assertion to ensure that the alias's type must be the same
during th... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -762,7 +762,7 @@ func (pr *pkgReader) objIdxMayFail(idx index, implicits, explicits []*types.Type\n \t\tif hack {\n \t\t\tif sym.Def != nil {\n \t\t\t\tname = sym.Def.(*ir.Name)\n-\t\t\t\tassert(name.Type() == typ)\n+\t\t\t\tassert(types.Ide... | 2025-04-25T12:13:52 |
electron/electron | 86df4db6f10afbe5872f8ecbcbfe6191374fc1f7 | 563c370d51f302b6d4a7fee8b47e1cc3e1ca2fe3 | fix: crash when calling non-reentrant function in `loadURL` (#40143) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -33,6 +33,7 @@\n #include \"components/security_state/content/content_utils.h\"\n #include \"components/security_state/core/security_state.h\"\n #include \"content/browser/renderer_host/frame_tree_node.h\" // nogncheck\n+#include \"co... | 2023-10-10T10:46:04 |
facebook/react | ac8971275021c3488a03cf32620c2d563468770b | d3bca420c049e600e176d1f1b58e17d93ec593aa | Add code frame to snap errors
Add code frame to snap errors
This should make it easier (possible) to see if errors point at the right lines.
No idea why I had to add 1 to the column, you'd think it's all babel-standard
(whatever it is) and there wouldn't be off by one errors, but I'm not quite in
the mood to de... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error._todo.computed-lval-in-destructure.expect.md",
"patch": "@@ -15,7 +15,13 @@ function Component(props) {\n ## Error\n \n ```\n-[ReactForget] Todo: (BuildHIR::lowerAssignment) Handle computed properties in ObjectPatte... | 2024-02-15T23:42:21 |
golang/go | 155ba387a93fddbd6ced288fe539a55c31b2597e | ef3bb638de442dc41d1e34a32e893d2041731e8c | cmd/doc: properly set GOPROXY to avoid deprecation checks
This change fixes a bug that was introduced in CL 675155. Instead of
doing the two step download and run with GOPROXY=off, do the run with
GOPROXY=<download cache>:$GOPROXY, so that we use the previously
downloaded version of pkgsite as the latest.
Fixes #7383... | [
{
"path": "src/cmd/doc/main.go",
"patch": "@@ -258,11 +258,22 @@ func doPkgsite(urlPath string) error {\n \t// exit before exiting ourselves.\n \tsignal.Ignore(signalsToIgnore...)\n \n+\t// Prepend the local download cache to GOPROXY to get around deprecation checks.\n+\tenv := os.Environ()\n+\tvars, err :=... | 2025-05-22T16:40:51 |
nodejs/node | 65fbc95949cd129533c5106e095842451a87930a | 371ed85e4e1d02c63227d17f226e5301f4a8ef61 | src: parse --stack-trace-limit and use it in --trace-* flags
Previously, --trace-exit and --trace-sync-io doesn't take care
of --stack-trace-limit and always print a stack trace with maximum
size of 10. This patch parses --stack-trace-limit during
initialization and use the value in --trace-* flags.
PR-URL: https://g... | [
{
"path": "src/env-inl.h",
"patch": "@@ -433,6 +433,10 @@ inline double Environment::get_default_trigger_async_id() {\n return default_trigger_async_id;\n }\n \n+inline int64_t Environment::stack_trace_limit() const {\n+ return isolate_data_->options()->stack_trace_limit;\n+}\n+\n inline std::shared_ptr<... | 2024-09-25T12:36:52 |
vercel/next.js | f88de0d8f1b8ec508b7cfef6abfaaa32e72e690c | 7a6ee79ae17a0870bd8f3e66818e0bb95efa1f1d | feat: type guard file generation (#81400)
## Overview
Generates `.next/types/validator.ts` - a single TypeScript file that
validates all route exports using the `satisfies` operator. Replaces the
old `next-types-plugin` webpack plugin.
## Why needed
- **Turbopack compatibility**: Old webpack plugin didn't work with
T... | [
{
"path": "packages/next/src/build/entries.ts",
"patch": "@@ -76,37 +76,36 @@ import type { MappedPages } from './build-context'\n import { PAGE_TYPES } from '../lib/page-types'\n import { isAppPageRoute } from '../lib/is-app-page-route'\n import { recursiveReadDir } from '../lib/recursive-readdir'\n-import... | 2025-08-13T20:21:51 |
electron/electron | 47beca1d2af622ffe33a0c5261f1e54cae40cdbb | 925e4f7d7474204095b1e12bc8c281c4e7a63852 | docs: fix typo in session docs (#40138)
Fix typos for doc
Signed-off-by: zhangdiandian <1635468471@qq.com> | [
{
"path": "docs/api/session.md",
"patch": "@@ -1050,7 +1050,7 @@ To clear the handler, call `setDevicePermissionHandler(null)`.\n This handler can be used to provide default permissioning to devices without first calling for permission\n to devices (eg via `navigator.hid.requestDevice`). If this handler is... | 2023-10-10T10:43:18 |
facebook/react | d3bca420c049e600e176d1f1b58e17d93ec593aa | 5142affc26d61aa32f2088541e6c93f08f21a79f | Opt out react-forget-runtime from being Forgotten
This caused a build error when Forget was used in an Expo app as the
react-forget-runtime package was itself being compiled with Forget. This broke
Metro as metro serializes modules to iifes, but the import syntax that was
injected by the useMemoCachePolyfill flag ... | [
{
"path": "compiler/packages/react-forget-runtime/src/index.ts",
"patch": "@@ -5,6 +5,8 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n+\"use no forget\";\n+\n import invariant from \"invariant\";\n import * as React from \"react\";\n \n@@ -24,7 +26,6 @@ const $empty = Symbol.for(... | 2024-02-15T22:44:44 |
golang/go | a0dc7bf08481d906cb7d65d86bb347a583d84fd0 | 53b9eae3875122a65b387adf18c5cb7a67e824d7 | cmd/compile: fix ICE when transforming loopvar
When transforming for loop variables, the compiler does roughly
following steps:
(1) prebody = {z := z' for z in leaked}
...
(4) init' = (init : s/z/z' for z in leaked)
However, the definition of z is not updated to `z := z'` statement,
causing Reassign... | [
{
"path": "src/cmd/compile/internal/loopvar/loopvar.go",
"patch": "@@ -305,6 +305,7 @@ func ForCapture(fn *ir.Func) []VarAndLoop {\n \t\t\t\t\t\tas := ir.NewAssignStmt(x.Pos(), z, tz)\n \t\t\t\t\t\tas.Def = true\n \t\t\t\t\t\tas.SetTypecheck(1)\n+\t\t\t\t\t\tz.Defn = as\n \t\t\t\t\t\tpreBody.Append(as)\n \t... | 2025-05-22T11:06:27 |
electron/electron | a31deea1ba28335fb20f936a6dfd59b407ddca45 | 24bc0ee5c71a0ebf467c14ba0a11e872420cce96 | ci: fixup diagnose_goma_log.py call (#40131) | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -754,8 +754,8 @@ step-show-goma-stats: &step-show-goma-stats\n command: |\n set +e\n set +o pipefail\n- $GOMA_DIR/goma_ctl.py stat\n- $GOMA_DIR/diagnose_goma_log.py\n+ python3 $GOMA_DIR/goma_ctl.py stat\n+ python3 $GOMA_... | 2023-10-09T13:19:21 |
nodejs/node | 0f02810fc940ca16dd4e3794f6e96dd5c0eb6ba0 | 99e0d0d2186065aa8ca9ab7cd94e1637bb166220 | doc: fix link in `test/README.md`
PR-URL: https://github.com/nodejs/node/pull/55165
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/README.md",
"patch": "@@ -38,7 +38,7 @@ For the tests to run on Windows, be sure to clone Node.js source code with the\n | `tick-processor` | No | Tests for the V8 tick processor integration.[^4] |\n | `v8-updates` | No... | 2024-09-30T08:50:29 |
vercel/next.js | b6d2c365791e6557df977d828648e5c8b6a928af | 39fb1ea8d72d06a504f6857beb44ee39d565e977 | [turbopack] Update Turbopack build warning message (#82591)
Drop the scare text about not running turbopack in production. Instead clarify that builds are beta and direct people to our documentation site.
For example:
 {\n- warnAboutTurbopackBuilds(loadedConfig)\n+ warnAboutTurbopackBuilds()\n }\n \n ... | 2025-08-13T17:06:36 |
facebook/react | 92686722cae09ebc3dd5f4aec61b0d067fba1203 | 0745e6bee9edb9842dfa7efa6f9835e5be6d8b98 | [Flight] Fix `reference` param type in `registerServerReference` (#27688)
The `reference` that is passed into `registerServerReference` can be a
plain function. It does not need to have the three additonal properties
of a `ServerRefeference`. In fact, adding these properties (plus `bind`)
is precisely what `registe... | [
{
"path": "packages/react-server-dom-esm/src/ReactFlightESMReferences.js",
"patch": "@@ -63,8 +63,8 @@ function bind(this: ServerReference<any>): any {\n return newFn;\n }\n \n-export function registerServerReference<T>(\n- reference: ServerReference<T>,\n+export function registerServerReference<T: Funct... | 2024-02-15T21:09:25 |
golang/go | 53b9eae3875122a65b387adf18c5cb7a67e824d7 | 27ff0f249c33fdfa9c8e17a0367b46561236f36c | runtime: use the immortal weak handle map for sbrk mode
Currently weak pointers break in sbrk mode. We can just use the immortal
weak handle map for weak pointers in this case, since nothing is ever
freed.
Fixes #69729.
Change-Id: Ie9fa7e203c22776dc9eb3601c6480107d9ad0c99
Reviewed-on: https://go-review.googlesource.... | [
{
"path": "src/runtime/mheap.go",
"patch": "@@ -2545,6 +2545,16 @@ func gcWakeAllStrongFromWeak() {\n \n // Retrieves or creates a weak pointer handle for the object p.\n func getOrAddWeakHandle(p unsafe.Pointer) *atomic.Uintptr {\n+\tif debug.sbrk != 0 {\n+\t\t// debug.sbrk never frees memory, so it'll nev... | 2025-05-20T20:56:46 |
electron/electron | 24bc0ee5c71a0ebf467c14ba0a11e872420cce96 | f5c177698ed8ad80c068d0f5788c8606e81d31c2 | test: fix "crashed event does not crash main process when destroying WebContents in it" (#40135) | [
{
"path": "spec/api-web-contents-spec.ts",
"patch": "@@ -2333,13 +2333,13 @@ describe('webContents module', () => {\n describe('crashed event', () => {\n afterEach(() => deprecate.setHandler(null));\n \n- it('does not crash main process when destroying WebContents in it', async () => {\n+ it('do... | 2023-10-09T07:56:48 |
nodejs/node | 22b4b7c626a175e58df0d6638f677461334d0fa1 | 4062b3fb4357a0e975d34a94c885d72796902271 | doc: fix typos
PR-URL: https://github.com/nodejs/node/pull/55066
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -5968,7 +5968,7 @@ See the [list of SSL OP Flags][] for details.\n </tr>\n <tr>\n <td><code>ENGINE_METHOD_PKEY_METHS</code></td>\n- <td>Limit engine usage to PKEY_METHDS</td>\n+ <td>Limit engine usage to PKEY_METHS</td>\n </tr>\n <tr>\n <td><... | 2024-09-29T13:15:15 |
vercel/next.js | 9542b8b03856413c9378160be7678949139c28f7 | 5fa0987aea78f594b46d03ce1c9e8c4963563372 | Docs/feedback round aug (#82549)
Closes:
https://linear.app/vercel/issue/DOC-4949/clarification-redirecting-in-server-actions-to-self,
https://linear.app/vercel/issue/DOC-4973/global-error-and-global-not-found-in-prod-checklist
Additionally addresses community confusion and feedback around Server
Functions initial cl... | [
{
"path": "docs/01-app/01-getting-started/08-updating-data.mdx",
"patch": "@@ -172,6 +172,8 @@ There are two main ways you can invoke a Server Function:\n 1. [Forms](#forms) in Server and Client Components\n 2. [Event Handlers](#event-handlers) and [useEffect](#useeffect) in Client Components\n \n+> **Good ... | 2025-08-13T10:17:14 |
facebook/react | 2e470a788e359e34feeadb422daaff046baf66cc | a7144f297c1c6fe457ca30ce6a211ab59feac11e | [Fizz] Align recoverable error serialization in dev mode (#28340)
Same as #28327 but for Fizz.
One thing that's weird about this recoverable error is that we don't
send the regular stack for it, just the component stack it seems. This
is missing some potential information and if we move toward integrated
since s... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -85,11 +85,11 @@ describe('ReactFlight', () => {\n );\n let expectedDigest = this.props.expectedMessage;\n if (\n- expectedDigest.startsWith('Error: {') ||\n- expectedDigest.... | 2024-02-15T01:15:59 |
golang/go | 27ff0f249c33fdfa9c8e17a0367b46561236f36c | d2db2372a2fd79d539719fa13422d83d6fdfcda1 | cmd/compile/internal/ssa: eliminate string copies for calls to unique.Make
unique.Make always copies strings passed into it, so it's safe to not
copy byte slices converted to strings either. Handle this just like map
accesses with string(b) as keys.
This CL only handles unique.Make(string(b)), not nested cases like
u... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -2832,3 +2832,14 @@\n && clobber(sbts)\n && clobber(key)\n => (StaticLECall {f} [argsize] typ_ map_ (StringMake <typ.String> ptr len) mem)\n+\n+// Similarly to map lookups, also handle unique.Make for strings, which unique.Make wi... | 2025-05-13T03:39:54 |
electron/electron | f5c177698ed8ad80c068d0f5788c8606e81d31c2 | 737e3de3fa34acd9b9222a898de44cf233ca9575 | fix: remove EarlyMallocZoneRegistration call (#40128) | [
{
"path": "BUILD.gn",
"patch": "@@ -916,10 +916,7 @@ if (is_mac) {\n assert(defined(invoker.helper_name_suffix))\n \n output_name = electron_helper_name + invoker.helper_name_suffix\n- deps = [\n- \":electron_framework+link\",\n- \"//base/allocator:early_zone_registration_appl... | 2023-10-09T00:43:51 |
nodejs/node | 4062b3fb4357a0e975d34a94c885d72796902271 | e973c3e94be881ca751f05ee2eb4016354b91012 | buffer: coerce extrema to int in `blob.slice`
PR-URL: https://github.com/nodejs/node/pull/55141
Fixes: https://github.com/nodejs/node/issues/55139
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/blob.js",
"patch": "@@ -54,6 +54,7 @@ const {\n lazyDOMException,\n } = require('internal/util');\n const { inspect } = require('internal/util/inspect');\n+const { convertToInt } = require('internal/webidl');\n \n const {\n codes: {\n@@ -239,6 +240,12 @@ class Blob {\n slice(st... | 2024-09-29T09:51:10 |
vercel/next.js | 61f0853021e078eed39d315719ec0c848843fdcd | 6881843ac0c4c7d9fc1fdb55fe51bced1abca914 | [turbopack] Fix a crash under turbopackPersistentCaching (#82592)
Address a crash found at head when testing caching while switching back and forth from `dev` and `build`.
```
thread '<unnamed>' panicked at turbopack/crates/turbo-persistence/src/db.rs:798:17:
attempt to subtract with overflow
stack backtrace:
0:... | [
{
"path": "turbopack/crates/turbo-persistence/src/compaction/selector.rs",
"patch": "@@ -200,10 +200,13 @@ fn total_duplication_size(duplication: &IntervalMap<Option<DuplicationInfo>>) ->\n \n type MergeSegments = Vec<SmallVec<[usize; 1]>>;\n \n+/// Computes the set of merge segments that should be run to c... | 2025-08-13T05:14:03 |
facebook/react | 21c563157003ded36fcc54589a6075d2dd157c90 | ad5a27239392d02ffec168cdbffc582ee1cb3969 | [be] Prune implicit breaks when flattening unused labels
A labeled block will generally end with an implicit break out of the label.
However, if there are no _explicit_ breaks to the label, we'll end up with a
ReactiveFunction along the lines of:
```
bb1: {
...instructions with no explicit `break bb1`...
(i... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PrintReactiveFunction.ts",
"patch": "@@ -132,6 +132,9 @@ function writeReactiveInstruction(\n break;\n }\n case \"terminal\": {\n+ if (instr.label !== null) {\n+ writer.write(`bb${instr.label}: `);\n+ }\... | 2024-02-14T23:36:40 |
golang/go | 5e6a868b28d3e7a71fa328c18ff5e93d72a1fb67 | 8bf816ae6879fa4537cc6e6e292769df2d7dbb78 | cmd/compile, unique: model data flow of non-string pointers
Currently, hash/maphash.Comparable escapes its parameter if it
contains non-string pointers, but does not escape strings or types
that contain strings but no other pointers. This is achieved by a
compiler intrinsic.
unique.Make does something similar: it sto... | [
{
"path": "src/cmd/compile/internal/escape/call.go",
"patch": "@@ -84,15 +84,19 @@ func (e *escape) call(ks []hole, call ir.Node) {\n \t\t\targument(e.tagHole(ks, fn, param), arg)\n \t\t}\n \n-\t\t// hash/maphash.escapeForHash forces its argument to be on\n-\t\t// the heap, if it contains a non-string point... | 2025-05-21T18:33:13 |
nodejs/node | e973c3e94be881ca751f05ee2eb4016354b91012 | a5a946d8a5c8e9f871a93f000a56f0cd68116771 | lib: validate signals with interface converter
PR-URL: https://github.com/nodejs/node/pull/54965
Fixes: https://github.com/nodejs/node/issues/54962
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Revi... | [
{
"path": "lib/internal/abort_controller.js",
"patch": "@@ -43,12 +43,11 @@ const {\n } = require('internal/errors');\n const {\n converters,\n+ createInterfaceConverter,\n createSequenceConverter,\n } = require('internal/webidl');\n \n const {\n- validateAbortSignal,\n- validateAbortSignalArray,\n ... | 2024-09-17T11:48:37 |
electron/electron | 737e3de3fa34acd9b9222a898de44cf233ca9575 | 8b8fbd0408c95487afcee28fa18b2a8b2270f713 | chore: restore deprecate as an internal module (#40124)
* Revert "refactor: don't expose deprecate as an internal module (#35311)"
This reverts commit 8424779906ae33222764db9ed837f55115143e71.
* check crashed event warnings | [
{
"path": "filenames.auto.gni",
"patch": "@@ -142,6 +142,7 @@ auto_filenames = {\n ]\n \n sandbox_bundle_deps = [\n+ \"lib/common/api/deprecate.ts\",\n \"lib/common/api/native-image.ts\",\n \"lib/common/define-properties.ts\",\n \"lib/common/ipc-messages.ts\",\n@@ -247,11 +248,11 @@ auto_... | 2023-10-08T23:55:16 |
facebook/react | a7144f297c1c6fe457ca30ce6a211ab59feac11e | adadb8169e781ff645c61aa558dc901b1c2c97f4 | [Flight] Improve error message when it's not a real Error object (#28327)
Also deals with symbols. Alternative to #28312.
We currently always normalize rejections or thrown values into `Error`
objects. Partly because in prod it'll be an error object and you
shouldn't fork behavior on knowing the value outside a d... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -83,7 +83,16 @@ describe('ReactFlight', () => {\n ' builds to avoid leaking sensitive details. A digest property is included on this error instance which' +\n ' may provide additional details about ... | 2024-02-14T23:21:07 |
vercel/next.js | 7cc0ed1fba6badef4375b34c3769635773484eac | 9c9aaed5bb9338ef31b0517ccf0ab4414f2093d8 | Fix: Resolve <Head> PPR resume mismatch by search params (#82587)
The `key` prop on `<Head>` component differs during prerender and a PPR
resume because of search params being part of the key, causing the
resume to treat them as distinct components, hence the error\*. However,
it is necessary semantically to include s... | [
{
"path": "packages/next/src/client/components/app-router.tsx",
"patch": "@@ -474,8 +474,17 @@ function Router({\n //\n // The `key` is used to remount the component whenever the head moves to\n // a different segment.\n- const [headCacheNode, headKey] = matchingHead\n- head = <Head key={h... | 2025-08-13T00:51:34 |
golang/go | 7589e9604237ad94869c5803af3bf428f108fefa | edcde86990abd9d7336eee5115b63d8c0863a5dd | cmd/compile: fold negation into addition/subtraction on s390x
Fold negation into addition/subtraction and avoid double negation.
file before after Δ %
addr2line 3909260 3909204 -56 -0.001%
asm 6714513 6714505 -8 -0.000%
buildid 3680344 3679504 -840 -0.023%
cgo 6... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/S390X.rules",
"patch": "@@ -1188,6 +1188,8 @@\n // TODO: more of this\n (ADD x (NEG y)) => (SUB x y)\n (ADDW x (NEGW y)) => (SUBW x y)\n+(SUB x (NEG y)) => (ADD x y)\n+(SUBW x (NEGW y)) => (ADDW x y)\n (SUB x x) => (MOVDconst [0])\n (SUBW x x) => (MOVDconst [0])\... | 2025-05-16T17:55:12 |
facebook/react | a927040b7a67b2304ad484c903bb56e55f511b3b | 8a3def923bf88d23cc705a55416cd955e3dc169a | Add an optional validation to bail out on capitalized function calls
Some components stop being components over time and are used as regular
functions instead, but they may have lingering hook calls. Those hook calls make
it so the capitalized function calling them do not error (they appear to be a
function to exi... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts",
"patch": "@@ -72,6 +72,7 @@ import {\n validateContextVariableLValues,\n validateHooksUsage,\n validateMemoizedEffectDependencies,\n+ validateNoCapitalizedCalls,\n validateNoRefAccessInRender,\n validateNoSetState... | 2024-02-14T18:23:32 |
electron/electron | cff50ac65a9c6d4f53aa74570ea42859466c4469 | a55c163db02a3092226ba20731b08292404561d4 | fix: fix vibrancy applying without transparency on MacOS (#40109) | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -101,6 +101,11 @@ NativeWindow::NativeWindow(const gin_helper::Dictionary& options,\n options.Get(options::kTransparent, &transparent_);\n options.Get(options::kEnableLargerThanScreen, &enable_larger_than_screen_);\n options.Get(options::kTitleB... | 2023-10-06T18:57:26 |
vercel/next.js | 9c9aaed5bb9338ef31b0517ccf0ab4414f2093d8 | b1c08857cb2ece10cc373747031555ac8af7fb89 | fix router handling when setting a location response header (#82588)
When middleware sets a `Location` header on the response, we should not
assume that the target URL is the one we want to handle the request. We
only want to route to the underlying location header when a rewrite is
explicitly triggered rather than re... | [
{
"path": "packages/next/src/server/lib/router-utils/resolve-routes.ts",
"patch": "@@ -18,7 +18,10 @@ import { formatHostname } from '../format-hostname'\n import { toNodeOutgoingHttpHeaders } from '../../web/utils'\n import { isAbortError } from '../../pipe-readable'\n import { getHostname } from '../../..... | 2025-08-13T00:26:49 |
nodejs/node | a5a946d8a5c8e9f871a93f000a56f0cd68116771 | 27dab9d916697ea851ae54a648e39f7e67223ee6 | lib: implement interface converter in webidl
PR-URL: https://github.com/nodejs/node/pull/54965
Fixes: https://github.com/nodejs/node/issues/54962
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Review... | [
{
"path": "lib/internal/webidl.js",
"patch": "@@ -12,6 +12,7 @@ const {\n NumberMAX_SAFE_INTEGER,\n NumberMIN_SAFE_INTEGER,\n ObjectAssign,\n+ ObjectPrototypeIsPrototypeOf,\n SafeSet,\n String,\n SymbolIterator,\n@@ -20,6 +21,7 @@ const {\n \n const {\n codes: {\n+ ERR_INVALID_ARG_TYPE,\n ... | 2024-09-17T11:11:02 |
rust-lang/rust | 3a8a3c74f27ff22b2bbb11594bfe2fcbfd8698a7 | 5c13e0ced9213c883f2dea69dfccfa29da1c9dd7 | Remove resolved FIXME | [
{
"path": "src/tools/rust-analyzer/crates/ide-db/src/imports/merge_imports.rs",
"patch": "@@ -691,7 +691,6 @@ pub fn eq_attrs(\n attrs0: impl Iterator<Item = ast::Attr>,\n attrs1: impl Iterator<Item = ast::Attr>,\n ) -> bool {\n- // FIXME order of attributes should not matter\n let mut attrs0... | 2026-02-14T23:47:49 |
golang/go | edcde86990abd9d7336eee5115b63d8c0863a5dd | de457fc4ea50cc3ac9dd967161b8bc31b79a26dd | crypto,hash: add and implement hash.Cloner
Fixes #69521
Co-authored-by: qiulaidongfeng <2645477756@qq.com>
Change-Id: I6a6a465652f5ab7e6c9054e826e17df2b8b34e41
Reviewed-on: https://go-review.googlesource.com/c/go/+/675197
Reviewed-by: Roland Shoemaker <roland@golang.org>
Auto-Submit: Filippo Valsorda <filippo@golang.... | [
{
"path": "api/next/69521.txt",
"patch": "@@ -0,0 +1,9 @@\n+pkg crypto/sha3, method (*SHA3) Clone() (hash.Cloner, error) #69521\n+pkg hash, type Cloner interface { BlockSize, Clone, Reset, Size, Sum, Write } #69521\n+pkg hash, type Cloner interface, BlockSize() int #69521\n+pkg hash, type Cloner interface, ... | 2025-05-21T21:55:43 |
electron/electron | 73553032ea99929b1511d6e873ec81328a42a356 | 8f7a48879ef8633a76279803637cdee7f7c6cd4f | fix: toggling DevTools while minimized on Windows (#40091)
fix: toggling devtools while minimized on Windows | [
{
"path": "shell/browser/ui/views/inspectable_web_contents_view_views.cc",
"patch": "@@ -142,8 +142,11 @@ void InspectableWebContentsViewViews::CloseDevTools() {\n \n devtools_visible_ = false;\n if (devtools_window_) {\n- inspectable_web_contents()->SaveDevToolsBounds(\n- devtools_window_->Ge... | 2023-10-06T00:26:31 |
nodejs/node | e1d8b4f038f05275fe2eb3189e79ec41a74c4782 | 6d1cd506b5ed2ce7037726e15146f48768256ee2 | assert: show the diff when deep comparing data with a custom message
Fixes: https://github.com/nodejs/node/issues/48465
PR-URL: https://github.com/nodejs/node/pull/54759
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.c... | [
{
"path": "lib/internal/assert/assertion_error.js",
"patch": "@@ -72,7 +72,11 @@ function inspectValue(val) {\n );\n }\n \n-function createErrDiff(actual, expected, operator) {\n+function getErrorMessage(operator, message) {\n+ return message || kReadableOperator[operator];\n+}\n+\n+function createErrDif... | 2024-09-04T09:28:57 |
vercel/next.js | 2036a5b1bf844a5492e109a841b47317613eface | 3d5e456a928041ca638ebca54ab511a23d70cd75 | [Cache Components] Avoid cache misses when resuming a cached page (#82578)
When a page component (or a parallel route slot) is cached, but other
parts of the component tree are dynamic, we generate a partially static
shell at buildtime that's resumed at runtime. During the resume, we need
to ensure that the cache key ... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -776,5 +776,6 @@\n \"775\": \"Node.js instrumentation extensions should not be loaded in the Edge runtime.\",\n \"776\": \"`unstable_isUnrecognizedActionError` can only be used on the client.\",\n \"777\": \"Invariant: failed to find source route %s ... | 2025-08-12T19:40:33 |
rust-lang/rust | 646418838fc494822f4814e6fd58a59f08d3575a | deaae4956d3cefc6a780e8e7520d0d5adff19ee5 | fix: handle `ref mut` bindings in `contains_explicit_ref_binding`
the standalone `contains_explicit_ref_binding` function only checked for
`BindingAnnotation::Ref`, missing `BindingAnnotation::RefMut`. this caused
`let ref mut x = expr` to incorrectly take the coercion path instead of
preserving the exact type of the ... | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/pat.rs",
"patch": "@@ -673,7 +673,7 @@ impl<'db> InferenceContext<'_, 'db> {\n pub(super) fn contains_explicit_ref_binding(body: &Body, pat_id: PatId) -> bool {\n let mut res = false;\n body.walk_pats(pat_id, &mut |pat| {\n- res |= ma... | 2026-02-14T16:19:26 |
golang/go | 3cc8b532f9d561397dd0c66496e1e1a82667c926 | 763963505e39b753d820ee9aea4791ad5bcc0274 | testing: add Attr
Add a new Attr method to testing.TB that emits a test attribute.
An attribute is an arbitrary key/value pair.
Fixes #43936
Change-Id: I7ef299efae41f2cf39f2dc61ad4cdd4c3975cdb6
Reviewed-on: https://go-review.googlesource.com/c/go/+/662437
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou... | [
{
"path": "api/next/43936.txt",
"patch": "@@ -0,0 +1,4 @@\n+pkg testing, method (*B) Attr(string, string) #43936\n+pkg testing, method (*F) Attr(string, string) #43936\n+pkg testing, method (*T) Attr(string, string) #43936\n+pkg testing, type TB interface, Attr(string, string) #43936",
"additions": 4,
... | 2025-04-03T00:37:34 |
electron/electron | 83a928f6e3fa3567462dd90eeb50666af0dd4dff | 3392d9a2e74973960ca516adc1c1684e03f78414 | fix: crashed events deprecation (#40090) | [
{
"path": "lib/browser/api/app.ts",
"patch": "@@ -114,5 +114,11 @@ for (const name of events) {\n }\n \n // Deprecation.\n-deprecate.event(app, 'gpu-process-crashed', 'child-process-gone');\n-deprecate.event(app, 'renderer-process-crashed', 'render-process-gone');\n+deprecate.event(app, 'gpu-process-crashed... | 2023-10-05T23:57:14 |
nodejs/node | 6d1cd506b5ed2ce7037726e15146f48768256ee2 | e32521a7b9a800728b2ed5337070628043a3d418 | doc: remove outdated https import reference
PR-URL: https://github.com/nodejs/node/pull/55111
Fixes: https://github.com/nodejs/node/issues/55091
Refs: https://github.com/nodejs/node/pull/53822
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Ulises ... | [
{
"path": "doc/api/module.md",
"patch": "@@ -869,9 +869,6 @@ behaviors.\n \n #### Import from HTTPS\n \n-In current Node.js, specifiers starting with `https://` are experimental (see\n-\\[HTTPS and HTTP imports]\\[]).\n-\n The hook below registers hooks to enable rudimentary support for such\n specifiers. W... | 2024-09-28T13:59:31 |
vercel/next.js | 1e5932d5503d833b42fca86eb84d0cf508dd7139 | 4a0763e4524d298fa97e2f6f8217780c28555930 | [Runtime prefetch] resolve runtime APIs in a separate task (#82475)
In a runtime prefetch, sync IO is dangerous, because it makes us abort
the whole prerender. If this abort happens early, a runtime prefetch can
end up giving us *less* data than a static prefetch. To prevent this, we
can split the final prerender into... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -775,5 +775,6 @@\n \"774\": \"Route %s used %s outside of a Server Component. This is not allowed.\",\n \"775\": \"Node.js instrumentation extensions should not be loaded in the Edge runtime.\",\n \"776\": \"`unstable_isUnrecognizedActionError` can o... | 2025-08-12T17:42:28 |
nodejs/node | e32521a7b9a800728b2ed5337070628043a3d418 | 28c7394319bb200bc13d1f64b6da3dd04d81c1a5 | test_runner: close and flush destinations on forced exit
This commit updates the test runner to explicitly close and flush
all destination file streams when the --test-force-exit flag is
used.
Fixes: https://github.com/nodejs/node/issues/54327
PR-URL: https://github.com/nodejs/node/pull/55099
Reviewed-By: Chemi Atlow... | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -14,12 +14,14 @@ const {\n NumberPrototypeToFixed,\n ObjectDefineProperty,\n ObjectSeal,\n+ Promise,\n PromisePrototypeThen,\n PromiseResolve,\n ReflectApply,\n RegExpPrototypeExec,\n SafeMap,\n SafePromiseAll,\n+ SafePromiseAllR... | 2024-09-28T13:59:06 |
electron/electron | 3392d9a2e74973960ca516adc1c1684e03f78414 | 5ad69df52ea16a21561992f63b17cbaae866b77d | fix: all children showing when showing child window (#40062) | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -189,6 +189,9 @@ class NativeWindowMac : public NativeWindow,\n has_deferred_window_close_ = defer_close;\n }\n \n+ void set_wants_to_be_visible(bool visible) { wants_to_be_visible_ = visible; }\n+ bool wants_to_be_visible() const { return ... | 2023-10-05T13:19:57 |
golang/go | 0aeaa6a495b7273f7a2190bc9857710190808e54 | 88679da4a396de98e975deb0e007b1d888a55676 | crypto/x509: use truncated SHA-256 for SubjectKeyId
Fixes #71746
Change-Id: I6a6a46568b092933d8ac2039df99ee9f0edf6e56
Reviewed-on: https://go-review.googlesource.com/c/go/+/674477
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Roland Shoemaker <rolan... | [
{
"path": "doc/godebug.md",
"patch": "@@ -183,6 +183,9 @@ limits. The default value `updatemaxprocs=1` will enable periodic updates.\n Go 1.25 disabled SHA-1 signature algorithms in TLS 1.2 according to RFC 9155.\n The default can be reverted using the `tlssha1=1` setting.\n \n+Go 1.25 switched to SHA-256 t... | 2025-05-20T18:51:11 |
vercel/next.js | 4ade2cf4c389933f434d3ea8cd9d8d8453daf0ef | 4984ac44af186336f22061d7653bf17dd6846136 | Turbopack: Watch parent directories before watching children in `non_recursive_helpers::start_watching_dir_and_parents` (#82454)
Fixes a potential race condition https://github.com/vercel/next.js/pull/82130#discussion_r2249131891:
> I think there is a race condition here, when the child dir is created while we are ... | [
{
"path": "turbopack/crates/turbo-tasks-fs/src/watcher.rs",
"patch": "@@ -287,23 +287,39 @@ mod non_recursive_helpers {\n dir_path: &Path,\n root_path: &Path,\n ) -> Result<()> {\n- let mut cur_path = dir_path;\n- loop {\n- start_watching_dir(&mut state.notify_wa... | 2025-08-12T16:07:28 |
facebook/react | f0e808e5bcbfdaa24a8a0893cd718f4d189f2369 | dc3178151b8cb0359e5c36b8ed57458b807ae8e3 | [Debug Tools] Always use includeHooksSource option (#28309)
This option was added defensively but it's not needed. There's no cost
to including it always.
I suspect this optional was added mainly to avoid needing to update
tests. That's not a reason to have an unnecessary public API though.
We have a praxis fo... | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -569,7 +569,7 @@ export type HooksNode = {\n value: mixed,\n subHooks: Array<HooksNode>,\n debugInfo: null | ReactDebugInfo,\n- hookSource?: HookSource,\n+ hookSource: null | HookSource,\n };\n export type HooksTree = Array<... | 2024-02-14T16:07:35 |
rust-lang/rust | d15d7149b17e8b399cf4030580649cc18b59ed6a | deaae4956d3cefc6a780e8e7520d0d5adff19ee5 | fix smol_str compilation error
the command 'cargo build --no-default-features --features borsh' failed with:
error[E0599]: no function or associated item named 'other' found for struct 'borsh::io::Error' in the current scope
--> lib/smol_str/src/borsh.rs:33:39
|
33 | .ok_or_else(|| Error::other(... | [
{
"path": "src/tools/rust-analyzer/lib/smol_str/src/borsh.rs",
"patch": "@@ -29,8 +29,9 @@ impl BorshDeserialize for SmolStr {\n }))\n } else {\n // u8::vec_from_reader always returns Some on success in current implementation\n- let vec = u8::vec_from_reader(len, r... | 2026-02-14T20:02:46 |
golang/go | aab8552088ae06ee7d6515d0dfc9efa7979feb5c | 59211acb5dbde14647e025eb7379675debcf3930 | crypto/tls: use decode alert for handshake msg unmarshal err
Previously if instances of the handshakeMessage interface returned false
from unmarshal(), indicating an umarshalling error, the crypto/tls
package would emit an unexpected_message alert. This commit changes to
use a decode_error alert for this condition ins... | [
{
"path": "src/crypto/tls/bogo_config.json",
"patch": "@@ -66,20 +66,13 @@\n \"SupportTicketsWithSessionID\": \"We don't support session ID resumption\",\n \"KeyUpdate-RequestACK\": \"TODO: first pass, this should be fixed\",\n \"SupportedVersionSelection-TLS12\": \"TODO: first pass,... | 2025-05-17T15:17:21 |
nodejs/node | 28c7394319bb200bc13d1f64b6da3dd04d81c1a5 | bf11e5793bc3124cc9c16e532a10eeb7ecfdb29b | test: fix typos
PR-URL: https://github.com/nodejs/node/pull/55063
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "test/addons/non-node-context/test-make-buffer.js",
"patch": "@@ -6,7 +6,7 @@ const {\n makeBufferInNewContext,\n } = require(`./build/${common.buildType}/binding`);\n \n-// Because the `Buffer` function and its protoype property only (currently)\n+// Because the `Buffer` function and its protot... | 2024-09-28T13:58:55 |
facebook/react | 32df74dba67207300511cf9b7c5ef82dd708c0c1 | 8d48183291870898ec42ac1f84482d9d26789424 | Fix jest inline snapshots (#28308)
Prettier 3 is not supported for jest inline snapshots:
https://jestjs.io/docs/configuration#prettierpath-string | [
{
"path": "package.json",
"patch": "@@ -81,6 +81,7 @@\n \"mkdirp\": \"^0.5.1\",\n \"ncp\": \"^2.0.0\",\n \"prettier\": \"3.0.3\",\n+ \"prettier-2\": \"npm:prettier@^2\",\n \"pretty-format\": \"^29.4.1\",\n \"prop-types\": \"^15.6.2\",\n \"random-seed\": \"^0.3.0\",",
"addition... | 2024-02-13T03:03:50 |
vercel/next.js | 4984ac44af186336f22061d7653bf17dd6846136 | a5317ed693cdfd2c97f4313bedf3cec895561074 | fix: Prevent duplicate file entries in modulesCode (#82550)
Fixes: https://github.com/vercel/next.js/issues/82515
When global-error, and presumably other similar files are defined by
users,`next build` (Webpack) outputs this to
`.next/server/app/page.js`(removed some values for brevity, see OP for
more):
```js
l... | [
{
"path": "packages/next/src/build/webpack/loaders/next-app-loader/index.ts",
"patch": "@@ -287,7 +287,7 @@ async function createTreeCodeFromPath(\n \n // Fill in the loader tree for all of the special files types (layout, default, etc) at this level\n // `page` is not included here as it's adde... | 2025-08-12T15:39:43 |
electron/electron | b3a1c6d13cfad8b0519dd7957c2f2db10acf98e8 | b0590b6ee874fbeac49bb5615525d145835eb64f | fix: error using `webcrypto.subtle.importKey()` (#40070)
fix: error using webcrypto.subtle.importKey() | [
{
"path": "patches/node/.patches",
"patch": "@@ -51,3 +51,4 @@ net_use_asserts_in_js_socket_stream_to_catch_races_in_future.patch\n lib_fix_broadcastchannel_initialization_location.patch\n src_adapt_to_v8_exception_api_change.patch\n lib_test_do_not_hardcode_buffer_kmaxlength.patch\n+fix_handle_possible_dis... | 2023-10-05T08:46:53 |
rust-lang/rust | 8d96e266848feb3d04b4216ba9e31f7c111e3e45 | 035b01b794602d5861daa43ac792f372f8981ed7 | Add regression test for struct ctor used as array repeat count under mGCA
Using a struct constructor (DefKind::Ctor(Struct, Const)) as an array
repeat count with `#![feature(min_generic_const_args)]` used to trigger
an ICE in const alias normalization. Add a regression test to ensure
the compiler produces a proper typ... | [
{
"path": "tests/ui/const-generics/mgca/struct-ctor-in-array-len.rs",
"patch": "@@ -0,0 +1,16 @@\n+// Regression test for https://github.com/rust-lang/rust/issues/141738\n+//\n+// Using a struct constructor as an array repeat count with\n+// `min_generic_const_args` used to ICE with \"unexpected `DefKind`\n... | 2026-02-14T19:44:50 |
facebook/react | 7a32d718b9ea0eb9ea86e9d21d56a5af6c4ce9ed | 3f93ca1c8dec1fd85df4dbb748a2df9438fc699f | [Debug Tools] Introspect Promises in use() (#28297)
Alternative to #28295.
Instead of stashing all of the Usables eagerly, we can extract them by
replaying the render when we need them like we do with any other hook.
We already had an implementation of `use()` but it wasn't quite
complete.
These can also incl... | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -13,6 +13,8 @@ import type {\n ReactProviderType,\n StartTransitionOptions,\n Usable,\n+ Thenable,\n+ ReactDebugInfo,\n } from 'shared/ReactTypes';\n import type {\n Fiber,\n@@ -41,6 +43,7 @@ type HookLogEntry = {\n prim... | 2024-02-12T22:54:28 |
electron/electron | b0590b6ee874fbeac49bb5615525d145835eb64f | 713d8c4167a07971775db847adca880f49e8d381 | fix: failing build with `enable_electron_extensions=false` (#40032)
* fix: ENABLE_EXTENSIONS -> ENABLE_ELECTRON_EXTENSIONS
* fix: extension guard fixes
* chore: fix linker errors | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -342,6 +342,34 @@ static_library(\"chrome\") {\n \"//components/pdf/renderer\",\n ]\n }\n+ } else {\n+ # These are required by the webRequest module.\n+ sources += [\n+ \"//extensions/browser/api/declarative_net_request/request_ac... | 2023-10-04T08:40:01 |
nodejs/node | 7fe5bcd29e799eb523751b0e21d34f0392c77d4d | 2d77ba5d30b591a9e4aa7726468452642f19151c | fs: check subdir correctly in cpSync
PR-URL: https://github.com/nodejs/node/pull/55033
Fixes: https://github.com/nodejs/node/issues/54285
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "src/node_file.cc",
"patch": "@@ -3206,9 +3206,12 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n }\n \n std::u8string dest_path_str = dest_path.u8string();\n-\n+ std::u8string src_path_str = src_path.u8string();\n+ if (!src_path_str.ends_with(std::filesystem::pa... | 2024-09-28T13:50:53 |
facebook/react | 3f93ca1c8dec1fd85df4dbb748a2df9438fc699f | 9e7944f67c72b9a69a8db092ba6bd99fe9c731e2 | [Fiber] Transfer `_debugInfo` from Arrays, Lazy, Thenables and Elements to the inner Fibers. (#28286)
That way we can use it for debug information like component stacks and
DevTools. I used an extra stack argument in Child Fiber to track this as
it's flowing down since it's not just elements where we have this info
... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -7,7 +7,12 @@\n * @flow\n */\n \n-import type {Thenable} from 'shared/ReactTypes';\n+import type {\n+ Thenable,\n+ ReactDebugInfo,\n+ ReactComponentInfo,\n+ ReactAsyncInfo,\n+} from 'shared/ReactTypes';\n import type {LazyCompone... | 2024-02-12T19:56:59 |
nodejs/node | 2d77ba5d30b591a9e4aa7726468452642f19151c | e8127db032d3b1a33400ed5d63611c65b8394ce5 | Revert "console: colorize console error and warn"
This reverts commit a833c9e0bed85214884d6650fe344d5896c9e67a.
PR-URL: https://github.com/nodejs/node/pull/54677
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com> | [
{
"path": "lib/internal/console/constructor.js",
"patch": "@@ -8,7 +8,6 @@ const {\n ArrayIsArray,\n ArrayPrototypeForEach,\n ArrayPrototypePush,\n- ArrayPrototypeSome,\n ArrayPrototypeUnshift,\n Boolean,\n ErrorCaptureStackTrace,\n@@ -60,7 +59,6 @@ const {\n const {\n CHAR_UPPERCASE_C: kTrac... | 2024-09-28T13:50:39 |
golang/go | 59211acb5dbde14647e025eb7379675debcf3930 | 4158ca8d7c521aee5cc48f285f559e74845e973c | crypto/tls: disable SHA-1 signature algorithms in TLS 1.2
This implements RFC 9155 by removing support for SHA-1 algorithms:
- we don't advertise them in ClientHello and CertificateRequest
(where supportedSignatureAlgorithms is used directly)
- we don't select them in our ServerKeyExchange and CertificateVer... | [
{
"path": "doc/godebug.md",
"patch": "@@ -180,6 +180,9 @@ runtime will periodically update GOMAXPROCS for new CPU affinity or cgroup\n limits. The default value `updatemaxprocs=1` will enable periodic updates.\n `updatemaxprocs=0` will disable periodic updates.\n \n+Go 1.25 disabled SHA-1 signature algorith... | 2025-03-15T14:12:39 |
facebook/react | 9e7944f67c72b9a69a8db092ba6bd99fe9c731e2 | 629541bcc09fc7c0cc5c257541d084ee27457512 | Suspend Thenable/Lazy if it's used in React.Children and unwrap (#28284)
This pains me because `React.Children` is really already
pseudo-deprecated.
`React.Children` takes any children that `React.Node` takes. We now
support Lazy and Thenable in this position elsewhere, but it errors in
`React.Children`.
This... | [
{
"path": "packages/react-reconciler/src/ReactFiberThenable.js",
"patch": "@@ -212,19 +212,19 @@ export function trackUsedThenable<T>(\n }\n },\n );\n+ }\n \n- // Check one more time in case the thenable resolved synchronously.\n- switch (thenable.status) {\n... | 2024-02-12T18:39:30 |
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.