repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
vercel/next.js | ea56922a398e4dc682c0a3aeddaeefa42c747f12 | 82db94494ad41bec61b97ff7a95a6707745a3434 | turbo-persistence: add CRC32 block checksums (#90754)
### What?
Add a 4-byte CRC32 checksum to every block in turbo-persistence SST
files.
### Why?
Detect on-disk cache corruption early with a clear error message, rather
than silently returning wrong data or hitting confusing LZ4
decompression failures.
### How?
... | [
{
"path": "Cargo.lock",
"patch": "@@ -9431,6 +9431,7 @@ dependencies = [\n \"bitfield\",\n \"byteorder\",\n \"codspeed-criterion-compat\",\n+ \"crc32fast\",\n \"dashmap 6.1.0\",\n \"either\",\n \"jiff\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "Cargo.to... | 2026-03-03T11:00:56 |
facebook/react | d74f061b6908e4841b2eb09c296ca4658dbdd38e | f7254efc5c43ebae57afa32a52d4653878ef23d0 | [Fiber] Clean up ViewTransition when it fails to start (#34676)
The View Transition docs were unclear about this but apparently the
`finished` promise never settles if the animation never started. So if
there's an error that rejects the `ready` promise, we'll never run the
clean up which can cause it to stall.
Fixes ... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2279,6 +2279,11 @@ export function startViewTransition(\n spawnedWorkCallback();\n };\n const handleError = (error: mixed) => {\n+ // $FlowFixMe[prop-missing]\n+ if (ownerDocument.__reactViewTran... | 2025-10-02T01:58:13 |
rust-lang/rust | 4b0caec04bb1dd73373b0660841c14b72507bede | fb27476aaf1012f1f6ace6306f9b990e0d989c31 | Panic/return false on overflow in no_threads read/try_read impl | [
{
"path": "library/std/src/sys/sync/rwlock/no_threads.rs",
"patch": "@@ -17,6 +17,10 @@ impl RwLock {\n #[inline]\n pub fn read(&self) {\n let m = self.mode.get();\n+\n+ // Check for overflow.\n+ assert!(m == isize::MAX, \"too many active read locks on RwLock\");\n+\n i... | 2026-03-28T23:19:10 |
nodejs/node | 4443a11bef5688f0696adec08daf842a7069c5d1 | eac00fabde8aaca1224e2070121b028628321d23 | 2026-01-13, Version 20.20.0 'Iron' (LTS)
This is a security release.
Notable changes:
lib:
* (CVE-2025-55132) disable futimes when permission model is enabled (RafaelGSS) https://github.com/nodejs-private/node-private/pull/802
* (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) https://github.com/... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -96,7 +96,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V22.md#22.0.0\">22.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.19.6\">20.19.6</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.20.0\">20.20.0... | 2026-01-07T16:31:59 |
golang/go | 60dc96479a85db0e245a5c14d964628169abedf4 | fa8595702eba16f757860705157f17f8054a92df | reflect: use &zeroVal[0] instead of nil for data field for zero-sized payloads
Because our wrapper functions barf if the pointer is nil, even if
we don't actually dereference the pointer.
Fixes #77779
Change-Id: Ib1b93d9f0fdc771cd884137007508ba2b1da4b7a
Reviewed-on: https://go-review.googlesource.com/c/go/+/748660
R... | [
{
"path": "src/reflect/value.go",
"patch": "@@ -1288,9 +1288,10 @@ func (v Value) Field(i int) Value {\n \t\t// bunch of zero-sized fields. We must return the zero-sized\n \t\t// fields indirectly, as only ptr-shaped things can be direct.\n \t\t// See issue 74935.\n-\t\t// We use nil instead of v.ptr as it ... | 2026-02-24T23:31:08 |
vercel/next.js | 5fa40c806cad62d55da0aa24f9e548eb0392d836 | cfd5d5db0f3fc79b17da5b2fedbc732bd3a1ca1f | exempt data URL CSS from Pages Router global CSS restriction (#89901)
### What?
Skip the Pages Router global CSS restriction for `data:` URL imports
(similar to app router and mixed app/pages router)
### Why?
`data:text/css` should work the same no matter if pages router, app
router or mixed router usage
### How?
... | [
{
"path": "crates/next-api/src/module_graph.rs",
"patch": "@@ -846,9 +846,12 @@ async fn validate_pages_css_imports_individual(\n candidates\n .into_iter()\n .map(async |issue| {\n+ let path = issue.module.ident().path().await?;\n // We allow imports of global CSS ... | 2026-03-03T10:17:30 |
facebook/react | f7254efc5c43ebae57afa32a52d4653878ef23d0 | 79ca5ae8557e903f225c9ae61fa4db981ac87dfa | [playground] Persist open tabs on compiler error (#34673)
This change allows it so that tabs that were open before a compiler
error are automatically opened again when the error is resolved. Quality
of life change for those especially working with the advanced view of
the playground.
https://github.com/user-attachme... | [
{
"path": "compiler/apps/playground/components/AccordionWindow.tsx",
"patch": "@@ -23,6 +23,7 @@ export default function AccordionWindow(props: {\n tabsOpen: Set<string>;\n setTabsOpen: (newTab: Set<string>) => void;\n changedPasses: Set<string>;\n+ isFailure: boolean;\n }): React.ReactElement {\n ... | 2025-10-02T01:26:16 |
nodejs/node | 608ff5c25ca52338e3cfd81685a08a3f0e912a8d | 1bd7f62d139ceb5c60ba9b198c25434deb7106e7 | build: fix misplaced comma in ldflags
PR-URL: https://github.com/nodejs/node/pull/61294
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Aviv Keller <me@aviv.sh>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@g... | [
{
"path": "node.gypi",
"patch": "@@ -412,7 +412,7 @@\n 'conditions': [\n ['OS in \"linux freebsd openharmony\" and node_shared==\"false\"', {\n 'ldflags': [\n- '-Wl,--whole-archive,'\n+ '-Wl,--whole-archive',\n ... | 2026-01-11T18:15:00 |
rust-lang/rust | afe522a7545a14c741a0aea05663a4cb130e44fd | dffadd38089c57dd6fa3e2bf4baaa1e129a8ea37 | fix: don't panic unmerge arm on trailing pipe
Example
---
```rust
fn main() {
let y = match 0 {
0 |$0 => { 1i32 }
1 => { 2i32 }
};
}
```
**Before this PR**
Panic on apply
**After this PR**
Assist not applicable | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/unmerge_match_arm.rs",
"patch": "@@ -38,11 +38,18 @@ pub(crate) fn unmerge_match_arm(acc: &mut Assists, ctx: &AssistContext<'_>) -> O\n }\n let match_arm = ast::MatchArm::cast(or_pat.syntax().parent()?)?;\n let match_arm_body = m... | 2026-03-29T00:47:40 |
facebook/react | 7f9d99749c95d69b23efaa328c4388d73a39bf50 | aef8b1b562ed7db87ae9552e44168a54af84aaf8 | Land enableHiddenSubtreeInsertionEffectCleanup (#34372)
Fixes a bug where insertion effects were not cleaned up if a hidden
Activity is unmounted. | [
{
"path": "packages/shared/ReactFeatureFlags.js",
"patch": "@@ -166,7 +166,7 @@ export const renameElementSymbol: boolean = true;\n /**\n * Enables a fix to run insertion effect cleanup on hidden subtrees.\n */\n-export const enableHiddenSubtreeInsertionEffectCleanup: boolean = false;\n+export const enabl... | 2025-10-01T20:31:30 |
electron/electron | 1b2679b3150478054280fa1afb3a9223fd8dae87 | 15acf7076015cf226d60f5584cc234dad36b541d | fix: revert os_crypt async cookie provider implementation (#49382)
* Revert "fix: provide explicit cookie encryption provider for cookie encryption (#49348)"
This reverts commit 95f097a392dbdfd7c0e38a7d55bf14dad92de1fd.
* Revert "fix: fix cookie encryption provider loading on Windows and Linux (#49371)"
This revert... | [
{
"path": "BUILD.gn",
"patch": "@@ -465,8 +465,6 @@ source_set(\"electron_lib\") {\n \"//components/os_crypt/async/browser\",\n \"//components/os_crypt/async/browser:key_provider_interface\",\n \"//components/os_crypt/sync\",\n- \"//components/password_manager/core/browser:password_switches\"... | 2026-01-14T08:34:00 |
golang/go | fa8595702eba16f757860705157f17f8054a92df | e237976802f31e13e98cbde121fa0348f77d8df4 | internal/runtime/sys: only use speculation barrier for DIT on Apple Silicon
The Apple documentation [0] indicates that when enabling DIT (via MSR),
a speculation barrier should be used. The rationale for this is not
explained, but one could assume that they perhaps do not treat MSR of
a PSTATE bit as a context synchro... | [
{
"path": "src/internal/runtime/sys/dit_arm64.s",
"patch": "@@ -11,9 +11,17 @@ TEXT ·EnableDIT(SB),$0-1\n MOVB R1, ret+0(FP)\n TBNZ $0, R1, ret\n MSR $1, DIT\n+#ifdef GOOS_darwin\n+ // Arm documents that barriers are not necessary when writing to, or reading\n+ // from, PSTATE fields. Howe... | 2026-02-24T16:58:39 |
vercel/next.js | 11823f8471cec98a093fd3af6d4193838da0b667 | 872c01b5e6f42b725e5626ab5bd5ff42608c2ad8 | Add support for multi-valued tables (#89728)
## What
Add support for multi-valued tables in `turbo-persistence`.
A multi-valued table allows multiple distinct values to be associated
with a single key. Each family is independently configured as
`SingleValue` (existing behavior) or `MultiValue` via the new
`FamilyKin... | [
{
"path": "turbopack/crates/turbo-persistence-tools/src/main.rs",
"patch": "@@ -3,7 +3,7 @@\n use std::path::PathBuf;\n \n use anyhow::{Context, Result, bail};\n-use turbo_persistence::{MetaFileEntryInfo, SerialScheduler, TurboPersistence};\n+use turbo_persistence::{DbConfig, MetaFileEntryInfo, SerialSchedu... | 2026-03-03T09:18:07 |
nodejs/node | 6b8da344c454c7911a235e1eae49a05c79c072ba | 4ddde922751fbcc5f66ad30df380defe314c72ae | build: fix crate vendor file checksums on windows
PR-URL: https://github.com/nodejs/node/pull/61329
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Aviv Keller <me@aviv.sh>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail... | [
{
"path": ".gitattributes",
"patch": "@@ -1,5 +1,7 @@\n test/fixtures/* -text\n vcbuild.bat text eol=crlf\n+# disable eol conversion in vendored files.\n+deps/crates/vendor/**/* -text\n deps/npm/bin/npm text eol=lf\n deps/npm/bin/npx text eol=lf\n deps/corepack/shims/corepack text eol=lf",
"additions": ... | 2026-01-11T17:39:07 |
electron/electron | 0e4ee9f03a301557b500bd6d7b33321b89b6f3c9 | ae94cefdba1cac0e311c7ced8f71fcc1d4b74a8c | fix: fix cookie encryption provider loading on Windows and Linux (#49371)
* fix: support cookie encryption provider cross-platform
* fix: add async macos key provider | [
{
"path": "BUILD.gn",
"patch": "@@ -465,6 +465,8 @@ source_set(\"electron_lib\") {\n \"//components/os_crypt/async/browser\",\n \"//components/os_crypt/async/browser:key_provider_interface\",\n \"//components/os_crypt/sync\",\n+ \"//components/password_manager/core/browser:password_switches\"... | 2026-01-13T03:39:29 |
facebook/react | 67e24bc5279204108b749fe48b4d395ef9e49e67 | bbc2d596fa48b64d359b96e167403693caaaabd9 | Improve lint error messages for useEffectEvent (#34669)
Called Before:
> `logEvent` is a function created with React Hook "useEffectEvent", and
can only be called from the same component.
Called After:
> `logEvent` is a function created with React Hook "useEffectEvent", and
can only be called from Effects and Effec... | [
{
"path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRulesOfHooks-test.js",
"patch": "@@ -1637,17 +1637,32 @@ const allTests = {\n const onClick = useEffectEvent(() => {\n showNotification(theme);\n });\n+ // error message 1\n const onClick2 = () =... | 2025-10-01T19:17:08 |
golang/go | 874c3ceb3fcca850ccf9443974dce72abe112521 | 8d5e57474c4fe6d653327a49d460d4010c1d1d9b | cmd/compile: add loclist for removed DCL nodes
Certain return parameters which live in registers and end up pruned by
earlier SSA passes will end up with a DWARF entry but no location list.
This patch fixes this by ensuring those params have proper location
lists generated for them.
Change-Id: I4fff074e62c3010abdee85... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -236,6 +236,8 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t// reliably report its contents.\"\n \t// For non-SSA-able arguments, however, the correct information\n \t// is known -- they have a sin... | 2025-08-14T21:48:46 |
vercel/next.js | 872c01b5e6f42b725e5626ab5bd5ff42608c2ad8 | 420b72b697ca22bc5d2b81e45bc616393571d1b7 | Create next app CLI docs (#90788)
<!-- 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
### Improving Do... | [
{
"path": "docs/01-app/01-getting-started/01-installation.mdx",
"patch": "@@ -39,7 +39,7 @@ cd my-app\n bun dev\n ```\n \n-- `--yes` skips prompts using saved preferences or defaults. The default setup enables TypeScript, Tailwind, ESLint, App Router, and Turbopack, with import alias `@/*`.\n+- `--yes` skip... | 2026-03-03T08:54:10 |
nodejs/node | 45e37d95eb5dde1fd9d54dc9488c9e9626c76632 | 0f159235839a9db6587252414688870ef61e4b0d | build,tools: fix addon build deadlock on errors
PR-URL: https://github.com/nodejs/node/pull/61321
Reviewed-By: Aviv Keller <me@aviv.sh>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "tools/build_addons.py",
"patch": "@@ -58,8 +58,8 @@ def node_gyp_rebuild(test_dir):\n \n # We buffer the output and print it out once the process is done in order\n # to avoid interleaved output from multiple builds running at once.\n- return_code = process.wait()\n stdout,... | 2026-01-11T01:15:05 |
electron/electron | ae94cefdba1cac0e311c7ced8f71fcc1d4b74a8c | 409c29b12b1ce4d4f9a3ce86327ff378f737ff4f | refactor: add static `ReplyChannel::SendError()` helper (#49338)
* refactor: add static void ReplyChannel::SendError()
* refactor: use static SendError() instead of instantiating a temporary
* refactor: remove non-static version of SendError()
* refactor: remove redundant callback-is-non-null checks | [
{
"path": "shell/browser/electron_api_ipc_handler_impl.cc",
"patch": "@@ -140,31 +140,25 @@ gin_helper::internal::Event* ElectronApiIPCHandlerImpl::MakeIPCEvent(\n bool internal,\n electron::mojom::ElectronApiIPC::InvokeCallback callback) {\n if (!session) {\n- if (callback) {\n- // We mus... | 2026-01-12T23:02:58 |
facebook/react | 1f460f31ee277c4f62d352bbad48977b976ad8a8 | 2f0649a0b27516eaab549b18af15eed0420e3446 | [DevTools] Fix host instance highlighting (#34661) | [
{
"path": "packages/react-devtools-shared/src/backend/views/Highlighter/index.js",
"patch": "@@ -115,7 +115,7 @@ export default function setupHighlighter(\n const nodes = renderer.findHostInstancesForElementID(id);\n if (nodes != null) {\n for (let i = 0; i < nodes.length; i++) {\n- con... | 2025-10-01T15:32:34 |
golang/go | 8d5e57474c4fe6d653327a49d460d4010c1d1d9b | 4afaf67ab44508258995371b09d16efd3c29edb0 | builtin: update new function comment
The function comment for new does not reflect the recent change in behaviour since Go 1.26.
Fixes #77584
Change-Id: I501d701adb5a1c2ff4b559c243ba07bbef4940d9
Reviewed-on: https://go-review.googlesource.com/c/go/+/746561
Reviewed-by: Alan Donovan <adonovan@google.com>
Auto-Submit:... | [
{
"path": "src/builtin/builtin.go",
"patch": "@@ -122,6 +122,10 @@ type Type int\n // invocation.\n type Type1 int\n \n+// TypeOrExpr is here for the purposes of documentation only. It is a stand-in\n+// for either a Go type or an expression.\n+type TypeOrExpr int\n+\n // IntegerType is here for the purpose... | 2026-02-18T16:12:31 |
nodejs/node | a327288cc6747cf5e07656a1c45fe2f19e0926ae | 3bb0135783bbbb9b25ac44be8dc24c36ca254a09 | doc: correct description of `error.stack` accessor behavior
PR-URL: https://github.com/nodejs/node/pull/61090
Refs: https://github.com/nodejs/node/issues/60862
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -379,13 +379,17 @@ The location information will be one of:\n represents a call in a user program (using ES module system), or\n its dependencies.\n \n-The string representing the stack trace is lazily generated when the\n-`error.stack` property is **accessed*... | 2026-01-09T04:12:19 |
vercel/next.js | 420b72b697ca22bc5d2b81e45bc616393571d1b7 | c3165ca583c4c0b3c964ff03d7e70f8b76417898 | Update Rust dependencies for turbo-persistence and turbo-tasks-backend (#90774)
### What?
Updates outdated Rust dependencies used by `turbo-persistence` and
`turbo-tasks-backend` crates.
### Why?
Keep dependencies current to benefit from bug fixes, performance
improvements, and security patches.
### How?
Each dep... | [
{
"path": "Cargo.lock",
"patch": "@@ -268,9 +268,12 @@ dependencies = [\n \n [[package]]\n name = \"arc-swap\"\n-version = \"1.7.1\"\n+version = \"1.8.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457\"\n+... | 2026-03-03T08:49:20 |
electron/electron | cf2e283332657ee4ec103263deb92f67108882e1 | d6a6312fc8f31901e4a93cc0934ac65880db1b52 | fix: clang-tidy warnings, pt. 1 (#49083)
* fix: google-readability-casting warning about the uint32_t cast
* fix: modernize-use-equals-default warnings
* fix: readability-redundant-member-init warning
* fix: modernize-make-unique warnings
* fix: modernize-use-emplace
warning: use emplace_back instead of push_back... | [
{
"path": "shell/browser/api/electron_api_global_shortcut.cc",
"patch": "@@ -52,7 +52,7 @@ namespace electron::api {\n gin::DeprecatedWrapperInfo GlobalShortcut::kWrapperInfo = {\n gin::kEmbedderNativeGin};\n \n-GlobalShortcut::GlobalShortcut() {}\n+GlobalShortcut::GlobalShortcut() = default;\n \n Globa... | 2026-01-10T06:57:38 |
facebook/react | 7bccdbd765f03254658da9086e9c5763842aa3ed | 5667a41fe4d81aa806f6c1e8814b17975e33b317 | Fix "Consecutive" Event Logs in Performance Track (#34659)
Reset EventTime when clearing timers. We need to track repeat updates
separately.
Typically we always reset all timers when we've logged an update. The
same update shouldn't be logged again.
I was trying to be clever and not reset the XEventTime because we a... | [
{
"path": "packages/react-reconciler/src/ReactFiberWorkLoop.js",
"patch": "@@ -281,7 +281,7 @@ import {\n blockingUpdateComponentName,\n blockingEventTime,\n blockingEventType,\n- blockingEventIsRepeat,\n+ blockingEventRepeatTime,\n blockingSuspendedTime,\n gestureClampTime,\n gestureUpdateTim... | 2025-10-01T14:53:08 |
golang/go | 8438ace20738cbb1faab5708837e57a50aa774d3 | c2fabf1a268f0480d78bede82fc6a9d3a63fcace | cmd/compile: avoid panic in ternary rewrite on checked instructions
The replace function in rewritetern.go was panicing when encountering
instructions that had already been processed. This adds a check to
ensure we don't trigger a panic on these instructions.
Fixes #77582
Change-Id: I0b38312109b9cedaa1cb1320015097d6... | [
{
"path": "src/cmd/compile/internal/ssa/issue77582_test.go",
"patch": "@@ -0,0 +1,29 @@\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 goexperiment.simd && amd64\n+\n+package... | 2026-02-13T19:44:32 |
vercel/next.js | bbb72bf2584cebe5c38f5494b0ecd3a56b0b0a44 | 410c65808aca79def4cd087b765e30b2e1aa1220 | enable server action RDC deploy test (#90796)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### ... | [
{
"path": "test/e2e/app-dir/resume-data-cache/resume-data-cache.test.ts",
"patch": "@@ -3,7 +3,7 @@ import { retry } from 'next-test-utils'\n import { computeCacheBustingSearchParam } from 'next/dist/shared/lib/router/utils/cache-busting-search-param'\n \n describe('resume-data-cache', () => {\n- const { n... | 2026-03-03T02:28:43 |
nodejs/node | 61d0a9580d3a53f6e7ae2b7acc0f3041007fa45c | a18f8c169352dd8a452df9fd4de9319cc2bd329a | doc: fix filename typo
PR-URL: https://github.com/nodejs/node/pull/61297
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Gireesh Punathil <gpunath... | [
{
"path": "doc/contributing/managing-social-media-accounts.md",
"patch": "@@ -41,7 +41,7 @@ delegated to the Foundation Staff.\n \n No project members have access to the Facebook account.\n \n-## Linkedin\n+## LinkedIn\n \n Day to day management of the LinkedIn account has been\n delegated to the Foundation... | 2026-01-08T17:55:01 |
electron/electron | 95f097a392dbdfd7c0e38a7d55bf14dad92de1fd | b38075551489bfb496f2a0df90154240399219d7 | fix: provide explicit cookie encryption provider for cookie encryption (#49348)
fix: provide explicit cookie encryption provider
Fixes 6996667: Reland "Port net::CookieCryptoDelegate to os_crypt async" | https://chromium-review.googlesource.com/c/chromium/src/+/6996667 | [
{
"path": "shell/browser/net/network_context_service.cc",
"patch": "@@ -14,6 +14,7 @@\n #include \"net/http/http_util.h\"\n #include \"net/net_buildflags.h\"\n #include \"services/network/network_service.h\"\n+#include \"services/network/public/cpp/cookie_encryption_provider_impl.h\"\n #include \"services/n... | 2026-01-09T19:53:58 |
facebook/react | a55e98f738f4a7ab7196a4c4210cbc6e82ec9b0c | 063394cf821e5082e834c72ffb9cf6f8575c9b34 | [playground] ViewTransition on internals toggle & tab expansion (#34597)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a p... | [
{
"path": "compiler/apps/playground/components/AccordionWindow.tsx",
"patch": "@@ -6,7 +6,14 @@\n */\n \n import {Resizable} from 're-resizable';\n-import React, {useCallback} from 'react';\n+import React, {\n+ useCallback,\n+ useId,\n+ unstable_ViewTransition as ViewTransition,\n+ unstable_addTransiti... | 2025-09-30T19:25:10 |
golang/go | 01b795bc4c6ea54648c60ade6691ad306c0405d3 | 370513491ab89fe25afb8a4864c409a3dff836b1 | log/syslog: document that this package no longer works after macOS 12.0
Per https://developer.apple.com/documentation/os/logging, Apple's syslog
no longer uses the legacy syslog and Apple System Logger (ASL) APIs
as of macOS 12.X (Monterey), 13.X (Ventura) and thus this package no
longer works and no longer listens on... | [
{
"path": "src/log/syslog/doc.go",
"patch": "@@ -22,3 +22,8 @@ package syslog\n // see https://golang.org/issue/1108.\n \n // BUG(akumar): This package is not implemented on Plan 9.\n+\n+// BUG(odeke-em): As of Darwin's macOS 12.X (Monterey), Apple's syslog daemon no\n+// longer listens on a UNIX domain soc... | 2025-12-25T07:35:27 |
nodejs/node | 2030fd345bc43748f0986ab8c72bc03d043c60b5 | d050aa87e81973f2422eeb55d4926cf01def8020 | doc: fix typos and grammar in `BUILDING.md` & `onboarding.md`
PR-URL: https://github.com/nodejs/node/pull/61267
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
R... | [
{
"path": "BUILDING.md",
"patch": "@@ -635,7 +635,7 @@ on Linux, you can try [Docker](https://www.docker.com/products/docker-desktop/)\n (using an image like `gengjiawen/node-build:2020-02-14`).\n \n The `--debug` is not necessary and will slow down build and testing, but it can\n-show clear stacktrace if A... | 2026-01-06T08:52:15 |
vercel/next.js | 410c65808aca79def4cd087b765e30b2e1aa1220 | dd4a97e1f45161f0f8297c681bb53b184b6829df | Add static error when `unstable_instant` is used without `cacheComponents` (#90793)
`unstable_instant` requires `cacheComponents` to function — without it,
validation is entirely skipped and the config silently does nothing.
This adds a compile-time error in the SWC transform that catches the
misconfiguration early, m... | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -99,6 +99,7 @@ enum RSCErrorKind {\n NextRscErrDeprecatedApi((String, String, Span)),\n NextSsrDynamicFalseNotAllowed(Span),\n NextRscErrIncompatibleRouteSegmentConfig(Span, String, NextConfigProper... | 2026-03-03T00:35:56 |
golang/go | 370513491ab89fe25afb8a4864c409a3dff836b1 | 0bd25dc875a3157974c06ba8d4fb33f95ac2dfdd | internal/profile: fix error message casing for function ID not found
Go convention: error messages should not be capitalized
Change-Id: I021f54791b7c12ffffa7106532a33cd0ee2e9377
GitHub-Last-Rev: dfa6e0ff5212deb105c747ed80041eff5efc4447
GitHub-Pull-Request: golang/go#77013
Reviewed-on: https://go-review.googlesource.c... | [
{
"path": "src/internal/profile/encode.go",
"patch": "@@ -232,7 +232,7 @@ func (p *Profile) postDecode() error {\n \t\t\tif id := ln.functionIDX; id != 0 {\n \t\t\t\tl.Line[i].Function = functions[id]\n \t\t\t\tif l.Line[i].Function == nil {\n-\t\t\t\t\treturn fmt.Errorf(\"Function ID %d not found\", id)\n+... | 2025-12-27T14:26:09 |
facebook/react | 3580584ba2bdce17572aa356da1d6a09a2d2e3b3 | 319a7867d0e19481a60a6ed931a5f97ae6691572 | [playground] ViewTransition on tab switch (#34596)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please ma... | [
{
"path": "compiler/apps/playground/components/Editor/EditorImpl.tsx",
"patch": "@@ -24,7 +24,11 @@ import BabelPluginReactCompiler, {\n printFunctionWithOutlined,\n type LoggerEvent,\n } from 'babel-plugin-react-compiler';\n-import {useDeferredValue, useMemo} from 'react';\n+import {\n+ useDeferredVal... | 2025-09-29T18:40:33 |
electron/electron | 3985daa81c4da5b29c8a7fb8cc52144afc7f999d | 5901d8a6d8bf019bf8b535cb8ffe18860bdf3ad3 | chore: improvements to script/run-clang-tidy.ts (#49335)
* chore: disable color output for clang-tidy in CI
* chore: small QoL improvements to run-clang-tidy.ts
* chore: add --fix option to script/run-clang-tidy.ts | [
{
"path": "script/run-clang-tidy.ts",
"patch": "@@ -114,11 +114,14 @@ async function runClangTidy (\n outDir: string,\n filenames: string[],\n checks: string = '',\n- jobs: number = 1\n+ jobs: number = 1,\n+ fix: boolean = false\n ): Promise<boolean> {\n const cmd = path.resolve(LLVM_BIN, 'clang-... | 2026-01-09T06:05:44 |
nodejs/node | 77c2b5383417459a5096a571ccceed5b2b8e5279 | 6218d14505668002ece19dd91b3349e4d3967759 | build: expose libplatform symbols in shared libnode
This requires setting BUILDING_V8_PLATFORM_SHARED to expose the
public symbols since we build with hidden visibility by default.
PR-URL: https://github.com/nodejs/node/pull/61144
Fixes: https://github.com/nodejs/node/issues/61102
Reviewed-By: Michaël Zasso <targos@p... | [
{
"path": "node.gypi",
"patch": "@@ -50,9 +50,11 @@\n 'defines': [\n 'USING_UV_SHARED',\n 'USING_V8_SHARED',\n+ 'USING_V8_PLATFORM_SHARED',\n 'BUILDING_NODE_EXTENSION'\n ],\n 'defines!': [\n+ 'BUILDING_V8_PLATFORM_SHARED... | 2026-01-05T13:08:06 |
vercel/next.js | cbb2f90e97f5e3150124a8788a2d877754be07c3 | 9c17e9e7a822b70fff8ec27a08e48a47ffa17d1f | docs: error component `unstable_retry()` (#89732)
Adding docs for https://github.com/vercel/next.js/pull/89685 | [
{
"path": "docs/01-app/01-getting-started/10-error-handling.mdx",
"patch": "@@ -208,10 +208,10 @@ import { useEffect } from 'react'\n \n export default function ErrorPage({\n error,\n- reset,\n+ unstable_retry,\n }: {\n error: Error & { digest?: string }\n- reset: () => void\n+ unstable_retry: () =>... | 2026-03-02T16:43:56 |
facebook/react | 319a7867d0e19481a60a6ed931a5f97ae6691572 | d15d7fd79e00fe095a70d8855562172cd46187b4 | [playground] ViewTransition on config expand (#34595)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please... | [
{
"path": "compiler/apps/playground/__tests__/e2e/page.spec.ts",
"patch": "@@ -23,7 +23,8 @@ function formatPrint(data: Array<string>): Promise<string> {\n \n async function expandConfigs(page: Page): Promise<void> {\n const expandButton = page.locator('[title=\"Expand config editor\"]');\n- expandButton... | 2025-09-29T18:09:37 |
golang/go | bdd4c38ce3c568efaf274281c40ecc6288c655a6 | 5e6a6840ae64c60a14d4c027720af5d82710e39f | runtime/cgo: fix setg_gcc call on aix/ppc64
aix/ppc64 uses function descriptors instead of function pointers. CL 708235 assumed the latter, which caused a crash when calling setg_gcc.
Fix the call by dereferencing the function descriptor to get the entry
point and TOC.
Tested using gomote, as LUCI builders still don... | [
{
"path": "src/runtime/cgo/gcc_aix_ppc64.S",
"patch": "@@ -40,8 +40,11 @@ crosscall1:\n \tmr\t30, 5\n \n \t// Call setg_gcc(g)\n+\t// Function pointers are function descriptors.\n+\t// Dereference setg_gcc to get the entry point and TOC.\n \tmr\t3, 5 // arg g\n-\tmr\t12, 4 // setg_gcc\n+\tld\t12, 0... | 2026-02-23T09:56:29 |
electron/electron | a1f0ef80d419e57a7f00defaa43e42a60b95024b | c1a031be83a61d7de116fe4a8d326bd16cb1afc6 | chore: bump chromium to 145.0.7616.0 (main) (#49279)
* chore: bump chromium in DEPS to 145.0.7605.0
* chore: bump chromium in DEPS to 145.0.7606.0
* chore: bump chromium in DEPS to 145.0.7608.0
* chore: update patches
* chore: bump chromium in DEPS to 145.0.7610.0
* chore: update patches
* [InputVizard] Fix miss... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '145.0.7604.0',\n+ '145.0.7616.0',\n 'node_version':\n 'v24.11.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2026-01-05T18:34:36 |
vercel/next.js | a0d293fc0853204fe0201e02de3b7932aa5d3f00 | 93d56b5daa071e14376415e2a88231f219f70154 | with-docker: add new config file formats (#90731)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
... | [
{
"path": "examples/with-docker/.dockerignore",
"patch": "@@ -31,15 +31,12 @@ cypress/videos/\n playwright-report/\n test-results/\n .vitest/\n-*.test.ts\n-*.test.tsx\n-*.test.js\n-*.test.jsx\n-*.spec.ts\n-*.spec.tsx\n-*.spec.js\n-*.spec.jsx\n-\n+vitest.config.*\n+jest.config.*\n+cypress.config.*\n+playwrig... | 2026-03-02T10:39:03 |
nodejs/node | 6218d14505668002ece19dd91b3349e4d3967759 | 088e63842a82f3531220613f1bec60b789f67a11 | build: fix inconsistent quoting in `Makefile`
PR-URL: https://github.com/nodejs/node/pull/60511
Reviewed-By: Aviv Keller <me@aviv.sh> | [
{
"path": "Makefile",
"patch": "@@ -17,7 +17,7 @@ endif\n ARCHTYPE := $(shell uname -m | tr '[:upper:]' '[:lower:]')\n COVTESTS ?= test-cov\n COV_SKIP_TESTS ?= core_line_numbers.js,testFinalizer.js,test_function/test.js\n-GTEST_FILTER ?= \"*\"\n+GTEST_FILTER ?= *\n GNUMAKEFLAGS += --no-print-directory\n GCO... | 2026-01-04T20:11:43 |
rust-lang/rust | 1c3e8d133d07d7492afa355c544b8bb15251141b | 6183ecdda52ba9b9b93f656f9a37492168c82726 | fix UB in test_swap_ptr_triple_dangling | [
{
"path": "src/tools/miri/tests/native-lib/pass/ptr_write_access.rs",
"patch": "@@ -176,17 +176,17 @@ fn test_swap_ptr_triple_dangling() {\n }\n \n extern \"C\" {\n- fn swap_ptr_triple_dangling(t_ptr: *const Triple);\n+ fn swap_ptr_triple_dangling(t_ptr: *mut Triple);\n }\n \n ... | 2026-03-28T21:55:21 |
golang/go | e1e73b316c6b67ebbd55542b01f5581db62046d5 | ca94cf12479f2a2c065215218f6a3f5fc7bfe1f4 | runtime: printquoted: fix decoderune call
go.dev/cl/742305 had a stale signature for decoderune, which was updated
in go.dev/cl/725101 (converting an argument and return value from int to
uint).
Add appropriate conversions.
Change-Id: Ia4e5bcbab4275d5a988c9dce552cd7590474b995
Reviewed-on: https://go-review.googlesou... | [
{
"path": "src/runtime/print.go",
"patch": "@@ -217,7 +217,7 @@ func printquoted(s string) {\n \t\t\tcontinue\n \t\tcase runeError:\n \t\t\t// Distinguish errors from a valid encoding of U+FFFD.\n-\t\t\tif _, j := decoderune(s, i); j == i+1 {\n+\t\t\tif _, j := decoderune(s, uint(i)); j == uint(i+1) {\n \t\... | 2026-02-24T00:42:32 |
facebook/react | d15d7fd79e00fe095a70d8855562172cd46187b4 | 8674c3ba28314c3a666144145a6758e07ed69ad6 | [DevTools] Double click a Suspense Rect to jump to its position in the timeline (#34642)
When you double click it will hide or show by jumping to the selected
index or one step before the selected.
Let's you go from a suspense boundary into the timeline to find its
position. I also highlight the step in the timeline ... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseRects.js",
"patch": "@@ -98,13 +98,29 @@ function SuspenseRects({\n });\n }\n \n+ function handleDoubleClick(event: SyntheticMouseEvent) {\n+ if (event.defaultPrevented) {\n+ // Already clicked on an inner rect\n... | 2025-09-29T14:43:01 |
electron/electron | c8bb70050987d1b3d1c8b5b4243f237153851932 | 46922de638b3b964687ea4b22a5fc7a36b659af6 | build: fixup release notes generation (#49302) | [
{
"path": "script/release/notes/notes.ts",
"patch": "@@ -109,7 +109,8 @@ const runGit = async (dir: string, args: string[]) => {\n const response = spawnSync('git', args, {\n cwd: dir,\n encoding: 'utf8',\n- stdio: ['inherit', 'pipe', 'pipe']\n+ stdio: ['inherit', 'pipe', 'pipe'],\n+ maxB... | 2026-01-05T16:11:40 |
vercel/next.js | b645f4ce7d56fbe23eb9e703289d1bfdd6bd37ed | 207538313b1515346111f6ab685e68dbabcefe5d | fix(turbopack): use posix.join for client URL manifest paths on Windows (#90700)
Co-authored-by: Dmitrii Troitskii <jsleitor@gmail.com> | [
{
"path": "packages/next/src/shared/lib/turbopack/manifest-loader.ts",
"patch": "@@ -637,12 +637,12 @@ export class TurbopackManifestLoader {\n \n const sortedPageKeys = getSortedRoutes(pagesKeys)\n \n- let buildManifestPath = join(\n+ let buildManifestPath = posix.join(\n CLIENT_STATIC_FILE... | 2026-03-02T09:25:03 |
nodejs/node | 650f51fe457e2daab3d6be0434b9f93ec7a05275 | 282d30e526cb0c3ceb7e1720858f61bf6ba7d2cf | doc: add reusePort error behavior to net module
PR-URL: https://github.com/nodejs/node/pull/61250
Fixes: https://github.com/nodejs/node/issues/61018
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinc... | [
{
"path": "doc/api/dgram.md",
"patch": "@@ -951,7 +951,7 @@ changes:\n port, even if another process has already bound a socket on it. Incoming\n datagrams are distributed to listening sockets. The option is available\n only on some platforms, such as Linux 3.9+, DragonFlyBSD 3.6+, FreeBSD 12.0+... | 2026-01-04T02:13:31 |
rust-lang/rust | 6183ecdda52ba9b9b93f656f9a37492168c82726 | c26f488618146fe1d4d8df6bbf8fe19455691015 | native-lib: fix passing repr(C) enums | [
{
"path": "src/tools/miri/src/shims/native_lib/mod.rs",
"patch": "@@ -396,8 +396,9 @@ trait EvalContextExtPriv<'tcx>: crate::MiriInterpCxExt<'tcx> {\n // matches what codegen does. This does mean that we support some types whose ABI is not\n // stable, but that's fine -- we are anyway quite ... | 2026-03-28T21:39:52 |
golang/go | 215a070a049ce449480ca6948e7fafdeb7b16920 | 54ebdf61517436a15f3119d1c117cf367a483ad2 | net/smtp: prevent test failures due to expired test certificate
The current localhostCert used for testing seems to have its expiry date
mistakenly set to Mar 18 19:27:54 2026 GMT.
To prevent test failures, use fixed time in tests. Also, regenerate the
certificate so we can fix the time to UNIX epoch (the current
cer... | [
{
"path": "src/net/smtp/smtp_test.go",
"patch": "@@ -1125,6 +1125,7 @@ func init() {\n \ttestRootCAs.AppendCertsFromPEM(localhostCert)\n \ttestHookStartTLS = func(config *tls.Config) {\n \t\tconfig.RootCAs = testRootCAs\n+\t\tconfig.Time = func() time.Time { return time.Unix(0, 0) }\n \t}\n }\n \n@@ -1138,5... | 2026-02-10T22:17:19 |
vercel/next.js | 207538313b1515346111f6ab685e68dbabcefe5d | 5e3af2ceab93d2acdf888586fe07e3aa1bad4887 | Fix ENOBUFS errors in pr-status.js when fetching large CI logs (#90654)
## Summary
Fixes `spawnSync /bin/sh ENOBUFS` errors in `scripts/pr-status.js` when
fetching large CI job logs.
The script uses `execSync` (which internally uses `spawnSync`) to fetch
CI job logs via `gh api .../jobs/{id}/logs`. `execSync` has a ... | [
{
"path": "scripts/pr-status.js",
"patch": "@@ -1,4 +1,4 @@\n-const { execSync } = require('child_process')\n+const { execSync, spawn } = require('child_process')\n const fs = require('fs/promises')\n const path = require('path')\n \n@@ -21,6 +21,30 @@ function exec(cmd) {\n }\n }\n \n+function execAsync(... | 2026-03-02T07:56:51 |
electron/electron | 46922de638b3b964687ea4b22a5fc7a36b659af6 | 75ea93a2796a6502669f77ab0f5f0efd11733f7b | fix: drag regions in child windows (#49231)
* fix: drag regions in child windows
* Update comments | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -760,6 +760,10 @@ WebContents::WebContents(v8::Isolate* isolate,\n script_executor_ = std::make_unique<extensions::ScriptExecutor>(web_contents);\n #endif\n \n+ // TODO: This works for main frames, but does not work for child frames... | 2026-01-05T15:34:01 |
nodejs/node | 3518af036c7446e91a34f89811a3f4b7199bb5ba | 012bf70908fafcbdf8d5c819e346c32b80f7aea4 | process: improve process.cwd() error message
PR-URL: https://github.com/nodejs/node/pull/61164
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: theanarkh <theratliter@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "src/node_process_methods.cc",
"patch": "@@ -163,9 +163,17 @@ static void Cwd(const FunctionCallbackInfo<Value>& args) {\n size_t cwd_len = sizeof(buf);\n int err = uv_cwd(buf, &cwd_len);\n if (err) {\n- return env->ThrowUVException(err, \"uv_cwd\");\n+ std::string err_msg =\n+ ... | 2026-01-02T11:40:16 |
rust-lang/rust | 27242aa3196c1aa7b58fa744231f76362b0ecf2c | fb27476aaf1012f1f6ace6306f9b990e0d989c31 | Panic in Hermit clock_gettime | [
{
"path": "library/std/src/sys/time/hermit.rs",
"patch": "@@ -6,7 +6,7 @@ use crate::time::Duration;\n \n fn clock_gettime(clock: hermit_abi::clockid_t) -> Timespec {\n let mut t = hermit_abi::timespec { tv_sec: 0, tv_nsec: 0 };\n- let _ = unsafe { hermit_abi::clock_gettime(clock, &raw mut t) };\n+ ... | 2026-03-28T21:00:03 |
golang/go | 54ebdf61517436a15f3119d1c117cf367a483ad2 | 04772f022a1cb19f2596fa241ecc24bcb7f4dce5 | cmd/compile: fix a typo in startRegs drop condition
Fix startRegs drop condition: it used `== 1` instead of `!= 0`, causing the
startRegs optimization to only work for register R0. This left unnecessary
register bits in startRegs, resulting in extra shuffle-generated
OpLoadReg operations on merge edges.
The practical... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -507,7 +507,7 @@ func (s *regAllocState) allocReg(mask regMask, v *Value) register {\n \t// and now then there is no reason to even request it on entry. We can\n \t// drop from startRegs in that case.\n \tif s.usedSinceBlockStart&(regMask(1)... | 2026-02-14T07:38:17 |
vercel/next.js | a362fd27aad385e40f3eed283816e3578de40f74 | 9ce8d136f8d2a3c66954fcc3d9593ebd4e3321b0 | instant(): fix cookie handling for fresh page loads (#90613)
Previously, instant() used page.evaluate() to set the cookie via
document.cookie, which required a page to already be loaded. This meant
the cookie wasn't present on the very first navigation.
Switch to Playwright's browser context cookie API so the cookie ... | [
{
"path": "packages/next-playwright/src/index.ts",
"patch": "@@ -1,10 +1,25 @@\n /**\n- * Minimal interface for Playwright's Page. We use a structural type rather than\n- * importing from a specific Playwright package so this works with any version\n- * of playwright, playwright-core, or @playwright/test.\n... | 2026-03-01T23:23:07 |
rust-lang/rust | 1a320616e9d090e7ef7ac90e5ceabd7e2248d97f | 7e28c7438a7b0c79a09724ba799d32ed461beb72 | [perf] Revert FastISel patch
This change caused a significant compile-time regression for
debug builds. | [
{
"path": "src/llvm-project",
"patch": "@@ -1 +1 @@\n-Subproject commit 05918363362b439b9b0bced3daa14badd75da790\n+Subproject commit 1cb4e3833c1919c2e6fb579a23ac0e2b22587b7e",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2026-03-28T16:43:29 |
nodejs/node | 012bf70908fafcbdf8d5c819e346c32b80f7aea4 | 0457bfee2c25987570e3dca2ebe07332de7d0795 | process: optimize asyncHandledRejections by using FixedQueue
PR-URL: https://github.com/nodejs/node/pull/60854
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Ilyas Shabi <ilyasshabi94@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> | [
{
"path": "benchmark/process/handled-rejections.js",
"patch": "@@ -0,0 +1,43 @@\n+'use strict';\n+\n+const common = require('../common.js');\n+\n+// Benchmarks the throughput of processing many promise rejections that are\n+// initially unhandled, get warned, and then handled asynchronously, exercising\n+//... | 2026-01-02T11:40:05 |
golang/go | 4e693d1ec52c86b262ac23f0d6cee6b60fef4fb0 | 9697bd96bcc98cbe201d0f57033d9f2dab66b9f6 | go/token: add File.String method
It returns a brief, unspecified, human-readable description
of the File.
+ test, doc, relnote
Fixes #76285
Change-Id: I8b0705cf20eaac095bc9dfba7f1181774544f02c
Reviewed-on: https://go-review.googlesource.com/c/go/+/743280
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou... | [
{
"path": "api/next/76285.txt",
"patch": "@@ -0,0 +1 @@\n+pkg go/token, method (*File) String() string #76285",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/go/token/76285.md",
"patch": "@@ -0,0 +1 @@\n+[File] now has a String meth... | 2026-02-09T15:33:22 |
electron/electron | 809ab09b6f5ede0a9f9b0fcc0e9c33ff971277f2 | 3df3a6a736b93e0d69fa3b0c403b33f201287780 | chore: bump chromium to 145.0.7596.0 (main) (#49224)
* chore: bump chromium in DEPS to 145.0.7588.0
* fix(patch-conflict): update scroll_bounce_flag for split overscroll methods
Chromium split IsElasticOverscrollEnabled() into two methods:
IsElasticOverscrollEnabledOnRoot() and IsElasticOverscrollSupported().
Update... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '145.0.7577.0',\n+ '145.0.7596.0',\n 'node_version':\n 'v24.11.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "filena... | 2025-12-25T23:15:53 |
vercel/next.js | 4d2ac245965095ae2f67aeab224bd3dc29573524 | 9c31bbdaa9cf0e7674c79fe953ede9d590b5f6d7 | feat: provide nextVersion to modifyConfig adapter hook (#90735)
For providers that either don't manage or allow for custom build
commands, checking Next.js version in their builders is not reliable.
Especially for providers that already have existing support there needs
to be very reliable way to only apply certain co... | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -335,6 +335,10 @@ export interface NextAdapter {\n config: NextConfigComplete,\n ctx: {\n phase: PHASE_TYPE\n+ /**\n+ * nextVersion is the current version of Next.js being used\n+ */\n+ nextVersio... | 2026-03-01T22:05:46 |
nodejs/node | 0457bfee2c25987570e3dca2ebe07332de7d0795 | c6a56b4701542d011e287c45cda96f3deff38535 | test: forbid use of named imports for fixtures
PR-URL: https://github.com/nodejs/node/pull/61228
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> | [
{
"path": "test/addons/openssl-providers/test-default-only-config.js",
"patch": "@@ -1,12 +1,12 @@\n 'use strict';\n \n const common = require('../../common');\n-const { path: fixture } = require('../../common/fixtures');\n+const fixtures = require('../../common/fixtures');\n const providers = require('./pr... | 2026-01-01T23:48:26 |
electron/electron | 3df3a6a736b93e0d69fa3b0c403b33f201287780 | 7433c14af57fd3a8e00c7cfd7323266d6923962d | fix: `webRequest.onBeforeSendHeaders` not being able to modify reserved headers (#49226)
* fix: `webRequest.onBeforeSendHeaders` not being able to modify reserved headers
* chore: add unit test for reserved header | [
{
"path": "shell/browser/net/proxying_url_loader_factory.cc",
"patch": "@@ -55,9 +55,9 @@ ProxyingURLLoaderFactory::InProgressRequest::InProgressRequest(\n proxied_loader_receiver_(this, std::move(loader_receiver)),\n target_client_(std::move(client)),\n current_response_(network::mojom::U... | 2025-12-19T10:08:40 |
golang/go | 6435bf46c17dccb2eb5f7bab7dd8aa4972252b21 | 439a82ad25e9549d0cc330075ae160f7a9ba69f8 | cmd/compile: pointer-shaped types are SSAable even if lots of 0-sized fields
Normally we don't SSA-ify variables with types that have more than
4 fields. But we really do want to SSA-ify them if they are pointer
shaped.
An odd case, but the compiler shouldn't barf on them.
Failure probably started with CL 714421.
F... | [
{
"path": "src/cmd/compile/internal/ssa/decompose.go",
"patch": "@@ -363,20 +363,20 @@ func decomposeUserPhi(v *Value) {\n func decomposeStructPhi(v *Value) {\n \tt := v.Type\n \tn := t.NumFields()\n-\tvar fields [MaxStruct]*Value\n+\tfields := make([]*Value, 0, MaxStruct)\n \tfor i := 0; i < n; i++ {\n-\t\... | 2026-02-11T01:44:08 |
facebook/react | 8309724cb4a497383cc7b3267483ab5c65dad7d6 | 09d3cd8fb55f7d13b9d58495367a4b9660451c1c | [Fiber][DevTools] Add scheduleRetry to DevTools Hook (#34635)
When forcing suspense/error we're doing that by scheduling a sync update
on the fiber. Resuspending a Suspense boundary can only happen sync
update so that makes sense. Erroring also forces a sync commit. This
means that no View Transitions fire.
However, ... | [
{
"path": "packages/react-debug-tools/src/__tests__/ReactDevToolsHooksIntegration-test.js",
"patch": "@@ -17,6 +17,7 @@ describe('React hooks DevTools integration', () => {\n let act;\n let overrideHookState;\n let scheduleUpdate;\n+ let scheduleRetry;\n let setSuspenseHandler;\n let waitForAll;\... | 2025-09-28T17:51:35 |
vercel/next.js | 1cc745782db7119f92f90daf2c79c470f2f561e8 | fb694e9d7a8d22060f5a94fb6fee01bc58c302b1 | [devtools] Stop blocking overlay on error details copy (#90698) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/copy-button/index.tsx",
"patch": "@@ -1,77 +1,7 @@\n import * as React from 'react'\n import { cx } from '../../utils/cx'\n \n-function useCopyLegacy(content: string) {\n- type CopyState =\n- | {\n- state: 'initial'\n- }\n- ... | 2026-03-01T09:17:32 |
nodejs/node | d991f690df76751f8cd62d72db9d51d8f09101ba | 926162a2eafa2cf53dac3028c9d6faa07f5081f2 | doc: fix tls.connect() timeout documentation
PR-URL: https://github.com/nodejs/node/pull/61079
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/tls.md",
"patch": "@@ -1730,6 +1730,9 @@ changes:\n **Default:** `1024`.\n * `highWaterMark` {number} Consistent with the readable stream `highWaterMark` parameter.\n **Default:** `16 * 1024`.\n+ * `timeout`: {number} If set and if a socket is created internally, will call\n+ ... | 2026-01-01T13:56:27 |
facebook/react | c552618a8203866a8bf80324f6efa708d4bdb146 | df38ac9a3b9a5ea43c1d07c00d090a448acfd56c | flags: make enableAsyncDebugInfo dynamic for www (#34430)
As titled. This adds dev-only debugging information to Fizz / Flight
that could be used for tracking Promise's stack traces in "suspended by"
section of DevTools. | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js",
"patch": "@@ -3021,7 +3021,8 @@ describe('ReactFlightDOM', () => {\n expect(getMeaningfulChildren(container)).toEqual(<div>loading...</div>);\n });\n \n- // @gate enableHalt\n+ // This could be a bug. Discovered whil... | 2025-09-26T18:43:03 |
vercel/next.js | c2a27526f821f72a263dc41cab0a34605d271229 | c5b2cf1e32ff2668e77f02e739b612f142772ce5 | Turbopack: Revert default loader runtime backend to child processes (#90675)
We're getting crashes in node: https://github.com/vercel/workflow/actions/runs/22500511618/job/65186125774#step:10:224
It looks like this should be fixed in newer versions of node:
- https://github.com/napi-rs/napi-rs/issues/2555#issuecomme... | [
{
"path": "crates/next-core/src/next_config.rs",
"patch": "@@ -2059,10 +2059,10 @@ impl NextConfig {\n \n #[turbo_tasks::function]\n pub fn turbopack_plugin_runtime_strategy(&self) -> Vc<TurbopackPluginRuntimeStrategy> {\n- #[cfg(feature = \"worker_pool\")]\n- let default = TurbopackPl... | 2026-02-28T07:39:20 |
golang/go | 439a82ad25e9549d0cc330075ae160f7a9ba69f8 | 841fafcd583b37ba316a66fc388f966a5be8de80 | cmd/compile: add flag for emitting diagnostics unsorted
The prove pass uses warnings with locations that are sorted before they
are emitted. When debugging on level 3, this sorting can obscure which
log lines happened before each other, obscuring the flow of control.
This gets doubly confusing when debugging issues th... | [
{
"path": "src/cmd/compile/internal/base/flag.go",
"patch": "@@ -78,6 +78,7 @@ type CmdFlags struct {\n \tLowerR CountFlag \"help:\\\"debug generated wrappers\\\"\"\n \tLowerT bool \"help:\\\"enable tracing for debugging the compiler\\\"\"\n \tLowerW CountFlag \"help:\\\"debug type checking\\\"\"\n+... | 2026-02-05T13:42:00 |
nodejs/node | 926162a2eafa2cf53dac3028c9d6faa07f5081f2 | 7b7f693a98da060e19f2ec12fb99997d5d5524f9 | async_hooks: enabledHooksExist shall return if hooks are enabled
Correct the implementaton of enabledHooksExist to return true if
there are enabled hooks.
Adapt callsites which used getHooksArrays() as workaround.
PR-URL: https://github.com/nodejs/node/pull/61054
Fixes: https://github.com/nodejs/node/issues/61019
Re... | [
{
"path": "lib/async_hooks.js",
"patch": "@@ -52,7 +52,6 @@ const {\n emitBefore,\n emitAfter,\n emitDestroy,\n- enabledHooksExist,\n initHooksExist,\n destroyHooksExist,\n } = internal_async_hooks;\n@@ -188,7 +187,7 @@ class AsyncResource {\n this[trigger_async_id_symbol] = triggerAsyncId;\n... | 2025-12-31T14:45:20 |
electron/electron | a90ccc753b4d38266323dd054db2b98a45917117 | e181fd040f72becd135db1fa977622b81da21643 | chore: bump chromium to 145.0.7577.0 (main) (#49175)
* chore: bump chromium in DEPS to 145.0.7572.0
* chore: update patches (trivial only)
* chore(patch-conflict): feat_filter_out_non-shareable_windows_in_the_current_application_in.patch
Polished the edits and formatted the result. No real changes.
Ref: https://ch... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '145.0.7568.0',\n+ '145.0.7577.0',\n 'node_version':\n 'v24.11.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "docs/b... | 2025-12-16T17:32:38 |
facebook/react | 8bb7241f4c773376893701bfe8b8ff03687342a0 | 8d557a638ef8caf9bddfc6c7541b58b8b59259f9 | Bump useEffectEvent to Canary (#34610)
Bumps `useEffectEvent` from `@experimental` to `@canary`. Removes the
`experimental_` prefix from the export.
## TODO
- [ ] Update useEffectEvent reference page and Canary badging in docs:
https://github.com/reactjs/react.dev/pull/8025 | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -6514,7 +6514,7 @@ describe('ReactDOMFizzServer', () => {\n const ref = React.createRef();\n function App() {\n const [count, setCount] = React.useState(0);\n- const onClick = React.experimental_... | 2025-09-26T15:51:30 |
vercel/next.js | c5b2cf1e32ff2668e77f02e739b612f142772ce5 | 28df39bab45bb80a5c623fe32da96b69c50b76a4 | Turbopack: Allow turbopack-node backend to be swapped at runtime using an experimental config option (#90671)
<!-- 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 ... | [
{
"path": "crates/next-api/Cargo.toml",
"patch": "@@ -9,6 +9,11 @@ autobenches = false\n [lib]\n bench = false\n \n+[features]\n+default = [\"process_pool\"]\n+process_pool = [\"next-core/process_pool\", \"turbopack-node/process_pool\"]\n+worker_pool = [\"next-core/worker_pool\", \"turbopack-node/worker_poo... | 2026-02-28T06:48:05 |
rust-lang/rust | 024acdd4b6e04efde74559f9a9416558d89aa165 | fda6d37bb88ee12fd50fa54d15859f1f91b74f55 | Fix ambiguous parsing in bootstrap.py | [
{
"path": "src/bootstrap/bootstrap.py",
"patch": "@@ -1259,7 +1259,12 @@ def check_vendored_status(self):\n \n def parse_args(args):\n \"\"\"Parse the command line arguments that the python script needs.\"\"\"\n- parser = argparse.ArgumentParser(add_help=False)\n+\n+ # Pass allow_abbrev=False to r... | 2026-03-28T14:51:02 |
facebook/react | 250f1b20e0ac8e6c1ba03f2466ad63ff9b5104de | b0c1dc01ecbfaf81aa69f760b29dd76c02600792 | [playground] Fix useEffect on tabify (#34594)
There was a bug in the Compiler Playground related to the "Show
Internals" toggle due to a useEffect that was causing the tab names to
flicker from a rerender. Rewritten instead with a `<Suspense>` boundary
+ `use`. | [
{
"path": "compiler/apps/playground/components/Editor/Output.tsx",
"patch": "@@ -19,19 +19,24 @@ import {\n import parserBabel from 'prettier/plugins/babel';\n import * as prettierPluginEstree from 'prettier/plugins/estree';\n import * as prettier from 'prettier/standalone';\n-import {memo, ReactNode, useEf... | 2025-09-25T18:56:41 |
golang/go | 841fafcd583b37ba316a66fc388f966a5be8de80 | 34b9742c817d1c689f09af71364f52711524cc09 | runtime/secret: run crash tests under memory validating modes
The crashing test for runtime/secret does not run afoul of the memory
validators like the standard tests does. Pass through to the crashing
binary to shake out as many problems as possible.
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-asan-clang15... | [
{
"path": "src/runtime/secret/crash_test.go",
"patch": "@@ -10,6 +10,9 @@ import (\n \t\"bytes\"\n \t\"debug/elf\"\n \t\"fmt\"\n+\t\"internal/asan\"\n+\t\"internal/msan\"\n+\t\"internal/race\"\n \t\"internal/testenv\"\n \t\"io\"\n \t\"os\"\n@@ -120,7 +123,18 @@ func TestCore(t *testing.T) {\n \t\tt.Fatalf(\... | 2025-12-01T15:13:08 |
vercel/next.js | 96512309ce1fe5a83cdb90702d2488a02a3db30a | 683180bfb3f3ae24759360970787e60fc4fbf74b | tests: Fix immutableAssetToken extraction (#90668)
Fixes this deploy test failure:
https://github.com/vercel/next.js/actions/runs/22499483165/attempts/2
The output might be:
```
Building: └ ○ /nested
Building: ○ (Static) prerendered as static content
Building: ƒ (Dynamic) server-rendered on demand
Building: > @ ... | [
{
"path": "test/lib/next-modes/next-deploy.ts",
"patch": "@@ -144,7 +144,8 @@ export class NextDeployInstance extends NextInstance {\n `Failed to get immutableAssetToken from logs ${this._cliOutput}`\n )\n }\n- this._immutableAssetToken = immutableAssetToken\n+ this._immutableAssetTo... | 2026-02-28T00:47:33 |
electron/electron | fe477ce3aa65316f4e63b0907d117723a1d4c8bc | bab6bd3dae351d8f49203a26468d58482f754c84 | chore: bump chromium to 145.0.7568.0 (main) (#49145)
* chore: bump chromium in DEPS to 145.0.7562.0
* fix(patch-conflict): update code cache patch for PersistentCache refactor
Upstream refactored code cache to use PersistentCache with new class-based
implementation (NoopCodeCacheHost, LocalCodeCacheHost, CodeCacheWi... | [
{
"path": "BUILD.gn",
"patch": "@@ -446,6 +446,7 @@ source_set(\"electron_lib\") {\n \"shell/services/node/public/mojom\",\n \"//base:base_static\",\n \"//base/allocator:buildflags\",\n+ \"//build/util:chromium_git_revision\",\n \"//chrome:strings\",\n \"//chrome/app:command_ids\",\n ... | 2025-12-10T15:28:31 |
golang/go | 34b9742c817d1c689f09af71364f52711524cc09 | 0bf3f64c6b91df0b7665ecf0875757985b5b2bee | net: convert wildcard address to local on freebsd
Starting in FreeBSD 15, connecting to INADDR_ANY no longer works as an
alias for localhost. From the release notes [1]:
"Making a connection to INADDR_ANY, i.e., using it as an alias for
localhost, is now disabled by default. This functionality can be
re-enabled by se... | [
{
"path": "src/net/ipsock_posix.go",
"patch": "@@ -158,7 +158,7 @@ func favoriteAddrFamily(network string, laddr, raddr sockaddr, mode string) (fam\n \n func internetSocket(ctx context.Context, net string, laddr, raddr sockaddr, sotype, proto int, mode string, ctrlCtxFn func(context.Context, string, string,... | 2026-02-19T15:43:45 |
facebook/react | b0c1dc01ecbfaf81aa69f760b29dd76c02600792 | 6eb5d67e9c4c5c456783dbbd454d79016c43b07d | [Flight] Add approximate parent context for FormatContext (#34601)
Flight doesn't have any semantically sound notion of a parent context.
That's why we removed Server Context. Each root can really start
anywhere in the tree when you refetch subtrees. Additionally when you
dedupe elements they can end up in multiple di... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFlightServerConfigDOM.js",
"patch": "@@ -61,3 +61,17 @@ export type Hints = Set<string>;\n export function createHints(): Hints {\n return new Set();\n }\n+\n+export opaque type FormatContext = null;\n+\n+export function createRootFormatContext(): For... | 2025-09-25T16:05:47 |
vercel/next.js | 683180bfb3f3ae24759360970787e60fc4fbf74b | 39e8fb2a48d444105b9a8baa93a6e3112fe4fd22 | Centralize test timings to fix shard divergence in CI (#90672)
## Summary
For context we discovered jobs were not reliably always running in
https://github.com/vercel/next.js/pull/90668 as addapters + turbopack
group ran more tests than just turbopack group.
- Each sharded test sub-job independently fetched test tim... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -94,6 +94,53 @@ jobs:\n stepName: 'build-next'\n secrets: inherit\n \n+ fetch-test-timings:\n+ name: fetch test timings\n+ runs-on: ubuntu-latest\n+ needs: ['changes']\n+ if: ${{ needs.changes.outputs.docs-only == 'false' ... | 2026-02-28T00:15:43 |
golang/go | 0bf3f64c6b91df0b7665ecf0875757985b5b2bee | f3755d9eba1147eb2cc3257689764f0cd8aac77b | mime: make TypeByExtension follow Chrome+Firefox's precedence for webm->video and weba->audio
This CL updates TypeByExtension to correctly follow the precedence rules
that Chrome and Firefox use, whereby "webm" maps to "video/webm" and
"weba" maps to "audio/webm" per:
https://chromium.googlesource.com/chromium/src.gi... | [
{
"path": "src/mime/type.go",
"patch": "@@ -115,7 +115,8 @@ var builtinTypesLower = map[string]string{\n \t\".vtt\": \"text/vtt; charset=utf-8\",\n \t\".wasm\": \"application/wasm\",\n \t\".wav\": \"audio/wav\",\n-\t\".webm\": \"audio/webm\",\n+\t\".weba\": \"audio/webm\",\n+\t\".webm\": \"video/web... | 2026-02-19T22:41:07 |
vercel/next.js | 080e1b3c26262c627cb278e5c5314e7a29adce61 | fe2f1e44058206e6d8abe6bb5e91f65fc70a315e | Accept header content negotiation (#90607)
<!-- 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
### Imp... | [
{
"path": "docs/01-app/02-guides/backend-for-frontend.mdx",
"patch": "@@ -4,10 +4,11 @@ nav_title: Backend for Frontend\n description: Learn how to use Next.js as a backend framework\n related:\n title: API Reference\n- description: Learn more about Route Handlers and Proxy\n+ description: Learn more ab... | 2026-02-27T18:31:22 |
facebook/react | ac2c1a5a5840d5e043d1d7a12a356f226e285c02 | c44fbf43b1e05417619c3b9411d0559824739569 | [Flight] Ensure blocked debug info is handled properly (#34524)
This PR ensures that server components are reliably included in the
DevTools component tree, even if debug info is received delayed, e.g.
when using a debug channel. The fix consists of three parts:
- We must not unset the debug chunk before all debug in... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -499,10 +499,44 @@ function createErrorChunk<T>(\n return new ReactPromise(ERRORED, null, error);\n }\n \n+function moveDebugInfoFromChunkToInnerValue<T>(\n+ chunk: InitializedChunk<T>,\n+ value: T,\n+): void {\n+ // Remove the de... | 2025-09-25T13:13:15 |
electron/electron | 95e87e46ab57fa44bc5583a1edfc1c017c830cca | 90e338df507f7dc7ef0cac1a09b62d2c97c95f72 | chore: bump chromium to 144.0.7547.0 (main) (#49058)
* chore: bump chromium in DEPS to 144.0.7543.0
* Pass PipScreenCaptureCoordinatorProxy to ScreenCaptureKitDeviceMac
https://chromium-review.googlesource.com/c/chromium/src/+/7157590
* chore: update patches
* chore: update filenames.libcxx.gni
* 7142359: Spanifi... | [
{
"path": "BUILD.gn",
"patch": "@@ -528,6 +528,7 @@ source_set(\"electron_lib\") {\n \"//base\",\n \"//base:i18n\",\n \"//content/public/app\",\n+ \"//ui/base/unowned_user_data\",\n ]\n \n include_dirs = [",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"p... | 2025-12-05T00:40:04 |
nodejs/node | 06bf489379c9e5cb20f7d3a5e31ed1cf8cc0672c | 20bf3287c2bdce55077da91b7c405aecdc31fef8 | esm: avoid throw when module specifier is not url
This particular exception is responsible for a lot of overhead when
debugging with large esm codebases with VS Code and break on caught
exceptions is enabled.
VS Code silently suppresses this exception, but the mechanism it uses
to do so is a bit slow so avoiding this... | [
{
"path": "lib/internal/modules/esm/resolve.js",
"patch": "@@ -42,6 +42,7 @@ const {\n ERR_INVALID_MODULE_SPECIFIER,\n ERR_INVALID_PACKAGE_CONFIG,\n ERR_INVALID_PACKAGE_TARGET,\n+ ERR_INVALID_URL,\n ERR_MODULE_NOT_FOUND,\n ERR_PACKAGE_IMPORT_NOT_DEFINED,\n ERR_PACKAGE_PATH_NOT_EXPORTED,\n@@ -84... | 2025-12-30T18:15:52 |
golang/go | 839cd82fa53ec481ffcd02e139b3d77c2724892e | 06dc5db75d4c2548c0187f34ce79389678be7ca0 | cmd/cgo/internal/test: add a test for C calling into Go before init done
Test that C code can call back into Go (on a separate thread)
before init is done. The callback should wait for the init done.
And this should not cause a false race.
This corresponds to the runtime fix in CL 746581.
Change-Id: I10e6a9d5fe056be... | [
{
"path": "src/cmd/cgo/internal/test/cgo_test.go",
"patch": "@@ -78,6 +78,7 @@ func TestBoolAlign(t *testing.T) { testBoolAlign(t) }\n func TestCallGoWithString(t *testing.T) { testCallGoWithString(t) }\n func TestCallback(t *testing.T) { testCallback(t) }\n func TestC... | 2026-02-18T20:25:22 |
facebook/react | c44fbf43b1e05417619c3b9411d0559824739569 | 8ad773b1f342d20e4773c8d086028c6927445a22 | [DevTools] Fix instrumentation error when reconciling promise-as-a-child (#34587) | [
{
"path": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -3107,4 +3107,45 @@ describe('Store', () => {\n await actAsync(() => render(<span />));\n expect(store).toMatchInlineSnapshot(`[root]`);\n });\n+\n+ // @reactVersion >= 19.0\n+ it('should reconcile promise-as-a-... | 2025-09-24T20:50:12 |
vercel/next.js | fe2f1e44058206e6d8abe6bb5e91f65fc70a315e | 7643fc948398c38fe0792836fb4c014a45f6fb07 | remove runInContext callbacks from stream-ops (#90609)
The `runInContext` pattern that's used all over `stream-ops` is weird
and feels very unnecessary -- we're passing in callbacks that just get
invoked immediately, and all they do is call `AsyncLocalStorage.run`. We
should just use the standard `AsyncLocalStorage.ru... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -723,7 +723,9 @@ async function generateDynamicFlightRenderResult(\n options\n )\n \n- const flightStream = renderToFlightStream(\n+ const flightStream = workUnitAsyncStorage.run(\n+ requestStore,\n+ renderToFlightStr... | 2026-02-27T14:36:10 |
electron/electron | 90e338df507f7dc7ef0cac1a09b62d2c97c95f72 | 1b3fc9c174998292a3156be792e5008a12a403ea | fix: run toast creation on background thread (#49106)
* fix: run toast creation on background thread
notes: attempts to fix app freeze when triggering notifications and the COM server in WindowsShellExperienceHost hangs
* fix: comments | [
{
"path": "shell/browser/notifications/notification.cc",
"patch": "@@ -14,6 +14,12 @@ const bool debug_notifications =\n base::Environment::Create()->HasVar(\"ELECTRON_DEBUG_NOTIFICATIONS\");\n \n NotificationOptions::NotificationOptions() = default;\n+NotificationOptions::NotificationOptions(const Noti... | 2025-12-02T23:27:22 |
nodejs/node | 20bf3287c2bdce55077da91b7c405aecdc31fef8 | 2696391b18fdd60f0dc93df1e987b9e0116da824 | doc: missing `passed`, `error` and `passed` properties on `TestContext`
`passed` and `error` properties were left undocumented on `TextContext`
class
Fixes: https://github.com/nodejs/node/issues/59321
Refs: https://github.com/nodejs/node/pull/51485
Refs: https://github.com/nodejs/node/pull/59322
Co-authored-by: Simo... | [
{
"path": "doc/api/test.md",
"patch": "@@ -3686,6 +3686,40 @@ added:\n \n The name of the test.\n \n+### `context.passed`\n+\n+<!-- YAML\n+added:\n+ - v21.7.0\n+ - v20.12.0\n+-->\n+\n+* Type: {boolean} `false` before the test is executed, e.g. in a `beforeEach` hook.\n+\n+Indicated whether the test succee... | 2025-12-30T07:19:05 |
golang/go | 06dc5db75d4c2548c0187f34ce79389678be7ca0 | a8032d4c781f14fa0bd561d96e719492aee08c23 | cmd/compile, go/*: move method type parameter checks from parsers to type checkers
The parsers (cmd/compile/internal/syntax and go/parser) always accepted
type parameters on methods for parser robustness but reported an error.
With this change, the parsers accept the type parameters on methods,
and then the type chec... | [
{
"path": "src/cmd/compile/internal/syntax/parser.go",
"patch": "@@ -797,9 +797,9 @@ func (p *parser) funcDeclOrNil() *FuncDecl {\n \tf.pos = p.pos()\n \tf.Pragma = p.takePragma()\n \n-\tvar context string\n+\thasRecv := false\n \tif p.got(_Lparen) {\n-\t\tcontext = \"method\"\n+\t\thasRecv = true\n \t\trcv... | 2026-01-23T00:16:17 |
vercel/next.js | 7643fc948398c38fe0792836fb4c014a45f6fb07 | 15fcfb9ce4ec73c6ff8d08d72201726b983127fa | example: restore .next handling for with-docker examples (#90651)
- Remove BuildKit cache mount on `.next/cache` that trapped fetch cache
in a volume unreachable by the runner stage
- Restore `mkdir .next && chown` in runner stage for writable prerender
cache
- Add commented-out `COPY .next/cache` line as opt-in for p... | [
{
"path": "examples/with-docker-export-output/README.md",
"patch": "@@ -4,14 +4,14 @@ A production-ready example demonstrating how to Dockerize Next.js applications u\n \n ## Features\n \n-- ✅ Multi-stage Docker build for optimal image size\n-- ✅ Static export: Fully static HTML/CSS/JavaScript site\n-- ✅ Tw... | 2026-02-27T14:23:45 |
facebook/react | 58d17912e89b56067eeba08619fd7f7b6c813519 | 2c6d92fd80ec6917cb7387dbb771e35e82b0126d | Fix failing React DevTools regression tests (#34585) | [
{
"path": "packages/react-devtools-shared/src/__tests__/TimelineProfiler-test.js",
"patch": "@@ -130,24 +130,28 @@ describe('Timeline profiler', () => {\n // @reactVersion <= 18.2\n // @reactVersion >= 18.0\n it('should mark sync render without suspends or state updates', () => {\n+ ... | 2025-09-24T17:08:13 |
electron/electron | 8ce97df569f313d5a28ad702ead71bd2be648873 | 7aafe66717b7a926379291d254483ec3b3d8198c | build: gate brew commands in free-space-macos action (#49123)
fix: gate brew commands in free-space-macos action
The brew uninstall and autoremove commands now only run if
brew is available on the machine. This prevents failures on
runners where Homebrew is not installed.
Co-authored-by: Claude <noreply@anthropic.co... | [
{
"path": ".github/actions/free-space-macos/action.yml",
"patch": "@@ -80,8 +80,10 @@ runs:\n sudo rm -rf /Users/runner/.rustup\n \n # remove homebrew packages we don't need\n- brew uninstall -f --zap aws-sam-cli session-manager-plugin gcc gcc@13 gcc@14 llvm@18 gradle maven ant azure-... | 2025-12-02T01:32:46 |
nodejs/node | 879b95efeaf433939df0d47e044cce7f7037dc59 | 05d6b9b5dfba8984a5c600d5e568520aa83ca23c | doc: correct options for net.Socket class and socket.connect
blockList, keepAlive, keepAliveInitialDelay and noDelay are wrongly
documented for socket.connect options and missing on net.Socket
constructor options documentation
Fixes: https://github.com/nodejs/node/issues/59823
PR-URL: https://github.com/nodejs/node/p... | [
{
"path": "doc/api/net.md",
"patch": "@@ -759,8 +759,17 @@ changes:\n automatically end the writable side when the readable side ends. See\n [`net.createServer()`][] and the [`'end'`][] event for details. **Default:**\n `false`.\n+ * `blockList` {net.BlockList} `blockList` can be used for disab... | 2025-12-29T00:47:15 |
golang/go | a8032d4c781f14fa0bd561d96e719492aee08c23 | 87a956bf8cdf9004108942247af8ae0243c5609a | cmd/link: use bfd ld 2.36+ on linux/arm64 instead of gold
The bfd linker has been fixed for a while. In the mean time gold got
deprecated and has stopped receiving new features. Add runtime version
checking and only use gold, if bfd ld 2.35 and lower is detected.
This enables using `-buildmode=shared` on arm64 withou... | [
{
"path": "src/cmd/link/internal/ld/lib.go",
"patch": "@@ -1700,22 +1700,48 @@ func (ctxt *Link) hostlink() {\n \t\t}\n \n \t\tif ctxt.Arch.InFamily(sys.ARM64) && buildcfg.GOOS == \"linux\" {\n-\t\t\t// On ARM64, the GNU linker will fail with\n-\t\t\t// -znocopyreloc if it thinks a COPY relocation is\n-\t\t... | 2026-01-29T04:30:42 |
Subsets and Splits
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.