repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | 244b156e67635f83a13b113c61f7729a79e06056 | a48829de1e7d51e31bb9e28c1b386ba5b796b76f | cmd/compile: fix internal compiler error: bad write barrier type
This change fixes an issue where the compiler panics with 'bad
write barrier type' for zero-sized arrays. The loops in
storeTypeScalars and storeTypePtrs erroneously processed
zero-sized arrays causing invalid operations. This ignores them.
Fixes #77815... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -5671,7 +5671,7 @@ func (s *state) storeTypeScalars(t *types.Type, left, right *ssa.Value, skip ski\n \t\t\tval := s.newValue1I(ssa.OpStructSelect, ft, int64(i), right)\n \t\t\ts.storeTypeScalars(ft, addr, val, 0)\n \t\t}\n-\tcase t.IsArray() ... | 2026-02-26T11:01:01 |
vercel/next.js | 747d3dc465b8cdcd94c7c9f2b17d2ca062936e9a | beb222e83637aed905339e8e2ebd81a923856d77 | Fix prefetch inlining build failure with dynamic routes (#90899)
When prefetchInlining is enabled, the segment data collection returns a
special key for the inlined response. Previously this key was
`/_inlined`, but the build validation code in
`packages/next/src/build/index.ts` expects segment paths to contain
`__PAG... | [
{
"path": "packages/next/src/client/components/segment-cache/cache.ts",
"patch": "@@ -2015,7 +2015,7 @@ export async function fetchInlinedSegmentsOnCacheMiss(\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n- [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]:... | 2026-03-05T15:47:12 |
facebook/react | 47905a79507f9ae5fc1bf633f7cbbd1894b9523b | 7b971c0a5536f7cd4573ff574921463acf947b14 | Fix/add missing else branch for renders with no props change (#34837)
Stacked on https://github.com/facebook/react/pull/34822.
Fixes a bug introduced in https://github.com/facebook/react/pull/34370.
Just copying the lower else branch to the `properties.length` else
branch at the top. | [
{
"path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js",
"patch": "@@ -305,6 +305,30 @@ export function logComponentRender(\n } else {\n performance.measure('\\u200b' + name, reusableComponentOptions);\n }\n+ } else {\n+ if (debugTask != null) ... | 2025-10-13T21:23:04 |
electron/electron | 1f8e4079cda5d62003ee68fa7d39683a074dc1a6 | bad88c6ed450dd87ce160bfaa54091db9f075714 | test: fix version color output when running prebuilt Electron (#49491) | [
{
"path": "script/spec-runner.js",
"patch": "@@ -88,7 +88,7 @@ async function main () {\n }\n \n const versionString = `v${args.electronVersion}`;\n- console.log(`Running against Electron ${versionString.green}`);\n+ console.log(`Running against Electron ${chalk.green(versionString)}`);\n }\... | 2026-01-22T15:17:56 |
nodejs/node | d73c49e8492d650266121e26c0adaef3cf4b9074 | cab20f2396ed2c38b0001642c49d998354d70eb2 | build: drop support for Python 3.9
PR-URL: https://github.com/nodejs/node/pull/61177
Fixes: https://github.com/nodejs/node/issues/60919
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Marco Ippolito <... | [
{
"path": "android-configure",
"patch": "@@ -9,7 +9,6 @@ command -v python3.13 >/dev/null && exec python3.13 \"$0\" \"$@\"\n command -v python3.12 >/dev/null && exec python3.12 \"$0\" \"$@\"\n command -v python3.11 >/dev/null && exec python3.11 \"$0\" \"$@\"\n command -v python3.10 >/dev/null && exec python... | 2026-01-15T22:14:19 |
golang/go | 93b78326c30afe7a49b50c3c1614799ee5b41b97 | c4de16a714d67c31c80285a4cb82069a6fa8718c | cmd/compile: use OpMove instead of memmove more on loong64
OpMove is faster for small moves of fixed size.
goos: linux
goarch: loong64
pkg: runtime
cpu: Loongson-3A6000 @ 2500.00MHz
| old.txt | new.txt |
| sec/op | ... | [
{
"path": "src/cmd/compile/internal/ssa/rewrite.go",
"patch": "@@ -1484,11 +1484,13 @@ func isInlinableMemmove(dst, src *Value, sz int64, c *Config) bool {\n \t\treturn sz <= 16 || (sz < 1024 && disjoint(dst, sz, src, sz))\n \tcase \"arm64\":\n \t\treturn sz <= 64 || (sz <= 1024 && disjoint(dst, sz, src, sz... | 2026-02-12T06:09:27 |
vercel/next.js | 75af3bbd28bb3368a41323ce864c93e6575dd816 | dfbc3dc6b7b395956bf47e92e04aa957cbfcc9a2 | Uncached data suspense issue (#90450)
<!-- 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
### Improvin... | [
{
"path": "docs/01-app/01-getting-started/08-caching.mdx",
"patch": "@@ -284,6 +284,30 @@ Next.js requires you to explicitly handle components that can't complete during\n \n > **🎥 Watch:** Why Partial Prerendering and how it works → [YouTube (10 minutes)](https://www.youtube.com/watch?v=MTcPrTIBkpA).\n \n... | 2026-03-05T13:58:15 |
facebook/react | d7215b4970858ea45db924e1ec435a9a3e5cff40 | e2ce64acb94968d8ca464f37fab2a7ed77848fa9 | [DevTools] Preserve the original index when sorting suspended by (#34829)
The index is both used as the key and for hydration purposes. Previously
we didn't preserve the index when sorting so the index didn't line up
which caused hydration to be the wrong slot when sorted. | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementSuspendedBy.js",
"patch": "@@ -300,9 +300,31 @@ type Props = {\n store: Store,\n };\n \n-function compareTime(a: SerializedAsyncInfo, b: SerializedAsyncInfo): number {\n- const ioA = a.awaited;\n- const ioB = b.await... | 2025-10-13T16:12:12 |
electron/electron | bad88c6ed450dd87ce160bfaa54091db9f075714 | 534cb33465a54b454c2934147e79fdefc94cac6b | fix: potential devtools crash on empty (#49468) | [
{
"path": "lib/renderer/inspector.ts",
"patch": "@@ -11,12 +11,14 @@ const { contextIsolationEnabled } = internalContextBridge;\n * 1) Use menu API to show context menu.\n */\n window.onload = function () {\n- if (contextIsolationEnabled) {\n- internalContextBridge.overrideGlobalValueFromIsolatedWorld([... | 2026-01-22T01:05:26 |
golang/go | 83b4c5d233b1df459fbbd12bfda1194f567a422f | f5479628d36e6cdd63c39784b58fa7241abd3295 | runtime/cgo: avoid unused parameter warning
Annotate the unused parameter with `__attribute__((unused))` to avoid
build failures in environments that treat unused parameters as errors.
We see this when using `rules_go`:
```
@@rules_go+//:stdlib
builder failed: error executing GoStdlib command (from stdlib rule target... | [
{
"path": "src/runtime/cgo/gcc_clearenv.c",
"patch": "@@ -10,7 +10,7 @@\n \n /* Stub for calling clearenv */\n void\n-x_cgo_clearenv(void **_unused)\n+x_cgo_clearenv(void **env __attribute__((unused)))\n {\n \t_cgo_tsan_acquire();\n \tclearenv();",
"additions": 1,
"deletions": 1,
"language": "C"... | 2026-02-27T15:14:25 |
nodejs/node | 1654684633aff288d9214352fbd94de4d4cca58b | 9575913f99b60e9f8cdad5d9dc7cc258b1494495 | esm: ensure watch mode restarts after syntax errors
Move watch dependency reporting earlier in module resolution to ensure
file dependencies are tracked even when parsing fails.
Fixes: https://github.com/nodejs/node/issues/61153
PR-URL: https://github.com/nodejs/node/pull/61232
Reviewed-By: Aviv Keller <me@aviv.sh>
R... | [
{
"path": "lib/internal/modules/esm/loader.js",
"patch": "@@ -542,6 +542,12 @@ class ModuleLoader {\n */\n #getOrCreateModuleJobAfterResolve(parentURL, resolveResult, request, requestType) {\n const { url, format } = resolveResult;\n+\n+ if (process.env.WATCH_REPORT_DEPENDENCIES && process.send)... | 2026-01-15T16:33:26 |
vercel/next.js | dfbc3dc6b7b395956bf47e92e04aa957cbfcc9a2 | 2c52ea2e7b3f9404282104f4e44d12b3d0360932 | Loading layout docs update (#90787)
<!-- 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 ... | [
{
"path": "docs/01-app/01-getting-started/06-fetching-data.mdx",
"patch": "@@ -152,7 +152,7 @@ On navigation, the user will immediately see the layout and a [loading state](#c\n height=\"691\"\n />\n \n-Behind-the-scenes, `loading.js` will be nested inside `layout.js`, and will automatically wrap the `pag... | 2026-03-05T09:46:26 |
facebook/react | 1d68bce19c9409ed70604d1d16b70b68ce71dc4a | ead92181bdbecc332a98daa808f341726dcaa414 | [Fiber] Don't unhide a node if a direct parent offscreen is still hidden (#34821)
If an inner Offscreen commits an unhide, but an outer Offscreen is still
hidden but they're controlling the same DOM node then we shouldn't
unhide the DOM node yet.
This keeps track of whether we're directly inside a hidden offscreen. I... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -292,6 +292,9 @@ import type {Flags} from './ReactFiberFlags';\n // Allows us to avoid traversing the return path to find the nearest Offscreen ancestor.\n let offscreenSubtreeIsHidden: boolean = false;\n let offscreenSubtreeWas... | 2025-10-12T23:50:06 |
rust-lang/rust | 6c467763047de340e4c40ed661df03a9fd4455c8 | 584d32e3ee7a2051c9ec1338d259ed8ef16380ca | Debug for vec::ExtractIf | [
{
"path": "library/alloc/src/vec/extract_if.rs",
"patch": "@@ -130,20 +130,25 @@ where\n A: Allocator,\n {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n- let peek = if self.idx < self.end {\n- // This has to use pointer arithmetic as `self.vec[self.idx]` or\n- ... | 2026-03-29T19:20:45 |
electron/electron | 534cb33465a54b454c2934147e79fdefc94cac6b | 51e7753ae95cce2f669831854967e5f692d57c13 | fix: return early from platform_util::Beep() on Linux if there is no default GDK display (#49442)
fix: return early from beep on linux if there is no default gdk display | [
{
"path": "shell/common/platform_util_linux.cc",
"patch": "@@ -406,6 +406,8 @@ bool PlatformTrashItem(const base::FilePath& full_path, std::string* error) {\n \n void Beep() {\n auto* display = gdk_display_get_default();\n+ if (!display)\n+ return;\n gdk_display_beep(display);\n }\n ",
"addition... | 2026-01-21T20:55:24 |
golang/go | 5055a181560b09170a23be81612ee849e47b0a30 | 76222756d9674a41b01a11d123ce39a7b26eb7fc | cmd/go/internal/doc: support @version suffix on first argument
This change allows `go doc` to display documentation for packages
outside the workspace by explicitly providing a version (e.g., `go doc
pkg@version`) or by inferring it from an installed command.
Therefore, all of the following are now valid:
```
go doc... | [
{
"path": "src/cmd/go/internal/doc/doc.go",
"patch": "@@ -151,7 +151,7 @@ func runDoc(ctx context.Context, cmd *base.Command, args []string) {\n \tlog.SetPrefix(\"doc: \")\n \tdirsInit()\n \tvar flagSet flag.FlagSet\n-\terr := do(os.Stdout, &flagSet, args)\n+\terr := do(ctx, os.Stdout, &flagSet, args)\n \ti... | 2026-02-20T05:24:55 |
nodejs/node | 2679b62e9155ea7d0849cd9ca5b380675aa29234 | 1409ac4ffbc168359656dfbf23b923379976e59c | zlib: validate write_result array length
Fixes: https://github.com/nodejs/node/issues/61286
PR-URL: https://github.com/nodejs/node/pull/61342
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Gürgün Dayıo... | [
{
"path": "src/node_zlib.cc",
"patch": "@@ -736,6 +736,7 @@ class ZlibStream final : public CompressionStream<ZlibContext> {\n \n CHECK(args[4]->IsUint32Array());\n Local<Uint32Array> array = args[4].As<Uint32Array>();\n+ CHECK_GE(array->Length(), 2);\n Local<ArrayBuffer> ab = array->Buffer()... | 2026-01-15T00:38:09 |
facebook/react | ead92181bdbecc332a98daa808f341726dcaa414 | d44659744fd09736793c73e93ea79048f45570ea | [Flight] Avoid unnecessary indirection when serializing debug info (#34797)
When a debug channel is hooked up, and we're serializing debug models,
if the result is an already outlined reference, we can emit it directly,
without also outlining the reference. This would create an unnecessary
indirection.
Before:
```
:... | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMBrowser-test.js",
"patch": "@@ -3051,4 +3051,60 @@ describe('ReactFlightDOMBrowser', () => {\n `);\n }\n });\n+\n+ it('should resolve a cycle between debug info and the value it produces when using a debug channel', async ... | 2025-10-10T19:44:28 |
vercel/next.js | ad030d782e2aba6272685d309c53650fbb06a6a6 | 286a73f84a516b06df59c2e5524150c4ad5d47d6 | Turbopack: Tree shaking fixes and code organization (#89295)
## Summary
A series of bug fixes, refactors, and code organization improvements to Turbopack's tree shaking and side effect optimization:
- **Fix `ModulePart` handling for `FreeVarReference::EcmaScriptModule`** — pass `ModulePart` correctly so free variabl... | [
{
"path": "crates/next-api/src/server_actions.rs",
"patch": "@@ -42,7 +42,7 @@ use turbopack_core::{\n };\n use turbopack_ecmascript::{\n EcmascriptParsable, chunk::EcmascriptChunkPlaceable, parse::ParseResult,\n- tree_shake::asset::EcmascriptModulePartAsset,\n+ tree_shake::part::module::Ecmascrip... | 2026-03-05T06:49:19 |
electron/electron | 22e8cf9416c2644891d506ebceacd5d75af2bedb | 5856b2e01c85ed3133cf5cb596f1347cc5a0cff5 | docs: add a few API history fragments (#49340)
* docs: add a few API history fragments
* manual fixes | [
{
"path": "docs/api/auto-updater.md",
"patch": "@@ -100,6 +100,13 @@ On Windows only `releaseName` is available.\n \n ### Event: 'before-quit-for-update'\n \n+<!--\n+```YAML history\n+added:\n+ - pr-url: https://github.com/electron/electron/pull/12619\n+```\n+-->\n+\n This event is emitted after a user cal... | 2026-01-21T17:57:02 |
golang/go | 76222756d9674a41b01a11d123ce39a7b26eb7fc | f2633386e0d2f692b4363134626f472fc95b9858 | cmd/compile: gate instrumentEnterExit on NoRaceFunc check
The NoRaceFunc flag is meant to suppress racefuncenter/racefuncexit
instrumentation for packages like internal/runtime/atomic. However,
instrumentEnterExit was set unconditionally when -race was enabled,
outside the NoRaceFunc guard. This caused generic functio... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -341,9 +341,9 @@ func buildssa(fn *ir.Func, worker int, isPgoHot bool) *ssa.Func {\n \tif base.Flag.Cfg.Instrumenting && fn.Pragma&ir.Norace == 0 && !fn.Linksym().ABIWrapper() {\n \t\tif !base.Flag.Race || !objabi.LookupPkgSpecial(fn.Sym().Pkg... | 2026-02-23T19:53:35 |
nodejs/node | 1409ac4ffbc168359656dfbf23b923379976e59c | b1ac7e49a464ecc3391f0d9286d69c3a61149a1d | doc: restore @watilde to collaborators
Fixes: https://github.com/nodejs/TSC/issues/1813
PR-URL: https://github.com/nodejs/node/pull/61350
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Richard Lau <richard.lau... | [
{
"path": "README.md",
"patch": "@@ -453,6 +453,8 @@ For information about the governance of the Node.js project, see\n **Vladimir Morozov** <<vmorozov@microsoft.com>> (he/him)\n * [VoltrexKeyva](https://github.com/VoltrexKeyva) -\n **Mohammed Keyvanzadeh** <<mohammadkeyvanzade94@gmail.com>> (he/him)\n+... | 2026-01-14T11:07:37 |
facebook/react | d44659744fd09736793c73e93ea79048f45570ea | 8454a32f3cacdcb11465cfd14d68fb3eb613815f | [Flight] Fix preload `as` attribute for stylesheets (#34760)
Follow-up to #34604. For a stylesheet, we need to render `<link
rel="preload" as="style" ...>`, and not `<link rel="preload"
as="stylesheet" ...>`.
([ref](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Attributes/rel/preload#what_types_of_conten... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFlightServerConfigDOM.js",
"patch": "@@ -169,7 +169,7 @@ function processLink(props: Object, formatContext: FormatContext): void {\n return;\n }\n case 'stylesheet': {\n- preload(href, 'stylesheet', {\n+ preload(href, 'style', {\... | 2025-10-10T19:40:56 |
vercel/next.js | c83f475c1c76c2a23dd5cadd4f92809c979d688a | 63292fc22ed2438b99dfb352fba09a8e7d5adb10 | Address review feedback: extract modules, clean up imports (#90813)
## Summary
Follow-up to #90514 addressing review feedback from @lukesandberg:
- **Extract webpack layer helpers to `webpack-layer.ts`**: Moves `shouldUseReactServerCondition` and `isWebpackAppPagesLayer` out of the large `utils.ts` into their own mo... | [
{
"path": "packages/next/src/build/create-compiler-aliases.ts",
"patch": "@@ -17,7 +17,7 @@ import type { NextConfigComplete } from '../server/config-shared'\n import { defaultOverrides } from '../server/require-hook'\n import { hasExternalOtelApiPackage } from './webpack-config'\n import { NEXT_PROJECT_ROO... | 2026-03-04T21:55:22 |
nodejs/node | b1ac7e49a464ecc3391f0d9286d69c3a61149a1d | d4cc54b8c8efad7c329ad56f75dc190279bccf5d | doc: fix v25 changelog after security release
PR-URL: https://github.com/nodejs/node/pull/61371
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: B... | [
{
"path": "doc/changelogs/CHANGELOG_V25.md",
"patch": "@@ -52,18 +52,12 @@ This is a security release.\n \n ### Notable Changes\n \n-lib:\n-\n * (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) <https://github.com/nodejs-private/node-private/pull/750>\n- permission:\n * (CVE-2026-21636) add... | 2026-01-13T14:55:04 |
golang/go | f71432d223eeb2139b460957817400750fd13655 | 40a10063e89d4f0ae55631d1e50c31e3314fb812 | cmd/compile: fix bloop test
Not 100% sure this is right, but it seems to fix the issue.
Fixes #77832
Change-Id: Ifa6eae61a5444f4fd88b310536b1caf7144e7797
Reviewed-on: https://go-review.googlesource.com/c/go/+/749660
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a... | [
{
"path": "src/cmd/compile/internal/bloop/bloop.go",
"patch": "@@ -86,7 +86,7 @@ func getKeepAliveNodes(pos src.XPos, n ir.Node) ir.Nodes {\n \tif name != nil {\n \t\tdebugName(name, pos)\n \t\treturn ir.Nodes{name}\n-\t} else if deref := n.(*ir.StarExpr); deref != nil {\n+\t} else if deref, ok := n.(*ir.St... | 2026-02-27T03:48:46 |
electron/electron | 486a9a61d2723755adc4be5e407888d755ee3b9c | 7851a34c2d0b74c654ff09b0e1556c457214fb15 | chore: bump chromium to 146.0.7635.0 (main) (#49408)
* chore: bump chromium in DEPS to 146.0.7635.0
* chore: update patch hunk headers
* 7078551: [wasm] Refactor caching API
https://chromium-review.googlesource.com/c/v8/v8/+/7078551
* 7141498: [api] Remove unused context parameter from FixedArray::Get
https://chr... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '146.0.7633.0',\n+ '146.0.7635.0',\n 'node_version':\n 'v24.13.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2026-01-19T14:37:02 |
facebook/react | 8454a32f3cacdcb11465cfd14d68fb3eb613815f | 06fcc8f380c6a905c7bc18d94453f623cf8cbc81 | devtools: fix ellipsis truncation for key values (#34796)
before
<img width="349" height="73" alt="Screenshot 2025-10-09 at 11 38 03"
src="https://github.com/user-attachments/assets/93fec45d-4ef2-498f-9550-36ff807b63f9"
/>
after
<img width="349" height="73" alt="Screenshot 2025-10-09 at 11 38 39"
src="https://github.... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/Element.js",
"patch": "@@ -181,9 +181,7 @@ export default function Element({data, index, style}: Props): React.Node {\n className={styles.KeyValue}\n title={key}\n onDoubleClick={handleKeyDouble... | 2025-10-10T18:05:49 |
vercel/next.js | 9ff3b7c4248bc79c3c2f97645036506610750a93 | 8bd3a2abb1c468ebd1798c8cca9e7417246914bc | [ci]: continue-on-error for more gh auth status checks (#90890)
This seems to be failing for our deploy test workflow
([x-ref](https://github.com/vercel/next.js/actions/runs/22685809647/job/65778800145)).
Updating to `continue-on-error` similar to
https://github.com/vercel/next.js/pull/89098 because this check doesn'... | [
{
"path": ".github/workflows/test_e2e_deploy_release.yml",
"patch": "@@ -261,6 +261,9 @@ jobs:\n steps:\n - name: Check token\n run: gh auth status\n+ # This sometimes fails for unknown reasons.\n+ # Ignoring failures for now to check if a failure actually blocks subsequent s... | 2026-03-04T21:17:19 |
nodejs/node | d4cc54b8c8efad7c329ad56f75dc190279bccf5d | 659fd01b3ebb101a692c8e9a795c9d46397e4ea0 | doc: fix v24 changelog after security release
PR-URL: https://github.com/nodejs/node/pull/61371
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: B... | [
{
"path": "doc/changelogs/CHANGELOG_V24.md",
"patch": "@@ -68,17 +68,11 @@ This is a security release.\n \n ### Notable Changes\n \n-lib:\n-\n * (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) <https://github.com/nodejs-private/node-private/pull/797>\n * (CVE-2025-55132) disable futimes whe... | 2026-01-13T14:54:43 |
golang/go | 40a10063e89d4f0ae55631d1e50c31e3314fb812 | 657ed934e85dc575aad51356c4b437961e7c1313 | runtime: fix scan size calculation for small arrays of only pointers
When allocating arrays, scan size should be the position of the last pointer in the last object.
Small array allocations containing only pointers (for example, the backing store for a []*int)
have a fast path in the allocator for unrolling their bits... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -2083,3 +2083,8 @@ func DumpPrintQuoted(s string) string {\n \n \treturn string(buf)\n }\n+\n+func GetScanAlloc() uintptr {\n+\tc := getMCache(getg().m)\n+\treturn c.scanAlloc\n+}",
"additions": 5,
"deletions": 0,
"language": "Go"
},
{
... | 2026-02-12T09:00:24 |
electron/electron | 7851a34c2d0b74c654ff09b0e1556c457214fb15 | faa21a748f0e7b8168a159e5848cf1f87198d73e | docs: fix `webContents.hostWebContents` types (#49424) | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -2364,7 +2364,8 @@ A [`NavigationHistory`](navigation-history.md) used by this webContents.\n \n #### `contents.hostWebContents` _Readonly_\n \n-A [`WebContents`](web-contents.md) instance that might own this `WebContents`.\n+A `WebContents | null` property... | 2026-01-19T09:45:23 |
facebook/react | 06fcc8f380c6a905c7bc18d94453f623cf8cbc81 | 91e5c3daf11408262e1345cbbbbadd943859b748 | [playground] Fix syntax error from crashing the Compiler playground (#34623)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting... | [
{
"path": "compiler/apps/playground/__tests__/e2e/page.spec.ts",
"patch": "@@ -314,6 +314,36 @@ test('disableMemoizationForDebugging flag works as expected', async ({\n expect(output).toMatchSnapshot('disableMemoizationForDebugging-output.txt');\n });\n \n+test('error is displayed when source has syntax e... | 2025-10-09T19:02:55 |
nodejs/node | 659fd01b3ebb101a692c8e9a795c9d46397e4ea0 | 6c96a63891044e7b23421d675d79cb1e1be647d8 | doc: fix v22 changelog after security release
PR-URL: https://github.com/nodejs/node/pull/61371
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: B... | [
{
"path": "doc/changelogs/CHANGELOG_V22.md",
"patch": "@@ -79,17 +79,11 @@ This is a security release.\n \n ### Notable Changes\n \n-lib:\n-\n * (CVE-2025-59465) add TLSSocket default error handler\n * (CVE-2025-55132) disable futimes when permission model is enabled\n- lib,permission:\n * (CVE-2025-55130)... | 2026-01-13T14:54:21 |
golang/go | 657ed934e85dc575aad51356c4b437961e7c1313 | 753022f82fc54dab5e348fac3706a9df8afc5cb5 | os: avoid escape from Root via ReadDir or Readdir
When reading the contents of a directory using
File.ReadDir or File.Readdir, the os.FileInfo was
populated on Unix platforms using lstat.
This lstat call is vulnerable to a TOCTOU race
and could escape the root.
For example:
- Open the directory "dir" within a Root.... | [
{
"path": "src/internal/poll/fstatat_unix.go",
"patch": "@@ -0,0 +1,22 @@\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 unix || wasip1\n+\n+package poll\n+\n+import (\n+\t\"... | 2026-02-26T17:54:33 |
electron/electron | faa21a748f0e7b8168a159e5848cf1f87198d73e | 5bd2938f6af2ef9060772796f02c3ac9c80d5cdb | fix: MAS rejection for private APIs (#49391) | [
{
"path": "patches/chromium/mas_avoid_private_macos_api_usage.patch.patch",
"patch": "@@ -16,6 +16,18 @@ Subject: mas: avoid private macOS API usage\n * NSNextStepFrame\n * NSThemeFrame\n * NSTextInputReplacementRangeAttributeName\n+ * _toolbarView\n+ * _menuImpl\n+ * _removeFromGroups:\n+ * _isCo... | 2026-01-18T09:34:16 |
facebook/react | 91e5c3daf11408262e1345cbbbbadd943859b748 | 4b3e662e4ce54eb54a8701c48a967cc84a389501 | fix(devtools): remove duplicated "Display density" field in General settings (#34792)
<!--
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 s... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Settings/GeneralSettings.js",
"patch": "@@ -104,18 +104,6 @@ export default function GeneralSettings(_: {}): React.Node {\n ) : null}\n </div>\n \n- <div className={styles.SettingWrapper}>\n- <div className={styles.RadioL... | 2025-10-09T17:38:23 |
nodejs/node | 6c96a63891044e7b23421d675d79cb1e1be647d8 | 903f64796e65324db71ddedee5216a0704f42c1a | doc: fix v20 changelog after security release
PR-URL: https://github.com/nodejs/node/pull/61371
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: B... | [
{
"path": "doc/changelogs/CHANGELOG_V20.md",
"patch": "@@ -89,17 +89,11 @@ This is a security release.\n \n ### Notable Changes\n \n-lib:\n-\n * (CVE-2025-55132) disable futimes when permission model is enabled (RafaelGSS) <https://github.com/nodejs-private/node-private/pull/802>\n * (CVE-2025-59465) add TL... | 2026-01-13T14:54:02 |
golang/go | 89d92fc21166c27db7d4203d93019e33f8cb9695 | b4ef60b9cb74c24108ad02cc11531c0f144bb77d | cmd/compile: ternary rewrite of rewrite should skip, not panic
The panic was unnecessary, if there's nothing to rewrite,
just do nothing. Added a debug message for this to help
with testing; it seems (from accidentally perturbing the
test away from failure) to be somewhat rare, so likely
okay to mingle with the other... | [
{
"path": "src/cmd/compile/internal/ssa/rewritetern.go",
"patch": "@@ -5,7 +5,6 @@\n package ssa\n \n import (\n-\t\"fmt\"\n \t\"internal/goarch\"\n \t\"slices\"\n )\n@@ -175,7 +174,10 @@ func rewriteTern(f *Func) {\n \t\timm := computeTT(a0, vars0)\n \t\top := ternOpForLogical(a0.Op)\n \t\tif op == a0.Op {... | 2026-02-25T20:56:36 |
electron/electron | 5bd2938f6af2ef9060772796f02c3ac9c80d5cdb | f149efe32e852e6e23153c11dfea9834d6d3f247 | fix: try clearing `InspectableWebContents` delegate earlier (#49406)
fix: try clearing InspectableWebContents delegate earlier | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1051,6 +1051,9 @@ void WebContents::InitWithWebContents(\n }\n \n WebContents::~WebContents() {\n+ if (inspectable_web_contents_)\n+ inspectable_web_contents_->GetView()->SetDelegate(nullptr);\n+\n if (owner_window_) {\n own... | 2026-01-16T20:36:34 |
facebook/react | 4b3e662e4ce54eb54a8701c48a967cc84a389501 | 3e1b34dc51dfc3cbada2cdd0ead5acee6998f444 | [compiler] Add VoidUseMemo rule to RecommendedLatest (#34783)
Adds a new error category VoidUseMemo which is only enabled in the
RecommendedLatest preset for now. | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -536,7 +536,8 @@ function printErrorSummary(category: ErrorCategory, message: string): string {\n case ErrorCategory.StaticComponents:\n case ErrorCategory.Suppression:\n case ErrorCategory.Syntax:\n- ... | 2025-10-08T19:55:13 |
golang/go | 20d78eca0a5cb8bb18a870e1c9dc6810c5e1ef6d | 5c7d8a3e4896df7d2d0f9d9ec72248eb39e71f96 | cmd/go: fix ignored error check when sanitizing SwigCXXFiles
Change-Id: Icc78a16c1fd128b14e9113016abdfcd6e91f1c1c
Reviewed-on: https://go-review.googlesource.com/c/go/+/746320
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -3331,7 +3331,7 @@ func (b *Builder) swig(a *Action, objdir string, pcCFLAGS []string) error {\n \t\t}\n \t}\n \tfor _, f := range p.SwigCXXFiles {\n-\t\tif b.swigOne(a, f, objdir, pcCFLAGS, true, intgosize); err != nil {\n+\t\tif err := b.swigOne(a... | 2026-02-17T18:07:38 |
vercel/next.js | d52d9336d5b8d6623156ea426a9246557455b1c7 | c37ef4844d2137716a897eb5a52394e383ec6910 | Clean up legacy PPR references in test fixtures (#90725)
Stacked on https://github.com/vercel/next.js/pull/90726
Migrate legacy PPR tests to Cache Components | [
{
"path": "test/e2e/app-dir/static-shell-debugging/static-shell-debugging.test.ts",
"patch": "@@ -19,7 +19,7 @@ describe.skip('static-shell-debugging', () => {\n : undefined,\n },\n nextConfig: {\n- experimental: { ppr: context.ppr },\n+ cacheComponents: context.ppr,\n },\n }... | 2026-03-04T17:28:15 |
nodejs/node | 903f64796e65324db71ddedee5216a0704f42c1a | abfad122f808073fa325bcd61796b62bd0693c5a | cluster: fix port reuse between cluster
Fixes: https://github.com/nodejs/node/issues/60086
PR-URL: https://github.com/nodejs/node/pull/60141
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "lib/internal/cluster/primary.js",
"patch": "@@ -271,8 +271,12 @@ function queryServer(worker, message) {\n return;\n \n const key = `${message.address}:${message.port}:${message.addressType}:` +\n- `${message.fd}:${message.index}`;\n- let handle = handles.get(key);\n+ ... | 2026-01-14T10:39:15 |
rust-lang/rust | 29710ca2705f5b87d217f6a36b4a9afbd0bc87f0 | ddd36bd57051f796850345b76c17e9402e28a9e4 | remove debug requirement from hooks | [
{
"path": "compiler/rustc_middle/src/hooks/mod.rs",
"patch": "@@ -35,8 +35,10 @@ macro_rules! declare_hooks {\n \n impl Default for Providers {\n fn default() -> Self {\n+ #[allow(unused)]\n Providers {\n- $($name: |_, $($arg,)*| default_... | 2026-01-27T15:09:52 |
facebook/react | 848e0e3a4f12022d396ddbc2b52fd8fa7ac31fa9 | 5c15c1cd3442f28044217703b5625f98c40042ee | [eprh] Update plugin config to be compatible with flat and legacy (#34762)
This has been incredibly frustrating as [ESLint's own
docs](https://eslint.org/docs/latest/extend/plugins#backwards-compatibility-for-legacy-configs)
are clearly wrong (see #34679).
This PR uses [eslint-plugin-react's
setup](https://github.com... | [
{
"path": "fixtures/eslint-v9/eslint.config.ts",
"patch": "@@ -2,6 +2,7 @@ import {defineConfig} from 'eslint/config';\n import reactHooks from 'eslint-plugin-react-hooks';\n \n export default defineConfig([\n+ reactHooks.configs.flat['recommended-latest'],\n {\n languageOptions: {\n ecmaVersio... | 2025-10-07T20:23:56 |
golang/go | 0886e65b119e5be88846b1580451dc2b0d6f6fd0 | b48b2002febf107a04350c43d99e86cba60eba43 | cmd/compile: treat all zero-sized values as SSA-able
Might as well, we don't need any registers for such values.
Fixes #77635
Change-Id: Iedc1bc3f13662b043b183228bcc1dc4e6c91da81
Reviewed-on: https://go-review.googlesource.com/c/go/+/747780
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LU... | [
{
"path": "src/cmd/compile/internal/ssa/value.go",
"patch": "@@ -616,6 +616,9 @@ func CanSSA(t *types.Type) bool {\n \tif t.IsSIMD() {\n \t\treturn true\n \t}\n+\tif t.Size() == 0 {\n+\t\treturn true\n+\t}\n \tsizeLimit := int64(MaxStruct * types.PtrSize)\n \tif t.Size() > sizeLimit {\n \t\t// 4*Widthptr is... | 2026-02-20T20:04:35 |
nodejs/node | daeafc06f96a640d675bf10dee96e152803ecb88 | 3cdb1cd437f63dd256ae2ab3b7e9016257326cb4 | src: use node- prefix on thread names
PR-URL: https://github.com/nodejs/node/pull/61307
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: C... | [
{
"path": "src/node.cc",
"patch": "@@ -1234,7 +1234,7 @@ InitializeOncePerProcessInternal(const std::vector<std::string>& args,\n }\n \n if (!(flags & ProcessInitializationFlags::kNoInitializeNodeV8Platform)) {\n- uv_thread_setname(\"MainThread\");\n+ uv_thread_setname(\"node-MainThread\");\n ... | 2026-01-06T15:49:25 |
vercel/next.js | 1bc8f559932c83ff8d863a35c4a1b2f9ebafd900 | 8dd8a958e8847954b61bc27a00fad7e96a071a57 | Add Err(anyhow(... ast-grep rule (#90869)
# What
Add an ast-grep rule to use `bail!` rather than `Err(anyhow!(` in a
return position.
# Why
This is slightly more compact, and allows us to port more code over to
turbofmt/turbobail.
Note: _this PR was previously merged into another branch due to a GH
bug_ | [
{
"path": ".config/ast-grep/rule-tests/__snapshots__/no-context-snapshot.yml",
"patch": "@@ -2,41 +2,41 @@ id: no-context\n snapshots:\n 'fn foo(context: ChunkingContext) -> u32 { 5 };':\n labels:\n- - source: context\n- style: primary\n- start: 7\n- end: 14\n- - source:... | 2026-03-04T16:08:55 |
rust-lang/rust | 785b5113608a886309962ed836ee7a4bcf13bfaa | a25435bcf7cfc9b953d356eda3a51db8da9e3386 | fix where clause rustfix suggestion spacing | [
{
"path": "compiler/rustc_ast_passes/src/ast_validation.rs",
"patch": "@@ -173,17 +173,19 @@ impl<'a> AstValidator<'a> {\n {\n let mut state = State::new();\n \n+ let mut needs_comma = !ty_alias.after_where_clause.predicates.is_empty();\n if !ty_alias.after_where_c... | 2026-03-30T02:08:12 |
electron/electron | f149efe32e852e6e23153c11dfea9834d6d3f247 | 5dd509d2f4ec6a6e862d8f845a3ab95578a5631b | chore: bump node to v24.13.0 (main) (#49189)
* chore: bump node in DEPS to v24.12.0
* src: use CP_UTF8 for wide file names on win32
https://github.com/nodejs/node/pull/60575
* test,crypto: handle a few more BoringSSL tests
https://github.com/nodejs/node/pull/59030
* chore: fixup patch indices
* chore: re-add acc... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '146.0.7633.0',\n 'node_version':\n- 'v24.11.1',\n+ 'v24.13.0',\n 'nan_version':\n '675cefebca42410733da8a454c8d9391fcebfbc2',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2026-01-16T16:08:38 |
facebook/react | 5c15c1cd3442f28044217703b5625f98c40042ee | 69b4cb8df4d3c612f927942098475c7907c70808 | [ci] Dry run with debug mode (#34767)
Adds `--debug` to our dry run command so we can see the npm dry run
output | [
{
"path": ".github/workflows/compiler_prereleases.yml",
"patch": "@@ -62,7 +62,7 @@ jobs:\n name: Publish packages to npm (dry run)\n run: |\n cp ./scripts/release/ci-npmrc ~/.npmrc\n- scripts/release/publish.js --ci --versionName=${{ inputs.version_name }} --tag=${{ input... | 2025-10-07T19:16:18 |
golang/go | 0ac9d84e3dd7eacc66b0bcc6bef86a90f4ec7714 | ed0367718f3b17677c9112f259d27892b2b53424 | reflect: fix support for iter with named boolean in Seq/Seq2
Fixes #77542
Change-Id: Ic2f33f5aabbdf064cbf5aa850f6c08f01352db80
Reviewed-on: https://go-review.googlesource.com/c/go/+/745580
Auto-Submit: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceacco... | [
{
"path": "src/reflect/iter.go",
"patch": "@@ -36,7 +36,7 @@ func rangeNum[T int8 | int16 | int32 | int64 | int |\n // Uint, Uint8, Uint16, Uint32, Uint64, Uintptr,\n // Array, Chan, Map, Slice, or String.\n func (v Value) Seq() iter.Seq[Value] {\n-\tif canRangeFunc(v.abiType()) {\n+\tif canRangeFunc(v.abiT... | 2026-02-14T10:47:17 |
nodejs/node | 97595f768e94d3d2da685dc0e5366016b146d2b7 | 1d2686d15e788218be35e1cb26dfbb551d8366e3 | tls: route callback exceptions through error handlers
Wrap pskCallback and ALPNCallback invocations in try-catch blocks
to route exceptions through owner.destroy() instead of letting them
become uncaught exceptions. This prevents remote attackers from
crashing TLS servers or causing resource exhaustion.
Fixes: https:... | [
{
"path": "lib/internal/tls/wrap.js",
"patch": "@@ -234,39 +234,44 @@ function callALPNCallback(protocolsBuffer) {\n const handle = this;\n const socket = handle[owner_symbol];\n \n- const servername = handle.getServername();\n+ try {\n+ const servername = handle.getServername();\n \n- // Collect ... | 2025-12-22T17:25:33 |
electron/electron | 5dd509d2f4ec6a6e862d8f845a3ab95578a5631b | bdd7730a244dbff6b892e1d59359b8e9ad25ae0a | fix: restore AXDocument accessibility attribute for representedFilename on macOS (#49346)
Starting from Chromium 134.0.6989.0 (Electron 35.0.0-beta.5), the
NativeWidgetMacNSWindow class overrides accessibilityDocument to return
the web content URL from the accessibility tree, but doesn't fall back
to NSWindow's defaul... | [
{
"path": "shell/browser/ui/cocoa/electron_ns_window.mm",
"patch": "@@ -285,6 +285,19 @@ - (NSString*)accessibilityTitle {\n return base::SysUTF8ToNSString(shell_ ? shell_->GetTitle() : \"\");\n }\n \n+- (NSString*)accessibilityDocument {\n+ // Prefer representedFilename set via Electron's setRepresented... | 2026-01-16T09:27:29 |
facebook/react | a664f5f2ee225eab810fb1a1cc36de3a68bbf47c | 1384ea8230641e3fc569a510b5f1c73f3f28302d | [compiler] Fix incorrect version name (#34764)
Script was using the wrong version name.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/34764).
* #34765
* __->__ #34764 | [
{
"path": "compiler/scripts/release/publish.js",
"patch": "@@ -145,10 +145,15 @@ async function main() {\n files: {exclude: ['.DS_Store']},\n });\n const truncatedHash = hash.slice(0, 7);\n- let newVersion =\n- argv.tagVersion == null || argv.tagVersion === ''\n- ? `${argv.versi... | 2025-10-07T18:32:51 |
vercel/next.js | e4cae3708480366826d8a6f42865f73072f9f760 | 70a2e8d934887ca1ca6e4bf3d1aeae205476b5fd | Turbopack: turbofmt/turbobail macros (#90092)
# What
Add turbofmt! and turbobail! proc macros for async string formatting
with Vc<T> and ResolvedVc<T> values.
A new, agent-friendly `FORMATTING.md` file is added to help agents
figure out how these macros work.
# Why
Formatting strings that include turbo-tasks values... | [
{
"path": "crates/next-api/src/font.rs",
"patch": "@@ -1,7 +1,7 @@\n use anyhow::Result;\n use next_core::next_manifests::NextFontManifest;\n use turbo_rcstr::RcStr;\n-use turbo_tasks::{ResolvedVc, Vc};\n+use turbo_tasks::{ResolvedVc, Vc, turbofmt};\n use turbo_tasks_fs::{File, FileContent, FileSystemPath};... | 2026-03-04T15:11:04 |
golang/go | ed0367718f3b17677c9112f259d27892b2b53424 | 8411ab9d3d947fc842dd99eadf0ee01e3f6b9477 | Revert "cmd/compile: avoid panic in ternary rewrite on checked instructions"
This reverts CL 745460.
Reason for revert: This just disables the optimization, instead of fixing it.
Change-Id: I26350d08c847f666d12450d484312d0baf5f1112
Reviewed-on: https://go-review.googlesource.com/c/go/+/749161
LUCI-TryBot-Result: Go ... | [
{
"path": "src/cmd/compile/internal/ssa/issue77582_test.go",
"patch": "@@ -1,29 +0,0 @@\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-25T19:33:49 |
nodejs/node | 73747597e0e2c4ddf2d437b0aee7f2cc1f0cdfef | 3296b2e734cc1b329f3c32aee2c7bdeb4ade7cf4 | src: rethrow stack overflow exceptions in async_hooks
When a stack overflow exception occurs during async_hooks callbacks
(which use TryCatchScope::kFatal), detect the specific "Maximum call
stack size exceeded" RangeError and re-throw it instead of immediately
calling FatalException. This allows user code to catch th... | [
{
"path": "src/async_wrap.cc",
"patch": "@@ -68,7 +68,8 @@ static const char* const provider_names[] = {\n void AsyncWrap::DestroyAsyncIdsCallback(Environment* env) {\n Local<Function> fn = env->async_hooks_destroy_function();\n \n- TryCatchScope try_catch(env, TryCatchScope::CatchMode::kFatal);\n+ TryC... | 2025-12-09T22:50:18 |
rust-lang/rust | 1d7d435d08c59f917b3fc266a2844fe002cfa7d7 | 4b0caec04bb1dd73373b0660841c14b72507bede | Panic on unlocking a non-read locked RwLock + provided better error msgs | [
{
"path": "library/std/src/sys/sync/rwlock/no_threads.rs",
"patch": "@@ -17,12 +17,8 @@ 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-30T00:06:25 |
electron/electron | bdd7730a244dbff6b892e1d59359b8e9ad25ae0a | 060e76f1b64a5106f1e82c6decc22f0811bfaa6f | fix: make toplevel icon Wayland protocol work (#49290) | [
{
"path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc",
"patch": "@@ -25,6 +25,7 @@\n #include \"ui/gfx/geometry/skia_conversions.h\"\n #include \"ui/linux/linux_ui.h\"\n #include \"ui/ozone/public/ozone_platform.h\"\n+#include \"ui/platform_window/extensions/wayland_extension.h\"\n #includ... | 2026-01-16T08:55:52 |
facebook/react | 3025aa39649ef5106c34cc7896a63d63b2edee91 | a4eb2dfa6fec3da5a947eb84c99b059890bb5241 | [Flight] Don't serialize toJSON in Debug path and omit wide arrays (#34759)
There's a couple of issues with serializing Buffer in the debug renders.
For one, the Node.js Buffer has a `toJSON` on it which turns the binary
data into a JSON array which is very inefficient to serialize compared
to the real buffer. For de... | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -849,6 +849,49 @@ export function resolveRequest(): null | Request {\n return null;\n }\n \n+function isTypedArray(value: any): boolean {\n+ if (value instanceof ArrayBuffer) {\n+ return true;\n+ }\n+ if (value instanceof Int8A... | 2025-10-07T13:59:34 |
vercel/next.js | 5719439f24c81e62b90b7b53b332b6e615d9565b | 4c379cad09b681e6720568b66d8e8ccb3ae12d6d | [turbotask] Make turbotask function registration const (#90797)
# What
Make turbotask function registration const -- all function registration
blocks are true &'static items, compiled directly into the binary.
Removes a few thousand allocations of type names and boxed impls of
TaskFn.
# Why
We have approx 2k funct... | [
{
"path": "turbopack/crates/turbo-tasks-macros-tests/tests/function/fail_operation_method_self_type.stderr",
"patch": "@@ -13,20 +13,19 @@ error[E0307]: invalid `self` parameter type: `OperationVc<Foobar>`\n = note: type of `self` must be `Self` or some type implementing `Receiver`\n = help: consider ... | 2026-03-04T14:17:27 |
nodejs/node | 7d421c8f29a48a5fe601329ccaf5c16239b3a2bb | fb4389332dc4d6e48faa5ff17e662a5455ba68ab | lib: add TLSSocket default error handler
This prevents the server from crashing due to an unhandled rejection
when a TLSSocket connection is abruptly destroyed during initialization
and the user has not attached an error handler to the socket.
e.g:
```js
const server = http2.createSecureServer({ ... })
server.on('sec... | [
{
"path": "lib/internal/tls/wrap.js",
"patch": "@@ -1252,6 +1252,7 @@ function tlsConnectionListener(rawSocket) {\n socket[kErrorEmitted] = false;\n socket.on('close', onSocketClose);\n socket.on('_tlsError', onSocketTLSError);\n+ socket.on('error', onSocketTLSError);\n }\n \n // AUTHENTICATION MODES... | 2025-10-31T19:27:48 |
golang/go | 8411ab9d3d947fc842dd99eadf0ee01e3f6b9477 | 1aa534dbb8970b86b0f4059b7665e3505d145e25 | Revert "test/simd: add test for issue 77582"
This reverts CL 748760.
Reason for revert:
1. the fix in CL 745460 is not really correct.
2. this test doesn't actually reproduce the failure. (It needs to
actually use the result, instead of assigning to _.)
Change-Id: Ifb3da8954c5e8774ac000ee3bbf92e5813705dd6
Reviewe... | [
{
"path": "src/cmd/compile/internal/ssa/issue77582_test.go",
"patch": "@@ -1,25 +1,29 @@\n-// compile\n-\n-//go:build goexperiment.simd && amd64\n-\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 f... | 2026-02-25T21:49:08 |
rust-lang/rust | 6e984cd4bf5535d707b9eeacd023637f6031f1cb | a25435bcf7cfc9b953d356eda3a51db8da9e3386 | loongarch: use "_mcount" as the default mcount symbol
Set the `mcount` field to "_mcount" for all LoongArch targets to match
Clang/GCC behavior [1]. This fixes linking failures when using
`-Z instrument-mcount`, where the runtime expects "_mcount" instead of
"mcount".
[1] https://github.com/llvm/llvm-project/blob/mai... | [
{
"path": "compiler/rustc_target/src/spec/targets/loongarch32_unknown_none.rs",
"patch": "@@ -22,6 +22,7 @@ pub(crate) fn target() -> Target {\n linker: Some(\"rust-lld\".into()),\n llvm_abiname: LlvmAbi::Ilp32d,\n max_atomic_width: Some(32),\n+ mcount: \"_mcou... | 2026-03-29T13:37:07 |
electron/electron | 2fbf1f5c72ef6d5e7765c0160817015a3800101d | c769361af2ec2097a2b2d460a2543c330e684cfe | ci: detect patch needs update error with problem matcher (#49405) | [
{
"path": ".github/actions/checkout/action.yml",
"patch": "@@ -143,11 +143,12 @@ runs:\n echo \"No changes to patches detected\"\n fi\n fi\n- - name: Remove patch conflict problem matcher\n+ - name: Remove patch conflict problem matchers\n shell: bash\n run: |\n echo ... | 2026-01-16T03:18:50 |
facebook/react | a4eb2dfa6fec3da5a947eb84c99b059890bb5241 | 6a8c7fb6f1108577c97eeb5703018ece915dcdeb | Release Fragment refs to Canary (#34720)
## Overview
This PR adds the `ref` prop to `<Fragment>` in `react@canary`.
This means this API is ready for final feedback and prepared for a
semver stable release.
## What this means
Shipping Fragment refs to canary means they have gone through extensive
testing in product... | [
{
"path": "fixtures/dom/src/components/fixtures/fragment-refs/ScrollIntoViewCase.js",
"patch": "@@ -55,11 +55,11 @@ export default function ScrollIntoViewCase() {\n const scrollContainerRef = useRef(null);\n \n const scrollVertical = () => {\n- fragmentRef.current.experimental_scrollIntoView(alignToT... | 2025-10-07T04:24:24 |
vercel/next.js | ad3296b9d418bf6d4a7a373f4a4e53a704257120 | 11c906a75c778e50dfe83c0131c745f6130cb39f | Update default error pages (#90469)
Redesign the https://github.com/vercel/next.js/pull/87988 error pages to
be more aligned with Next.js aesthetic, along with copy to be sharper.
| Client | Server |
|--------|--------|
| <img width="4992" height="2830" alt="CleanShot 2026-03-03 at 17 26
07@2x"
src="https://github.co... | [
{
"path": "packages/next/src/client/components/builtin/app-error.tsx",
"patch": "@@ -1,29 +1,26 @@\n import React from 'react'\n-import { errorStyles, errorThemeCss, ErrorIcon } from './error-styles'\n+import { errorStyles, errorThemeCss, WarningIcon } from './error-styles'\n \n // This is the static 500.ht... | 2026-03-04T11:49:57 |
golang/go | abf84a51fcec1156712be90f8aa2ae58b461aa65 | 45138d477d5a7547086357218061429d3c80a6be | cmd/go: use 'gcloud storage cp' instead of 'gsutil cp'
In some misguided attempt at "cleanup", Google Cloud has
decided to retire 'gsutil' in favor of 'gcloud storage' instead
of leaving an entirely backwards-compatible wrapper so
that client scripts and muscle memory keep working.
In addition to breaking customers t... | [
{
"path": "src/cmd/go/testdata/script/mod_get_pseudo_other_branch.txt",
"patch": "@@ -64,4 +64,4 @@ git checkout master\n git merge b -m merge\n \n zip -r ../tagtests.zip .\n-gsutil cp ../tagtests.zip gs://vcs-test/git/tagtests.zip\n+gcloud storage cp ../tagtests.zip gs://vcs-test/git/tagtests.zip",
"ad... | 2026-02-25T12:59:00 |
rust-lang/rust | 003595348e9fc6ac081a4516deb57d6aa1860f40 | 80d0e4be6f15899649ba31669077c59a986f96cc | Remove `DepGraphData::dep_node_debug`.
This hashmap was added in #42625 and is used for debug-only printing. If
a key isn't recoverable, `DepNode::construct` will create a string for
it (using `DepNodeKey::to_debug_str`) and insert the string in the
hashmap, but only if (a) it's a debug build, and (b)
`-Zincremental-i... | [
{
"path": "compiler/rustc_middle/src/dep_graph/dep_node.rs",
"patch": "@@ -121,19 +121,7 @@ impl DepNode {\n where\n Key: DepNodeKey<'tcx>,\n {\n- let dep_node = DepNode { kind, key_fingerprint: key.to_fingerprint(tcx).into() };\n-\n- #[cfg(debug_assertions)]\n- {\n- ... | 2026-03-28T00:05:49 |
nodejs/node | 6ea77ad552f9f9d8a61c44a82f158213c94b5daf | 64022d9fccc9624813a311444e87f2b2985acb22 | 2026-01-13, Version 25.3.0 (Current)
This is a security release.
Notable changes:
lib:
* (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) https://github.com/nodejs-private/node-private/pull/750
permission:
* (CVE-2026-21636) add network check on pipe_wrap connect (RafaelGSS) https://github.com/no... | [
{
"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.2.1\">25.2.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.3.0\">25.3.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V25.md#25.2.1\">2... | 2026-01-05T18:07:21 |
electron/electron | c769361af2ec2097a2b2d460a2543c330e684cfe | 6ea7d6d5a45801f9b2d82c279dd8e889c6fc7cc6 | fix: warning: default arguments on virtual or override methods (#49398)
fix: warning: default arguments on virtual or override methods are prohibited [google-default-arguments]
we never override these, so just make them nonvirtual | [
{
"path": "shell/browser/native_window.h",
"patch": "@@ -106,9 +106,9 @@ class NativeWindow : public base::SupportsUserData,\n void SetPosition(const gfx::Point& position, bool animate = false);\n [[nodiscard]] gfx::Point GetPosition() const;\n \n- virtual void SetContentSize(const gfx::Size& size, boo... | 2026-01-16T00:09:43 |
facebook/react | 6a8c7fb6f1108577c97eeb5703018ece915dcdeb | b65e6fc58b8c9a35e2c2ea7d1952fc1499cef09b | Release `<ViewTransition />` to Canary (#34712)
## Overview
This PR ships the View Transition APIs to `react@canary`:
- [`<ViewTransition
/>`](https://react.dev/reference/react/ViewTransition)
-
[`addTransitionType`](https://react.dev/reference/react/addTransitionType)
This means these APIs are ready for final feedb... | [
{
"path": "fixtures/view-transition/src/components/App.js",
"patch": "@@ -3,7 +3,7 @@ import React, {\n useLayoutEffect,\n useEffect,\n useState,\n- unstable_addTransitionType as addTransitionType,\n+ addTransitionType,\n } from 'react';\n \n import Chrome from './Chrome.js';",
"additions": 1,
... | 2025-10-07T04:23:34 |
golang/go | a78df5aa0afcd64935f89577c0da0ed2315014ea | 60dc96479a85db0e245a5c14d964628169abedf4 | cmd/compile: rewriteFixedLoad: ensure AuxInt is sign-extended
CL 701297 accidentailly broke the type casting behavior for Hash.
Previously, the generated rules for Hash shared a common pattern:
v.AuxInt = int32ToAuxInt(fixed32(config, sym, off))
which inherently equaled to a signed-extend:
v.AuxInt = int64... | [
{
"path": "src/cmd/compile/internal/ssa/rewrite.go",
"patch": "@@ -2171,11 +2171,11 @@ func rewriteFixedLoad(v *Value, sym Sym, sb *Value, off int64) *Value {\n \t\t\t\t\treturn v\n \t\t\t\tcase \"Hash\":\n \t\t\t\t\tv.reset(OpConst32)\n-\t\t\t\t\tv.AuxInt = int64(types.TypeHash(t))\n+\t\t\t\t\tv.AuxInt = i... | 2026-02-12T06:56:43 |
vercel/next.js | 34fdcbb422af467be0701f8cf8c03564bf373988 | 1f45f98a269258c4ff4cb94abe9440bc92798820 | Avoid using TaskTypes as keys in storage instead use hashes (#88904)
Save space in the persisent store by only recording TaskType one time instead of twice.
## What?
Instead of using an encoded TaskType struct as a key in persistent storage just use a 64 bit hash. Now when looking up we actually need to do a cascad... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -284,21 +284,6 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n ExecuteContextImpl::new(self, turbo_tasks)\n }\n \n- /// # Safety\n- ///\n- /// `tx` must be a transaction from this TurboTasksBacken... | 2026-03-03T21:39:40 |
nodejs/node | 64022d9fccc9624813a311444e87f2b2985acb22 | 1f49cd1d86977deca14aae108d8a98e470019baa | 2026-01-13, Version 24.13.0 'Krypton' (LTS)
This is a security release.
Notable changes:
lib:
* (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) <https://github.com/nodejs-private/node-private/pull/797>
* (CVE-2025-55132) disable futimes when permission model is enabled (RafaelGSS) <https://githu... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -47,7 +47,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V25.md#25.0.0\">25.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.12.0\">24.12.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.13.0\">24.13.0... | 2026-01-07T08:01:45 |
facebook/react | c78625842239f29ff130136fff2729fd4c7c2e91 | 1be3ce9996f05ceb74fd8c11f08a84a5e57098f3 | [eprh] Fix config type not being exported correctly (#34746)
Another attempt to fix #34745. I updated our fixture for eslint-v9 to
include running tsc. I believe there were 2 issues:
1. `export * from './cjs/eslint-plugin-react-hooks'` in npm/index.d.ts
was no longer correct as we updated index.ts to export default i... | [
{
"path": "fixtures/eslint-v9/eslint.config.ts",
"patch": "@@ -12,10 +12,7 @@ export default defineConfig([\n },\n },\n },\n- plugins: {\n- 'react-hooks': reactHooks,\n- },\n- extends: ['react-hooks/recommended-latest'],\n+ extends: [reactHooks.configs['recommended-latest'... | 2025-10-06T04:53:21 |
electron/electron | 6ea7d6d5a45801f9b2d82c279dd8e889c6fc7cc6 | 27b3a323074fcee55ea2baa361c66a65d2245a9e | chore: bump chromium to 146.0.7633.0 (main) (#49390)
* chore: bump chromium in DEPS to 146.0.7633.0
* chore: fixup patch indices
* chore: fix unsafe buffer usage in browser_linux.cc
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr ... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '145.0.7628.0',\n+ '146.0.7633.0',\n 'node_version':\n 'v24.11.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2026-01-15T15:52:42 |
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 | d7b331f3bffe59fd5f421252b45bea0f69fe8dee | 296e180036c5f564d28f71492daba29a0cd573ba | [otel] fix missing http.route attribute (#90832) | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -549,6 +549,7 @@ export async function handler(\n interceptionRoutePatterns\n )\n res.setHeader('Vary', varyHeader)\n+ let parentSpan: Span | undefined\n const invokeRouteModule = async (\n span: Span | undefi... | 2026-03-03T19:16:02 |
nodejs/node | 1f49cd1d86977deca14aae108d8a98e470019baa | 4443a11bef5688f0696adec08daf842a7069c5d1 | 2026-01-13, Version 22.22.0 'Jod' (LTS)
This is a security release.
Notable changes:
lib:
* (CVE-2025-59465) add TLSSocket default error handler
* (CVE-2025-55132) disable futimes when permission model is enabled
lib,permission:
* (CVE-2025-55130) require full read and write to symlink APIs
src:
* (CVE-2025-... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -66,7 +66,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.0\">24.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.21.1\">22.21.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.22.0\">22.22.0... | 2026-01-07T15:40:53 |
facebook/react | bc2356176bca3e42e84ce8d196fdc525677cc36b | 4fdf7cf249ecb205d20b65b5208d113ea664cb9a | [ci] Fix incorrect filtering logic for prereleases (#34725)
The workflow was correctly publishing the package(s) specified in
`only`, but due to incorrect logic it would also run the 'Publish all
packages' step. | [
{
"path": ".github/workflows/runtime_prereleases.yml",
"patch": "@@ -93,7 +93,7 @@ jobs:\n --tags=${{ inputs.dist_tag }} \\\n --skipPackages=${{ inputs.skip_packages }} ${{ (inputs.dry && '') || '\\'}}\n ${{ inputs.dry && '--dry' || '' }}\n- - if: '${{ !(inputs.skip_... | 2025-10-03T20:37:55 |
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 | 6f763ecfd48acc3593f8a10328aef9358fdb7c75 | c2b4c0815c62cc62d75c779a88ed8b42fd85d674 | Turbopack: add anyhow::Context to turbo-persistence mmap, file open, and decompress operations (#90769)
### What?
Adds `anyhow::Context` (`.context()` / `.with_context()`) to error-prone
operations in the `turbo-persistence` crate: file opens, memory mapping
(`mmap`), and LZ4 decompression.
### Why?
`get` / `batch_... | [
{
"path": "turbopack/crates/turbo-persistence/src/compression.rs",
"patch": "@@ -21,7 +21,13 @@ pub fn decompress_into_arc(uncompressed_length: u32, block: &[u8]) -> Result<Arc\n let mut buffer = unsafe { buffer.assume_init() };\n // We just created this Arc so refcount is 1; get_mut always succeeds... | 2026-03-03T15:10:21 |
rust-lang/rust | 0740609ea38a7274911952fa90c28b89c71f6611 | fda6d37bb88ee12fd50fa54d15859f1f91b74f55 | Point at binop lhs and rhs when expression is multiline
```
error[E0277]: cannot add `()` to `u32`
--> $DIR/multiline-span-simple.rs:13:18
|
LL | foo(1 as u32 +
| -------- ^ no implementation for `u32 + ()`
LL |
LL | / bar(x,
LL | |
LL | | y),
| |______________-
``` | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/suggestions.rs",
"patch": "@@ -2916,12 +2916,21 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n | ObligationCauseCode::CheckAssociatedTypeBounds { .. }\n | ObligationCauseCode::LetElse\n | ObligationCauseCod... | 2026-03-29T21:07:47 |
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 |
electron/electron | ddeb970f18e6d228937ce1014e4b66624e2d447b | 5d802649440ea1813c0d5844506551a82bfe2535 | refactor: make `ReplyChannel` inherit from `gin::Wrappable` (#49339)
* refactor: make ReplyChannel inherit from gin::Wrappable
* chore: add kElectronReplyChannel to chore_add_electron_objects_to_wrappablepointertag.patch
* fix: use gin::PerIsolateData::DisposeObserver
* fix: lifetime issues
* chore: rm perisolated... | [
{
"path": "patches/chromium/chore_add_electron_objects_to_wrappablepointertag.patch",
"patch": "@@ -8,10 +8,10 @@ electron objects that extend gin::Wrappable and gets\n allocated on the cpp heap\n \n diff --git a/gin/public/wrappable_pointer_tags.h b/gin/public/wrappable_pointer_tags.h\n-index 573bcb2e56068... | 2026-01-15T00:35:01 |
facebook/react | 4fdf7cf249ecb205d20b65b5208d113ea664cb9a | 614a945d9d1031fadcf211a632cb2d7fda495a4f | [ci] Fix runtime_prereleases (#34722)
When using the "only" or "skip" option in the workflow, we were adding
the `--skipTests` param, but that isn't an actual option:
https://github.com/facebook/react/blob/1de32a5e75fe96ac3c1b728a117010e11673f6ed/scripts/release/publish-commands/parse-params.js | [
{
"path": ".github/workflows/runtime_prereleases.yml",
"patch": "@@ -82,7 +82,6 @@ jobs:\n run: |\n scripts/release/publish.js \\\n --ci \\\n- --skipTests \\\n --tags=${{ inputs.dist_tag }} \\\n --onlyPackages=${{ inputs.only_packages }} ${{ (... | 2025-10-03T18:41:34 |
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 |
facebook/react | 85c427d822baad6e654256b707b7d8755da7db26 | 02bd4458f77e60b5631ff2f0e30b05b8b3a56d6d | [compiler] Remove @babel/plugin-proposal-private-methods (#34715)
redo of #34458 but fixing up prettier
Co-authored-by: Arnaud Barré <arnaud.barre@carbometrix.com> | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/babel.config.js",
"patch": "@@ -10,6 +10,5 @@ module.exports = {\n plugins: [\n ['@babel/plugin-transform-private-property-in-object', {loose: true}],\n ['@babel/plugin-transform-class-properties', {loose: true}],\n- ['@babel/plugin-tran... | 2025-10-03T16:13:55 |
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 |
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 |
facebook/react | 0eebd37041a5712f841edd5fad558e0516e5af61 | 74dee8ef641c7a0a67db192f83c11ac0d9f279ff | [playground] Config panel quality fixes (#34611)
Fixed two small issues with the config panel in the compiler playground:
1. Object descriptions were being confined in the config box and most of
it would not be visible upon hover
2. Changed it so that "Applied Configs" would only display a valid set
of configs, rather... | [
{
"path": "compiler/apps/playground/components/Editor/ConfigEditor.tsx",
"patch": "@@ -6,7 +6,6 @@\n */\n \n import MonacoEditor, {loader, type Monaco} from '@monaco-editor/react';\n-import {PluginOptions} from 'babel-plugin-react-compiler';\n import type {editor} from 'monaco-editor';\n import * as monaco... | 2025-10-03T14:52:36 |
electron/electron | 5d802649440ea1813c0d5844506551a82bfe2535 | dae76c2885fed5130670dc0f13c9083db5d0fa60 | chore: bump chromium to 145.0.7628.0 (main) (#49331)
* chore: bump chromium in DEPS to 145.0.7620.0
* chore: bump chromium in DEPS to 145.0.7622.0
* chore: bump chromium in DEPS to 145.0.7624.0
* chore: bump chromium in DEPS to 145.0.7626.0
* chore: bump chromium in DEPS to 145.0.7628.0
* 7362759: Migrate various... | [
{
"path": ".github/actions/fix-sync/action.yml",
"patch": "@@ -37,6 +37,22 @@ runs:\n installation-dir: third_party/esbuild\n target-platform: ${{ inputs.target-platform }}\n package: infra/3pp/tools/esbuild/${platform}\n+ - name: Fix rollup\n+ if: ${{ inputs.target-platform ... | 2026-01-14T14:34:24 |
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 |
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 |
facebook/react | 19f65ff179d377ff0c9284704dff2fce370745be | 26b177bc5e1d287c60c50fc1e185b2fb398488a0 | [eprh] Remove NoUnusedOptOutDirectives (#34703)
This rule was a leftover from a while ago and doesn't actually lint
anything useful. Specifically, you get a lint error if you try to opt
out a component that isn't already bailing out. If there's a bailout the
compiler already safely skips over it, so adding `'use no me... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/__tests__/NoUnusedDirectivesRule-test.ts",
"patch": "@@ -1,58 +0,0 @@\n-/**\n- * Copyright (c) Meta Platforms, Inc. and affiliates.\n- *\n- * This source code is licensed under the MIT license found in the\n- * LICENSE file in the root directory of t... | 2025-10-02T23:19:01 |
vercel/next.js | c2b4c0815c62cc62d75c779a88ed8b42fd85d674 | ce14ca88a4e04e1b72021f9b10425ba497acc1b4 | Unify caching story across the docs (#90149)
This PRs unifies the caching story across the docs, making Cache
Components the happy path, while still providing guidance to users in
the old model. However, instead of explaining the old model and its
caching layers, we've created a new guide focusing on what APIs to use
... | [
{
"path": "docs/01-app/01-getting-started/03-layouts-and-pages.mdx",
"patch": "@@ -269,11 +269,11 @@ export default async function Page({ searchParams }) {\n }\n ```\n \n-Using `searchParams` opts your page into [**dynamic rendering**](/docs/app/guides/caching#dynamic-rendering) because it requires an incom... | 2026-03-03T13:14:24 |
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 |
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.