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 |
|---|---|---|---|---|---|
electron/electron | a189425373c0ca5929e93888dd7ffa7febb4b9a6 | 7eccea1315258b7fde446a8465c6cbc69d0f5379 | fix: dangling raw_ptr `api::Session::browser_context_` (#50784)
* fix: dangling raw_ptr api::Session::browser_context_
* fix: address code review feedback | [
{
"path": "shell/browser/api/electron_api_session.cc",
"patch": "@@ -550,8 +550,7 @@ gin::WrapperInfo Session::kWrapperInfo = {{gin::kEmbedderNativeGin},\n Session::Session(v8::Isolate* isolate, ElectronBrowserContext* browser_context)\n : isolate_(isolate),\n network_emulation_token_(base::Ungues... | 2026-04-08T06:04:29 |
vercel/next.js | 4cd8e53a44c5dbb8c5fa5c835cbba03de29bf2cd | bb75506b78d693bebd36be2d6df1396dc3b0c675 | Fix `minimumReleaseAgeExclude` for React and friends (#92535) | [
{
"path": "pnpm-workspace.yaml",
"patch": "@@ -40,10 +40,7 @@ minimumReleaseAgeExclude:\n - next\n - react\n - react-dom\n- - react-dom-*\n- - react-experimental-builtin\n - react-is\n- - react-is-builtin\n - react-server-dom-*\n- - scheduler-*\n+ - scheduler\n - turbo",
"additions": 1,... | 2026-04-08T20:08:54 |
nodejs/node | 25443db104d39a3dcd410fa882884580734cfaa4 | a9ac9b12eec0f777b99e80e8672c3f429c7329db | tools: allow triagers to queue a PR for CI until it's reviewed
PR-URL: https://github.com/nodejs/node/pull/62524
Fixes: https://github.com/nodejs/node/issues/62496
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com> | [
{
"path": ".github/workflows/auto-start-ci.yml",
"patch": "@@ -28,13 +28,13 @@ jobs:\n - name: Get Pull Requests\n id: get_prs_for_ci\n run: >\n- numbers=$(gh pr list \\\n- --repo ${{ github.repository }} \\\n+ echo \"numbers=$(gh pr list \\\n+ ... | 2026-03-31T14:35:57 |
rust-lang/rust | f493cab3e3d99692bf4de0d28acab3a918472d2f | 1fe72d35998dea48aeecaf7fc07783b0b553f24f | Add a test for an LLVM crash "Vector elements must have same size" | [
{
"path": "tests/ui/derives/clone-vector-element-size.rs",
"patch": "@@ -0,0 +1,17 @@\n+//! Regression test for https://github.com/rust-lang/rust/issues/104037.\n+//! LLVM used to hit an assertion \"Vector elements must have same size\"\n+//! when compiling derived Clone with MIR optimisation level of 3.\n+... | 2026-04-09T08:35:54 |
facebook/react | 4610359651fa10247159e2050f8ec222cb7faa91 | 93882bd40ee48dc6d072dfc0b6cc7801fac1be31 | [DevTools] Fix null ref crash in ContextMenu when items list is empty (#35929)
Co-authored-by: Sebastian Sebbie Silbermann <sebastian.silbermann@vercel.com> | [
{
"path": "packages/react-devtools-shared/src/devtools/ContextMenu/ContextMenu.js",
"patch": "@@ -8,15 +8,14 @@\n */\n \n import * as React from 'react';\n-import {useLayoutEffect, createRef} from 'react';\n+import {useLayoutEffect} from 'react';\n import {createPortal} from 'react-dom';\n \n import Contex... | 2026-03-05T15:52:23 |
golang/go | 4978c2029c3ff66da8f1dfe32ac6770ce1514fe8 | 199c4d1c3c9d509a51f777c81cb17d4b17728097 | crypto/x509: fix wildcard constraint map case sensitivity
When applying excluded constraints to wildcard DNS SANs, the constraint
checking implementation did not normalize the case of the constraint nor
the SAN, which could lead to incorrect constraint checking results. This
change lowercases both the constraint and t... | [
{
"path": "src/crypto/x509/constraints.go",
"patch": "@@ -351,6 +351,7 @@ func newDNSConstraints(l []string, permitted bool) interface{ query(string) (str\n \tif !permitted {\n \t\tparentConstraints := map[string]string{}\n \t\tfor _, name := range nc.constraints.set {\n+\t\t\tname = strings.ToLower(name)\n... | 2026-03-23T17:22:34 |
vercel/next.js | 108fe00fbdd84f497f3da9fac3855f492fa2c465 | de7ce396a224bbaa13216c19bef7b416b06b5a69 | fix: replace docs/canary links with stable docs paths in error messages (#92528)
### What?
Error messages for the `"use cache"` directive and `after()` API (in
`cookies()`, `headers()`, `connection()`) pointed to `/docs/canary/...`
instead of `/docs/...`.
### Why?
On canary builds, `docs/canary` links can create ci... | [
{
"path": "crates/next-custom-transforms/src/transforms/server_actions.rs",
"patch": "@@ -3942,7 +3942,7 @@ fn emit_error(error_kind: ServerActionsErrorKind) {\n r#\"\n To use \"{directive}\", please enable the feature flag `cacheComponents` in your Next.js config.\n \n- ... | 2026-04-08T18:28:46 |
electron/electron | a29674e4cf6c0aefdce9c2a352a24c6aa7554343 | 81dd0f42e16224ec9f82578868b0e2a7e07c830c | fix: dangling raw_ptr JavascriptEnvironment::isolate_ (#50738) | [
{
"path": "shell/browser/javascript_environment.cc",
"patch": "@@ -61,25 +61,26 @@ JavascriptEnvironment::JavascriptEnvironment(uv_loop_t* event_loop,\n : isolate_holder_{CreateIsolateHolder(\n Initialize(event_loop, setup_wasm_streaming),\n &max_young_generation_size_)},\n- iso... | 2026-04-07T08:03:11 |
facebook/react | 93882bd40ee48dc6d072dfc0b6cc7801fac1be31 | 3bc2d414287e62a7b74731c6c7b837270353a339 | [errors] s/form state/action state (#35790)
Noticed `useActionState` error still refers to "form state" while
writing the docs. | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMForm-test.js",
"patch": "@@ -1092,7 +1092,7 @@ describe('ReactDOMForm', () => {\n const root = ReactDOMClient.createRoot(container);\n await act(async () => {\n root.render(<App />);\n- await waitForThrow('Cannot update form state while ... | 2026-03-04T19:20:03 |
golang/go | 199c4d1c3c9d509a51f777c81cb17d4b17728097 | d7b6fb44b5f39cb0f551ed7eb62498089b604a88 | html/template: properly track JS template literal brace depth across contexts
Properly track JS template literal brace depth across branches/ranges,
and prevent accidental re-use of escape analysis by including the
brace depth in the stringification/mangling for contexts.
Fixes #78331
Fixes CVE-2026-32289
Change-Id:... | [
{
"path": "src/html/template/context.go",
"patch": "@@ -6,6 +6,7 @@ package template\n \n import (\n \t\"fmt\"\n+\t\"slices\"\n \t\"text/template/parse\"\n )\n \n@@ -37,7 +38,7 @@ func (c context) String() string {\n \tif c.err != nil {\n \t\terr = c.err\n \t}\n-\treturn fmt.Sprintf(\"{%v %v %v %v %v %v %v}... | 2026-03-23T20:34:23 |
nodejs/node | a9ac9b12eec0f777b99e80e8672c3f429c7329db | 4f6e60226ffda76640d6e113f02675bd1caf9bd4 | lib: defer AbortSignal.any() following
Avoid registering AbortSignal.any() composites as dependants
until they are actually observed. This fixes the long-lived
source retention pattern from #62363 while preserving abort
semantics through lazy refresh and follow paths.
Also unregister fired timeout signals from the ti... | [
{
"path": "lib/internal/abort_controller.js",
"patch": "@@ -85,17 +85,16 @@ function lazyMessageChannel() {\n }\n \n const clearTimeoutRegistry = new SafeFinalizationRegistry(clearTimeout);\n-const dependantSignalsCleanupRegistry = new SafeFinalizationRegistry((signalWeakRef) => {\n- const signal = signalW... | 2026-04-02T14:15:43 |
electron/electron | 6aaf490aa5b653c19a50b5908ed31f60e4a62626 | b8f25c4cedb2e0f5f475912b709aba19c57c26be | chore: bump chromium to 148.0.7768.0 (main) (#50599)
* chore: bump chromium in DEPS to 148.0.7765.0
* chore: bump chromium in DEPS to 148.0.7766.0
* fix(patch-conflict): update packed_resources dep name after upstream rename
Upstream renamed //chrome:packed_resources_integrity_header to
//chrome:packed_resources. U... | [
{
"path": "BUILD.gn",
"patch": "@@ -775,6 +775,7 @@ source_set(\"electron_lib\") {\n \"//components/zoom\",\n \"//extensions/browser\",\n \"//extensions/browser/api:api_provider\",\n+ \"//extensions/browser/mime_handler:stream_info\",\n \"//extensions/browser/updater\",\n ... | 2026-04-07T03:38:46 |
vercel/next.js | de7ce396a224bbaa13216c19bef7b416b06b5a69 | e75d006d72f042564fec41b7c9655b837e44feae | Node.js streams: Fork points (#92252)
### What?
Implements native Node.js stream support for the RSC / HTML rendering.
This first step does not include cacheComponents / static generation.
Instead of converting between Node.js Readable streams and Web
ReadableStreams at every boundary, the rendering pipeline now use... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -1180,13 +1180,12 @@ jobs:\n with:\n afterBuild: |\n export __NEXT_USE_NODE_STREAMS=true\n- export __NEXT_CACHE_COMPONENTS=true\n- export __NEXT_EXPERIMENTAL_CACHED_NAVIGATIONS=true\n- export __NEXT_EXPERIM... | 2026-04-08T17:45:15 |
facebook/react | 3bc2d414287e62a7b74731c6c7b837270353a339 | 5e4279134dbc29116407a5ec515e74e2c0ae5018 | [noop] Fix `createContainer` argument order in the Fiber implementation (#35945) | [
{
"path": ".eslintrc.js",
"patch": "@@ -626,6 +626,7 @@ module.exports = {\n FinalizationRegistry: 'readonly',\n Exclude: 'readonly',\n Omit: 'readonly',\n+ Pick: 'readonly',\n Keyframe: 'readonly',\n PropertyIndexedKeyframes: 'readonly',\n KeyframeAnimationOptions: 'readonly',",
... | 2026-03-04T13:20:43 |
golang/go | d7b6fb44b5f39cb0f551ed7eb62498089b604a88 | c1352b7df17574e0f7d3ada9514b36ddac993abb | cmd/compile: preserve dot vars necessary for debuggers in DWARF
This patch fixes a bug introduced in the recent DWARF refactor / cleanup
where `shouldEmitDwarf` was unified and ended up pruning certain dot
prefixed vars that are necessary for debuggers.
Other dot prefixed vars are already pruned in earlier passes, th... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -675,8 +675,7 @@ func shouldEmitDwarfVar(n *ir.Name) bool {\n \tif n.Sym().Name == \"_\" {\n \t\treturn false\n \t}\n-\tc := n.Sym().Name[0]\n-\tif c == '.' || n.Type().IsUntyped() {\n+\tif n.Type().IsUntyped() {\n \t\treturn false\n \t}\n... | 2026-04-07T19:32:00 |
nodejs/node | 86282b56d20ff4be98003dfbd9aff91fcbfe3cf2 | 0dfdec9542c88582fbf005f0758a502fc87d64ff | 2026-04-01, Version 25.9.0 (Current)
Notable changes:
async_hooks:
* (SEMVER-MINOR) add using scopes to `AsyncLocalStorage` (Stephen Belanger) https://github.com/nodejs/node/pull/61674
cli:
* (SEMVER-MINOR) add `--max-heap-size` option (tannal) https://github.com/nodejs/node/pull/58708
crypto:
* (SEMVER-MINOR) ... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -41,7 +41,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.2\">25.8.2</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.9.0\">25.9.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.2\">2... | 2026-03-31T20:41:40 |
electron/electron | b8f25c4cedb2e0f5f475912b709aba19c57c26be | 9fafc81e88345dffea7504a1890e791b4af70379 | fix: resolve target bundle path once at start of install (#50745)
Resolve the Squirrel.Mac target bundle URL to a canonical path once at the
top of -[SQRLInstaller installRequest:] and use it for every step of the
install chain, rejecting requests whose path is not already canonical. When
running with elevated privile... | [
{
"path": "patches/squirrel.mac/.patches",
"patch": "@@ -11,3 +11,4 @@ fix_crash_when_process_to_extract_zip_cannot_be_launched.patch\n use_uttype_class_instead_of_deprecated_uttypeconformsto.patch\n fix_clean_up_orphaned_staged_updates_before_downloading_new_update.patch\n fix_add_explicit_json_property_ma... | 2026-04-07T02:10:52 |
vercel/next.js | e75d006d72f042564fec41b7c9655b837e44feae | 70fb25d3c14c74f2a91380037f97f728599f7d85 | Bundle skills/ directory into next/dist/skills (#92493)
Experimenting with the notion of a "bundled skill" — agent skills
shipped directly in the `next` package under `next/dist/skills/<name>/`.
The first bundled skill is `next-compile`, which calls the dev server's
`get_compilation_issues` MCP tool to check compilat... | [
{
"path": "packages/next/taskfile.js",
"patch": "@@ -46,6 +46,11 @@ export async function copy_docs(task, opts) {\n .target('dist/docs')\n }\n \n+export async function copy_skills(task, opts) {\n+ const skillsSource = join(__dirname, '../../skills')\n+ await task.source(join(skillsSource, '**/*')).tar... | 2026-04-08T17:29:37 |
facebook/react | ee4699f5a1833bd12701d21556f36376d6ebad8b | 23b2d8514f13f109b980b0a1f4f3aab906ad51d0 | [noop] Fail tests on unasserted recoverable errors (#35948) | [
{
"path": "packages/react-noop-renderer/src/createReactNoop.js",
"patch": "@@ -1151,9 +1151,9 @@ function createReactNoop(reconciler: Function, useMutation: boolean) {\n }\n }\n \n- function onRecoverableError(error) {\n- // TODO: Turn this on once tests are fixed\n- // console.error(error);\n+... | 2026-03-04T12:41:58 |
golang/go | 497ec0d4e1763ffd167577cc2ac5fdb82b99ad82 | 6797caf71af755fb0fb1c7be72664619ac79f56f | cmd/go/internal/tool: only forward SIGHUP, SIGINT, SIGQUIT, and SIGTERM
These are the signals that are likely to be sent to go tool by other
programs. This means we won't forward SIGTSTP, SIGTTIN, SIGTTOU. Doing
so was breaking expected behavior in a terminal.
Fixes #76173
Change-Id: I018808e8ecf59e4e111f353968d83b8... | [
{
"path": "src/cmd/go/internal/tool/signal.go",
"patch": "@@ -0,0 +1,14 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build !plan9 && !js\n+\n+package tool\n+\n+import (\n+\t\"... | 2026-04-06T14:13:32 |
nodejs/node | 7b8934d2e4896bf453c6bd5228484fbcaef82cd2 | f8ee196c15784c372f30bfbb7d70956fc4d7eb63 | build: use `CARGO` environment variable if set
When enabling support for Temporal, check for the `CARGO` environment
variable to locate the `cargo` binary (defaulting to `cargo` if not
set) and use this to build `deps/crates`.
This will allow using Cargo on systems where the Cargo binary name is
suffixed with the ver... | [
{
"path": "configure.py",
"patch": "@@ -1452,7 +1452,9 @@ def get_cargo_version(cargo):\n except OSError:\n error('''No acceptable cargo found!\n \n- Please make sure you have cargo installed on your system.''')\n+ Please make sure you have cargo installed on your system and/or\n+ co... | 2026-04-01T07:31:10 |
electron/electron | 4d050109456b105f3fc2fad4e7a00249d23c5317 | c3189e9886d00ae60fb72766999d693d9c7bf0a5 | fix: enforce size constraints on window creation on Windows and Linux (#49906)
* enforce size constraints on window creation
* set constraints after resizing on init
* restore conditional centering | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -140,24 +140,10 @@ NativeWindow::~NativeWindow() {\n \n void NativeWindow::InitFromOptions(const gin_helper::Dictionary& options) {\n // Setup window from options.\n- if (int x, y; options.Get(options::kX, &x) && options.Get(options::kY, &y)) {\n- ... | 2026-04-06T20:38:23 |
vercel/next.js | 70fb25d3c14c74f2a91380037f97f728599f7d85 | 46e2114ea28a39aab4c04c2451aa462af14e62df | fix: resolve function configs in unstable_getResponseFromNextConfig (#92501)
## Summary
- `unstable_getResponseFromNextConfig` now resolves async function
configs before passing them to `loadCustomRoutes`
- Uses `normalizeConfig` — the same utility Next.js already uses at
build time to handle `(phase, ctx) => config`... | [
{
"path": "packages/next/src/experimental/testing/server/config-testing-utils.test.ts",
"patch": "@@ -248,6 +248,45 @@ describe('config-testing-utils', () => {\n })\n })\n \n+ describe('function config', () => {\n+ it('resolves async function configs before matching routes', async () => {\n+ ... | 2026-04-08T17:06:02 |
facebook/react | b4a8d298450fd1fd274445fe8554e5fc18c5e12c | 6b113b7bd11f7fa432a0a8f9375013d30c884494 | fix: remove unused variable to fix linter (#35919) | [
{
"path": "packages/react-native-renderer/src/__tests__/ReactFabric-test.internal.js",
"patch": "@@ -1189,7 +1189,6 @@ describe('ReactFabric', () => {\n \n const ref1 = React.createRef();\n const ref2 = React.createRef();\n- const ref3 = React.createRef();\n \n const explicitTimeStampCamelCas... | 2026-02-26T21:48:35 |
electron/electron | 983ebdd6de46c2c69981a8a5aec385b842a15eef | b9c08ef9c2c3250e92da7b073ebecfc04efaff6d | ci: make src-cache upload atomic (#50743)
ci: make src-cache upload atomic and sweep orphaned temp files
The checkout action's cp of the ~6GB zstd archive directly to the final
path on the cache share is non-atomic; an interrupted copy or a
concurrent reader produces zstd "Read error (39): premature end" on
restore, ... | [
{
"path": ".github/actions/checkout/action.yml",
"patch": "@@ -191,19 +191,31 @@ runs:\n # only permits .tar/.tgz so we keep the extension and decode on restore.\n tar -cf - src | zstd -T0 --long=30 -f -o $CACHE_FILE\n echo \"Compressed src to $(du -sh $CACHE_FILE | cut -f1 -d' ')\"\n- ... | 2026-04-06T20:04:49 |
nodejs/node | 1a88acbfa213ea63238c6adde30d965d0b32790c | 79b960a2bcecd3192f12c42fa68a1f85ce31bda9 | quic: fixup linting/formatting issues
Signed-off-by: James M Snell <jasnell@gmail.com>
Assisted-by: Opencode/Opus 4.6
PR-URL: https://github.com/nodejs/node/pull/62387
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> | [
{
"path": "src/node_blob.cc",
"patch": "@@ -411,8 +411,7 @@ void Blob::Reader::Pull(const FunctionCallbackInfo<Value>& args) {\n std::move(next), node::bob::OPTIONS_END, nullptr, 0));\n }\n \n-void Blob::Reader::SetWakeup(\n- const FunctionCallbackInfo<Value>& args) {\n+void Blob::Reader::SetWakeup... | 2026-03-23T13:50:25 |
facebook/react | 6b113b7bd11f7fa432a0a8f9375013d30c884494 | 98ce535fdb6ff559a5dd76b58c1bcaa983804957 | [compiler] Deduplicate errors between ValidateExhaustiveDependencies and ValidatePreservedManualMemoization (#35917)
With the recent changes to make the compiler fault tolerant and always
continue through all passes, we can now sometimes report duplicative
errors. Specifically, when `ValidateExhaustiveDependencies` fi... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts",
"patch": "@@ -826,6 +826,7 @@ export type StartMemoize = {\n * emitting diagnostics with a suggested replacement\n */\n depsLoc: SourceLocation | null;\n+ hasInvalidDeps?: true;\n loc: SourceLocation;\n };\n export type Fin... | 2026-02-26T20:40:55 |
vercel/next.js | 743615ba32d22c430b5c17a224df70b47e3cff5c | 053300c1fb885383dac2620564567c603e53e681 | docs: clarify cacheLife() cannot be called at module scope (#92326)
### What?
Update the "Good to know" callout in the `cacheLife` docs to explicitly
state that `cacheLife()` must be called inside a function body, not at
module scope, and that doing so throws an error.
### Why?
Calling `cacheLife('days')` at module... | [
{
"path": "docs/01-app/03-api-reference/04-functions/cacheLife.mdx",
"patch": "@@ -37,12 +37,17 @@ const nextConfig = {\n export default nextConfig\n ```\n \n-`cacheLife` requires the `use cache` directive, which must be placed at the file level or at the top of an async function or component.\n+`cacheLife`... | 2026-04-08T14:06:07 |
golang/go | 899e473c3b4872a9001ce1df60e6cb575502ebb0 | e186f8d25cfd86ed4c530e319712ae338a165a4e | archive/tar: limit the number of old GNU sparse format entries
We did not set a limit on the maximum size of sparse maps in
the old GNU sparse format. Set a limit based on the cumulative
size of the extension blocks used to encode the map (consistent
with how we limit the sparse map size for other formats).
Add an ad... | [
{
"path": "src/archive/tar/format.go",
"patch": "@@ -147,6 +147,12 @@ const (\n \t// Max length of a special file (PAX header, GNU long name or link).\n \t// This matches the limit used by libarchive.\n \tmaxSpecialFileSize = 1 << 20\n+\n+\t// Maximum number of sparse file entries.\n+\t// We should never ac... | 2026-03-23T20:12:44 |
electron/electron | 9f3cc9122ca5c777c70ddd59066c421e828eac2e | e66e4ca02cd0b79439a94644b9179ca15dd38ff9 | build: derive patches upstream-head ref from script path (#50727)
* build: derive patches upstream-head ref from script path
gclient-new-workdir.py symlinks each repo's .git/refs back to the source
checkout, so the fixed refs/patches/upstream-head was shared across all
worktrees. Parallel `e sync` runs in different w... | [
{
"path": "docs/development/patches.md",
"patch": "@@ -79,7 +79,7 @@ $ ../../electron/script/git-import-patches ../../electron/patches/node\n $ ../../electron/script/git-export-patches -o ../../electron/patches/node\n ```\n \n-Note that `git-import-patches` will mark the commit that was `HEAD` when it was r... | 2026-04-06T16:42:08 |
facebook/react | a48e9e3f10fed06c813399ccae8a28db7dd76683 | 074d96b9dd57ea748f2e869959a436695bbc88bf | [RN] Fix timeStamp property of SyntheticEvent in React Native (#35912)
## Summary
This fixes the semantics of the `timeStamp` property of events in React
Native.
Currently, most events just assign `Date.now()` (at the time of creating
the event object in JavaScript) as the `timeStamp` property. This is a
divergence ... | [
{
"path": "packages/react-native-renderer/src/__tests__/ReactFabric-test.internal.js",
"patch": "@@ -1153,6 +1153,138 @@ describe('ReactFabric', () => {\n expect.assertions(6);\n });\n \n+ it('propagates timeStamps from native events and sets defaults', async () => {\n+ const View = createReactNat... | 2026-02-26T15:51:07 |
golang/go | e186f8d25cfd86ed4c530e319712ae338a165a4e | c3c65602d639e60ed6071fee22979b7e3ece1a30 | all: update to x/tools@f6476fbaabd396b58618b473e4eb71e1f532b495
This just brings in CL 763663 in hopes of fixing the longest builders.
Change-Id: Ib4a24dc214f58e77dfd2999df7ecf5c0dd21d1fc
Reviewed-on: https://go-review.googlesource.com/c/go/+/763770
Reviewed-by: Robert Griesemer <gri@google.com>
LUCI-TryBot-Result: G... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.42.1-0.20260320201212-a76ec62d6c53\n \tgolang.org/x/telemetry v0.0.0-20260311193753-579e4da9a98c\n \tgolang.org/x/term v0.39.0\n-\tgolang.org/x/tools v0.43.1-0.20260406190732-b36d1d12a1a7\n+\tgolang.org/x/tools v0.43.1... | 2026-04-07T23:12:41 |
vercel/next.js | 053300c1fb885383dac2620564567c603e53e681 | b58616b7f1a70dfe00e46edc943d166fd9875dd5 | docs: improve blocking-route error page for params discoverability (#92359)
### What?
Improves the `blocking-route` error doc (`errors/blocking-route.mdx`) to
make it easier to connect the "Uncached data was accessed outside of
`<Suspense>`" error to `await params` in a Page component.
### Why?
When a build fails w... | [
{
"path": "errors/blocking-route.mdx",
"patch": "@@ -8,7 +8,15 @@ When the `cacheComponents` feature is enabled, Next.js expects a parent `Suspens\n \n While some data is inherently only available when a user request is being handled, such as request headers, Next.js assumes that by default any asynchronous... | 2026-04-08T13:13:36 |
electron/electron | 903e65e0486ee1506c9f55dfbd62bf10c96d877d | fef2fd294124d8725805583b72ed10531b794b3f | ci: fetch clang-tidy package in fix-sync (#50704)
fix-sync re-downloads llvm-build on macOS/Windows with the base clang
and objdump packages, but not clang-tidy. A local gclient sync pulls
clang-tidy (checkout_clang_tidy=True in DEPS), so CI's llvm-build tree
diverges from a local one. siso hashes the toolchain as act... | [
{
"path": ".github/actions/fix-sync/action.yml",
"patch": "@@ -27,6 +27,7 @@ runs:\n python3 src/tools/clang/scripts/update.py\n # Refs https://chromium-review.googlesource.com/c/chromium/src/+/6667681\n python3 src/tools/clang/scripts/update.py --package objdump\n+ python3 sr... | 2026-04-06T05:31:30 |
nodejs/node | 57186e58277b7b0235d5e439356c3e2ab811d3e0 | e9b5214d72eadfc66fd205396f4a6c76fed4f399 | quic: fix a handful of bugs and missing functionality
Signed-off-by: James M Snell <jasnell@gmail.com>
Assisted-by: Opencode/Opus 4.6
PR-URL: https://github.com/nodejs/node/pull/62387
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> | [
{
"path": "lib/internal/blob.js",
"patch": "@@ -439,63 +439,76 @@ function createBlobReaderStream(reader) {\n // There really should only be one read at a time so using an\n // array here is purely defensive.\n this.pendingPulls = [];\n+ // Register a wakeup callback that the C++ side... | 2026-03-21T14:36:10 |
facebook/react | 074d96b9dd57ea748f2e869959a436695bbc88bf | e33071c6142ae5212483a63b87d5d962860e535a | [flags] land `enableTrustedTypesIntegration` (#35816)
## Summary
This flag enables React's integration with the browser [Trusted Types
API](https://developer.mozilla.org/en-US/docs/Web/API/Trusted_Types_API).
The Trusted Types API is a browser security feature that helps prevent
DOM-based XSS attacks. When a site en... | [
{
"path": "packages/shared/ReactFeatureFlags.js",
"patch": "@@ -208,7 +208,7 @@ export const disableLegacyMode: boolean = true;\n // in open source, but www codebase still relies on it. Need to remove.\n export const disableCommentsAsDOMContainers: boolean = true;\n \n-export const enableTrustedTypesIntegra... | 2026-02-25T19:49:30 |
vercel/next.js | b58616b7f1a70dfe00e46edc943d166fd9875dd5 | aced0cfbf8e74d7305133325b1d3a7c9410a046a | fix: mention params and searchParams in blocking-route error messages (#92360)
### What?
Adds `params` and `searchParams` to the Dynamic variant of the
blocking-route error message.
### Why?
When `const { id } = await params` in a Page component triggers the
blocking-route error, the message says "Uncached data or ... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -1082,7 +1082,7 @@\n \"1081\": \"Route \\\"%s\\\": Runtime data such as \\\\`cookies()\\\\`, \\\\`headers()\\\\`, \\\\`params\\\\`, or \\\\`searchParams\\\\` was accessed inside \\\\`generateViewport\\\\`. This delays the entire page from rendering, resu... | 2026-04-08T13:09:15 |
golang/go | c3c65602d639e60ed6071fee22979b7e3ece1a30 | 524b8606a8e4e8f6e37f77c7d601fdf44497b928 | internal/syscall/unix: properly support AT_SYMLINK_NOFOLLOW on Linux
On Linux, the fchmodat syscall silently ignores the AT_SYMLINK_NOFOLLOW flag.
Change the Linux Fchmodat function to use the fstatat2 syscall
(added in Linux 6.6) when available.
When fstatat2 is not available, use the same workaround as
GNU libc an... | [
{
"path": "src/cmd/dist/buildtool.go",
"patch": "@@ -92,6 +92,7 @@ var bootstrapDirs = []string{\n \t\"internal/race\",\n \t\"internal/runtime/gc\",\n \t\"internal/saferio\",\n+\t\"internal/strconv\",\n \t\"internal/syscall/unix\",\n \t\"internal/types/errors\",\n \t\"internal/unsafeheader\",",
"additio... | 2026-03-23T17:34:50 |
electron/electron | fef2fd294124d8725805583b72ed10531b794b3f | 4d8fd31e5fa35a4709afd807a6b013042c5967cc | ci: zstd-compress the src cache and drop the doubled win_toolchain (#50702)
* ci: shrink src cache and fix Windows tar cleanup
- Exclude platform-specific toolchains (llvm-build, rust-toolchain) from
the src cache; all platforms now fetch them via fix-sync post-restore
- Exclude unused test data and benchmarks: bli... | [
{
"path": ".github/actions/checkout/action.yml",
"patch": "@@ -28,7 +28,7 @@ runs:\n shell: bash\n run: |\n node src/electron/script/generate-deps-hash.js\n- DEPSHASH=\"v1-src-cache-$(cat src/electron/.depshash)\"\n+ DEPSHASH=\"v2-src-cache-$(cat src/electron/.depshash)\"\n ech... | 2026-04-06T00:56:03 |
facebook/react | e33071c6142ae5212483a63b87d5d962860e535a | c0060cf2a695d719152c939cfc3cced8f7da3e52 | [compiler] Improved ref validation for non-mutating functions (#35893)
If a function is known to freeze its inputs, and captures refs, then we
can safely assume those refs are not mutated during render.
An example is React Native's PanResponder, which is designed for use in
interaction handling. Calling `PanResponder... | [
{
"path": "compiler/CLAUDE.md",
"patch": "@@ -35,6 +35,20 @@ yarn snap -p <file-basename> -d\n yarn snap -u\n ```\n \n+## Linting\n+\n+```bash\n+# Run lint on the compiler source\n+yarn workspace babel-plugin-react-compiler lint\n+```\n+\n+## Formatting\n+\n+```bash\n+# Run prettier on all files (from the r... | 2026-02-24T20:36:32 |
nodejs/node | 60f19bc0894eb20f9e525c27b561ef322039382a | 7e3c24480457bbe0883505f67535177548fe1b8e | doc: fix 'transfered' typo in quic.md
PR-URL: https://github.com/nodejs/node/pull/62492
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com> | [
{
"path": "doc/api/quic.md",
"patch": "@@ -519,7 +519,7 @@ added: v23.8.0\n \n Sends an unreliable datagram to the remote peer, returning the datagram ID.\n If the datagram payload is specified as an `ArrayBufferView`, then ownership of\n-that view will be transfered to the underlying stream.\n+that view wi... | 2026-03-31T12:34:32 |
vercel/next.js | aced0cfbf8e74d7305133325b1d3a7c9410a046a | 9f8d671bc4f69185ed2fe6e187701f4e215ebc0d | docs: add middleware.mdx deprecation stub for discoverability (#92281)
### What?
Add a `middleware.mdx` deprecation stub to the app-router file
conventions docs so that searching for `*middleware*` in the bundled
docs returns a result.
- `docs/01-app/03-api-reference/03-file-conventions/middleware.mdx` —
explains th... | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/middleware.mdx",
"patch": "@@ -0,0 +1,21 @@\n+---\n+title: middleware.js\n+description: API reference for the middleware.js file (deprecated, renamed to proxy.js).\n+version: draft\n+related:\n+ title: Learn more about Proxy\n+ links:\n+ - app... | 2026-04-08T13:08:35 |
electron/electron | 3f8238b92c5f831025cf25718d4f5bb5faa4848d | 64c5440eec3d09eeeb69501fa7a989117c2263d3 | fix: defer Wrappable destruction in SecondWeakCallback to a posted task (#50688)
V8's second-pass weak callbacks run inside a
DisallowJavascriptExecutionScope: they may touch the V8 API but must
not invoke JS, directly or indirectly. Several Electron Wrappables
(WebContents in particular) emit JS events from their des... | [
{
"path": "shell/common/gin_helper/wrappable.cc",
"patch": "@@ -4,6 +4,7 @@\n \n #include \"shell/common/gin_helper/wrappable.h\"\n \n+#include \"base/task/sequenced_task_runner.h\"\n #include \"gin/object_template_builder.h\"\n #include \"gin/public/isolate_holder.h\"\n #include \"shell/common/gin_helper/d... | 2026-04-05T07:38:08 |
facebook/react | bd76b456c127222f59888953348d40cf8f03e3a0 | b354bbd2d231fdeeec31d438c8e7c54877eee4ac | [DevTools] Fix ReactDevToolsBackend module for AMD (#35891)
## Summary
For apps that use AMD, we need to actually `require()` the
ReactDevToolsBackend and load it from the AMD module cache. This adds a
check for the case where the `ReactDevToolsBackend` isn't defined
globally, and so we load it with `require()`.
##... | [
{
"path": "packages/react-devtools-core/src/standalone.js",
"patch": "@@ -361,6 +361,7 @@ function startServer(\n response.end(\n backendFile.toString() +\n '\\n;' +\n+ `var ReactDevToolsBackend = typeof ReactDevToolsBackend !== \"undefined\" ? ReactDevToolsBackend : require(\"React... | 2026-02-24T15:27:59 |
golang/go | a2cc178edf7908a2686089bdc35d1e6d134c7dd1 | 230d1407b04da5d65505415b1a7b4f6d70c75086 | go/types: Hasher, a hash function for Types
This CL defines a hash function for Types using the
maphash.Hasher API proposed in #70471 (CL 657296)
that is consistent with the equivalence relation
of types.Identical.
It also defines a variant, HasherIgnoreTypes, that is
consistent with types.IdenticalIgnoreTags. (The a... | [
{
"path": "api/next/69420.txt",
"patch": "@@ -0,0 +1,6 @@\n+pkg go/types, method (Hasher) Equal(Type, Type) bool #69420\n+pkg go/types, method (Hasher) Hash(*maphash.Hash, Type) #69420\n+pkg go/types, method (HasherIgnoreTags) Equal(Type, Type) bool #69420\n+pkg go/types, method (HasherIgnoreTags) Hash(*map... | 2025-03-12T22:13:04 |
vercel/next.js | 9f5d93643de6cd740f41e2b7e5f6c1393c26befb | 15215a3a10496e7012a7b2d1ec32cafd81fbf1b1 | docs: note PPR default in cacheComponents reference (#92378)
### What?
Add a **Good to know** callout on the
[`cacheComponents`](https://nextjs.org/docs/app/api-reference/config/next-config-js/cacheComponents)
API reference, placed after the Usage list and before **Navigation with
Activity**.
### Why?
Developers enab... | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/cacheComponents.mdx",
"patch": "@@ -29,6 +29,12 @@ When `cacheComponents` is enabled, you can use the following cache functions and\n - The [`cacheLife` function](/docs/app/api-reference/config/next-config-js/cacheLife) with `use cache`\n -... | 2026-04-08T10:09:44 |
electron/electron | 64c5440eec3d09eeeb69501fa7a989117c2263d3 | 30cf60a9356f48cb1740896ba63c7b3c0604e44b | fix: dangling raw_ptr MicrotasksRunner::isolate_ (#50676) | [
{
"path": "shell/browser/javascript_environment.cc",
"patch": "@@ -86,6 +86,7 @@ JavascriptEnvironment::~JavascriptEnvironment() {\n // Otherwise cppgc::internal::Sweeper::Start will try to request a task runner\n // from the NodePlatform with an already unregistered isolate.\n locker_.reset();\n+ DC... | 2026-04-05T04:03:14 |
facebook/react | b354bbd2d231fdeeec31d438c8e7c54877eee4ac | c92c57971541915a69ad23abe9fdd14ac56b3975 | [compiler] Update docs with fault tolerance summary, remove planning doc (#35888)
Add concise fault tolerance documentation to CLAUDE.md and the passes
README covering error accumulation, tryRecord wrapping, and the
distinction between validation vs infrastructure passes. Remove the
detailed planning document now that... | [
{
"path": "compiler/CLAUDE.md",
"patch": "@@ -229,20 +229,19 @@ Would enable the `enableJsxOutlining` feature and disable the `enableNameAnonymo\n 3. Look for `Impure`, `Render`, `Capture` effects on instructions\n 4. Check the pass ordering in Pipeline.ts to understand when effects are populated vs validat... | 2026-02-24T00:18:44 |
golang/go | e3b3216242691ab0e02164458bda98346ce36adf | 6f662188c2e2640712af74a01f589ee31ba0282f | math/big: Binomial should return 0 if k < 0
Fixes #78541
Change-Id: I73ba10b6d34f9f189b5bdd356d6325d5a4a6985f
GitHub-Last-Rev: 0594d99f55c51f2f164d17a61c4eb1b2bbb8462e
GitHub-Pull-Request: golang/go#78542
Reviewed-on: https://go-review.googlesource.com/c/go/+/763000
Auto-Submit: Robert Griesemer <gri@google.com>
Revi... | [
{
"path": "src/math/big/int.go",
"patch": "@@ -227,7 +227,7 @@ func (z *Int) MulRange(a, b int64) *Int {\n \n // Binomial sets z to the binomial coefficient C(n, k) and returns z.\n func (z *Int) Binomial(n, k int64) *Int {\n-\tif k > n {\n+\tif k > n || k < 0 {\n \t\treturn z.SetInt64(0)\n \t}\n \t// reduc... | 2026-04-06T10:36:44 |
vercel/next.js | 15215a3a10496e7012a7b2d1ec32cafd81fbf1b1 | 38cffffeccbc68e0c256b4fb9aa17e23f3f308f4 | docs: add note on React canary version to View transitions guide (#92315)
## Summary
Addresses a DX friction log finding and two minor clarifications in the
view transitions guide.
### Changes
- Add note explaining that `import { ViewTransition } from 'react'`
works because Next.js rewrites it to its internal React... | [
{
"path": "docs/01-app/02-guides/view-transitions.mdx",
"patch": "@@ -37,6 +37,8 @@ const nextConfig: NextConfig = {\n export default nextConfig\n ```\n \n+App Router uses [React canary releases](https://react.dev/blog/2023/05/03/react-canaries), which contain all stable React 19 changes as well as newer fe... | 2026-04-08T09:19:13 |
facebook/react | c92c57971541915a69ad23abe9fdd14ac56b3975 | 011cede06811927e46147fa77f2581c3119f42b8 | [compiler] Fix Pipeline.ts early-exit, formatting, and style issues (#35884)
Fix the transformFire early-exit in Pipeline.ts to only trigger on new
errors from transformFire itself, not pre-existing errors from earlier
passes. The previous `env.hasErrors()` check was too broad — it would
early-exit on validation error... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -442,6 +442,7 @@ class Context {\n recordError(error: CompilerErrorDetail): void {\n this.env.recordError(error);\n }\n+\n get nextCacheIndex(): number {\n return this.#nextCac... | 2026-02-24T00:16:41 |
nodejs/node | db887ea6c12889b8281002fb4b3a9a1fa9b28e00 | f3633ef4c8e4e3fcc27b293993d238e9fd3cfc46 | test: disable flaky WPT Blob test on AIX
The test Blob-array-buffer.any.js can be flaky on
AIX due to a recognized race condition in v8.
The failed assert is in deps/v8/src/base/platform/platform-aix.cc
on line 199, preceeded by the comment:
> If this check fails it's most likely due to a racing condition
> where an... | [
{
"path": "test/wpt/status/FileAPI/blob.cjs",
"patch": "@@ -0,0 +1,59 @@\n+'use strict';\n+\n+const os = require('node:os');\n+\n+// On AIX, V8's OS::DecommitPages() has an inherent race condition caused by\n+// AIX's non-POSIX MAP_FIXED behavior. The implementation must munmap() then\n+// mmap(), and anoth... | 2026-03-30T04:52:23 |
vercel/next.js | 68d6729f3101e3d61c851f89fefc9d4415daf06e | 5636400139fbe3c80a0818b5b7b228cc83ad9638 | CI: Update and cleanup next-stats-action, force using pnpm 10.33.0 (#92475)
This should fix the stats action: We were checking out Next.js 16.2.2, and that doesn't support the `--out` flag for `pnpm pack`. Let's just force pnpm 10.33.0 here for now.
While we're here, I made some other updates and improvements:
- Upda... | [
{
"path": ".github/actions/next-stats-action/Dockerfile",
"patch": "@@ -1,18 +1,19 @@\n # syntax=docker.io/docker/dockerfile:1\n \n-FROM ubuntu:22.04\n+FROM ubuntu:24.04\n \n LABEL com.github.actions.name=\"Next.js PR Stats\"\n LABEL com.github.actions.description=\"Compares stats of a PR with the main bran... | 2026-04-07T21:17:58 |
golang/go | 30ed7f97faa41413659a871c6ccc10de51b58c41 | da723e15d7492143459c65e4fecf2c17dc0fa1e4 | cmd/go/internal/modload: rename State to Loader
Rename modload.State to modload.Loader. Rename all references to module
loader state. The term "Loader" now refers to the module loader by
default. The package loader was explicitly renamed "packageLoader" in
an earlier change in order to distinguish it from the modul... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -42,17 +42,17 @@ func init() {\n }\n \n func runBug(ctx context.Context, cmd *base.Command, args []string) {\n-\tmoduleLoaderState := modload.NewState()\n+\tmoduleLoader := modload.NewLoader()\n \tif len(args) > 0 {\n \t\tbase.Fatalf(\"go: bug takes n... | 2026-04-07T13:51:06 |
facebook/react | 011cede06811927e46147fa77f2581c3119f42b8 | 2e0927dc70d75563192156aa3d504f5e14d3d0c7 | [compiler] Rename mismatched variable names after type changes (#35883)
Rename `state: Environment` to `env: Environment` in
ValidateMemoizedEffectDependencies visitor methods, and
`errorState: Environment` to `env: Environment` in
ValidatePreservedManualMemoization's validateInferredDep.
---
[//]: # (BEGIN SAPLING F... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidatePreservedManualMemoization.ts",
"patch": "@@ -230,7 +230,7 @@ function validateInferredDep(\n temporaries: Map<IdentifierId, ManualMemoDependency>,\n declsWithinMemoBlock: Set<DeclarationId>,\n validDepsInMemoBlock: Array<... | 2026-02-24T00:13:46 |
nodejs/node | bdf75a6c4e107595868b798b696a96ffe2c8c0e6 | cc967413c9b32e4d34d74a3b758ca71bee7a7746 | src: handle null backing store in ArrayBufferViewContents::Read
Fixes: https://github.com/nodejs/node/issues/62342
src: handle null backing store in ArrayBufferViewContents::Read
PR-URL: https://github.com/nodejs/node/pull/62343
Fixes: https://github.com/nodejs/node/issues/62342
Reviewed-By: René <contact.9a5d6388@re... | [
{
"path": "src/util-inl.h",
"patch": "@@ -591,7 +591,9 @@ void ArrayBufferViewContents<T, S>::Read(v8::Local<v8::ArrayBufferView> abv) {\n static_assert(sizeof(T) == 1, \"Only supports one-byte data at the moment\");\n length_ = abv->ByteLength();\n if (length_ > sizeof(stack_storage_) || abv->HasBuff... | 2026-03-29T11:56:01 |
golang/go | da723e15d7492143459c65e4fecf2c17dc0fa1e4 | 7394184e4ecf7cd1e938b80434f057caeb5ffa58 | crypto/tls: avoid atLeastReader and associated allocations.
Go 1.21 introduced bytes.Buffer.AvailableBuffer. This mechanism lets us
write directly into a Buffer's backing memory while also implementing
custom logic without going through interfaces.
atLeastReader caused an allocation on every read. On workloads with v... | [
{
"path": "src/crypto/tls/conn.go",
"patch": "@@ -800,29 +800,6 @@ func (c *Conn) retryReadRecord(expectChangeCipherSpec bool) error {\n \treturn c.readRecordOrCCS(expectChangeCipherSpec)\n }\n \n-// atLeastReader reads from R, stopping with EOF once at least N bytes have been\n-// read. It is different fro... | 2026-01-25T14:42:26 |
facebook/react | 2e0927dc70d75563192156aa3d504f5e14d3d0c7 | 9075330979bb9eeec7c29b80fbab6048154c8f1f | [compiler] Remove local CompilerError accumulators, emit directly to env.recordError() (#35882)
Removes unnecessary indirection in 17 compiler passes that previously
accumulated errors in a local `CompilerError` instance before flushing
them to `env.recordErrors()` at the end of each pass. Errors are now
emitted direc... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -11,6 +11,7 @@ import invariant from 'invariant';\n import {\n CompilerDiagnostic,\n CompilerError,\n+ CompilerErrorDetail,\n CompilerSuggestionOperation,\n ErrorCategory,\n } from '../CompilerError';\n@@ -1... | 2026-02-24T00:11:50 |
vercel/next.js | 2155e07d71fa23398e41227a79ddd51321240ebd | 0ed3b186c920e241079223a158c791ec10d53d56 | next-routing: middleware matching and app request URL normalization (#91859)
## Summary
- gate middleware invocation with configured next-routing matchers
- normalize app request URLs in app-page routing paths
- prevent static route matches from inheriting dynamic `routeMatches`
- add test coverage for next-routing ca... | [
{
"path": "packages/next-routing/src/__tests__/captures.test.ts",
"patch": "@@ -454,6 +454,52 @@ describe('Has Condition Captures in Destination', () => {\n expect(result.resolvedPathname).toBe('/localized/en-US/page')\n })\n \n+ it('should use named has regex captures in rewrite destinations', async... | 2026-04-07T18:44:52 |
facebook/react | 9075330979bb9eeec7c29b80fbab6048154c8f1f | 8a33fb3a1cd6a8230cb9c49f4cda71f8d21c8476 | [compiler] Remove tryRecord, add catch-all error handling, fix remaining throws (#35881)
Remove `tryRecord()` from the compilation pipeline now that all passes
record
errors directly via `env.recordError()` / `env.recordErrors()`. A single
catch-all try/catch in Program.ts provides the safety net for any pass
that
inc... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Options.ts",
"patch": "@@ -252,6 +252,7 @@ export type LoggerEvent =\n | CompileErrorEvent\n | CompileDiagnosticEvent\n | CompileSkipEvent\n+ | CompileUnexpectedThrowEvent\n | PipelineErrorEvent\n | TimingEvent;\n \n@@ -286,6... | 2026-02-24T00:10:17 |
nodejs/node | cc967413c9b32e4d34d74a3b758ca71bee7a7746 | e75ac3c91836a18c0dad826ed4fdca84696161c7 | deps: V8: cherry-pick cf1bce40a5ef
Original commit message:
[wasm] Fix S128Const on big endian
Since http://crrev.com/c/2944437 globals are no longer little endian
enforced.
S128Const handling in the initializer needs to take this into account
and byte reverse values which are hard coded in litt... | [
{
"path": "deps/v8/src/wasm/constant-expression-interface.cc",
"patch": "@@ -40,7 +40,17 @@ void ConstantExpressionInterface::S128Const(FullDecoder* decoder,\n const Simd128Immediate& imm,\n Value* result) {\n if (!gen... | 2026-03-28T22:57:44 |
golang/go | 7394184e4ecf7cd1e938b80434f057caeb5ffa58 | f48684c59cf9dce53468e4ae610d5e90739602b5 | crypto/ed25519: use FIPS 140-3 GenerateKey and enforce fips140=only
Fixes #77594
Change-Id: I2685931ec37d9beb99de2e0398ab6f456a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/745800
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Reviewed-by: Ju... | [
{
"path": "src/crypto/ed25519/ed25519.go",
"patch": "@@ -160,6 +160,19 @@ func GenerateKey(random io.Reader) (PublicKey, PrivateKey, error) {\n \t\t}\n \t}\n \n+\tif fips140only.Enforced() && !fips140only.ApprovedRandomReader(random) {\n+\t\treturn nil, nil, errors.New(\"crypto/ed25519: only crypto/rand.Rea... | 2026-02-15T15:02:33 |
vercel/next.js | fea754747872122d167dd8bf1fc5581044e50521 | a43cf0c247b72915d82b44539c0dbde13efccfc9 | Route Handlers: Fix devRequestTimingInternalsEnd and Turbopack server HMR (#92271)
### What?
Fixes issues with `AppRouteRouteModule` that interact with
`devRequestTiming` and Turbopack server HMR.
1. **Incorrect `devRequestTimingInternalsEnd` attribution**: The
app-route template previously statically imported userl... | [
{
"path": "packages/next/src/build/templates/app-route.ts",
"patch": "@@ -2,7 +2,6 @@ import {\n AppRouteRouteModule,\n type AppRouteRouteHandlerContext,\n type AppRouteRouteModuleOptions,\n- type AppRouteUserlandModule,\n } from '../../server/route-modules/app-route/module.compiled'\n import { Route... | 2026-04-07T17:50:40 |
facebook/react | 8a33fb3a1cd6a8230cb9c49f4cda71f8d21c8476 | cebe42e24521ce02bf427fd482009d01e1466277 | [compiler] Cleanup: consistent tryRecord() wrapping and error recording (#35880)
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/35880).
* #35888
* #35884
* #35883
* #35882
* #35881
* __->__ #35880 | [
{
"path": "compiler/fault-tolerance-overview.md",
"patch": "@@ -328,4 +328,6 @@ Walk through `runWithEnvironment` and wrap each pass call site. This is the inte\n * **Partial HIR can trigger downstream invariants.** When lowering skips or partially handles constructs (e.g., unreachable hoisted functions, `v... | 2026-02-24T00:08:04 |
golang/go | 83d0189f8453841abef37b3262713c7f15ac2274 | 9a1e20beb0240df1f9dcc8e7d4d66de573828309 | cmd/internal/testdir: do not fail fast when running asmcheck
Print each error as they happen, and continue running. This is
helpful if multiple targets fail using -all_codegen.
Change-Id: Ifcb87a834662fbd4766e562ecf3ca278dcdc1af2
Reviewed-on: https://go-review.googlesource.com/c/go/+/761465
Reviewed-by: Dmitri Shural... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -696,6 +696,7 @@ func (t test) run() error {\n \t\t// against a set of regexps in comments.\n \t\tops := t.wantedAsmOpcodes(long)\n \t\tself := runtime.GOOS + \"/\" + runtime.GOARCH\n+\t\tvar lastErr error\n \t\tfor _, env := range ops.Envs(... | 2026-03-30T19:16:33 |
vercel/next.js | 29045997356d75c6f5dd9918a6deed534054b5b6 | 18430c7f9137c735f9f4f7a03d9bb6b5780cd6c3 | Optimize how we track data for persistence (#89370)
## Summary
Reworks how the turbo-tasks backend tracks modified tasks for persistence snapshots, reducing overhead and simplifying the snapshot lifecycle.
**Key changes:**
- **Replace `modified` DashMap with per-shard atomic counters + inline flags.** Instead of ma... | [
{
"path": "test/e2e/filesystem-cache/next.config.js",
"patch": "@@ -17,14 +17,10 @@ const nextConfig = {\n },\n },\n },\n- experimental: enableCaching\n- ? {\n- turbopackFileSystemCacheForBuild: true,\n- }\n- : {\n- turbopackFileSystemCacheForDev: false,\n- turbo... | 2026-04-07T16:25:27 |
nodejs/node | 7ed2fdf3faefee63b0ccd5e65a0734e6096093cf | 8ea96e653212c87d32665a263aa29744e41e64a2 | esm: fix typo in worker loader hook comment
PR-URL: https://github.com/nodejs/node/pull/62475
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "lib/internal/modules/esm/worker.js",
"patch": "@@ -37,7 +37,7 @@ const { isCascadedLoaderInitialized, getOrInitializeCascadedLoader } = require('\n const { AsyncLoaderHooksOnLoaderHookWorker } = require('internal/modules/esm/hooks');\n \n /**\n- * Register asynchronus module loader customization ... | 2026-03-28T16:48:29 |
facebook/react | cebe42e24521ce02bf427fd482009d01e1466277 | d6558f36e2f1de6d0504de0fc6ed2f4f621aa655 | [compiler] Add fault tolerance test fixtures (#35879)
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/35879).
* #35888
* #35884
* #35883
* #35882
* #35881
* #35880
* __->__ #35879 | [
{
"path": "compiler/fault-tolerance-overview.md",
"patch": "@@ -327,4 +327,5 @@ Walk through `runWithEnvironment` and wrap each pass call site. This is the inte\n * **Phase 3 (BuildHIR) revealed that most error sites already used `builder.errors.push()` for accumulation.** The existing lowering code was des... | 2026-02-24T00:06:39 |
golang/go | 33e66cfb0406b27ce11229a4ebd944c4cb20006f | fe5b750ce9e9443b42b20ed242664950499ffafe | cmd/go: invalidate test cache when -coverpkg dependencies change
When running tests with -cover and -coverpkg, the resulting coverage
profile includes data from all packages specified in -coverpkg, not
just the test package. Previously, the test cache key did not account
for changes in these out-of-band covered packag... | [
{
"path": "src/cmd/go/internal/test/test.go",
"patch": "@@ -1415,9 +1415,10 @@ type runTestActor struct {\n type runCache struct {\n \tdisableCache bool // cache should be disabled for this run\n \n-\tbuf *bytes.Buffer\n-\tid1 cache.ActionID\n-\tid2 cache.ActionID\n+\tbuf *bytes.Buffer\n+\tid1 cache... | 2026-04-06T16:07:24 |
nodejs/node | 74509b166ae999bd859c6eb2597ec61f227c5615 | e78ccd8017f7c7ab03b34d58b7a224c80e75ce12 | crypto: decorate async crypto job errors with OpenSSL error details
PR-URL: https://github.com/nodejs/node/pull/62348
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/crypto/crypto_argon2.cc",
"patch": "@@ -124,7 +124,8 @@ Maybe<void> Argon2Traits::AdditionalConfig(\n bool Argon2Traits::DeriveBits(Environment* env,\n const Argon2Config& config,\n ByteSource* out,\n- Cr... | 2026-03-28T05:24:34 |
facebook/react | 59d7c27087fae2b7abbb360187b473068c4bcaaa | 9b2d8013eed2b02193aebc37a614b37853ada214 | [compiler] Phase 8: Add multi-error test fixture and update plan (#35877)
Add test fixture demonstrating fault tolerance: the compiler now reports
both a mutation error and a ref access error in the same function, where
previously only one would be reported before bailing out.
Update plan doc to mark all phases as co... | [
{
"path": "compiler/fault-tolerance-overview.md",
"patch": "@@ -279,27 +279,27 @@ Walk through `runWithEnvironment` and wrap each pass call site. This is the inte\n \n ### Phase 8: Testing\n \n-- [ ] **8.1 Update existing `error.todo-*` fixture expectations**\n+- [x] **8.1 Update existing `error.todo-*` fix... | 2026-02-24T00:02:32 |
nodejs/node | 7d1f1b4483cd6199fd08fb751f2607d29017b589 | 53bcd114b10021c4a883b08df4d3c2ff6946b430 | test_runner: add exports option for module mocks
Add options.exports support in mock.module() and normalize option
shapes through a shared exports path.
Keep defaultExport and namedExports as aliases, emit runtime
deprecation warnings for legacy options, and update docs and tests,
including output fixtures and cov... | [
{
"path": "doc/api/test.md",
"patch": "@@ -2483,16 +2483,32 @@ changes:\n generates a new mock module. If `true`, subsequent calls will return the same\n module mock, and the mock module is inserted into the CommonJS cache.\n **Default:** false.\n+ * `exports` {Object} Optional mocked exports. ... | 2026-03-27T15:52:13 |
facebook/react | 9b2d8013eed2b02193aebc37a614b37853ada214 | e3e5d95cc457eb1ba54431bc95604aa931fc6adf | [compiler] Phase 4 (batch 2), 5, 6: Update remaining passes for fault tolerance (#35876)
Update remaining validation passes to record errors on env:
- validateMemoizedEffectDependencies
- validatePreservedManualMemoization
- validateSourceLocations (added env parameter)
- validateContextVariableLValues (changed throwT... | [
{
"path": "compiler/fault-tolerance-overview.md",
"patch": "@@ -174,17 +174,17 @@ These passes already accumulate errors internally and return `Result<void, Compi\n - Record errors on env\n - Update Pipeline.ts call site (line 315): remove `.unwrap()`\n \n-- [ ] **4.10 `validateMemoizedEffectDependencie... | 2026-02-24T00:01:02 |
vercel/next.js | 18430c7f9137c735f9f4f7a03d9bb6b5780cd6c3 | 8db9a752432a1d7732839363d51e41c83f0ec798 | Fix sst inspect tool to respect `CURRENT` and stale sst files (#92414)
<!-- 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:
... | [
{
"path": "turbopack/crates/turbo-persistence/src/bin/sst_inspect.rs",
"patch": "@@ -24,6 +24,7 @@ use turbo_persistence::{\n BLOCK_HEADER_SIZE, checksum_block,\n meta_file::MetaFile,\n mmap_helper::advise_mmap_for_persistence,\n+ sst_filter::SstFilter,\n static_sorted_file::{\n B... | 2026-04-07T16:22:35 |
golang/go | fe5b750ce9e9443b42b20ed242664950499ffafe | a415314c0bdec971ecd503471c804ec0208c6a2b | cmd/go/internal/modload: minor modernization fixes
* Add package comment.
* Make octal literal explicit.
* Simplify single var declaration.
Change-Id: I3841ca538034c75098502b35b1a713a98e936efc
Reviewed-on: https://go-review.googlesource.com/c/go/+/763360
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -2,6 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n+// Package modload provides module and package loading functionality.\n package modload\n \n import (\n@@ -850,7 +851,7 ... | 2026-04-07T13:30:23 |
facebook/react | e3e5d95cc457eb1ba54431bc95604aa931fc6adf | 426a394845e3e471c020543f3560046c74549c13 | [compiler] Phase 4 (batch 1): Update validation passes to record errors on env (#35875)
Update 9 validation passes to record errors directly on fn.env instead
of
returning Result<void, CompilerError>:
- validateHooksUsage
- validateNoCapitalizedCalls (also changed throwInvalidReact to
recordError)
- validateUseMemo
- ... | [
{
"path": "compiler/fault-tolerance-overview.md",
"patch": "@@ -127,49 +127,49 @@ All validation passes need to record errors on the environment instead of return\n \n These passes already accumulate errors internally and return `Result<void, CompilerError>`. The change is: instead of returning the Result, ... | 2026-02-23T23:35:52 |
vercel/next.js | 8db9a752432a1d7732839363d51e41c83f0ec798 | 985394417f2ef72466238497576a060ca936821c | turbo-tasks: fix hashed cell mode crash on task error (re-land #91576) (#92108)
### What?
Re-lands #91576 ("turbo-tasks: add hashed cell mode for hash-based
change detection without cell data"), which was reverted in #92103 due
to a `FATAL` crash in the `filesystem-cache` test suite.
Includes a bug fix on top: in `t... | [
{
"path": "Cargo.lock",
"patch": "@@ -9717,6 +9717,7 @@ dependencies = [\n \"bincode 2.0.1\",\n \"data-encoding\",\n \"sha2\",\n+ \"smallvec\",\n \"turbo-tasks-macros\",\n \"xxhash-rust\",\n ]",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "turbopack/crates/tur... | 2026-04-07T15:59:05 |
facebook/react | 426a394845e3e471c020543f3560046c74549c13 | eca778cf8bf88b2a62a5244f94a0084593ffbf14 | [compiler] Phase 2+7: Wrap pipeline passes in tryRecord for fault tolerance (#35874)
- Change runWithEnvironment/run/compileFn to return
Result<CodegenFunction, CompilerError>
- Wrap all pipeline passes in env.tryRecord() to catch and record
CompilerErrors
- Record inference pass errors via env.recordErrors() instead ... | [
{
"path": "compiler/fault-tolerance-overview.md",
"patch": "@@ -51,20 +51,20 @@ Add error accumulation to the `Environment` class so that any pass can record er\n \n Change `runWithEnvironment` to run all passes and check for errors at the end instead of letting exceptions propagate.\n \n-- [ ] **2.1 Change... | 2026-02-23T23:26:28 |
nodejs/node | 53bcd114b10021c4a883b08df4d3c2ff6946b430 | dbc74059503b629202823b1bc0010f0d5624dff6 | zlib: fix use-after-free when reset() is called during write
The Reset() method did not check the write_in_progress_ flag before
resetting the compression stream. This allowed reset() to free the
compression library's internal state while a worker thread was still
using it during an async write, causing a use-after-fr... | [
{
"path": "src/node_zlib.cc",
"patch": "@@ -644,6 +644,12 @@ class CompressionStream : public AsyncWrap,\n CompressionStream* wrap;\n ASSIGN_OR_RETURN_UNWRAP(&wrap, args.This());\n \n+ if (wrap->write_in_progress_) {\n+ wrap->env()->ThrowError(\n+ \"Cannot reset zlib stream while a ... | 2026-03-26T22:18:32 |
golang/go | a415314c0bdec971ecd503471c804ec0208c6a2b | e93b26688c0c25efa78b3948a58c5309307025a2 | cmd/compile: ensure result selects are in the block of a call
Without this CL, when compiling test/range4.go:func9, we get:
b1:
v1 = StaticLECall <runtime.deferrangefunc>
mem = SelectN [1] v1
Defer v1 -> b2 b3
b2:
v2 = SelectN [0] v1
That select in b2 should really live in b1. This doesn't cause a bug
as far ... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -5162,6 +5162,19 @@ func (s *state) call(n *ir.CallExpr, k callKind, returnResultAddr bool, deferExt\n \t\ts.vars[memVar] = s.newValue1A(ssa.OpVarLive, types.TypeMem, v, s.mem())\n \t}\n \n+\t// Build result value (before we might end the defe... | 2026-02-21T18:07:54 |
electron/electron | 30cf60a9356f48cb1740896ba63c7b3c0604e44b | ec30e4cdae90325020173a41fea43e64d0aad54e | fix: propagate requesting frame through sync permission checks (#50679)
WebContentsPermissionHelper::CheckPermission was hardcoding
GetPrimaryMainFrame() and deriving the requesting origin from
web_contents_->GetLastCommittedURL(), so the setPermissionCheckHandler
callback always received the top frame's origin and
de... | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1767,7 +1767,8 @@ bool WebContents::CheckMediaAccessPermission(\n content::WebContents::FromRenderFrameHost(render_frame_host);\n auto* permission_helper =\n WebContentsPermissionHelper::FromWebContents(web_contents);\n-... | 2026-04-04T22:59:25 |
rust-lang/rust | ee135be0415aa531339d2a536207f32b15a0acac | 30d0309fa821f7a0984a9629e0d227ca3c0d2eda | Fix ICE in next-solver TransmuteFrom candidate
Treat TransmuteFrom goals with non-region inference variables as ambiguous before running transmutability, instead of computing layouts for unresolved types. The old solver already treated these goals as ambiguous, so only the next solver could hit this ICE. | [
{
"path": "compiler/rustc_next_trait_solver/src/solve/trait_goals.rs",
"patch": "@@ -665,6 +665,12 @@ where\n return Err(NoSolution);\n }\n \n+ // Match the old solver by treating unresolved inference variables as\n+ // ambiguous until `rustc_transmute` can compute their la... | 2026-04-08T10:45:42 |
facebook/react | eca778cf8bf88b2a62a5244f94a0084593ffbf14 | 0dbb43bc57d27a79ecf4c78508089a36bd08ef5d | [compiler] Phase 1: Add error accumulation infrastructure to Environment (#35873)
Add error accumulation methods to the Environment class:
- #errors field to accumulate CompilerErrors across passes
- recordError() to record a single diagnostic (throws if Invariant)
- recordErrors() to record all diagnostics from a Com... | [
{
"path": "compiler/fault-tolerance-overview.md",
"patch": "@@ -31,7 +31,7 @@ Note that some errors may continue to cause an eager bailout:\n \n Add error accumulation to the `Environment` class so that any pass can record errors during compilation without halting.\n \n-- [ ] **1.1 Add error accumulator to ... | 2026-02-23T23:18:23 |
nodejs/node | dbc74059503b629202823b1bc0010f0d5624dff6 | e0cab9dcf7514cfabcf6e5989e2bf29455bf5f50 | esm: fix source phase identity bug in loadCache eviction
PR-URL: https://github.com/nodejs/node/pull/62415
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "lib/internal/modules/esm/module_job.js",
"patch": "@@ -145,7 +145,9 @@ class ModuleJobBase {\n */\n syncLink(requestType) {\n // Store itself into the cache first before linking in case there are circular\n- // references in the linking.\n+ // references in the linking. Track wheth... | 2026-03-23T23:26:13 |
golang/go | e93b26688c0c25efa78b3948a58c5309307025a2 | f5d460c3ea59ab574d5908f66f604c573891ffe1 | runtime: remove gopanicFP field from panic record
We can use SP instead of FP for the single thing this was used for
(finding the gopanic frame).
Change-Id: Iad2b406705abc3cdb0dbcdd069f7f9a330509164
Reviewed-on: https://go-review.googlesource.com/c/go/+/738042
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: ... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -847,7 +847,6 @@ func gopanic(e any) {\n \n \tvar p _panic\n \tp.arg = e\n-\tp.gopanicFP = unsafe.Pointer(sys.GetCallerSP())\n \n \trunningPanicDefers.Add(1)\n \n@@ -1146,7 +1145,7 @@ func gorecover() any {\n \t\t\t\tcase abi.FuncIDWrapper:\n \t\t\t\t\tcontinue... | 2026-01-22T01:32:37 |
electron/electron | 2c6332a7d6361b48ff598761ac18af7ed08e037d | ddc1bd955310b66c3b6e7a236b0dd92344b9ffb2 | fix: resolve getFileHandle concurrent stalling by queuing callbacks (#50597)
Previously, concurrent calls to FileSystemAccessPermissionContext::ConfirmSensitiveEntryAccess
for the same file path would silently discard the subsequent callbacks because
the internal callback map used a single callback per file path and s... | [
{
"path": "shell/browser/file_system_access/file_system_access_permission_context.cc",
"patch": "@@ -697,7 +697,11 @@ void FileSystemAccessPermissionContext::ConfirmSensitiveEntryAccess(\n content::GlobalRenderFrameHostId frame_id,\n base::OnceCallback<void(SensitiveEntryResult)> callback) {\n DCH... | 2026-04-03T16:04:55 |
golang/go | f5d460c3ea59ab574d5908f66f604c573891ffe1 | 3b5954c6349d31465dca409b45ab6597e0942d9f | cmd/compile/testdata/script/issue77033.txt: make test panic
The issue77033.txt script is executed by
cmd/internal/script/scripttest/run.go
program, that uses 60 seconds interrupt timeout.
The timeout is implemented by calling
os/exec.Cmd.Process.Signal(os.Interrupt)
but that call is not implemented on Windows, and... | [
{
"path": "src/cmd/compile/testdata/script/issue77033.txt",
"patch": "@@ -1,5 +1,5 @@\n-go test -bench=Foo -cpuprofile=default.pgo\n-go test -bench=Foo -pgo=default.pgo\n+go test -bench=Foo -cpuprofile=default.pgo -timeout=30s\n+go test -bench=Foo -pgo=default.pgo -timeout=30s\n ! stdout 'FAIL'\n \n -- main... | 2026-04-06T02:38:21 |
vercel/next.js | 985394417f2ef72466238497576a060ca936821c | 98330e3faeff95a51d2c185fc98f1f40bd86726f | Fix styled-jsx race condition: styles lost due to concurrent rendering (#92459)
### What?
Fix a race condition in the Pages Router SSR path where styled-jsx
styles were dropped from the rendered HTML.
### Why?
`styledJsxInsertedHTML()` reads and flushes the styled-jsx style
registry. Previously it was called concur... | [
{
"path": "packages/next/src/server/render.tsx",
"patch": "@@ -1385,29 +1385,22 @@ export async function renderToHTMLImpl(\n | {}\n | Awaited<ReturnType<typeof loadDocumentInitialProps>>\n \n- const [rawStyledJsxInsertedHTML, content] = await Promise.all([\n- renderToString(styledJsxInse... | 2026-04-07T15:02:37 |
electron/electron | ddc1bd955310b66c3b6e7a236b0dd92344b9ffb2 | 12109371d3aa06bc95bf18893748782839023a8f | fix: forward activation token from libnotify on notification click (#50568)
* feat: forward activation token from libnotify notification clicks
When a notification action is clicked on Linux, retrieve the activation
token from libnotify (if available) via dlsym and set it using
`base::nix::SetActivationToken()`. This... | [
{
"path": "shell/browser/notifications/linux/libnotify_notification.cc",
"patch": "@@ -4,12 +4,16 @@\n \n #include \"shell/browser/notifications/linux/libnotify_notification.h\"\n \n+#include <dlfcn.h>\n+\n+#include <array>\n #include <string>\n \n #include \"base/containers/flat_set.h\"\n #include \"base/f... | 2026-04-03T15:40:36 |
facebook/react | 0dbb43bc57d27a79ecf4c78508089a36bd08ef5d | 8b6b11f703a1f92dd2bb2e0e3b93a1836dc06de6 | [compiler] Add fault tolerance plan document (#35872)
Add detailed plan for making the React Compiler fault-tolerant by
accumulating errors across all passes instead of stopping at the first
error. This enables reporting multiple compilation errors at once.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapli... | [
{
"path": "compiler/fault-tolerance-overview.md",
"patch": "@@ -0,0 +1,320 @@\n+## React Compiler Fault Tolerance\n+\n+Update React Compiler (@compiler/ directory) to always run all passes and return either the transformed code (if no error) or a list of one or more compilation errors. \n+\n+## Background\n... | 2026-02-23T23:15:29 |
nodejs/node | 9137925f60886c17e71f7e2e1bd33aed8eaee034 | 583c479c9f2ffe1d8ca489282023838ab19e632b | test: avoid flaky run wait in debugger restart test
PR-URL: https://github.com/nodejs/node/pull/62112
Refs: https://github.com/nodejs/node/issues/61762
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/parallel/test-debugger-run-after-quit-restart.js",
"patch": "@@ -41,7 +41,7 @@ const path = require('path');\n .then(() => {\n assert.match(cli.output, /Use `run` to start the app again/);\n })\n- .then(() => cli.stepCommand('run'))\n+ .then(() => cli.command('run'))\n ... | 2026-03-25T21:22:41 |
golang/go | 3b5954c6349d31465dca409b45ab6597e0942d9f | a93560b70a65821ba8403b66261a3c23c93176c5 | cmd/compile: report error instead of ICE for oversized map element
When a map element or key type is 2GB or larger, the compiler crashed
with "internal compiler error: map elem too big" in reflectdata.ZeroAddr.
Add a size check in types.CalcSize for TMAP, similar to the existing
check for channel element types, so th... | [
{
"path": "src/cmd/compile/internal/types/size.go",
"patch": "@@ -366,6 +366,12 @@ func CalcSize(t *Type) {\n \t\tt.intRegs = 1\n \t\tCheckSize(t.Elem())\n \t\tCheckSize(t.Key())\n+\t\tif t.Elem().width >= 1<<31 {\n+\t\t\tbase.Errorf(\"map element type too large\")\n+\t\t}\n+\t\tif t.Key().width >= 1<<31 {\... | 2026-03-27T22:23:58 |
vercel/next.js | b9a14768a239141fc07801e66c5a31cadee38c70 | 621c73a24794231ab7b194cbe924c4c909d9c970 | docs: clarify that proxy/middleware matches static assets by default (#92441)
<!-- CURSOR_AGENT_PR_BODY_BEGIN -->
### What?
Adds an explicit note about Proxy's default matching behavior at the top
of the **Matcher** section in the Proxy API reference — the first place
users look when configuring which paths Proxy run... | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/proxy.mdx",
"patch": "@@ -70,7 +70,11 @@ Optionally, a config object can be exported alongside the Proxy function. This o\n \n ### Matcher\n \n-The `matcher` option allows you to target specific paths for the Proxy to run on. You can specify these ... | 2026-04-07T10:07:26 |
electron/electron | 12109371d3aa06bc95bf18893748782839023a8f | 69891d04bfd0bc13ef04cf11aac0f6a497af5e72 | fix: validate `dock_state_ `against allowlist before JS execution (#50646)
fix: validate dock_state_ against allowlist before JS execution
The dock_state_ member was concatenated directly into a JavaScript
string and executed via ExecuteJavaScript() in the DevTools context.
We should validate against the four known ... | [
{
"path": "shell/browser/ui/inspectable_web_contents.cc",
"patch": "@@ -12,6 +12,7 @@\n #include <utility>\n \n #include \"base/base64.h\"\n+#include \"base/containers/fixed_flat_set.h\"\n #include \"base/containers/span.h\"\n #include \"base/dcheck_is_on.h\"\n #include \"base/memory/raw_ptr.h\"\n@@ -160,6 ... | 2026-04-03T15:39:16 |
facebook/react | 8b6b11f703a1f92dd2bb2e0e3b93a1836dc06de6 | ab18f33d46171ed1963ae1ac955c5110bb1eb199 | [compiler] Remove fallback compilation pipeline dead code (#35827)
Remove dead code left behind after the removal of retryCompileFunction,
enableFire, and inferEffectDependencies:
- Delete ValidateNoUntransformedReferences.ts (always a no-op)
- Remove CompileProgramMetadata type and retryErrors from ProgramContext
- R... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Babel/BabelPlugin.ts",
"patch": "@@ -11,7 +11,6 @@ import {\n injectReanimatedFlag,\n pipelineUsesReanimatedPlugin,\n } from '../Entrypoint/Reanimated';\n-import validateNoUntransformedReferences from '../Entrypoint/ValidateNoUntransformedRefe... | 2026-02-23T16:54:49 |
rust-lang/rust | 501480e15e1760915c645df499cd85018b2ffc59 | 77ea376be32f0f856372787a97d3cbe1610d7a3a | fixing clippy reference | [
{
"path": "src/tools/clippy/clippy_lints/src/methods/unnecessary_fold.rs",
"patch": "@@ -41,7 +41,7 @@ fn needs_turbofish<'tcx>(cx: &LateContext<'tcx>, expr: &hir::Expr<'tcx>) -> bool\n if !fn_return_ty\n .skip_binder()\n .walk()\n- ... | 2026-04-08T20:58:59 |
vercel/next.js | 8aca9e3bd12419063a409183273e718cca853878 | d75f07b3518a69691d3190f055ca2d30d700c56c | Include more context in macOS Rosetta 2 warning message (#92436)
Addresses this missed review comment: https://github.com/vercel/next.js/pull/92220#discussion_r3024004242
There's only so much context we can provide because there's a ton of different ways users could've installed node incorrectly. | [
{
"path": "packages/next/src/bin/next.ts",
"patch": "@@ -96,7 +96,9 @@ class NextRootCommand extends Command {\n os.cpus().some((cpu) => cpu.model.includes('Apple'))\n ) {\n warn(\n- 'You are running Next.js on an Apple Silicon Mac with Rosetta 2 translation, which may cause d... | 2026-04-07T06:47:38 |
electron/electron | 188813e206a08cc87a6491ea8c2bb90be1fc1fde | 8b768b8211b81245df1c25963acfdd02c4dde71f | ci: fix pulling previous object checksums (#50635)
* ci: fix pulling previous object checksums
* chore: fix artifact finding
* chore: skip unpack
* refactor: dawidd6/action-download-artifact can't handle non-archived artifacts
Assisted-by: Claude Opus 4.6
* refactor: use Octokit in standalone script
Assisted-by:... | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -48,19 +48,15 @@ runs:\n shell: bash\n run: echo \"::add-matcher::src/electron/.github/problem-matchers/clang.json\"\n - name: Download previous object checksums\n- uses: dawidd6/action-download-artifact@09b07ec687d1077... | 2026-04-03T04:52:50 |
nodejs/node | 0d7e4b1d4b0220b68bc2c5c2b973deff1664824b | 82615369d4d9aab2d841d4d790263d2c6336f2e4 | build,test: test array index hash collision
This enables v8_enable_seeded_array_index_hash and add a test for it.
Fixes: https://hackerone.com/reports/3511792
deps: V8: backport 0a8b1cdcc8b2
Original commit message:
implement rapidhash secret generation
Bug: 409717082
Change-Id: I471f33d66de32002f744a... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.13',\n+ 'v8_embedder_string': '-node.16',\n \n ##### V8 defaults for Node.js #####\n... | 2026-01-29T02:30:37 |
facebook/react | ab18f33d46171ed1963ae1ac955c5110bb1eb199 | b16b768fbd95fff334b15d36b8f141010d68869e | Fix context propagation through suspended Suspense boundaries (#35839)
When a Suspense boundary suspends during initial mount, the primary
children's fibers are discarded because there is no current tree to
preserve them. If the suspended promise never resolves, the only way to
retry is something external like a conte... | [
{
"path": "packages/react-reconciler/src/ReactFiberBeginWork.js",
"patch": "@@ -3991,9 +3991,23 @@ function attemptEarlyBailoutIfNoScheduledUpdate(\n // whether to retry the primary children, or to skip over it and\n // go straight to the fallback. Check the priority of the primary\n ... | 2026-02-21T03:03:11 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.