repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
facebook/react | 90bee819028bfecb724df298da798607b6a76abf | 75e78d243f749d009fa1c5c09c3464301b992718 | [compiler] Do not inline IIFEs in value blocks (#33548)
As discussed in chat, this is a simple fix to stop introducing labels
inside expressions.
The useMemo-with-optional test was added in
https://github.com/facebook/react/commit/d70b2c2c4e85c2a7061214c15a8ff13167d10422
and crashes for the same reason- an unexpected... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InlineImmediatelyInvokedFunctionExpressions.ts",
"patch": "@@ -17,6 +17,7 @@ import {\n InstructionKind,\n LabelTerminal,\n Place,\n+ isStatementBlockKind,\n makeInstructionId,\n promoteTemporary,\n reversePostorderBlocks,\n... | 2025-06-17T01:53:50 |
nodejs/node | 64a8b4b1baf9cdc334420ea398fb307c59f7eb93 | f1a8f447d7363e9a5e1c412c1a425a9771bc691f | crypto: expose signatureAlgorithm on X509Certificate
Adds the `signatureAlgorithm` property to a X509Certificate allowing
users to retrieve a string representing the algorithm used to sign the
certificate. This string is defined by the OpenSSL library.
Fixes: https://github.com/nodejs/node/issues/59103
PR-URL: https:... | [
{
"path": "deps/ncrypto/ncrypto.cc",
"patch": "@@ -8,7 +8,9 @@\n #include <openssl/rand.h>\n #include <openssl/x509v3.h>\n #include <algorithm>\n+#include <array>\n #include <cstring>\n+#include <string_view>\n #if OPENSSL_VERSION_MAJOR >= 3\n #include <openssl/core_names.h>\n #include <openssl/params.h>\n@... | 2025-09-16T19:27:04 |
vercel/next.js | 9b8086212c8d71c7c9ef09935362370e35fdd6bd | 48e46764b82bc7ac9422ca6469f00e40b5ab3c8c | Fix @next/routing for i18n api and dynamic routes (#89197)
This applies fixes/regression tests for reported issues in
https://github.com/nextjs/adapters-wg/issues/1 | [
{
"path": "packages/next-routing/src/__tests__/i18n-resolve-routes.test.ts",
"patch": "@@ -312,5 +312,51 @@ describe('resolveRoutes with i18n', () => {\n // Should not redirect for _next routes\n expect(result.redirect).toBeUndefined()\n })\n+\n+ it('should skip locale handling for api ro... | 2026-01-29T02:24:29 |
electron/electron | 72340e79e8b0c5fa0201413650417f9b6fb31e00 | 7196a28d3a615f123b017b998d8db9ae48afac8d | docs: remove `electron-quick-start` from README (#47359)
Refs https://github.com/electron/.permissions/pull/293
The repo was renamed to `minimal-repro` and is no longer intended to be used as a way to start new projects (see PR above).
Since we really want bugs in `electron/electron` to be reported with a Fiddle... | [
{
"path": "README.md",
"patch": "@@ -44,29 +44,17 @@ Each Electron release provides binaries for macOS, Windows, and Linux.\n * Fedora 32 and newer\n * Debian 10 and newer\n \n-## Quick start & Electron Fiddle\n+## Electron Fiddle\n \n Use [`Electron Fiddle`](https://github.com/electron/fiddle)\n to bui... | 2025-06-05T18:12:21 |
golang/go | 1681c3b67fe5f95377fd33b98dc1f7007cf28acf | 7b67b68a0da091be2d7dc3e69c4df9a1a080d0de | crypto: use rand.IsDefaultReader instead of comparing to boring.RandReader
Several crypto functions accepting a rand parameter skip calling
boringcrypto when the rand is not boring.RandReader.
The new crypto/internal/rand package currently defines its own Reader
that wraps boring.RandReader. That will unintentionally... | [
{
"path": "src/crypto/ecdh/nist.go",
"patch": "@@ -27,7 +27,7 @@ func (c *nistCurve) String() string {\n }\n \n func (c *nistCurve) GenerateKey(r io.Reader) (*PrivateKey, error) {\n-\tif boring.Enabled && r == boring.RandReader {\n+\tif boring.Enabled && rand.IsDefaultReader(r) {\n \t\tkey, bytes, err := bo... | 2025-12-03T10:20:41 |
facebook/react | 6b7e207cabe4c1bc9390d862dd9228e94e9edf4b | d60f77a533da830613431ddef83d0eda928697ad | [ci] Don't skip experimental prerelease incorrectly (#33527)
Previously the experimental workflow relied on the canary one running
first to avoid race conditions. However, I didn't account for the fact
that the canary one can now be skipped. | [
{
"path": ".github/workflows/runtime_prereleases_manual.yml",
"patch": "@@ -88,6 +88,8 @@ jobs:\n # different versions of the same package, even if they use different\n # dist tags.\n needs: publish_prerelease_canary\n+ # Ensures the job runs even if canary is skipped\n+ if: always()\n ... | 2025-06-13T19:29:59 |
nodejs/node | 60c1fbcf652994d63bbc118187e2b8fe96a711d3 | 0319ba51d8d8084e09bbb7f1b08c7480603b6976 | util: inspect objects with throwing Symbol.toStringTag
`util.inspect()` should handle all kinds of input, even if it is
not well defined. Throwing is something that is meant to be worked
around in all known cases. This fixes issues inspecting objects
where accessing the Symbol.toStringTag would cause an error. The
sym... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -1186,7 +1186,14 @@ function formatRaw(ctx, value, recurseTimes, typedArray) {\n protoProps = undefined;\n }\n \n- let tag = value[SymbolToStringTag];\n+ let tag = '';\n+\n+ try {\n+ tag = value[SymbolToStringTag];\n+ } catch {\n+ // Ign... | 2025-09-14T00:07:06 |
vercel/next.js | 42b0ce87f2d7d01d0e3cbf5d381730d7f42485a5 | 5ec4d7a4be741497578caf2ff423c2abff8475bc | Turbopack: warn when tracing the whole project (#89157)
This should really be an error, but let's start with making it a warning
the only missing piece will be somehow showing the line/col information of the offending reference, this is currently very hard to figure out
<img width="1265" height="428" alt="Bild... | [
{
"path": "crates/next-api/src/nft_json.rs",
"patch": "@@ -1,9 +1,9 @@\n-use std::collections::{BTreeSet, VecDeque};\n+use std::collections::{BTreeSet, HashSet, VecDeque};\n \n use anyhow::{Result, bail};\n use serde_json::json;\n use tracing::{Instrument, Level, Span};\n-use turbo_rcstr::RcStr;\n+use turbo... | 2026-01-28T21:05:01 |
facebook/react | d60f77a533da830613431ddef83d0eda928697ad | 12bc60f50989a7e10b96c6fad429af7739c537df | [ci] Update prerelease workflows to allow publishing specific packages (#33525)
It may be useful at times to publish only specific packages as an
experimental tag. For example, if we need to cherry pick some fixes for
an old release, we can first do so by creating that as an experimental
release just for that package ... | [
{
"path": ".github/workflows/runtime_prereleases.yml",
"patch": "@@ -17,6 +17,17 @@ on:\n description: 'Whether to notify the team on Discord when the release fails. Useful if this workflow is called from an automation.'\n required: false\n type: boolean\n+ only_packages:\n+ ... | 2025-06-13T18:22:55 |
golang/go | 7b67b68a0da091be2d7dc3e69c4df9a1a080d0de | 2b62144069a130cc469f33009c0c392cc6de8810 | cmd/compile: use isUnsignedPowerOfTwo rather than isPowerOfTwo for unsigneds
Fixes #76688
Change-Id: Icb8dab54a5ce7d83b656d50d5ea605d2a62b96f8
Reviewed-on: https://go-review.googlesource.com/c/go/+/726680
Auto-Submit: Jorropo <jorropo.pgm@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -2885,9 +2885,9 @@ func simplifyBlock(sdom SparseTree, ft *factsTable, b *Block) {\n \t\t\txl := ft.limits[x.ID]\n \t\t\ty := v.Args[1]\n \t\t\tyl := ft.limits[y.ID]\n-\t\t\tif xl.umin == xl.umax && isPowerOfTwo(int64(xl.umin)) ||\n+\t\t\tif xl... | 2025-12-04T03:17:58 |
electron/electron | 53fd879043c576fb68f6905678d3984246e8ea41 | 5f5e8d012d7bbcce794802f662679707e9557376 | chore: bump chromium to 138.0.7190.0 (main) (#47107)
* chore: bump chromium in DEPS to 138.0.7180.0
* 6546797: Add a metric for the overall success of the "safe storage" item retrieval.
Refs https://chromium-review.googlesource.com/c/chromium/src/+/6546797
* 6548078: extensions: Fix TODO in ScriptInjectionTracker f... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7178.0',\n+ '138.0.7190.0',\n 'node_version':\n 'v22.16.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2025-06-03T15:19:20 |
nodejs/node | 0319ba51d8d8084e09bbb7f1b08c7480603b6976 | 49f79b8e937f5d27101dc7d629ec5edd2fd8ed2c | util: fix debuglog.enabled not being present with callback logger
The method returned by the callback is missing the .enabled property.
This is added in a consistent way that it also verifies that it's a
getter.
Fixes: https://github.com/nodejs/node/issues/56676
PR-URL: https://github.com/nodejs/node/pull/59858
Revie... | [
{
"path": "lib/internal/util/debuglog.js",
"patch": "@@ -94,8 +94,17 @@ function debuglog(set, cb) {\n // Only invokes debuglogImpl() when the debug function is\n // called for the first time.\n debug = debuglogImpl(enabled, set);\n- if (typeof cb === 'function')\n+ if (typeof cb === 'func... | 2025-09-14T00:06:57 |
vercel/next.js | 5ec4d7a4be741497578caf2ff423c2abff8475bc | 11e295089c5759891b82168c2cf7153731704519 | [Cache Components] Prevent streaming fetch calls from hanging in dev (#89171)
With Cache Components enabled in development, fetches without an
explicit cache config were incorrectly routed through
`createCachedPrerenderResponse` during the cache filling phase due to
the `serverComponentsHmrCache` condition. This funct... | [
{
"path": "packages/next/src/server/lib/patch-fetch.ts",
"patch": "@@ -184,7 +184,8 @@ async function createCachedDynamicResponse(\n serverComponentsHmrCache: ServerComponentsHmrCache | undefined,\n revalidate: number,\n input: RequestInfo | URL,\n- handleUnlock: () => Promise<void> | void\n+ handle... | 2026-01-28T20:53:56 |
facebook/react | 12bc60f50989a7e10b96c6fad429af7739c537df | ed023cfc7304e4e02a79195c68601eff7606136a | [devtools] Added minimum indent size to Component Tree (#33517)
## Summary
The devtools Components tab's component tree view currently has a
behavior where the indentation of each level of the tree scales based on
the available width of the view. If the view is narrow or component
names are long, all indentation show... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/Tree.js",
"patch": "@@ -41,7 +41,8 @@ import {useExtensionComponentsPanelVisibility} from 'react-devtools-shared/src/f\n import {useChangeOwnerAction} from './OwnersListContext';\n \n // Never indent more than this number of pixels (eve... | 2025-06-13T14:28:31 |
electron/electron | 5f5e8d012d7bbcce794802f662679707e9557376 | 508c60199643b0033c31ea706cf9a2979941236a | fix: add back fallback wasm-trap handling (#47186)
* fix: add back fallback wasm-trap handling
Refs https://chromium-review.googlesource.com/c/chromium/src/+/5372409
This change sets up wasm-trap handling for the case where content_shell
has not enabled crash reporting but moves the responsibility to
ElectronRendere... | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -75,7 +75,6 @@ build_make_libcxx_abi_unstable_false_for_electron.patch\n make_gtk_getlibgtk_public.patch\n custom_protocols_plzserviceworker.patch\n feat_filter_out_non-shareable_windows_in_the_current_application_in.patch\n-disable_freezing_flags_after_in... | 2025-06-03T13:31:23 |
nodejs/node | 49f79b8e937f5d27101dc7d629ec5edd2fd8ed2c | d079d8f38006cab2effec836fd363a2854f0f313 | repl: fix cpu overhead pasting big strings to the REPL
Pasting input should not trigger any completions and other
calculations. This is now handled by just writing the string to the
terminal in case the user is pasting. As soon as pasting is done,
the completions will be re-enabled.
Fixes: https://github.com/nodejs/n... | [
{
"path": "lib/internal/readline/interface.js",
"patch": "@@ -658,6 +658,12 @@ class Interface extends InterfaceConstructor {\n \n [kInsertString](c) {\n this[kBeforeEdit](this.line, this.cursor);\n+ if (!this.isCompletionEnabled) {\n+ this.line += c;\n+ this.cursor += c.length;\n+ t... | 2025-09-14T00:06:47 |
vercel/next.js | 244fac6eece025f8cd97cd9c4d62bf9ee8304a8f | 3769252dd42f2f64f424a5e918419b9c91b67de7 | Decouple route and segment cache lifecycles (#88989)
Based on:
- https://github.com/vercel/next.js/pull/88834
---
Follows from the previous commits that decoupled route stale time from
segment data. Now that routes have their own lifecycle, we can simplify
the implementation: route stale times are always the static... | [
{
"path": "packages/next/src/client/components/router-reducer/reducers/refresh-reducer.ts",
"patch": "@@ -6,18 +6,19 @@ import {\n convertServerPatchToFullTree,\n navigateToKnownRoute,\n } from '../../segment-cache/navigation'\n-import { revalidateEntireCache } from '../../segment-cache/cache'\n+import ... | 2026-01-28T15:55:39 |
facebook/react | 888ea60d8e6059790382c0b849be13915b4bcc30 | b7e2de632b2a160bc09edda1fbb9b8f85a6914e8 | [compiler][repro] Postfix operator is incorrectly compiled (#33508)
This bug was reported via our wg and appears to only affect values
created as a ref.
Currently, postfix operators used in a callback gets compiled to:
```js
modalId.current = modalId.current + 1; // 1
const id = modalId.current; // 1
return id;
```
... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-ref-prefix-postfix-operator.expect.md",
"patch": "@@ -0,0 +1,132 @@\n+\n+## Input\n+\n+```javascript\n+import {useRef, useEffect} from 'react';\n+\n+/**\n+ * The postfix increment operator should return the value be... | 2025-06-11T18:40:42 |
electron/electron | 508c60199643b0033c31ea706cf9a2979941236a | 158176f0f3940c325eaa70473a1ef3c85335515d | fix: do not load source for `electron` module in ESM loader synchronous flow (#46810) | [
{
"path": "patches/node/fix_do_not_resolve_electron_entrypoints.patch",
"patch": "@@ -5,19 +5,6 @@ Subject: fix: do not resolve electron entrypoints\n \n This wastes fs cycles and can result in strange behavior if this path actually exists on disk\n \n-diff --git a/lib/internal/modules/esm/load.js b/lib/int... | 2025-06-03T10:50:17 |
nodejs/node | 4984b15a94c551b910b4d1c23cbbc83d474dee70 | 100c255c99d9602396eb2e18f2b2d52d4c22d1db | src: create strings in `FIXED_ONE_BYTE_STRING` as internalized
These string keys can generally be assumed to be long-lived.
PR-URL: https://github.com/nodejs/node/pull/59826
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Gerhard Stöbich <deb2001-gi... | [
{
"path": "src/util-inl.h",
"patch": "@@ -160,33 +160,34 @@ constexpr ContainerOfHelper<Inner, Outer> ContainerOf(Inner Outer::*field,\n \n inline v8::Local<v8::String> OneByteString(v8::Isolate* isolate,\n const char* data,\n- ... | 2025-08-04T16:58:33 |
vercel/next.js | d5a88ba4eb50fa9fcc2c06a68da54783d615b017 | ead95dfb04edd523fe8c2d20123c487e61257747 | tweak LRU sentinel cache key (#89123)
We originally prefixed the TTL sentinel with the null-byte separator to
avoid collisions with real invocation IDs, but that makes
`extractInvocationID` return "ttl" instead of undefined for TTL-mode
keys.
This switches to a reserved magic string sentinel so TTL-mode entries
are c... | [
{
"path": "packages/next/src/server/response-cache/index.ts",
"patch": "@@ -63,10 +63,9 @@ const KEY_SEPARATOR = '\\0'\n \n /**\n * Sentinel value used for TTL-based cache entries (when invocationID is undefined).\n- * Uses KEY_SEPARATOR prefix to guarantee uniqueness since null bytes cannot appear\n- * in... | 2026-01-27T20:26:59 |
facebook/react | ff93c4448c44e8e5562a4102394ebf9f2b0ec847 | 6c86e56a0fa3c8f253da133330cd5b7d1d20e7e5 | [Flight] Track Debug Info from Synchronously Unwrapped Promises (#33485)
Stacked on #33482.
There's a flaw with getting information from the execution context of
the ping. For the soft-deprecated "throw a promise" technique, this is a
bit unreliable because you could in theory throw the same one multiple
times. Simil... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -2991,6 +2991,64 @@ describe('ReactFlight', () => {\n );\n });\n \n+ // @gate !__DEV__ || enableComponentPerformanceTrack\n+ it('preserves debug info for server-to-server through use()', async () => {\n+ function Th... | 2025-06-11T16:07:10 |
golang/go | 32a9804c7ba3f4a0e0bd26cc24b9204860a49ec8 | 509ddf38689c10643d89c464e8386f53364635e8 | cmd/link: don't update offset of existing ELF section name
Fixes #76656
Change-Id: If2e823ba1577700af00f5883e4ea5c139e4749c1
Reviewed-on: https://go-review.googlesource.com/c/go/+/726100
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Michael Stapelberg <stapelberg... | [
{
"path": "src/cmd/link/elf_test.go",
"patch": "@@ -11,6 +11,7 @@ import (\n \t\"cmd/internal/hash\"\n \t\"cmd/link/internal/ld\"\n \t\"debug/elf\"\n+\t\"encoding/binary\"\n \t\"fmt\"\n \t\"internal/platform\"\n \t\"internal/testenv\"\n@@ -22,6 +23,7 @@ import (\n \t\"sync\"\n \t\"testing\"\n \t\"text/templ... | 2025-12-03T01:01:57 |
electron/electron | 158176f0f3940c325eaa70473a1ef3c85335515d | d1e64c37a25b8bde07456417fac8e5742f8f32fd | fix: addChildView() crashes when adding a closed WebContentsView (#47099)
fix: addChildView() crashes when add a closed WebContentsView | [
{
"path": "shell/browser/api/electron_api_view.cc",
"patch": "@@ -216,6 +216,12 @@ void View::AddChildViewAt(gin::Handle<View> child,\n if (!view_)\n return;\n \n+ if (!child->view()) {\n+ gin_helper::ErrorThrower(isolate()).ThrowError(\n+ \"Can't add a destroyed child view to a parent view... | 2025-06-03T08:53:25 |
vercel/next.js | 48ce83fa71b7b2cd0ea59637afad42dc1a2322ea | b210e2e6f2c2029f2c4f0f2e3269d42ce47eb8d7 | docs: fix code highlight in 07-fetching-data.mdx (#88727)
PR https://github.com/vercel/next.js/pull/82862 added an extra blank
line to the code snippet in
https://nextjs.org/docs/app/getting-started/fetching-data#parallel-data-fetching.
It should highlight the `Promise.all` line
 {\n \n Start multiple requests by calling `fetch`, then await them with [`Promise.all`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objec... | 2026-01-27T15:22:45 |
nodejs/node | 100c255c99d9602396eb2e18f2b2d52d4c22d1db | af4eac574b26aa944d61ed703cb8d8d3bee49155 | src: remove `std::array` overload of `FIXED_ONE_BYTE_STRING`
This overload was only used in one place, in a cold path, and in
particular in a place where the compiler would be able to generate
the exact same code using just a call to `.size()`.
PR-URL: https://github.com/nodejs/node/pull/59826
Reviewed-By: James M Sn... | [
{
"path": "src/node_os.cc",
"patch": "@@ -259,7 +259,7 @@ static void GetInterfaceAddresses(const FunctionCallbackInfo<Value>& args) {\n result.emplace_back(OneByteString(isolate, ip));\n result.emplace_back(OneByteString(isolate, netmask));\n result.emplace_back(family);\n- result.emplace_ba... | 2025-08-04T16:08:15 |
golang/go | 509ddf38689c10643d89c464e8386f53364635e8 | 7cab1b1b26e49512a1ae56916ee39a6cc10dab46 | cmd/compile: ensure bloop only kept alive addressable nodes
Fixes #76636
Change-Id: I881f88dbf62a901452c1d77e6ffca651451c7790
Reviewed-on: https://go-review.googlesource.com/c/go/+/725420
Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservi... | [
{
"path": "src/cmd/compile/internal/bloop/bloop.go",
"patch": "@@ -73,6 +73,14 @@ func getNameFromNode(n ir.Node) *ir.Name {\n \treturn nil\n }\n \n+// getAddressableNameFromNode is like getNameFromNode but returns nil if the node is not addressable.\n+func getAddressableNameFromNode(n ir.Node) *ir.Name {\n... | 2025-12-01T09:54:54 |
facebook/react | 56408a5b12fa4099e9dbbeca7f6bc59e1307e507 | c38e26897848374c34ac6b651fce4a9088ed4dd0 | [Flight] Emit timestamps only in forwards advancing time in debug info (#33482)
Previously you weren't guaranteed to have only advancing time entries,
you could jump back in time, but now it omits unnecessary duplicates and
clamps automatically if you emit a previous time entry to enforce
forwards order only.
The rea... | [
{
"path": "fixtures/flight/src/App.js",
"patch": "@@ -37,8 +37,19 @@ async function delay(text, ms) {\n return new Promise(resolve => setTimeout(() => resolve(text), ms));\n }\n \n+async function delayTwice() {\n+ await delay('', 20);\n+ await delay('', 10);\n+}\n+\n+async function delayTrice() {\n+ co... | 2025-06-10T15:03:20 |
vercel/next.js | cbea93f43f67a91a207fd2fd08a08ef959039dab | ecc2ac976b6a8dbc7a59894421b3656f97e616a4 | CC Guide: Fix filenames, reduce line breaks (#89065)
Follow-up | [
{
"path": "docs/01-app/02-guides/public-static-pages.mdx",
"patch": "@@ -1,7 +1,7 @@\n ---\n title: Building public pages\n description: Learn how to build public, \"static\" pages that share data across users, such as landing pages, list pages (products, blogs, etc.), marketing and news sites.\n-nav_title:... | 2026-01-27T14:04:39 |
nodejs/node | 7a205d0ac0bdbaebb908825791cb6c105ab3251a | 33e3e423d9b1a29fc15d3add3a28f9885fa48920 | crypto: use async functions for non-stub Promise-returning functions
These were intended to mimic simple async functions, but exceptions
thrown in the function body would be returned synchronously, not
wrapped in a rejected Promise.
PR-URL: https://github.com/nodejs/node/pull/59841
Reviewed-By: James M Snell <jasnell... | [
{
"path": "lib/internal/crypto/aes.js",
"patch": "@@ -5,7 +5,6 @@ const {\n ArrayBufferPrototypeSlice,\n ArrayFrom,\n ArrayPrototypePush,\n- PromiseReject,\n SafeSet,\n TypedArrayPrototypeSlice,\n } = primordials;\n@@ -144,7 +143,7 @@ function asyncAesKwCipher(mode, key, data) {\n getVariant(... | 2025-09-09T20:57:38 |
electron/electron | 82a59d989425dc9d58e561325e955b826d12044c | 55006fe9a837bf11088704455c0706904937a37e | chore: bump node to v22.16.0 (main) (#47217)
* chore: bump node in DEPS to v22.16.0
* crypto: remove BoringSSL dh-primes addition
https://github.com/nodejs/node/pull/57023
* tools: enable linter in test/fixtures/test\-runner/output
https://github.com/nodejs/node/pull/57698
* src: improve thread safety of TaskQueu... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '138.0.7178.0',\n 'node_version':\n- 'v22.15.1',\n+ 'v22.16.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2025-06-02T21:30:15 |
facebook/react | c38e26897848374c34ac6b651fce4a9088ed4dd0 | 80c03eb7e0f05da5e0de6faebbe8dbb434455454 | [Fiber] Fix hydration of useId in SuspenseList (#33491)
Includes #31412.
The issue is that `pushTreeFork` stores some global state when reconcile
children. This gets popped by `popTreeContext` in `completeWork`.
Normally `completeWork` returns its own `Fiber` again if it wants to do
a second pass which will call `pus... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMUseId-test.js",
"patch": "@@ -7,7 +7,6 @@\n * @emails react-core\n * @jest-environment ./scripts/jest/ReactDOMServerIntegrationEnvironment\n */\n-\n let JSDOM;\n let React;\n let ReactDOMClient;\n@@ -24,6 +23,8 @@ let buffer = '';\n let hasErrored = fal... | 2025-06-09T23:37:49 |
golang/go | 7cab1b1b26e49512a1ae56916ee39a6cc10dab46 | 1a64db3a4b3fc328f945d8271c0b98923526255d | doc: pre-announce removal of gotypesalias and asynctimerchan GODEBUG flags
This announcement follows the policy outlined in #76163.
For #76472.
Change-Id: I4299e7f474e314810883dc4f50be6afba8c3e3e7
Reviewed-on: https://go-review.googlesource.com/c/go/+/726020
Auto-Submit: Robert Griesemer <gri@google.com>
Reviewed-by... | [
{
"path": "doc/godebug.md",
"patch": "@@ -306,7 +306,7 @@ Go 1.23 changed the channels created by package time to be unbuffered\n and [`Timer.Reset`](/pkg/time/#Timer.Reset) method results much easier.\n The [`asynctimerchan` setting](/pkg/time/#NewTimer) disables this change.\n There are no runtime metrics... | 2025-12-02T19:58:29 |
nodejs/node | 94422e8a40bcb380d7f2633c4dde19839ba71d5e | 22a864a2759b4904ec17c5cdd28fe3e7f1350e6d | src: add an option to make compile cache portable
Adds an option (NODE_COMPILE_CACHE_PORTABLE) for
the built-in compile cache to encode the hashes with
relative file paths. On enabling the option,
the source directory along with cache directory can be
bundled and moved, and the cache continues to work.
When enabled, ... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -3341,6 +3341,11 @@ added: v22.1.0\n Enable the [module compile cache][] for the Node.js instance. See the documentation of\n [module compile cache][] for details.\n \n+### `NODE_COMPILE_CACHE_PORTABLE=1`\n+\n+When set to 1, the [module compile cache][] can be reuse... | 2025-09-12T11:00:39 |
vercel/next.js | 0d61f297d9f4aa8ce5d405ef5e68d733844ba676 | 790eb861ca93e314151651134e4b803eac3d3bae | Limit number of server action arguments to 1000 (#89068)
This prevents stack overflow errors when malicious payloads include a
large number of arguments. | [
{
"path": "packages/next/errors.json",
"patch": "@@ -983,5 +983,6 @@\n \"982\": \"`serializeResumeDataCache` should not be called in edge runtime.\",\n \"983\": \"Invariant: global-error module is required but not found in loader tree\",\n \"984\": \"LRUCache: calculateSize returned %s, but size must ... | 2026-01-27T11:58:18 |
electron/electron | dc5efca0f6b4cd8541b4404582d855f6808a7225 | cf6c6627022b320f27bdc17ccbad93cc71608716 | feat: [net] add "priority" option to net.request (#42628)
document the default value of priority option
Update the priority test to not use the httpbin.org as server
Fixed the lint errors
Fixed the build error | [
{
"path": "docs/api/client-request.md",
"patch": "@@ -60,6 +60,10 @@ following properties:\n `strict-origin-when-cross-origin`.\n * `cache` string (optional) - can be `default`, `no-store`, `reload`,\n `no-cache`, `force-cache` or `only-if-cached`.\n+ * `priority` string (optional) - can be `thro... | 2025-05-30T19:28:13 |
facebook/react | b6c0aa88140bba2a61c1de16bda2505c89b26235 | 428ab8200128d9421828dbe644c3448d21ea8c45 | [compiler]: fix link compiler & 4 broken tests from path containing spaces (#33409)
## Summary
Problem #1: Running the `link-compiler.sh` bash script via `"prebuild"`
script fails if a developer has cloned the `react` repo into a folder
that contains _any_ spaces. 3 tests fail because of this.
<img width="1003" alt=... | [
{
"path": "compiler/apps/playground/scripts/link-compiler.sh",
"patch": "@@ -8,8 +8,8 @@ set -eo pipefail\n \n HERE=$(pwd)\n \n-cd ../../packages/react-compiler-runtime && yarn --silent link && cd $HERE\n-cd ../../packages/babel-plugin-react-compiler && yarn --silent link && cd $HERE\n+cd ../../packages/rea... | 2025-06-09T15:40:27 |
nodejs/node | 071414dac81260d20c8885f9d285143301cfff4f | 29738c7b42fff5937032fdfeb70600f70b235b10 | doc: rephrase dynamic import() description
The description is updated to clarify that dynamic import() is
asynchronous, dynamic, and works in both CJS and ESM contexts.
The new phrasing also avoids implying it is the only method for
loading ES modules in CommonJS.
Fixes: https://github.com/nodejs/node/issues/59077
PR... | [
{
"path": "doc/api/esm.md",
"patch": "@@ -334,8 +334,9 @@ fs.readFileSync === readFileSync;\n \n ## `import()` expressions\n \n-[Dynamic `import()`][] is supported in both CommonJS and ES modules. In CommonJS\n-modules it can be used to load ES modules.\n+[Dynamic `import()`][] provides an asynchronous way ... | 2025-09-12T06:40:24 |
golang/go | 1a64db3a4b3fc328f945d8271c0b98923526255d | 2e06fa6b68bf5fff7f2dd1ba55dba6fc1d206ebf | spec: remove restriction on channel element types for close built-in (bug fix)
The spec states that if the argument type for close is a type parameter,
it's type set must only contain channels and they must all have the same
element type. This latter requirement (all must have the same element
type) was never enforced... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -7496,7 +7496,7 @@ <h3 id=\"Close\">Close</h3>\n <p>\n If the type of the argument to <code>close</code> is a\n <a href=\"#Type_parameter_declarations\">type parameter</a>,\n-all types in its type set must be channels with the same element type.\n+all types in its ... | 2025-12-02T22:32:13 |
facebook/react | 428ab8200128d9421828dbe644c3448d21ea8c45 | 4df098c4c2c51a033592ebc84abc47cc49a6bfb2 | [Flight] Simulate fetch to third party in fixture (#33484)
This adds some I/O to go get the third party thing to test how it
overlaps.
With #33482, this is what it looks like. The await gets cut off when the
third party component starts rendering. I.e. after the latency to start.
<img width="735" alt="Screenshot 202... | [
{
"path": "fixtures/flight/src/App.js",
"patch": "@@ -43,7 +43,7 @@ async function Bar({children}) {\n }\n \n async function ThirdPartyComponent() {\n- return delay('hello from a 3rd party', 30);\n+ return await delay('hello from a 3rd party', 30);\n }\n \n let cachedThirdPartyStream;\n@@ -52,16 +52,35 @@... | 2025-06-09T14:04:40 |
nodejs/node | d35bd2088e2daa001edabeb030de59f20ec6d8e9 | a2a77b2b66b742d05c53aaa10841cbaf22fe5c00 | lib,src: refactor assert to load error source from memory
The source code is available from V8 API and assert can avoid reading
the source file from the filesystem and parse the file again.
PR-URL: https://github.com/nodejs/node/pull/59751
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "lib/internal/assert/utils.js",
"patch": "@@ -1,38 +1,21 @@\n 'use strict';\n \n const {\n- ArrayPrototypeShift,\n Error,\n ErrorCaptureStackTrace,\n- FunctionPrototypeBind,\n- RegExpPrototypeSymbolReplace,\n- SafeMap,\n StringPrototypeCharCodeAt,\n- StringPrototypeIncludes,\n StringP... | 2025-09-02T10:31:09 |
golang/go | 043b9de65825abef6d8946affda075a777dfb322 | e432b4f3a1e067ac8fe7b8e0edbe60ca1f52475d | net: parse addresses without separators in ParseMac
IEEE EUI guidelines states that "an EUI-48 can be represented in the IEEE RA
hexadecimal (hex) form with the octets separated by hyphens, or as a pure
base-16 numerical representation without hyphens"
(https://standards.ieee.org/wp-content/uploads/import/documents/tu... | [
{
"path": "src/net/mac.go",
"patch": "@@ -36,8 +36,9 @@ func (a HardwareAddr) String() string {\n //\t0000.5e00.5301\n //\t0200.5e10.0000.0001\n //\t0000.0000.fe80.0000.0000.0000.0200.5e10.0000.0001\n+//\t00005e005301\n func ParseMAC(s string) (hw HardwareAddr, err error) {\n-\tif len(s) < 14 {\n+\tif len(s... | 2025-11-25T07:38:09 |
facebook/react | 911dbd9e34048b21e96f24acb837b926687aa939 | c0b5a0cad32cbf237d4c0134bef702d6ba3e393c | feat(ReactNative): prioritize attribute config `process` function to allow processing function props (#32119)
## Summary
In react-native props that are passed as function get converted to a
boolean (`true`). This is the default pattern for event handlers in
react-native.
However, there are reasons for why you might w... | [
{
"path": "packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js",
"patch": "@@ -254,14 +254,17 @@ function diffProperties(\n prevProp = prevProps[propKey];\n nextProp = nextProps[propKey];\n \n- // functions are converted to booleans as markers that the associated\n- // even... | 2025-06-09T09:55:28 |
vercel/next.js | edf903eb169442ed9e6b7693914bfdee7bf73dcc | 59db275d982c054615b7e71988c31ae400967ac6 | Improve no response route handler error (#89036)
## Improve route handler "no response" error message for debugging
### What?
Improves the error message thrown when an app route handler doesn't
return a `Response` object to include additional debugging information:
- **The actual type received** - Shows whether it ... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -982,5 +982,6 @@\n \"981\": \"resolvedPathname must be set in request metadata\",\n \"982\": \"`serializeResumeDataCache` should not be called in edge runtime.\",\n \"983\": \"Invariant: global-error module is required but not found in loader tree\",... | 2026-01-27T09:03:51 |
nodejs/node | d58343ec482319e3d9846d4785df3c962364f077 | 96a749b7b3b9dfe982d8d0056122d0d601af6cf7 | src: correctly report memory changes to V8
Call `V8::ExternalMemoryAccounter::Update` instead of
`V8::ExternalMemoryAccounter::Increase` to report memory difference to
V8
Calling `V8::ExternalMemoryAccounter::Increase` with a signed integer on
32-bit platforms causes instances where GC inside GC takes place leading
t... | [
{
"path": "src/node_mem-inl.h",
"patch": "@@ -59,7 +59,7 @@ void* NgLibMemoryManager<Class, T>::ReallocImpl(void* ptr,\n // Environment*/Isolate* parameter and call the V8 method transparently.\n const int64_t new_size = size - previous_size;\n manager->IncreaseAllocatedSize(new_size);\n- man... | 2025-09-09T12:17:47 |
golang/go | c1acdcb34560b20291cf55c988d0f883a38e8bbf | 8ae5d408ed62d234cb72adebb9a23e08da1cedc6 | crypto/x509: prevent HostnameError.Error() from consuming excessive resource
Constructing HostnameError.Error() takes O(N^2) runtime due to using a
string concatenation in a loop. Additionally, there is no limit on how
many names are included in the error message. As a result, a malicious
attacker could craft a certif... | [
{
"path": "src/crypto/x509/verify.go",
"patch": "@@ -108,31 +108,38 @@ type HostnameError struct {\n \n func (h HostnameError) Error() string {\n \tc := h.Certificate\n+\tmaxNamesIncluded := 100\n \n \tif !c.hasSANExtension() && matchHostnames(c.Subject.CommonName, h.Host) {\n \t\treturn \"x509: certificate... | 2025-11-24T19:56:23 |
facebook/react | c0b5a0cad32cbf237d4c0134bef702d6ba3e393c | e4b88ae4c6c30791b6c1c2794d5a8e32ed19c931 | [Flight] Use Web Streams APIs for 3rd-party component in Flight fixture (#33481) | [
{
"path": "fixtures/flight/src/App.js",
"patch": "@@ -1,6 +1,6 @@\n import * as React from 'react';\n-import {renderToPipeableStream} from 'react-server-dom-webpack/server';\n-import {createFromNodeStream} from 'react-server-dom-webpack/client';\n+import {renderToReadableStream} from 'react-server-dom-webpa... | 2025-06-08T04:33:25 |
vercel/next.js | 7b2c80e24ab4609041bd9b2f31a2bc76e3ebca01 | 8003df97c9ab9eb04ec8c52d6941370d6670ec3d | Revert "Fix react-loadable-manifest chunk hash mismatch by preserving async loader mapping" (#89073)
Reverts vercel/next.js#88775
This is breaking the v0 marketing site, reverting to unblock. | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -1566,6 +1566,8 @@ impl AppEndpoint {\n \n if emit_manifests == EmitManifests::Full {\n let dynamic_import_entries = collect_next_dynamic_chunks(\n+ *module_graphs.full,\n+ ... | 2026-01-27T00:02:34 |
nodejs/node | cc89e4cff86ce0b3b130a38ebc35576e6bda117a | 4302d247ad5d8a51973ae9ebf7aca727db190a74 | src: fixup node_messaging error handling
Replace ToLocalChecked uses
PR-URL: https://github.com/nodejs/node/pull/59792
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> | [
{
"path": "src/node_messaging.cc",
"patch": "@@ -328,6 +328,7 @@ class SerializerDelegate : public ValueSerializer::Delegate {\n if (JSTransferable::IsJSTransferable(env_, context_, object)) {\n BaseObjectPtr<JSTransferable> js_transferable =\n JSTransferable::Wrap(env_, object);\n+ ... | 2025-09-09T03:30:43 |
golang/go | 8ae5d408ed62d234cb72adebb9a23e08da1cedc6 | c5c05a0e43d062a89fc8d4172d3c043617d9dd81 | spec: more precise prose for built-in function new
1) explain new(type) (simpler) before new(expr) (more complicated)
2) for new(expr), explain what happens when expr is an untyped bool
3) explain that new(nil) is not permitted
4) streamline examples slightly
Fixes #76122.
Change-Id: I5ddb26bd88241b4b2b9aa9b532a62f7... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.26 (Nov 18, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Dec 2, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -7794,40 +7794,32... | 2025-11-20T22:05:27 |
electron/electron | 83524adf1792d2dbcf4dc4914b647131bc3c22f0 | 14b3183eb584611723d4a2160dd13fd7a0e94ceb | chore: fix lint for ImageView doc (#47304) | [
{
"path": "docs/api/image-view.md",
"patch": "@@ -14,6 +14,7 @@ Note that `ImageView` is experimental and may be changed or removed in the futur\n \n ```js\n const { BaseWindow, ImageView, nativeImage, WebContentsView } = require('electron')\n+\n const path = require('node:path')\n \n const win = new BaseWi... | 2025-05-29T21:10:41 |
rust-lang/rust | 65335b65fe7611ca36a78e2a0eb6b6ee290d953e | 55d9f7cb6c7880dc5e2b75f013666ad01e265d1f | Fix markdown warnings in ui/README.md | [
{
"path": "tests/ui/README.md",
"patch": "@@ -133,7 +133,7 @@ Runtime panics and error handling generate backtraces to assist in debugging and\n \n This directory was originally meant to contain tests related to time complexity and benchmarking.\n \n-However, only a single test was ever added to this catego... | 2026-03-11T23:32:58 |
facebook/react | 6c8bcdaf1b0c3340150e174a342429d94e729fbb | b367b60927dd85239852bfee60715034c7ca97ba | [Flight] Clarify Semantics for Awaiting Cached Data (#33438)
Technically the async call graph spans basically all the way back to the
start of the app potentially, but we don't want to include everything.
Similarly we don't want to include everything from previous components
in every child component. So we need some h... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -2826,46 +2826,46 @@ describe('ReactFlight', () => {\n expect(getDebugInfo(thirdPartyChildren[0])).toEqual(\n __DEV__\n ? [\n- {time: 14},\n+ {time: 22}, // Clamped to the star... | 2025-06-07T21:26:36 |
vercel/next.js | d224a56201d64a49e9d25237136fa7104d263a5c | e8ef2305b5a69a1711d5b84ed003591e4db761d3 | Fix reset deploy project script (#89001)
This script has been quietly failing on cron occasionally, this updates
to ensure it shows as failing when the inner requests fail and also adds
back-off logic for re-creating the project after deleting the previous.
x-ref:
https://github.com/vercel/next.js/actions/runs/213273... | [
{
"path": "scripts/reset-project.mjs",
"patch": "@@ -4,14 +4,62 @@ export const TEST_PROJECT_NAME = 'vtest314-e2e-tests'\n export const TEST_TEAM_NAME = process.env.VERCEL_TEST_TEAM\n export const TEST_TOKEN = process.env.VERCEL_TEST_TOKEN\n \n+/**\n+ * Retry a fetch request with exponential backoff\n+ * @p... | 2026-01-26T23:18:41 |
nodejs/node | 670d7ab7f2267de7ff0673741edece29efd0e254 | 26607a650e7a99b2e1f021c8e0864be4e8b205b4 | util: fix numericSeparator with negative fractional numbers
Fix util.inspect() formatting bug where negative fractional numbers
between -1 and 0 lost their minus sign when numericSeparator was true.
Fixed formatNumber function to preserve sign by using original string
representation. Also corrected test expectations f... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -2103,23 +2103,28 @@ function formatNumber(fn, number, numericSeparator) {\n }\n return fn(`${number}`, 'number');\n }\n+\n+ const numberString = String(number);\n const integer = MathTrunc(number);\n- const string = String(integer);\n+\n ... | 2025-09-08T20:10:50 |
electron/electron | 4e61f5b26fb16176f7b7aa062a9cbd15e8d6ad0f | 5b5f900e34c9ca4ed1ffddbf25a8e7ba9660d976 | fix: Squirrel.Mac crash when zip extraction fails (#47271)
* fix: Squirrel.Mac crash when zip extraction process fails to launch
* chore: add end-to-end test | [
{
"path": "patches/squirrel.mac/.patches",
"patch": "@@ -7,3 +7,4 @@ fix_abort_installation_attempt_at_the_final_mile_if_the_app_is.patch\n feat_add_ability_to_prevent_version_downgrades.patch\n refactor_use_non-deprecated_nskeyedarchiver_apis.patch\n chore_turn_off_launchapplicationaturl_deprecation_errors... | 2025-05-29T17:31:46 |
golang/go | 8b5db48db11f6ec075fd1ea528a5d611579c3a0d | 94616dad425959b92d50498e1a18e47e5e6c8709 | net/http: deflake TestClientConnReserveAndConsume
This test includes an assertion that a client conn's state hook
is called exactly once, but some of the test cases can result in
two events occurring: A request completes and a connection closes.
Change the assertion to just check that the hook is called
at least once... | [
{
"path": "src/net/http/clientconn_test.go",
"patch": "@@ -286,9 +286,10 @@ func TestClientConnReserveAndConsume(t *testing.T) {\n \t\t\t\tsynctest.Wait()\n \n \t\t\t\t// State hook should be called, either to report the\n-\t\t\t\t// connection availability increasing or the connection closing.\n-\t\t\t\tif... | 2025-12-01T20:28:19 |
rust-lang/rust | 55d9f7cb6c7880dc5e2b75f013666ad01e265d1f | 22e1148d97b791e90c53bfef2fc2810c5d6a8433 | Fix typos and outdated comments | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/codegen_attrs.rs",
"patch": "@@ -169,7 +169,7 @@ impl<S: Stage> SingleAttributeParser<S> for RustcObjcClassParser {\n return None;\n };\n let Some(classname) = nv.value_as_str() else {\n- // `#[rustc_objc_class = ..... | 2026-03-16T07:28:48 |
vercel/next.js | 9e5759deedb143bfc37baaa30056558c439d6207 | b690af094678622f03670348e627d6f9f53ff036 | fix: ensure LRU cache items have minimum size of 1 to prevent unbounded growth (#89040)
### What?
Prevent LRU cache unbounded growth by requiring `calculateSize` to
return values > 0.
### Why?
When `calculateSize` returned 0 (e.g., for `null` values in the
filesystem route cache), items were never evicted because t... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -981,5 +981,6 @@\n \"980\": \"Failed to load client middleware manifest\",\n \"981\": \"resolvedPathname must be set in request metadata\",\n \"982\": \"`serializeResumeDataCache` should not be called in edge runtime.\",\n- \"983\": \"Invariant: glo... | 2026-01-26T21:00:19 |
nodejs/node | 6cf64af44d368f7874d06092481c9ef2ba1bb025 | 3c461fa4a0b3f5cc9734dc72a6d9d2a3c4f9729a | repl: do not cause side effects in tab completion
A number of recent changes to the REPL tab completion logic have
introduced the ability for completion to cause side effects,
specifically, calling arbitrary functions or variable
assignments/updates.
This was first introduced in 07220230d9 and the problem exacerbated... | [
{
"path": "lib/repl.js",
"patch": "@@ -1762,10 +1762,25 @@ function findExpressionCompleteTarget(code) {\n return findExpressionCompleteTarget(argumentCode);\n }\n \n+ // Walk the AST for the current block of code, and check whether it contains any\n+ // statement or expression type that would poten... | 2025-09-08T13:54:45 |
electron/electron | 3a32f257502cc951d81cc1bdc59d9a22427a0604 | f6b8ee073185d13a2ed1c334444045ad24c29ae8 | ci: audit important branches for CI errors (#47207)
* ci: audit important branches for CI errors
* chore: move message to Slack workflow | [
{
"path": ".github/workflows/audit-branch-ci.yml",
"patch": "@@ -0,0 +1,137 @@\n+name: Audit CI on Branches\n+\n+on:\n+ workflow_dispatch:\n+ schedule:\n+ # Run every 2 hours\n+ - cron: '0 */2 * * *'\n+\n+permissions: {}\n+\n+jobs:\n+ audit_branch_ci:\n+ name: Audit CI on Branches\n+ runs-on:... | 2025-05-27T15:35:33 |
golang/go | 42e03bbd27a31e389ca37863b0bb90692086f408 | 18015e8c369df15ca73fc00d6db8efc0590236ba | debug/elf: correct case of DWARF in comment
Change-Id: I5b80b0e3e50fafdb732c732cdae6e2756d919d20
Reviewed-on: https://go-review.googlesource.com/c/go/+/725360
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Mark Freeman <markfreeman@google.com>
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-... | [
{
"path": "src/debug/elf/file.go",
"patch": "@@ -1300,7 +1300,7 @@ func (f *File) DWARF() (*dwarf.Data, error) {\n \t\treturn b, nil\n \t}\n \n-\t// There are many DWARf sections, but these are the ones\n+\t// There are many DWARF sections, but these are the ones\n \t// the debug/dwarf package started with.... | 2025-11-28T22:34:06 |
rust-lang/rust | caad6ee2404cbe49915052f342b6227437e4d2a9 | 1e2183119f0ee19cc26df899e26b04ad0de3475d | tests: Add regression test for async closures involving HRTBs
I suspect the original code had several issues. The last one that made
the code compile entered `nightly-2024-02-11`. The code fails to build
with `nightly-2024-02-10`:
$ rustc +nightly-2024-02-10 --edition 2018 tests/ui/async-await/async-closures/unif... | [
{
"path": "tests/ui/async-await/async-closures/unifying-function-types-involving-hrtb.rs",
"patch": "@@ -0,0 +1,33 @@\n+//! Regresssion test for <https://github.com/rust-lang/rust/issues/59337>.\n+\n+//@ edition:2018\n+//@ check-pass\n+\n+use std::future::Future;\n+\n+trait Foo<'a> {\n+ type Future: Futu... | 2026-03-19T18:10:21 |
facebook/react | b367b60927dd85239852bfee60715034c7ca97ba | 9666605abfee7e525a22931ce38d40bb29ddc8a5 | [Flight] Add "use ..." boundary after the change instead of before it (#33478)
I noticed that the ThirdPartyComponent in the fixture was showing the
wrong stack and the `"use third-party"` is in the wrong location.
<img width="628" alt="Screenshot 2025-06-06 at 11 22 11 PM"
src="https://github.com/user-attachments/as... | [
{
"path": "fixtures/flight/src/App.js",
"patch": "@@ -33,20 +33,26 @@ function Foo({children}) {\n return <div>{children}</div>;\n }\n \n+async function delay(text, ms) {\n+ return new Promise(resolve => setTimeout(() => resolve(text), ms));\n+}\n+\n async function Bar({children}) {\n- await new Promise... | 2025-06-07T15:28:57 |
nodejs/node | 072da1ad2a30823d438cf6ac44ff5102e4920999 | b4af64792088f892be1df4dcfbb69c725e5704de | doc: update OpenSSL default security level to 2
The default OpenSSL security level changed from 1 to 2 in OpenSSL 3.2,
which was included in Node.js 24.5. This change enforces stricter
cryptographic requirements.
Fixes: https://github.com/nodejs/node/issues/59715
PR-URL: https://github.com/nodejs/node/pull/59723
Revi... | [
{
"path": "doc/api/tls.md",
"patch": "@@ -454,7 +454,7 @@ are not enabled by default since they offer less security.\n The OpenSSL library enforces security levels to control the minimum acceptable\n level of security for cryptographic operations. OpenSSL's security levels range\n from 0 to 5, with each lev... | 2025-09-08T07:57:40 |
golang/go | 18015e8c369df15ca73fc00d6db8efc0590236ba | 4be545115cf8ed42aa0337cbb6c3a92f718192b9 | doc/next: clean up some Go 1.26 release notes
The Var.Kind stuff was in Go 1.25.
And the net additions were in the wrong tense and didn't have links.
Change-Id: Ie710e1d41c714fe627a3a21a5afb6b7f78301f68
Reviewed-on: https://go-review.googlesource.com/c/go/+/724780
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
... | [
{
"path": "doc/initial/6-stdlib/99-minor/0-heading.md",
"patch": "@@ -1,10 +1 @@\n ### Minor changes to the library {#minor_library_changes}\n-\n-#### go/types\n-\n-The `Var.Kind` method returns an enumeration of type `VarKind` that\n-classifies the variable (package-level, local, receiver, parameter,\n-res... | 2025-11-26T18:11:41 |
electron/electron | 5ccbfa2faf705ff4cc8ba2c1891e4129ff142ae6 | f89c2a0ef4eb8aeaaf652517c46b8c2a6ac1caea | fix: regression with directory selection in macOS dialogs (#47259) | [
{
"path": "shell/browser/ui/file_dialog_mac.mm",
"patch": "@@ -321,7 +321,7 @@ void ReadDialogPathsWithBookmarks(NSOpenPanel* dialog,\n BOOL is_package_as_directory =\n [[NSWorkspace sharedWorkspace] isFilePackageAtPath:path] &&\n [dialog treatsFilePackagesAsDirectories];\n- i... | 2025-05-27T10:08:11 |
facebook/react | b3d5e9078685c000e7e9ee3668a7a4b4f3256b1f | 280ff6fed2a84b6ad7588c72d3e66b20f0f3c91a | [Fizz] Include unit of threshold in rel=expect deopt error (#33476) | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServerEdge-test.js",
"patch": "@@ -138,7 +138,7 @@ describe('ReactDOMFizzServerEdge', () => {\n if (gate(flags => flags.enableFizzBlockingRender)) {\n expect(errors.length).toBe(1);\n expect(errors[0].message).toContain(\n- 'This... | 2025-06-07T00:11:33 |
vercel/next.js | b690af094678622f03670348e627d6f9f53ff036 | bb88ea523d4d44aa1a1e93cdda9bbfb413e47536 | Reapply "[turbopack] Add bundling support for worker_threads" (#88725) (#88967)
## What?
This PR reapplies #87746 which adds bundling support for Node.js `worker_threads` in Turbopack.
## Why?
The original PR (#87746) was reverted in #88725 because it broke builds that use packages like `pino` with transports. Thes... | [
{
"path": ".rustfmt.toml",
"patch": "@@ -1,3 +1,4 @@\n+edition = \"2024\"\n max_width = 100\n \n comment_width = 100",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "crates/next-api/src/middleware.rs",
"patch": "@@ -14,10 +14,7 @@ use turbo_tasks::{Completion, Re... | 2026-01-26T20:42:15 |
electron/electron | f89c2a0ef4eb8aeaaf652517c46b8c2a6ac1caea | c6f368acc6e4a9d9847fecf1db0d382ae06f5adc | fix: titlebar showing in content protected window (#47241)
Closes https://github.com/electron/electron/issues/47152. | [
{
"path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc",
"patch": "@@ -143,11 +143,33 @@ bool ElectronDesktopWindowTreeHostWin::HandleMouseEvent(ui::MouseEvent* event) {\n void ElectronDesktopWindowTreeHostWin::HandleVisibilityChanged(bool visible) {\n if (native_window_view_->widget())\... | 2025-05-26T07:46:04 |
golang/go | 1555fad47ddfe149ae5f2eb593124fd7371968a9 | eec1afeb28522df37c78c29506ae89233bbce4e9 | vendor/golang.org/x/tools: update to 1ad6f3d
cmd$ go get golang.org/x/tools@1ad6f3d
cmd$ GOWORK=off go mod tidy
cmd$ GOWORK=off go mod vendor
This merge pulls in the following commits, which include several fixes
needed for go1.26, marked by an asterisk. None of the unmarked commits
affects vendored packages, so it i... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.38.0\n \tgolang.org/x/telemetry v0.0.0-20251111182119-bc8e575c7b54\n \tgolang.org/x/term v0.34.0\n-\tgolang.org/x/tools v0.39.1-0.20251120214200-68724afed209\n+\tgolang.org/x/tools v0.39.1-0.20251130212600-1ad6f3d02713... | 2025-12-01T15:26:29 |
rust-lang/rust | 05834b2d6b8c584314dcc7d91d638bd376ce267c | 8b86f48958be8c3473c979e0b5504c2d2e0fd4fd | improve validation error messages: show surrounding type, and more info on dyn-downcast | [
{
"path": "compiler/rustc_const_eval/src/const_eval/eval_queries.rs",
"patch": "@@ -425,7 +425,7 @@ fn const_validate_mplace<'tcx>(\n cid: GlobalId<'tcx>,\n ) -> Result<(), ErrorHandled> {\n let alloc_id = mplace.ptr().provenance.unwrap().alloc_id();\n- let mut ref_tracking = RefTracking::new(mpl... | 2026-03-19T14:39:20 |
vercel/next.js | b3f776364d444ce261e219c9f6d6d4a7daa1bec6 | cb1dbfb83f9d6e75c00a7e97ce0fa7b0c4180743 | Fix chunk loading when using `__turbopack_load_by_url__` with query (#88899)
- if you `await __turbopack_load_by_url__ `, it waits for the exact chunk url you passed in to load
- but when that chunk actually loads, it registers itself with `stripQuery(chunkurl)+CHUNK_SUFFIX`
so there was mismatch if you load a chu... | [
{
"path": "test/e2e/app-dir/segment-cache/deployment-skew/app/dynamic-page/page.jsx",
"patch": "@@ -2,5 +2,10 @@ import { connection } from 'next/server'\n \n export default async function TargetPage() {\n await connection()\n- return <div id=\"build-id\">Build ID: {process.env.NEXT_PUBLIC_BUILD_ID}</div... | 2026-01-26T14:30:56 |
electron/electron | c6f368acc6e4a9d9847fecf1db0d382ae06f5adc | 5e3b5ef04cc646c629ad383432fa70cefc65e40e | chore: debug crash on DevTools SetOwnerWindow (#47243) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -2147,8 +2147,11 @@ void WebContents::DevToolsOpened() {\n // Inherit owner window in devtools when it doesn't have one.\n auto* devtools = inspectable_web_contents_->GetDevToolsWebContents();\n bool has_window = devtools->GetUse... | 2025-05-26T07:45:43 |
nodejs/node | cd9fd09a2730c07c22f030d4df3db6972298ffda | a6c5d27739976664a55152b6bffa8b4fb296d014 | quic: multiple fixups and updates
Signed-off-by: James M Snell <jasnell@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/59342
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> | [
{
"path": "configure.py",
"patch": "@@ -852,12 +852,6 @@\n \n # End dummy list.\n \n-parser.add_argument('--with-quic',\n- action='store_true',\n- dest='quic',\n- default=None,\n- help='build with QUIC support')\n-\n parser.add_argument('--without-ssl',\n action='store_true',\n dest='wit... | 2025-08-03T13:16:03 |
golang/go | eec1afeb28522df37c78c29506ae89233bbce4e9 | 3f94f3d4b2f03a913de3f5a737bad793418e751f | debug/elf: make check for empty symbol section consistent for 64-bit and 32-bit binaries
The check for whether a binary's symbols section is empty is
inconsistent across the 32-bit and 64-bit flows.
Change-Id: I1abc235320a53cf957cfb83c9e7bcad6e52bc529
GitHub-Last-Rev: f264915ca2964ad8f34ce1deee4f42c2f9dc21bf
GitHub-P... | [
{
"path": "src/debug/elf/file.go",
"patch": "@@ -641,7 +641,7 @@ func (f *File) getSymbols32(typ SectionType) ([]Symbol, []byte, error) {\n \t\treturn nil, nil, fmt.Errorf(\"cannot load symbol section: %w\", err)\n \t}\n \tif len(data) == 0 {\n-\t\treturn nil, nil, errors.New(\"symbol section is empty\")\n+... | 2025-09-10T02:34:03 |
rust-lang/rust | 9ce6863063006951d678d0ec8a9e037731478609 | adacd90f29c381c2e3876f356dda7575a96ffef5 | merge `die-macro` tests into `panic-macro-basic.rs` | [
{
"path": "tests/ui/macros/die-macro-2.rs",
"patch": "@@ -1,7 +0,0 @@\n-//@ run-fail\n-//@ error-pattern:test\n-//@ needs-subprocess\n-\n-fn main() {\n- panic!(\"test\");\n-}",
"additions": 0,
"deletions": 7,
"language": "Rust"
},
{
"path": "tests/ui/macros/die-macro-pure.rs",
"pa... | 2026-03-19T14:40:33 |
vercel/next.js | cb1dbfb83f9d6e75c00a7e97ce0fa7b0c4180743 | e78d35b35d527b1c8ebb7d5c18d5e223e1cfd37b | refactor: consume global-error from loader tree (#88437) | [
{
"path": "crates/next-core/src/app_page_loader_tree.rs",
"patch": "@@ -419,15 +419,6 @@ impl AppPageLoaderTreeBuilder {\n let loader_tree = &*loader_tree.await?;\n \n let modules = &loader_tree.modules;\n- // load global-error module\n- if let Some(global_error) = &modules.glo... | 2026-01-26T13:54:35 |
nodejs/node | f855cda2a248dacae27696cd001e48515c72ac2f | ce08561b6777f6c433b37bffad13901d7630270c | fs: fix wrong order of file names in cpSync error message
PR-URL: https://github.com/nodejs/node/pull/59775
Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.co... | [
{
"path": "src/node_file.cc",
"patch": "@@ -3270,7 +3270,7 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n std::string message =\n \"Cannot overwrite non-directory %s with directory %s\";\n return THROW_ERR_FS_CP_DIR_TO_NON_DIR(\n- env, message.c_s... | 2025-09-07T18:15:13 |
golang/go | 3f94f3d4b2f03a913de3f5a737bad793418e751f | 2ac1f9cbc3eb2b97ad82730569199ba6ffea956d | test/codegen: fix shift tests on riscv64
These were broken by CL 721206, which changes Rsh to RshU for
positive inputs.
Change-Id: I9e38c3c428fb8aeb70cf51e7e76f4711c864f027
Reviewed-on: https://go-review.googlesource.com/c/go/+/723340
Reviewed-by: Meng Zhuo <mengzhuo1203@gmail.com>
Reviewed-by: Mark Ryan <markdryan@r... | [
{
"path": "test/codegen/shift.go",
"patch": "@@ -661,7 +661,7 @@ func rsh64to32(v int64) int32 {\n \tx := int32(v)\n \t// riscv64:\"MOVW\"\n \tif x > 8 {\n-\t\t// riscv64:\"SRAIW\" -\"MOVW\" -\"SLLI\"\n+\t\t// riscv64:\"SRLIW\" -\"MOVW\" -\"SLLI\"\n \t\tx >>= 2\n \t}\n \treturn x\n@@ -671,7 +671,7 @@ func r... | 2025-11-22T14:10:41 |
electron/electron | 5e3b5ef04cc646c629ad383432fa70cefc65e40e | ac5e3c76f3128eff3866d0f358e68ec1bfda7af3 | chore: update @electron/lint-roller to 3.1.1 (#47202)
* chore: update @electron/lint-roller to 3.1.1
* docs: fix broken link in breaking-changes.md
* chore: fix for Node.js versions without require(esm) | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -141,7 +141,7 @@ On Linux, the required portal version for file dialogs has been reverted\n to 3 from 4. Using the `defaultPath` option of the Dialog API is not\n supported when using portal file chooser dialogs unless the portal\n backend is version 4 or h... | 2025-05-25T12:58:55 |
vercel/next.js | e78d35b35d527b1c8ebb7d5c18d5e223e1cfd37b | cabe5458a86ccf63fc3134f99041798bb1380261 | Fix react-loadable-manifest chunk hash mismatch by preserving async loader mapping (#88775)
## What?
Fixes a bug where `react-loadable-manifest.json` in Turbopack dev mode
contained references to chunk files with wrong hashes, causing 404
errors when loading dynamic imports.
## Why?
When using `next/dynamic` with n... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -1566,8 +1566,6 @@ impl AppEndpoint {\n \n if emit_manifests == EmitManifests::Full {\n let dynamic_import_entries = collect_next_dynamic_chunks(\n- *module_graphs.full,\n- ... | 2026-01-26T12:32:30 |
facebook/react | 142aa0744d0e73dc5390bc19d4d41dd8aeda2b19 | 6ccf328499f06c140ffe96a096744c22319394cc | [Fizz] Support deeply nested Suspense inside fallback (#33467)
When deeply nested Suspense boundaries inside a fallback of another
boundary resolve it is possible to encounter situations where you either
attempt to flush an aborted Segment or you have a boundary without any
root segment. We intended for both of these ... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -88,6 +88,7 @@ describe('ReactDOMFizzServer', () => {\n setTimeout(cb);\n container = document.getElementById('container');\n \n+ CSPnonce = null;\n Scheduler = require('scheduler');\n React = require(... | 2025-06-06T18:59:15 |
golang/go | 2ac1f9cbc3eb2b97ad82730569199ba6ffea956d | de456450e7a49789de63c515cb78a1e38e88440e | cmd/compile: avoid unnecessary interface conversion in bloop
Fixes #76482
Change-Id: I076568d8ae92ad6c9e0a5797cfe5bbfb615f63d2
Reviewed-on: https://go-review.googlesource.com/c/go/+/725180
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith Randall <khr@golang.... | [
{
"path": "src/cmd/compile/internal/bloop/bloop.go",
"patch": "@@ -74,7 +74,7 @@ func getNameFromNode(n ir.Node) *ir.Name {\n }\n \n // keepAliveAt returns a statement that is either curNode, or a\n-// block containing curNode followed by a call to runtime.keepAlive for each\n+// block containing curNode fo... | 2025-11-28T10:19:42 |
nodejs/node | ce08561b6777f6c433b37bffad13901d7630270c | 4d5792a66c372f07777ba14759b9788a80e7fe60 | lib: fix isReadable and isWritable return type value
PR-URL: https://github.com/nodejs/node/pull/59089
Fixes: https://github.com/nodejs/node/issues/59006
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com>
Reviewed-By: ... | [
{
"path": "doc/api/stream.md",
"patch": "@@ -3084,10 +3084,17 @@ changes:\n -->\n \n * `stream` {Readable|Duplex|ReadableStream}\n-* Returns: {boolean}\n+* Returns: {boolean|null} - Only returns `null` if `stream` is not a valid `Readable`, `Duplex` or `ReadableStream`.\n \n Returns whether the stream is re... | 2025-09-07T14:50:36 |
electron/electron | 2248de847d23a99779e73d93f9610c1e4cbe8e8a | 38e7ff944ed8239d2130c284e4b63e749b2cfe7c | refactor: use `base::fixed_flat_set` in `NativeWindowViews::SetAlwaysOnTop()` (#47201)
refactor: use base::fixed_flat_set in NativeWindowViews::SetAlwaysOnTop() | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -20,7 +20,7 @@\n #include <utility>\n #include <vector>\n \n-#include \"base/containers/contains.h\"\n+#include \"base/containers/fixed_flat_set.h\"\n #include \"base/memory/raw_ref.h\"\n #include \"base/numerics/ranges.h\"\n #include \"base/str... | 2025-05-22T23:20:39 |
vercel/next.js | cabe5458a86ccf63fc3134f99041798bb1380261 | b9ee1db28318f6d5ffa7b8749c1a9cc8dd56f89e | docs: fix typos in `README.md`s (#89022)
<!-- 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
### Impro... | [
{
"path": "packages/next/src/next-devtools/README.md",
"patch": "@@ -31,7 +31,7 @@ This will start the Storybook server at `http://localhost:6006`.\n \n ### Styling\n \n-Next.js direcly injects CSS into the DOM via `<style>` tag. The styles will not affect the user's application as the [styles are encapsula... | 2026-01-26T12:23:30 |
golang/go | de456450e7a49789de63c515cb78a1e38e88440e | 67d4a28707fe948b4d5fe3e171717ab887730c2b | runtime/secret: disable tests under memory validating modes
These tests rely on reading memory that has been freed, so any of the
modes that validate memory accesses are going to fail. Disable them for
now.
Fixes #76586.
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-msan-clang15,gotip-linux-amd64-asan-clang1... | [
{
"path": "src/runtime/secret/secret_test.go",
"patch": "@@ -2,10 +2,14 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-// the race detector does not like our pointer shenanigans\n-// while checking the stack.\n-\n-//go:build goexperiment.r... | 2025-11-28T09:40:00 |
nodejs/node | 840d05f8ffb5e7026e5af73e9214e17acbb3c1a7 | 14c68e3b536798e25f810ed7ae180a5cde9e47d3 | tools: improve error handling in node_mksnapshot
PR-URL: https://github.com/nodejs/node/pull/59437
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "tools/snapshot/node_mksnapshot.cc",
"patch": "@@ -66,8 +66,16 @@ int BuildSnapshot(int argc, char* argv[]) {\n std::vector<std::string>(argv, argv + argc),\n node::ProcessInitializationFlags::kGeneratePredictableSnapshot);\n \n+ if (result->exit_code() != 0) {\n+ for (cons... | 2025-09-07T12:34:36 |
facebook/react | 6ccf328499f06c140ffe96a096744c22319394cc | a374e0ec87ec1d45a94b69e26c747529ea5dbab0 | [Fizz] Shorten throttle to hit a specific target metric (#33463)
Adding throttling or delaying on images, can obviously impact metrics.
However, it's all in the name of better actual user experience overall.
(Note that it's not strictly worse even for metric. Often it's actually
strictly better due to less work being ... | [
{
"path": "packages/react-dom-bindings/src/server/fizz-instruction-set/ReactDOMFizzInstructionSetInlineCodeStrings.js",
"patch": "@@ -6,9 +6,9 @@ export const markShellTime =\n export const clientRenderBoundary =\n '$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data=\"... | 2025-06-06T18:01:15 |
electron/electron | 38e7ff944ed8239d2130c284e4b63e749b2cfe7c | 8f09d7037b2b7263605005f0279650573c4e5a34 | refactor: make `NativeWindow::has_frame_` const (#47200)
* refactor: make NativeWindow::is_modal_ const
* refactor: make NativeWindow::title_bar_style_ const and private
* refactor: make NativeWindow::has_client_frame() protected
refactor: make NativeWindow::transparent() protected
* refactor: make NativeWindow::e... | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -75,10 +75,12 @@ namespace electron {\n namespace {\n \n #if BUILDFLAG(IS_WIN)\n-gfx::Size GetExpandedWindowSize(const NativeWindow* window, gfx::Size size) {\n+gfx::Size GetExpandedWindowSize(const NativeWindow* window,\n+ ... | 2025-05-22T22:32:46 |
vercel/next.js | 93bb2799fe43cf7b2967569f78ed3e7a2438dbf1 | f4c2d5461af31f0eef95759533b18b7a8ea005e7 | Apply fixes for onBuildComplete and route module (#88831)
This applies fixes for outputs in `onBuildComplete` with various slight
differences from expected values. This also applies some fixes in the
route-module interface to ensure we install the process handlers for PPR
since currently that was done in `next-server`... | [
{
"path": ".github/workflows/test_e2e_deploy_release.yml",
"patch": "@@ -90,6 +90,33 @@ jobs:\n runs_on_labels: '[\"ubuntu-latest\"]'\n overrideProxyAddress: ${{ inputs.overrideProxyAddress || '' }}\n \n+ test-deploy-adapter:\n+ name: Run Deploy Adapter Tests\n+ needs: setup\n+ uses: .... | 2026-01-26T02:59:20 |
golang/go | 67d4a28707fe948b4d5fe3e171717ab887730c2b | c079dd13c0b0e977d607cf2775bc2f16dd3d106e | fmt: document space behavior of Append
Also, introduce the {Print,Fprint,Sprint,Append}{,f,ln}
cross product of functions at the top of the docs.
Fixes #74656
Change-Id: I85a156cd545ca866e579d8020ddf165cd4bcb26f
Reviewed-on: https://go-review.googlesource.com/c/go/+/688877
Reviewed-by: Rob Pike <r@golang.org>
LUCI-T... | [
{
"path": "src/fmt/doc.go",
"patch": "@@ -9,6 +9,18 @@ are simpler.\n \n # Printing\n \n+There are four families of printing functions defined by their output destination.\n+[Print], [Println] and [Printf] write to [os.Stdout];\n+[Sprint], [Sprintln] and [Sprintf] return a string;\n+[Fprint], [Fprintln] and... | 2025-07-18T18:57:38 |
facebook/react | a374e0ec87ec1d45a94b69e26c747529ea5dbab0 | ab859e31be5db56106161060033109c9f2d26eca | [ci] Fix missing permissions for stale job (#33466)
Missed these the last time. | [
{
"path": ".github/workflows/shared_stale.yml",
"patch": "@@ -6,7 +6,10 @@ on:\n - cron: '0 * * * *'\n workflow_dispatch:\n \n-permissions: {}\n+permissions:\n+ # https://github.com/actions/stale/tree/v9/?tab=readme-ov-file#recommended-permissions\n+ issues: write\n+ pull-requests: write\n \n env:\... | 2025-06-06T17:32:51 |
electron/electron | b2d0074cc68c93c5db5ecd826e0eb829fb13aa01 | 2e8fc17f07d0e842599bd9979d304aa2b97bec5d | build: fix depot tool pathing on Windows (#47194)
build: properly set depot_tools pathing for Windows | [
{
"path": ".github/actions/install-build-tools/action.yml",
"patch": "@@ -15,12 +15,16 @@ runs:\n fi\n export BUILD_TOOLS_SHA=6e8526315ea3b4828882497e532b8340e64e053c\n npm i -g @electron/build-tools\n+ # Update depot_tools to ensure python\n e d update_depot_tools\n e aut... | 2025-05-21T23:05:50 |
vercel/next.js | 7eb2ea491ea89ea753eb2e636edf87bad67574f2 | 1637d61731065b5ad5705c159967f213c3cf624d | [Reapply] Add `useEffectEvent` to disallowed React APIs in Server Components (#88985)
<!-- 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 y... | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -633,6 +633,7 @@ impl ReactServerComponentValidator {\n \"PureComponent\",\n \"useDeferredValue\",\n \"useEffect\",\n+ ... | 2026-01-25T21:11:23 |
golang/go | c079dd13c0b0e977d607cf2775bc2f16dd3d106e | 2947cb0469aa89aac70cc6e3968f00f4c625671a | runtime/secret: reorganize tests to fix -buildmode=shared
The testing assembly methods had a linkname that was implicitly
satisfied during the regular build but not there during the shared
build. Fix by moving the testing routine into the package itself.
For good measure, section off the assembly files from the non-e... | [
{
"path": "src/runtime/secret/asm_amd64.s",
"patch": "@@ -2,6 +2,8 @@\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.runtimesecret\n+\n // Note: this assembly file is used for testing only.\n // We need to access regis... | 2025-11-27T06:45:20 |
facebook/react | d177272802b7f86a847312c23b7e60a6f56434de | 22b929156c325eaf52c375f0c62801831951814a | [Fizz] Error and deopt from rel=expect for large documents without boundaries (#33454)
We want to make sure that we can block the reveal of a well designed
complete shell reliably. In the Suspense model, client transitions don't
have any way to implicitly resolve. This means you need to use Suspense
or SuspenseList to... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -5465,7 +5465,7 @@ export function writePreambleStart(\n destination: Destination,\n resumableState: ResumableState,\n renderState: RenderState,\n- skipExpect?: boolean, // Used as an override by ReactFizzConfigMar... | 2025-06-06T14:29:48 |
electron/electron | 2e8fc17f07d0e842599bd9979d304aa2b97bec5d | 4af0c5d7620c4abe49706133242a31ea69b37848 | refactor: pass views::Widget* into constructors of our TreeHosts and NativeWidgets (#47177)
* refactor: remove unnecessary downcast in MenuViews::PopupAt()
* refactor: pass a views::Widget as an arg to the ElectronDesktopWindowTreeHostLinux ctor
* refactor: pass a views::Widget as an arg to the ElectronDesktopNative... | [
{
"path": "shell/browser/api/electron_api_menu_views.cc",
"patch": "@@ -27,7 +27,7 @@ void MenuViews::PopupAt(BaseWindow* window,\n int positioning_item,\n ui::mojom::MenuSourceType source_type,\n base::OnceClosure callback) {\n- auto*... | 2025-05-21T21:02:55 |
vercel/next.js | 39ce0124e4af8c32c5bf8dae05c801fac17a2954 | f51e3acf961c9bbcab68aab6078c9267d230db21 | Improve agents-md prompt to force doc retrieval (#88997)
## Summary
Updates the instruction in `agents-md` [CLAUDE.md](http://CLAUDE.md)
output to force LLMs to actually read the docs instead of relying on
stale pre-training knowledge.
**Before:**
```
IMPORTANT: Prefer retrieval-led reasoning over pre-training-led ... | [
{
"path": "packages/next-codemod/lib/agents-md.ts",
"patch": "@@ -10,7 +10,7 @@ import fs from 'fs'\n import path from 'path'\n import os from 'os'\n \n-export interface NextjsVersionResult {\n+interface NextjsVersionResult {\n version: string | null\n error?: string\n }\n@@ -68,13 +68,13 @@ function ve... | 2026-01-25T11:22:46 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.