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 | 943e45e910d1a125f2be431c2b66f22a035ea0c9 | 2d16326d9a3f45260aa80bcae78745ab2f199138 | [compiler][test fixtures] Fork more fixtures for hir-rewrite
Followup from #30894 , not sure how these got missed. Note that this PR just copies the fixtures without adding `@enablePropagateDepsInHIR`. #31032 follows and actually enables the HIR-version of propagateScopeDeps to run. I split this out into two PRs to ma... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/propagate-scope-deps-hir-fork/conditional-break-labeled.expect.md",
"patch": "@@ -0,0 +1,65 @@\n+\n+## Input\n+\n+```javascript\n+/**\n+ * props.b *does* influence `a`\n+ */\n+function Component(props) {\n+ const a = [... | 2024-09-30T16:24:19 |
vercel/next.js | 0ca2f97cbeeaa562880cefe58000baccca72e045 | cee71e4a589549f6b1f24cbc46f25d338357a0b0 | fix broken extend implementation on DynamicStorage (#86204)
### What?
This implementation was broken. It did call `add` instead of `insert` and that doesn't override existing values as it should.
It could also be a bit more efficient by using `extend`. | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/dynamic_storage.rs",
"patch": "@@ -61,14 +61,9 @@ impl DynamicStorage {\n pub fn extend(\n &mut self,\n ty: CachedDataItemType,\n- item: impl Iterator<Item = CachedDataItem>,\n+ iterator: impl Iterator<Item = Cache... | 2025-11-17T11:55:06 |
rust-lang/rust | ca9bd0d157819aeb46dc93bd4c6e9a9446841275 | 2d76d9bc76f27b03b4899e72ce561c7ac2c5cf6b | rustdoc-json: Improve docs for `ItemEnum::item_kind`
Fixes https://github.com/rust-lang/rust/pull/153279#discussion_r2875219461 | [
{
"path": "src/rustdoc-json-types/lib.rs",
"patch": "@@ -683,7 +683,13 @@ pub enum ItemEnum {\n }\n \n impl ItemEnum {\n- /// Returns the [`ItemKind`] of this item.\n+ /// Get just the kind of this item, but with no further data.\n+ ///\n+ /// ```rust\n+ /// # use rustdoc_json_types::{ItemKin... | 2026-03-09T20:47:08 |
golang/go | 46cc53290003340877413b8a53511b4f3685d213 | 2163a5802103ebe84cbf0d77cee7097185bd8e8d | cmd/compile/internal/ssa: fix typo in comment
Change-Id: Ic48a756b71a62be1c6c4cfe781c02b89010e2338
GitHub-Last-Rev: 8c0d89b475c204af66d528799713276c57da16f8
GitHub-Pull-Request: golang/go#75985
Reviewed-on: https://go-review.googlesource.com/c/go/+/713041
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Keith ... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go",
"patch": "@@ -99,7 +99,7 @@ func init() {\n \t\t}\n \t}\n \n-\t// Floating pointer registers.\n+\t// Floating point registers.\n \tfor r := 32; r <= 63; r++ {\n \t\tmask := addreg(r, \"\")\n \t\tfpMask |= mask",
"additions": 1,
"deletions"... | 2025-10-20T16:18:42 |
nodejs/node | a738eb4a7f95f8d05ebbd2d2d97be73e60b40754 | 1744c7d9911b8af3352a1f55f3d4fd212edc436a | deps: fix FP16 bitcasts.h
PR-URL: https://github.com/nodejs/node/pull/53134
Refs: https://github.com/nodejs/node/issues/52809
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina <matteo.collin... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-05-28T07:10:52 |
facebook/react | 2d16326d9a3f45260aa80bcae78745ab2f199138 | db240980a3aeae65f148b1edf5a1187a2331307e | fix[scripts/devtools/publish-release]: parse version list instead of handling 404 (#31087)
Discovered yesterday while was publishing a new release.
NPM `10.x.x` changed the text for 404 errors, so this check was failing.
Instead of handling 404 as a signal, I think its better to just parse
the whole list of versi... | [
{
"path": "scripts/devtools/publish-release.js",
"patch": "@@ -82,18 +82,13 @@ async function publishToNPM() {\n // If so we might be resuming from a previous run.\n // We could infer this by comparing the build-info.json,\n // But for now the easiest way is just to ask if this is expected.\n- ... | 2024-09-30T16:07:54 |
vercel/next.js | b3b97bc409b2b79709ec9b39ffe4da404be3938d | a3aadbd37c2c19bdeac021b78a474d90bff9f9c0 | Allow attaching a debugger when `next dev` is already running (#86083) | [
{
"path": "packages/next/errors.json",
"patch": "@@ -924,5 +924,6 @@\n \"923\": \"%s is being parsed as a normalized route, but it has a route group or parallel route segment.\",\n \"924\": \"Invalid interception route: %s\",\n \"925\": \"You cannot define a route with the same specificity as an optio... | 2025-11-17T08:00:52 |
golang/go | 2163a5802103ebe84cbf0d77cee7097185bd8e8d | 306eacbc112f2052d82c419fe312153b8b2ab613 | crypto/internal/fips140/entropy: increase AllocsPerRun iterations
TestNISTECAllocations is flaky (~1% failure rate) on my local Windows
machine since CL 710058, which touched TestEntropyRace.
These tests are unrelated, but some allocations might be incorrectly
accounted to TestNISTECAllocations, affecting the end res... | [
{
"path": "src/crypto/internal/fips140test/nistec_test.go",
"patch": "@@ -18,7 +18,7 @@ import (\n func TestNISTECAllocations(t *testing.T) {\n \tcryptotest.SkipTestAllocations(t)\n \tt.Run(\"P224\", func(t *testing.T) {\n-\t\tif allocs := testing.AllocsPerRun(10, func() {\n+\t\tif allocs := testing.AllocsP... | 2025-10-17T10:40:05 |
facebook/react | 3edc000d7717027a1ce23611070a56358040a554 | d34da5cdb9266ba7928f78107c87383ae211f0f9 | [compiler] Fix broken tests
ghstack-source-id: 000a37ae1f819eef676dcd52410d5231cd2d50fe
Pull Request resolved: https://github.com/facebook/react/pull/31078 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/meta-isms/repro-cx-namespace-assigned-to-temporary.expect.md",
"patch": "@@ -19,15 +19,17 @@ function Component() {\n );\n }\n \n-function cx(obj) {\n- const classes = [];\n- for (const [key, value] of Object.entrie... | 2024-09-26T21:34:28 |
nodejs/node | e1ab0d1c7fb2e951fa5ede8407c7def6f234895c | a436f7b492b1ddaf725ba653fb1e0e10517218b7 | doc: add JonasBa to collaborators
Fixes: https://github.com/nodejs/node/issues/57410
PR-URL: https://github.com/nodejs/node/pull/58355
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.co... | [
{
"path": ".mailmap",
"patch": "@@ -271,6 +271,7 @@ John McGuirk <johnmac81@gmail.com>\n John Musgrave <musgravejw@gmail.com>\n Johnny Ray Austin <johnny@johnnyray.me> <http://johnnyray.me>\n Jon Tippens <jwtippens@gmail.com>\n+Jonas Badalic <jonas.badalic@gmail.com> <jonas@badalic.com>\n Jonas Pfenniger <j... | 2025-05-16T20:19:55 |
vercel/next.js | a3aadbd37c2c19bdeac021b78a474d90bff9f9c0 | 88fe8793e7611d20102772001e4388e8e4ea72f6 | [turbopack] Remove `Clone` from `Effect` (#86110)
Disallow cloning effects.
This was only performed in one location to address an issue with modeling calls functions that had alternates. However, this had the unfortunate effect of producing duplicate `CodeGen` objects. (it also could link values redundantly). This wa... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs",
"patch": "@@ -35,7 +35,7 @@ use crate::{\n utils::{AstPathRange, unparen},\n };\n \n-#[derive(Debug, Clone)]\n+#[derive(Debug)]\n pub struct EffectsBlock {\n pub effects: Vec<Effect>,\n pub range: AstPathRange,\n@@ -47,7 +4... | 2025-11-17T03:26:04 |
golang/go | 306eacbc112f2052d82c419fe312153b8b2ab613 | a5a249d6a64508376320bc48546a6a43aebecda7 | cmd/go/testdata/script: disable list_empty_importpath test on Windows
The test is flaking on windows, and I haven't been able to figure out
why. For now, to unblock folks, just allow the value that occasionally
appears: 'no errors' to avoid having a broken test. This seems like it's
probably a race though so we should... | [
{
"path": "src/cmd/go/testdata/script/list_empty_importpath.txt",
"patch": "@@ -1,6 +1,12 @@\n ! go list all\n ! stderr 'panic'\n-stderr 'invalid import path'\n+[!GOOS:windows] [!GOOS:solaris] stderr 'invalid import path'\n+# #73976: Allow 'no errors' on Windows and Solaris until issue\n+# is resolved to pr... | 2025-10-20T17:51:13 |
facebook/react | d34da5cdb9266ba7928f78107c87383ae211f0f9 | 67fee58b1f72754cc77488c40c44e786572ef954 | [ci] Fix incorrect sha / commit messages in manual Meta builds
ghstack-source-id: 0790b32d293f7b528e458cb4b8718d8c2c422dab
Pull Request resolved: https://github.com/facebook/react/pull/31083 | [
{
"path": ".github/workflows/runtime_commit_artifacts.yml",
"patch": "@@ -82,7 +82,7 @@ jobs:\n working-directory: scripts/release\n - name: Download artifacts for base revision\n run: |\n- GH_TOKEN=${{ github.token }} scripts/release/download-experimental-build.js --commit=${... | 2024-09-26T21:28:01 |
nodejs/node | ff3a028f8bf88da70dc79e1d7b7947a8d5a8548a | 8053a5c1c78a6b8e69b76a345956d19431e111a5 | build: fix defaults for shared llhttp
PR-URL: https://github.com/nodejs/node/pull/58269
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "configure.py",
"patch": "@@ -277,7 +277,7 @@\n shared_optgroup.add_argument('--shared-http-parser-libname',\n action='store',\n dest='shared_http_parser_libname',\n- default='http_parser',\n+ default='llhttp',\n help='alternative lib name to link to [default: %(default)s]')\n \n... | 2025-05-16T12:55:50 |
vercel/next.js | 8de523ae224a8024572859319a9ee411be1fa5d2 | bf27e24aca38a0cb540148312dada907b49b1feb | Fix streaming server actions (#86148)
By accident, the responses for server actions that fetch something and
don't revalidate are currently not streamed to the browser until the
`fetch` calls are fully resolved. In the simplest case this happens when
a server action returns the response body of a `fetch` call. This is... | [
{
"path": "packages/next/src/server/app-render/action-handler.ts",
"patch": "@@ -617,8 +617,9 @@ export async function handleAction({\n type: 'done',\n result: await generateFlight(req, ctx, requestStore, {\n actionResult: promise,\n- // We didn't execute an action... | 2025-11-15T22:17:29 |
golang/go | f838faffe21afd2d5c177c04df8836c93e273b4b | ee4d2c312de90296a6b6f687f6a7ea8b9916af54 | runtime: wrap procyield assembly and check for 0
procyield will currently loop infinitely if passed 0 on several
platforms. This change sidesteps this bug by renaming procyield to
procyieldAsm, and adding a wrapper named procyield that checks for
cycles == 0. The benefit of this structure is that procyield called
with... | [
{
"path": "src/runtime/asm_386.s",
"patch": "@@ -597,7 +597,7 @@ CALLFN(·call268435456, 268435456)\n CALLFN(·call536870912, 536870912)\n CALLFN(·call1073741824, 1073741824)\n \n-TEXT runtime·procyield(SB),NOSPLIT,$0-0\n+TEXT runtime·procyieldAsm(SB),NOSPLIT,$0-0\n \tMOVL\tcycles+0(FP), AX\n again:\n \tPAUSE... | 2025-10-17T19:53:36 |
facebook/react | b091ef7e0be078de64721e72b8dc8d7bc33dad29 | b90e440231d3c18a3d9ebbd6a74555e82a16f666 | fix: update release scripts for react devtools (#31069)
This has been broken since the migration to GitHub actions.
Previously, we've been using `buildId` as an identifier from CircleCI.
I've decided to use a commit hash as an identifier, because I don't know
if there is a better option, and
`scripts/release/dow... | [
{
"path": "scripts/devtools/build-and-test.js",
"patch": "@@ -50,13 +50,13 @@ async function main() {\n });\n \n const archivePath = await archiveGitRevision();\n- const buildID = await downloadLatestReactBuild();\n+ const currentCommitHash = await downloadLatestReactBuild();\n \n await buildAndTest... | 2024-09-26T14:42:59 |
electron/electron | f95e1d8ea08d4c5297ff9017ae56ee00a843822f | eba0edf81e3fd77f943d7715f95acc153653f4a9 | chore: fix textured window conditional on macOS (#44728) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -167,31 +167,25 @@ static bool FromV8(v8::Isolate* isolate,\n if (!rounded_corner && !has_frame())\n styleMask = NSWindowStyleMaskBorderless;\n \n-// TODO: remove NSWindowStyleMaskTexturedBackground.\n-// https://github.com/electron/electron... | 2024-11-20T16:34:46 |
nodejs/node | 8053a5c1c78a6b8e69b76a345956d19431e111a5 | 1d0b4e8b911a79ed37784191691de0f45543a8df | http2: add diagnostics channel 'http2.client.stream.error'
Signed-off-by: Darshan Sen <raisinten@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/58306
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tierney Cyren <hello@bnb.im>
Reviewed-By: Debadree Chatterjee <debadree333@gmail.com> | [
{
"path": "doc/api/diagnostics_channel.md",
"patch": "@@ -1217,6 +1217,13 @@ Emitted when a stream is created on the client.\n \n Emitted when a stream is started on the client.\n \n+`http2.client.stream.error`\n+\n+* `stream` {ClientHttp2Stream}\n+* `error` {Error}\n+\n+Emitted when an error occurs during ... | 2025-05-16T12:15:50 |
vercel/next.js | bf27e24aca38a0cb540148312dada907b49b1feb | a3f3c1e0d747982c4109b20beb2fe66b23700c53 | fix: cacheMaxMemorySize should not disable dev HMR cache (#86164)
When configuring `cacheMaxMemorySize` to disable memory caching
(typically used for setups to adjust production caching behavior,
especially in multi-process self-hosted setups), this inadvertently also
disabled dev HMR caches which are intended as a pe... | [
{
"path": "packages/next/src/server/dev/next-dev-server.ts",
"patch": "@@ -48,6 +48,7 @@ import { loadDefaultErrorComponents } from '../load-default-error-components'\n import { DecodeError, MiddlewareNotFoundError } from '../../shared/lib/utils'\n import * as Log from '../../build/output/log'\n import isEr... | 2025-11-15T19:25:47 |
facebook/react | b90e440231d3c18a3d9ebbd6a74555e82a16f666 | 0e9ccde185d0556f8d672689d937b5423476beff | [dependabot] Ignore all fixture directories
Seems like we can specify a wildcard dependency name to ignore all
dependencies from being updated. As I understand it dependabot will
still run monthly but no PRs will be generated.
ghstack-source-id: 64b76bd532663cdc4db10ba6299e791b5908d5b1
Pull Request resolved: https://... | [
{
"path": ".github/dependabot.yml",
"patch": "@@ -1,97 +1,10 @@\n version: 2\n updates:\n - package-ecosystem: \"npm\"\n- directory: \"/fixtures/art\"\n+ directories:\n+ - \"/fixtures/*\"\n schedule:\n- interval: \"weekly\"\n- open-pull-requests-limit: 0\n- - package-ecosystem: \"n... | 2024-09-26T14:22:38 |
golang/go | e4251768439bbd0a6fe4c472aa57bb5257f20b56 | dc9a3e2a658176fe1884d65d5a0e7516145404eb | cmd/asm: fix typo in comment
Change-Id: I1a7933bce70bcae1f93a45c6810da60d269f48f3
Reviewed-on: https://go-review.googlesource.com/c/go/+/713000
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Keith Randall <khr@google... | [
{
"path": "src/cmd/asm/main.go",
"patch": "@@ -58,7 +58,7 @@ func main() {\n \t\t// nothing\n \tcase \"index\":\n \t\t// known to compiler; ignore here so people can use\n-\t\t// the same list with -gcflags=-spectre=LIST and -asmflags=-spectrre=LIST\n+\t\t// the same list with -gcflags=-spectre=LIST and -as... | 2025-10-20T04:33:50 |
electron/electron | 54d53bfa514e50e1847b7b4c110a8d46300d4c79 | 8ed48e2295260b68203df59f84c52038ab1fe275 | fix: tooltips in WCO caption buttons (#44721)
fix: tooltips in WCO capton buttons | [
{
"path": "shell/browser/ui/views/win_caption_button_container.cc",
"patch": "@@ -19,6 +19,7 @@\n #include \"ui/base/l10n/l10n_util.h\"\n #include \"ui/compositor/layer.h\"\n #include \"ui/strings/grit/ui_strings.h\"\n+#include \"ui/views/accessibility/view_accessibility.h\"\n #include \"ui/views/background... | 2024-11-20T11:45:08 |
nodejs/node | 1d0b4e8b911a79ed37784191691de0f45543a8df | 0315283cbdb7745c7e35bb49ac48b0ebcadcb228 | vm: import call should return a promise in the current context
A `import` call should returns a promise created in the context where
the `import` was called, not the context of `importModuleDynamically`
callback.
PR-URL: https://github.com/nodejs/node/pull/58309
Fixes: https://github.com/nodejs/node/issues/53575
Revi... | [
{
"path": "src/module_wrap.cc",
"patch": "@@ -1020,16 +1020,23 @@ static MaybeLocal<Promise> ImportModuleDynamicallyWithPhase(\n };\n \n Local<Value> result;\n- if (import_callback->Call(\n- context,\n- Undefined(isolate),\n- arraysize(import_args),\n- import_args).ToLocal(&... | 2025-05-16T07:43:48 |
vercel/next.js | 40a5da531a0ffae1a0a446a8c7459b725366d502 | dcd9be7aa1332e8bf8ab0402affe2b1bf7d85f5a | Fix telemetry event race condition in webpack worker for @vercel/og detection (#86145) | [
{
"path": "packages/next/src/build/webpack-build/impl.ts",
"patch": "@@ -414,5 +414,7 @@ export async function workerMain(workerData: {\n result.buildTraceContext!.chunksTrace!.entryNameFilesMap = entryNameFilesMap\n }\n NextBuildContext.nextBuildSpan.stop()\n+ await telemetry.flush()\n+\n return... | 2025-11-14T22:58:01 |
golang/go | dc9a3e2a658176fe1884d65d5a0e7516145404eb | df33c170919faca6ea849ee23fb0af6971fddc5b | runtime: fix generation skew with trace reentrancy
Currently when performing multiple nested traceAcquires, we re-read
trace.gen on subsequent reads. But this is invalid, since a generation
transition may happen in between a traceAcquire and a nested
traceAcquire. The first one will produce a traceLocker with a gen fr... | [
{
"path": "src/runtime/traceruntime.go",
"patch": "@@ -29,6 +29,7 @@ type mTraceState struct {\n \tbuf [2][tracev2.NumExperiments]*traceBuf // Per-M traceBuf for writing. Indexed by trace.gen%2.\n \tlink *m // Snapshot of alllink or freelink.\n \treentere... | 2025-09-30T23:54:07 |
rust-lang/rust | 44d6cd2344cd636f4ea371d56ae3d27aaa110ad6 | 64b72a1fa5449d928d5f553b01a596b78ee255d2 | Fix environ on FreeBSD with cdylib targets that use -Wl,--no-undefined .
Instead of relying on the linker to find the 'environ' symbol, use
dlsym.
Fixes #153451
Sponsored by: ConnectWise | [
{
"path": "library/std/src/sys/env/unix.rs",
"patch": "@@ -38,8 +38,25 @@ pub unsafe fn environ() -> *mut *const *const c_char {\n unsafe { libc::_NSGetEnviron() as *mut *const *const c_char }\n }\n \n+// On FreeBSD, environ comes from CRT rather than libc\n+#[cfg(target_os = \"freebsd\")]\n+pub unsafe ... | 2026-03-05T19:46:23 |
nodejs/node | b6189c352cbf5bb9766df2cf03dc3a369e87f5be | 0c78a48d75008b87d874385a966a168a2b680b4d | module: clarify cjs global-like error on ModuleJobSync
PR-URL: https://github.com/nodejs/node/pull/56491
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me> | [
{
"path": "lib/internal/modules/esm/module_job.js",
"patch": "@@ -65,6 +65,37 @@ const isCommonJSGlobalLikeNotDefinedError = (errorMessage) =>\n (globalLike) => errorMessage === `${globalLike} is not defined`,\n );\n \n+\n+/**\n+ *\n+ * @param {Error} e\n+ * @param {string} url\n+ * @returns {void}\n+... | 2025-05-16T06:39:28 |
facebook/react | 64be7b4dccb7b19404b94afdfab955e1c73796df | db320ea4d910d360ccb83850ccdbc464a77fc1c5 | [ci] Fix missing values during manual workflow dispatch
It seems like the github.event.workflow_run payload is only populated
for non manual runs of the workflow, so this would crash the manual
dispatch
Test plan: https://github.com/facebook/react/actions/runs/11017512571
completes
ghstack-source-id: fce02b17f85ac47... | [
{
"path": ".github/workflows/runtime_commit_artifacts.yml",
"patch": "@@ -82,7 +82,7 @@ jobs:\n working-directory: scripts/release\n - name: Download artifacts for base revision\n run: |\n- GH_TOKEN=${{ github.token }} scripts/release/download-experimental-build.js --commit=${... | 2024-09-26T13:55:36 |
vercel/next.js | 8c8030edf42200228fb3b2dfbd3a130dd13c1485 | 283c6f57bb76fcd2f674cd67b979980bb3ca86d8 | Turbopack: apply side effects false removal on all module types (#86133)
### What?
fix the side effects false handling for other module types. Before it did only work for ecmascript modules. | [
{
"path": "crates/next-core/src/hmr_entry.rs",
"patch": "@@ -70,6 +70,11 @@ impl Module for HmrEntryModule {\n .await?,\n )]))\n }\n+\n+ #[turbo_tasks::function]\n+ fn is_marked_as_side_effect_free(self: Vc<Self>, _: Vc<Glob>) -> Vc<bool> {\n+ Vc::cell(false)\n+ }... | 2025-11-14T19:02:58 |
rust-lang/rust | 342ad0401a16aebfa2e2160a099764168a4fe2f5 | 98e7077b903559d7a4fafb775cd5292cc9427b67 | ast_passes: unsupported arch w/ scalable vectors
Emit an error when attempting to compile a `#[rustc_scalable_vector]`
type for a architecture that fundamentally doesn't support scalable
vectors. Ultimately this is just a diagnostic improvement for an internal
attribute as users should never be doing this. | [
{
"path": "compiler/rustc_ast_passes/src/ast_validation.rs",
"patch": "@@ -1371,11 +1371,16 @@ impl<'a> Visitor<'a> for AstValidator<'a> {\n ItemKind::Struct(ident, generics, vdata) => {\n self.with_tilde_const(Some(TildeConstReason::Struct { span: item.span }), |this| {\n ... | 2026-03-09T12:39:47 |
electron/electron | 43ed763f181ff648030fb498e7c538decd51c352 | ac61c74ddc2ce25d4d89a040771acd3f4bc9e585 | chore: bump chromium to 133.0.6846.0 (main) (#44665)
* chore: bump chromium in DEPS to 133.0.6836.0
* chore: bump chromium in DEPS to 133.0.6838.0
* chore: update patches
* 6006096: [Sync ESB] Integrate Chrome Toast UI
https://chromium-review.googlesource.com/c/chromium/src/+/6006096
* Confine enable_de... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '132.0.6834.0',\n+ '133.0.6846.0',\n 'node_version':\n 'v22.9.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "filenam... | 2024-11-20T03:52:20 |
golang/go | 58a8fdb6cf4a905fd3de44bf2dd87d14fbd38dfe | 8d0bef7ffe5c471684f6a46f579fc7b87a46adb8 | cmd/go: inject State parameter into `bug.runBug`
This command modifies the call tree starting at `bug.runBug` to inject
a `State` parameter to every function that is currently using the
global `modload.LoaderState` variable. By explicilty passing a
`State` parameter, we can begin to eliminate the usage of the global
... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -51,7 +51,7 @@ func runBug(ctx context.Context, cmd *base.Command, args []string) {\n \tbuf.WriteString(bugHeader)\n \tprintGoVersion(&buf)\n \tbuf.WriteString(\"### Does this issue reproduce with the latest release?\\n\\n\\n\")\n-\tprintEnvDetails(&b... | 2025-10-02T03:01:55 |
facebook/react | db320ea4d910d360ccb83850ccdbc464a77fc1c5 | f7aff7f15c451dc78eb967c726be4f612bcaf966 | Bump rollup from 3.20.0 to 3.29.5 (#31072)
Bumps [rollup](https://github.com/rollup/rollup) from 3.20.0 to 3.29.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rollup/rollup/releases">rollup's
releases</a>.</em></p>
<blockquote>
<h2>v3.29.4</h2>
<h2>3.29.4</h2>
<p... | [
{
"path": "package.json",
"patch": "@@ -89,7 +89,7 @@\n \"random-seed\": \"^0.3.0\",\n \"react-lifecycles-compat\": \"^3.0.4\",\n \"rimraf\": \"^3.0.0\",\n- \"rollup\": \"^3.17.1\",\n+ \"rollup\": \"^3.29.5\",\n \"rollup-plugin-prettier\": \"^4.1.1\",\n \"rollup-plugin-strip-banner... | 2024-09-26T13:56:33 |
nodejs/node | 44883b7b1ffe076a5807beb1757193322e020237 | 5eeb9f3477005b0158faf08adca484ee10078c3f | doc: document default test-reporter change
Document the change made in https://github.com/nodejs/node/pull/54548
PR-URL: https://github.com/nodejs/node/pull/58302
Fixes: https://github.com/nodejs/node/issues/58301
Refs: https://github.com/nodejs/node/pull/54548
Reviewed-By: Tierney Cyren <hello@bnb.im>
Reviewed-By: J... | [
{
"path": "doc/api/test.md",
"patch": "@@ -1046,6 +1046,10 @@ added:\n - v19.6.0\n - v18.15.0\n changes:\n+ - version: v23.0.0\n+ pr-url: https://github.com/nodejs/node/pull/54548\n+ description: The default reporter on non-TTY stdout is changed from `tap` to\n+ `spec`, aligning w... | 2025-05-14T22:50:38 |
vercel/next.js | 7dedd622748bde8863ab10d7c171a8215bfefee9 | a8d73c25f9468735841de9cd9819acfb5b6a0ccd | Un-skip tests in prefetch-runtime.test.ts (#86097)
These were temporarily disabled when removed the Link level opt-in for
runtime prefetching. I fixed the tests by switching to the file-based
API.
prefetch-layout-sharing.test.ts still needs to be updated, in a similar
way. | [
{
"path": "test/e2e/app-dir/segment-cache/prefetch-runtime/app/(default)/caches/private-seconds/page.tsx",
"patch": "@@ -2,6 +2,11 @@ import { Suspense } from 'react'\n import { cachedDelay, DebugRenderKind } from '../../../shared'\n import { cacheLife } from 'next/cache'\n \n+export const unstable_prefetch... | 2025-11-14T16:41:03 |
electron/electron | ac61c74ddc2ce25d4d89a040771acd3f4bc9e585 | 1cf5e6d88cf2f9715ceb830773fa57f8f208db38 | fix: bugprone-narrowing-conversions warnings in NativeImage (#44708)
* fix: bugprone-narrowing-conversions warning in NativeImage::memory_usage_
- fix signed / unsigned math by using base/numerics/safe_conversions
- make memory_usage_ an int64_t so it can safely take the size_t
returned by computeByteSize()
... | [
{
"path": "shell/common/api/electron_api_native_image.cc",
"patch": "@@ -12,6 +12,7 @@\n #include \"base/files/file_util.h\"\n #include \"base/logging.h\"\n #include \"base/memory/ref_counted_memory.h\"\n+#include \"base/numerics/safe_conversions.h\"\n #include \"base/strings/pattern.h\"\n #include \"base/s... | 2024-11-19T22:04:18 |
golang/go | 4ad5585c2c2dc3e4387c10c297669c57449156c9 | a5f55a441ef497d8e2a12610f4ec2bd32fdc04b2 | runtime: fix _rt0_ppc64x_lib on aix
CL 706395 refactored the ppc64 library entry point and missed some
important aix-specific characteristics:
- _rt0_ppc64x_lib should account for the function descriptor when
getting the callback pointer.
- _rt0_ppc64x_lib should only call _cgo_sys_thread_create when
built as a c-ar... | [
{
"path": "src/runtime/asm_ppc64x.s",
"patch": "@@ -14,8 +14,14 @@\n // This is called using the host ABI. argc and argv arguments\n // should be in R3 and R4 respectively.\n TEXT _rt0_ppc64x_lib(SB),NOSPLIT|NOFRAME,$0\n-\t// Convert to Go ABI, and Allocate argument storage for call to newosproc0.\n-\tSTACK... | 2025-10-08T14:21:21 |
facebook/react | f7aff7f15c451dc78eb967c726be4f612bcaf966 | f04b8fc88e83c3cbe670bf6ec46d27cfcb3f52e9 | Bump express from 4.18.2 to 4.21.0 (#30980)
Bumps [express](https://github.com/expressjs/express) from 4.18.2 to
4.21.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/expressjs/express/releases">express's
releases</a>.</em></p>
<blockquote>
<h2>4.21.0</h2>
<h2>What... | [
{
"path": "yarn.lock",
"patch": "@@ -5031,21 +5031,21 @@ bluebird@~3.7:\n resolved \"https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f\"\n integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==\n \n-body... | 2024-09-26T13:56:24 |
electron/electron | 1cf5e6d88cf2f9715ceb830773fa57f8f208db38 | 48c9149a52f73111f30f858f5340709a12e533e0 | fix: cyclical #include dependency between autofill_popup.h and autofill_popup_view.h (#44705)
fix: AutofillPopup warning: use '= default' to define a trivial default constructor [modernize-use-equals-default]
refactor: reduce #indclude scope in autofill_popup.h and autofill_popup_view.h | [
{
"path": "shell/browser/ui/autofill_popup.cc",
"patch": "@@ -15,6 +15,7 @@\n #include \"shell/browser/osr/osr_render_widget_host_view.h\"\n #include \"shell/browser/osr/osr_view_proxy.h\"\n #include \"shell/browser/ui/autofill_popup.h\"\n+#include \"shell/browser/ui/views/autofill_popup_view.h\"\n #include... | 2024-11-19T19:45:18 |
nodejs/node | 5eeb9f3477005b0158faf08adca484ee10078c3f | 2c256d7123bf663f8db44b878df7faebfccc402a | src: fix error handling on async crypto operations
Fixes: https://hackerone.com/reports/2817648
Co-Authored-By: Filip Skokan <panva.ip@gmail.com>
Co-Authored-By: Tobias Nießen <tniessen@tnie.de>
Co-Authored-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Hennin... | [
{
"path": "src/crypto/crypto_dh.cc",
"patch": "@@ -512,15 +512,15 @@ MaybeLocal<Value> DHBitsTraits::EncodeOutput(Environment* env,\n return out->ToArrayBuffer(env);\n }\n \n-bool DHBitsTraits::DeriveBits(\n- Environment* env,\n- const DHBitsConfig& params,\n- ByteSource* out) {\n+bool DHBitsTrai... | 2025-03-25T13:24:34 |
golang/go | a5f55a441ef497d8e2a12610f4ec2bd32fdc04b2 | 80876f4b42c807e0f90eab20a3e8a98ef95f2cb0 | cmd/fix: add modernize and inline analyzers
We ran 'go mod vendor' to pull in the newly used packages.
Also, add a cmd/go script test that minimally
exercises each analyzer, analogous to the cmd/vet test.
For #75266
For #75267
For #71859
Change-Id: I334daea048e3d2f614a1788292a3175acf173932
Reviewed-on: https://go-r... | [
{
"path": "src/cmd/fix/main.go",
"patch": "@@ -22,10 +22,13 @@ package main\n import (\n \t\"cmd/internal/objabi\"\n \t\"cmd/internal/telemetry/counter\"\n+\t\"slices\"\n \n \t\"golang.org/x/tools/go/analysis\"\n \t\"golang.org/x/tools/go/analysis/passes/buildtag\"\n \t\"golang.org/x/tools/go/analysis/passe... | 2025-10-10T19:49:53 |
facebook/react | f04b8fc88e83c3cbe670bf6ec46d27cfcb3f52e9 | d0772d586650baa5cf5c676ab1092a075ffdf831 | Bump ws from 6.2.2 to 6.2.3 in /scripts/release (#30463)
Bumps [ws](https://github.com/websockets/ws) from 6.2.2 to 6.2.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/websockets/ws/releases">ws's
releases</a>.</em></p>
<blockquote>
<h2>6.2.3</h2>
<h1>Bug fixes</h1... | [
{
"path": "scripts/release/yarn.lock",
"patch": "@@ -910,9 +910,9 @@ wrappy@1:\n integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=\n \n ws@^6.1.0:\n- version \"6.2.2\"\n- resolved \"https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e\"\n- integrity sha512-zmhltoSR8u1cnDsD4... | 2024-09-26T13:56:10 |
electron/electron | 48c9149a52f73111f30f858f5340709a12e533e0 | 0d6743e79b230fda2ed80687bb927351c3a6f8a5 | fix: utility process exit code for graceful termination (reland) (#44726)
* chore: reland "fix: utility process exit code for graceful termination"
This reverts commit 1cae73ba092ccf5620c5fce8b896bade3a601346.
* fix: exit code on posix when killed via api
* chore: fix code style | [
{
"path": "patches/chromium/feat_enable_passing_exit_code_on_service_process_crash.patch",
"patch": "@@ -11,7 +11,7 @@ ServiceProcessHost::Observer functions, but we need to pass the exit code to\n the observer.\n \n diff --git a/content/browser/service_process_host_impl.cc b/content/browser/service_process... | 2024-11-19T17:48:15 |
rust-lang/rust | 225b7e001247ff1f6bbfffa884a078a5a3545f8c | 085c58f2c0c7db692a2eaf2b8970ff474eed9183 | fix ICE in `const_c_variadic` when passing ZSTs | [
{
"path": "compiler/rustc_const_eval/src/interpret/call.rs",
"patch": "@@ -12,7 +12,7 @@ use rustc_hir::find_attr;\n use rustc_middle::ty::layout::{IntegerExt, TyAndLayout};\n use rustc_middle::ty::{self, AdtDef, Instance, Ty, VariantDef};\n use rustc_middle::{bug, mir, span_bug};\n-use rustc_target::callco... | 2026-03-04T10:36:25 |
nodejs/node | 2c256d7123bf663f8db44b878df7faebfccc402a | 86421cf1fc97d9c757284c442801b96e15b23c0e | 2025-05-14, Version 24.0.2 (Current)
This is a security release.
Notable changes:
src:
* (CVE-2025-23166) fix error handling on async crypto operations
PR-URL: https://github.com/nodejs-private/node-private/pull/714 | [
{
"path": "CHANGELOG.md",
"patch": "@@ -40,7 +40,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.1\">24.0.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.2\">24.0.2</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.1\">2... | 2025-05-12T13:49:55 |
facebook/react | d0772d586650baa5cf5c676ab1092a075ffdf831 | 9927ab238bde0a2dcadc881e56d6a87208e93e45 | Bump axios from 1.7.1 to 1.7.4 in /compiler (#30694)
Bumps [axios](https://github.com/axios/axios) from 1.7.1 to 1.7.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.7.4</h2>
<h2>Releas... | [
{
"path": "compiler/yarn.lock",
"patch": "@@ -3679,9 +3679,9 @@ axe-core@^4.6.2:\n integrity sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==\n \n axios@^1.6.1:\n- version \"1.7.1\"\n- resolved \"https://registry.yarnpkg.com/axios/-/axios-1.7.1.tgz#52214562... | 2024-09-26T13:51:12 |
golang/go | 1099436f1b63560a0587dd4c5814edd13f80e577 | 41f5659347f9498ce81911032bb46537d923bdd7 | go/types, types2: change and enforce lifecycle of Named.fromRHS and Named.underlying fields
A type definition or alias declaration consists of a type name (LHS)
which is bound to a type expression (RHS) by the declaration.
This CL consistently uses the fromRHS fields of Named and Alias types
to represent that RHS typ... | [
{
"path": "src/cmd/compile/internal/types2/decl.go",
"patch": "@@ -476,7 +476,7 @@ func (check *Checker) isImportedConstraint(typ Type) bool {\n \tif named == nil || named.obj.pkg == check.pkg || named.obj.pkg == nil {\n \t\treturn false\n \t}\n-\tu, _ := named.under().(*Interface)\n+\tu, _ := named.Underly... | 2025-08-20T21:30:26 |
vercel/next.js | f6c2d4913233109ea49256e587db9b7ce636a1a5 | 9375bc3d568b4add57cbaa99e6feed5dd51c6eb6 | Turbopack: add task_id_details feature (#84970)
### What?
Add a bunch of feature flags that help debugging cases where it is loosing invalidations. | [
{
"path": "turbopack/crates/turbo-tasks-backend/Cargo.toml",
"patch": "@@ -24,6 +24,8 @@ trace_aggregation_update = []\n trace_find_and_schedule = []\n trace_task_completion = []\n trace_task_dirty = []\n+trace_task_output_dependencies = []\n+trace_task_details = []\n lmdb = [\"dep:lmdb-rkv\"]\n \n [depende... | 2025-11-14T11:14:19 |
electron/electron | 0d6743e79b230fda2ed80687bb927351c3a6f8a5 | 7a5e9613d2c990752ec99b2748403259526e76e5 | fix: destroy url loader wrapper when JS env exits (#44574)
* fix: destroy url loader wrapper when JS env exits
* Revert "fix: destroy url loader wrapper when JS env exits"
This reverts commit 419151a98a16814ea63e9abc197c6ae27f48128c.
* Revert "Revert "fix: destroy url loader wrapper when JS env exits""
Thi... | [
{
"path": "shell/common/api/electron_api_url_loader.cc",
"patch": "@@ -383,13 +383,13 @@ void SimpleURLLoaderWrapper::Start() {\n loader_->SetAllowHttpErrorResults(true);\n loader_->SetURLLoaderFactoryOptions(request_options_);\n loader_->SetOnResponseStartedCallback(base::BindOnce(\n- &SimpleURL... | 2024-11-19T16:32:48 |
facebook/react | 9927ab238bde0a2dcadc881e56d6a87208e93e45 | f8024b0686c87634b233262e8a05e4a37a292e87 | Bump rollup from 4.13.2 to 4.22.4 in /compiler (#31039)
Bumps [rollup](https://github.com/rollup/rollup) from 4.13.2 to 4.22.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rollup/rollup/releases">rollup's
releases</a>.</em></p>
<blockquote>
<h2>v4.22.4</h2>
<h2>4.... | [
{
"path": "compiler/package.json",
"patch": "@@ -43,7 +43,7 @@\n \"prettier\": \"^3.3.3\",\n \"prettier-plugin-hermes-parser\": \"^0.23.0\",\n \"prompt-promise\": \"^1.0.3\",\n- \"rollup\": \"^4.13.2\",\n+ \"rollup\": \"^4.22.4\",\n \"rollup-plugin-banner2\": \"^1.2.3\",\n \"rollup... | 2024-09-26T13:45:02 |
nodejs/node | 86421cf1fc97d9c757284c442801b96e15b23c0e | b1e9171a44174bf4b2ba6ee045d2af272d07af6d | 2025-05-14, Version 23.11.1 (Current)
This is a security release.
Notable changes:
src:
* (CVE-2025-23166) fix error handling on async crypto operations
PR-URL: https://github.com/nodejs-private/node-private/pull/708 | [
{
"path": "CHANGELOG.md",
"patch": "@@ -44,7 +44,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_V23.md#23.11.0\">23.11.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.11.1\">23.11.1... | 2025-05-07T14:28:39 |
vercel/next.js | 6863a2bb913b53e0623852eee474f3db5795d8d3 | 4050a8a3f745ce10f60bfcf33530d163fa20f1bb | Add build-time validation to detect ambiguous app routes (#85834)
## What
This PR introduces build-time validation to detect ambiguous app routes
that were previously going undetected until runtime.
## Why
Route conflicts could occur when different dynamic segment names (e.g.,
`[slug]` vs `[modalSlug]`) normalize t... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -907,5 +907,22 @@\n \"906\": \"Bindings not loaded yet, but they are being loaded, did you forget to await?\",\n \"907\": \"bindings not loaded yet. Either call `loadBindings` to wait for them to be available or ensure that `installBindings` has alrea... | 2025-11-14T05:28:23 |
electron/electron | 7a5e9613d2c990752ec99b2748403259526e76e5 | 9d1be5f824583a71261dfaad367a702611f5b2e0 | build: rework header generation in Node.js (#44657)
* build: rework header generation in Node.js
* build: fix patch location error
* fix: set --root-dir correctly | [
{
"path": "BUILD.gn",
"patch": "@@ -1504,21 +1504,8 @@ group(\"electron\") {\n ##### node_headers\n \n node_dir = \"../third_party/electron_node\"\n-node_files = read_file(\"$node_dir/filenames.json\", \"json\")\n node_headers_dir = \"$root_gen_dir/node_headers\"\n \n-header_group_index = 0\n-header_groups ... | 2024-11-19T15:57:38 |
facebook/react | f8024b0686c87634b233262e8a05e4a37a292e87 | d66fa02a303fc53d901bdb0d7bbdaec3e6774b19 | refactor: allow custom impl of backend realod-to-profile support check (#31048)
<!--
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-core/src/backend.js",
"patch": "@@ -13,7 +13,10 @@ import {installHook} from 'react-devtools-shared/src/hook';\n import {initBackend} from 'react-devtools-shared/src/backend';\n import {__DEBUG__} from 'react-devtools-shared/src/constants';\n import setupNativeStyleEditor ... | 2024-09-26T11:39:28 |
vercel/next.js | 35d6fdf074445854c0ac883cbd089eae2c158375 | 4e5915d4ed1624feb9836ade449be79d24812d48 | fix(nodejs-middleware): await for body cloning to be properly finalized (#85418)
Fixes https://github.com/vercel/next.js/issues/85416.
This is a follow up to https://github.com/vercel/next.js/pull/77662,
where the Node.js middleware was fixed to also support reading (and
duplicating) the body's request before being p... | [
{
"path": "packages/next/src/server/next-server.ts",
"patch": "@@ -1750,7 +1750,7 @@ export default class NextNodeServer extends BaseServer<\n })\n } finally {\n if (hasRequestBody) {\n- requestData.body.finalize()\n+ await requestData.body.finalize()\n }\n ... | 2025-11-14T02:11:21 |
electron/electron | 4b3d1caae40d5cd07cf0b0fff48680b7f5eb23a5 | 2cea2282eb7319c0922221e80945fd0ed33337e8 | fix: improve single-pixel resize handling on Windows (#44700)
Co-authored-by: Niklas Wenzel <dev@nikwen.de> | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -1661,18 +1661,28 @@ void NativeWindowViews::OnWidgetBoundsChanged(views::Widget* changed_widget,\n if (changed_widget != widget())\n return;\n \n- // |GetWindowBoundsInScreen| has a ~1 pixel margin of error, so if we check\n- // existin... | 2024-11-19T12:24:07 |
facebook/react | d66fa02a303fc53d901bdb0d7bbdaec3e6774b19 | 778e1ed2e5ec22d4bac48e14167d3b4a6b28e8b8 | fix: use public instance in Fiber renderer and expose it from getInspectorDataForViewAtPoint (#31068)
React DevTools no longer operates with just Fibers, it now builds its
own Shadow Tree, which represents the tree on the Host (Fabric on
Native, DOM on Web).
We have to keep track of public instances for a select-... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -763,16 +763,30 @@ const hostResourceToDevToolsInstanceMap: Map<\n Set<DevToolsInstance>,\n > = new Map();\n \n+// Ideally, this should be injected from Reconciler config\n function getPublicInstance(instance: HostInsta... | 2024-09-26T09:17:16 |
nodejs/node | b1e9171a44174bf4b2ba6ee045d2af272d07af6d | 1771cdfdcdfa1582a863ae1e11b642153eb34b62 | 2025-05-14, Version 22.15.1 'Jod' (LTS)
This is a security release.
Notable changes:
src:
* (CVE-2025-23166) fix error handling on async crypto operation
fs:
* (CVE-2025-23165) add missing call to uv\_fs\_req\_cleanup
PR-URL: https://github.com/nodejs-private/node-private/pull/712 | [
{
"path": "CHANGELOG.md",
"patch": "@@ -59,7 +59,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V23.md#23.0.0\">23.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.15.0\">22.15.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.15.1\">22.15.1... | 2025-05-07T20:37:13 |
golang/go | 27f9a6705c700d9075d4651cf9cff9cabbe4a47e | b68cebd809f1335b4504837337f5702406720432 | runtime: increase repeat count for alloc test
To make sure a single spurious alloc doesn't flake the test.
Fixes #75858
Change-Id: I055b37ad5668459bfa7ab1dac97025c997c68f1a
Reviewed-on: https://go-review.googlesource.com/c/go/+/712201
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccou... | [
{
"path": "src/runtime/iface_test.go",
"patch": "@@ -60,7 +60,7 @@ func TestCmpIfaceConcreteAlloc(t *testing.T) {\n \t\tt.Skip(\"skipping on non-gc compiler\")\n \t}\n \n-\tn := testing.AllocsPerRun(1, func() {\n+\tn := testing.AllocsPerRun(100, func() {\n \t\t_ = e == ts\n \t\t_ = i1 == ts\n \t\t_ = e == 1... | 2025-10-15T20:28:15 |
vercel/next.js | 9dc96c89e5e828ba97a4ee13827c3fddab59f7db | ef051ff3dc6824f4b784c9dd63148a683b2c7583 | Remove redundant example code for cacheLife docs (#86043)
Remove redundant example code for overriding cache profiles.
## For Contributors
### Improving Documentation
- Run `pnpm prettier-fix` to fix formatting issues before opening the
PR. ✅ (no changes)
- Read the Docs Contribution Guide to ensure your contributi... | [
{
"path": "docs/01-app/03-api-reference/04-functions/cacheLife.mdx",
"patch": "@@ -191,6 +191,7 @@ The example below shows how to override the default `\"days\"` cache profile:\n const nextConfig = {\n cacheComponents: true,\n cacheLife: {\n+ // Override the 'days' profile\n days: {\n stale... | 2025-11-13T20:39:08 |
electron/electron | febf305a4f77030ca46acc7cc7826acebe01c629 | 1cae73ba092ccf5620c5fce8b896bade3a601346 | chore: fix unsupported major comment in issue automation (#44706) | [
{
"path": ".github/workflows/issue-opened.yml",
"patch": "@@ -88,7 +88,7 @@ jobs:\n }\n }\n if (labels.length === 0) {\n- core.setOutput('No supported versions found', true);\n+ core.setOutput('unsupportedMajor', true);\n ... | 2024-11-19T09:52:08 |
facebook/react | 778e1ed2e5ec22d4bac48e14167d3b4a6b28e8b8 | 0f1856c49febe96923e469f98c0b123130ea015c | [Fiber] Fix missing render times when we cancel a pending commit (#31065) | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -3401,7 +3401,7 @@ export function suspendResource(\n }\n }\n \n-export function waitForCommitToBeReady(): null | (Function => Function) {\n+export function waitForCommitToBeReady(): null | ((() => void) => () => void)... | 2024-09-25T22:20:03 |
nodejs/node | 1771cdfdcdfa1582a863ae1e11b642153eb34b62 | 1ad8b05afb5a61db354148f2ff263b8ed5650a13 | 2025-05-14, Version 20.19.2 'Iron' (LTS)
This is a security release.
Notable changes:
src:
* (CVE-2025-23166) fix error handling on async crypto operation
deps:
* (CVE-2025-23167) (SEMVER-MAJOR) update llhttp to 9.2.0
fs:
* (CVE-2025-23165) add missing call to uv\_fs\_req\_cleanup
PR-URL: https://github.com/n... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -80,7 +80,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.1\">20.19.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.19.2\">20.19.2... | 2025-05-07T20:22:11 |
golang/go | b68cebd809f1335b4504837337f5702406720432 | f1fed742ebbe781611c9f78398d9fa233ad0a8e6 | net/http/httptest: record failed ResponseWriter writes
CL 709335 changed ResponseWriter.Write to return an error
when trying to write to a response with a status code which
doesn't permit a body, such as 304.
Continue to return an error, but still record the write in
ResponseWriter.Body. This maintains the documented... | [
{
"path": "src/net/http/httptest/recorder.go",
"patch": "@@ -105,28 +105,28 @@ func (rw *ResponseRecorder) writeHeader(b []byte, str string) {\n // Write implements http.ResponseWriter. The data in buf is written to\n // rw.Body, if not nil.\n func (rw *ResponseRecorder) Write(buf []byte) (int, error) {\n-\... | 2025-10-14T18:25:29 |
rust-lang/rust | e0829846cede092c09ddad33710cfedfaaab81a3 | bd1ba78364d1a07372acedbf7d5db487b2844a58 | Fix a stupid typo | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/lower.rs",
"patch": "@@ -1805,22 +1805,27 @@ fn resolve_type_param_assoc_type_shorthand(\n }\n AssocTypeShorthandResolution::Cycle => return AssocTypeShorthandResolution::Cycle,\n };\n+ let (assoc_typ... | 2026-03-09T10:28:02 |
vercel/next.js | ef051ff3dc6824f4b784c9dd63148a683b2c7583 | 3f239eea13dec92e55ab65ef641cb52e5abc111c | Update cookies.mdx (#86094)
delete is reserved word
<!-- 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 Contributor... | [
{
"path": "docs/01-app/03-api-reference/04-functions/cookies.mdx",
"patch": "@@ -229,8 +229,9 @@ Using the `delete()` method:\n \n import { cookies } from 'next/headers'\n \n-export async function delete(data) {\n- (await cookies()).delete('name')\n+export async function deleteCookie(data) {\n+ const cook... | 2025-11-13T20:20:14 |
facebook/react | f9ebd85a196948be17efdd6774b4d0464b3b1f53 | d2e9b9b4dc22639e2c51fb34e9388b9971ee3e27 | Increase nested update limit to 100 (#31061)
We're seeing the limit hit in some tests after enabling sibling
prerendering. Let's bump the limit so we can run more tests and gather
more signal on the changes. When we understand the scope of the problem
we can determine whether we need to change how the updates are c... | [
{
"path": "packages/react-dom/src/__tests__/ReactLegacyUpdates-test.js",
"patch": "@@ -1427,7 +1427,7 @@ describe('ReactLegacyUpdates', () => {\n }\n }\n \n- let limit = 55;\n+ let limit = 105;\n await expect(async () => {\n await act(() => {\n ReactDOM.render(<EventuallyTe... | 2024-09-25T15:50:41 |
electron/electron | 1cae73ba092ccf5620c5fce8b896bade3a601346 | 10d967028af2e72382d16b7e2025d243b9e204ae | chore: Revert "fix: utility process exit code for graceful termination" (#44717)
Revert "fix: utility process exit code for graceful termination (#44698)"
This reverts commit 36e1a0bf001d72f725297f43827d255b08c2e9b7. | [
{
"path": "patches/chromium/feat_enable_passing_exit_code_on_service_process_crash.patch",
"patch": "@@ -11,7 +11,7 @@ ServiceProcessHost::Observer functions, but we need to pass the exit code to\n the observer.\n \n diff --git a/content/browser/service_process_host_impl.cc b/content/browser/service_process... | 2024-11-19T04:13:23 |
nodejs/node | 1ad8b05afb5a61db354148f2ff263b8ed5650a13 | 373f2c583b43563fff21920d61061685ba4e6e08 | doc: fix CryptoKey.algorithm type and other interfaces in webcrypto.md
PR-URL: https://github.com/nodejs/node/pull/58294
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -2146,7 +2146,7 @@ added:\n \n <!--lint disable maximum-line-length remark-lint-->\n \n-* `algorithm`: {AlgorithmIdentifier|RsaHashedImportParams|EcKeyImportParams|HmacImportParams}\n+* `algorithm`: {string|Algorithm|RsaHashedImportParams|EcKeyImportParams|HmacImp... | 2025-05-14T19:44:31 |
rust-lang/rust | 4019a92ca82a480e31156c7ecf83e646989ebeb7 | 98e7077b903559d7a4fafb775cd5292cc9427b67 | Add new `rustc_errors::DiagDecorator` type | [
{
"path": "compiler/rustc_errors/src/diagnostic.rs",
"patch": "@@ -128,6 +128,17 @@ impl<'a> Diagnostic<'a, ()>\n }\n }\n \n+/// Type used to emit diagnostic through a closure instead of implementing the `Diagnostic` trait.\n+pub struct DiagDecorator<F: FnOnce(&mut Diag<'_, ()>)>(pub F);\n+\n+impl<'a, F... | 2026-03-07T17:39:39 |
golang/go | f1fed742ebbe781611c9f78398d9fa233ad0a8e6 | 0984dcd7572a90a1bd21bec98bd9c73fdcf983ab | cmd: fix three printf problems reported by newest vet
Change-Id: Id70985d217c940eb022dbc95bfaa20373672512c
Reviewed-on: https://go-review.googlesource.com/c/go/+/712220
Auto-Submit: Alan Donovan <adonovan@google.com>
TryBot-Bypass: Alan Donovan <adonovan@google.com>
Commit-Queue: Alan Donovan <adonovan@google.com>
Rev... | [
{
"path": "src/cmd/go/internal/modload/vendor.go",
"patch": "@@ -188,7 +188,7 @@ func checkVendorConsistency(loaderstate *State, indexes []*modFileIndex, modFile\n \t\t\t\t\t// However, we can at least detect a version mismatch if packages were\n \t\t\t\t\t// vendored from a non-matching version.\n \t\t\t\t... | 2025-10-15T20:28:03 |
vercel/next.js | 3f239eea13dec92e55ab65ef641cb52e5abc111c | 5e7a207bac65f6dcc5eb4ddb79968a992ca97350 | [devtool] highlight all link in error message (#86084) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/hot-linked-text/index.tsx",
"patch": "@@ -5,7 +5,7 @@ const linkRegex = /https?:\\/\\/[^\\s/$.?#].[^\\s)'\"]*/i\n \n export const HotlinkedText: React.FC<{\n text: string\n- matcher?: (text: string) => boolean\n+ matcher?: (text: string) ... | 2025-11-13T19:27:27 |
facebook/react | d2e9b9b4dc22639e2c51fb34e9388b9971ee3e27 | a15bbe14751287cb7ac124ff88f694d0883f3ac6 | React DevTools 5.3.1 -> 6.0.0 (#31058)
Full list of changes:
* refactor: data source for errors and warnings tracking is now in Store
([hoxyq](https://github.com/hoxyq) in
[#31010](https://github.com/facebook/react/pull/31010))
* fix: consider alternate as a key for componentLogsEntry when
inspecting raw fiber in... | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.3.1\",\n+ \"version\": \"6.0.0\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\... | 2024-09-25T13:38:34 |
electron/electron | 10d967028af2e72382d16b7e2025d243b9e204ae | aa7a5e6ca959a6a54b59ce9e4c11eb4ce482b8cb | docs: Make ipcRenderer and ipcMain listener API docs consistent (#44651)
* docs: Make ipcRenderer and ipcMain listener API docs consistent
* test: add some unit tests for ipcRenderer/ipcMain listener behavior
* fix: Mark on/off methods as primary and addListener/removeListener as aliases
* fix: clear all list... | [
{
"path": "docs/api/ipc-main.md",
"patch": "@@ -32,7 +32,7 @@ process, see [webContents.send][web-contents-send] for more information.\n \n ## Methods\n \n-The `ipcMain` module has the following method to listen for events:\n+The `ipcMain` module has the following methods to listen for events:\n \n ### `ipc... | 2024-11-18T22:44:30 |
rust-lang/rust | e63664773ceea6e9e7c4b405c79c951aa8725420 | 69370dc4a8862b8401615a2a7b950704ba66c495 | Move some ui tests
* Move dyn-drop to dyn-keyword
* Reorganize `tests/ui/empty` into specific dirs
remove tests/ui/empty/empty-linkname.rs duplicate of tests/ui/error-codes/E0454.rs
* Move `missing-trait-bounds` to `trait-bound/missing-trait-bounds`
* bless traits/missing-trait-bounds tests
* Move `recursion_limit` t... | [
{
"path": "src/tools/tidy/src/issues.txt",
"patch": "@@ -927,7 +927,6 @@ ui/dst/issue-90528-unsizing-suggestion-3.rs\n ui/dst/issue-90528-unsizing-suggestion-4.rs\n ui/dyn-keyword/issue-5153.rs\n ui/dyn-keyword/issue-56327-dyn-trait-in-macro-is-okay.rs\n-ui/empty/issue-37026.rs\n ui/enum-discriminant/auxili... | 2026-03-09T09:11:06 |
nodejs/node | 373f2c583b43563fff21920d61061685ba4e6e08 | f75c960dcc5e9516edd54ab84ed27bb725c17ed7 | doc: mark the callback argument of crypto.generatePrime as mandatory
The current documentation lists the `callback` argument of
`crypto.generatePrime` as optional (it's surrounded by square
brackets), but this is incorrect - calling the function without a
callback will result in an `ERR_INVALID_ARG_TYPE` error:
For t... | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -3900,7 +3900,7 @@ console.log(key.export().toString('hex')); // e89..........41e\n The size of a generated HMAC key should not exceed the block size of the\n underlying hash function. See [`crypto.createHmac()`][] for more information.\n \n-### `crypto.generateP... | 2025-05-14T19:17:46 |
facebook/react | a15bbe14751287cb7ac124ff88f694d0883f3ac6 | fc4a33eaa9c935ac860ab6043b95d55540068571 | refactor: data source for errors and warnings tracking is now in Store (#31010)
Stacked on https://github.com/facebook/react/pull/31009.
1. Instead of keeping `showInlineWarningsAndErrors` in `Settings`
context (which was removed in
https://github.com/facebook/react/pull/30610), `Store` will now have a
boolean f... | [
{
"path": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -2148,8 +2148,8 @@ describe('Store', () => {\n act(() => render(<React.Fragment />));\n });\n expect(store).toMatchInlineSnapshot(`[root]`);\n- expect(store.errorCount).toBe(0);\n- expect(store... | 2024-09-24T18:51:21 |
golang/go | 0984dcd7572a90a1bd21bec98bd9c73fdcf983ab | 31f82877e85a7e6c70b0104e704abfed622e345f | cmd/compile: fix an error in comments
Remove the redundant only.
Change-Id: I9cf2d84ae080a567ad45a2d0ef002c7c89395479
Reviewed-on: https://go-review.googlesource.com/c/go/+/711960
Auto-Submit: Robert Findley <rfindley@google.com>
Reviewed-by: Robert Griesemer <gri@google.com>
Reviewed-by: Robert Findley <rfindley@goo... | [
{
"path": "src/cmd/compile/internal/types2/instantiate.go",
"patch": "@@ -83,7 +83,7 @@ func Instantiate(ctxt *Context, orig Type, targs []Type, validate bool) (Type, e\n //\n // For Named types the resulting instance may be unexpanded.\n //\n-// check may be nil (when not type-checking syntax); pos is used... | 2025-10-15T02:27:16 |
electron/electron | aa7a5e6ca959a6a54b59ce9e4c11eb4ce482b8cb | 58dc990f7a725537b447c22862956ac6d711291d | docs: document why to use the loadBrowserProcessSpecificV8Snapshot fuse (#44680)
Fixes #44450 | [
{
"path": "docs/tutorial/fuses.md",
"patch": "@@ -68,6 +68,10 @@ The onlyLoadAppFromAsar fuse changes the search system that Electron uses to loc\n \n The loadBrowserProcessSpecificV8Snapshot fuse changes which V8 snapshot file is used for the browser process. By default Electron's processes will all use t... | 2024-11-18T22:36:41 |
vercel/next.js | 291aefd98555879833ece638b8643cb42f195b7d | 1f0322f23c5e11372e3ede029197e1635ff8cdc9 | Fix 404 responses for interception routes with missing children slots (#85779)
### What?
Introduces a null-rendering default component for interception routes to
prevent 404 responses when children slots are missing.
### Why?
When rendering interception routes like `(.)[id]`, there's a segment
mismatch where the in... | [
{
"path": "crates/next-core/src/app_structure.rs",
"patch": "@@ -1226,17 +1226,19 @@ async fn directory_tree_to_loader_tree_internal(\n \n if let Some(subtree) = subtree {\n if let Some(key) = parallel_route_key {\n- let is_inside_catchall = app_page.is_catchall();\n-\n ... | 2025-11-13T01:57:32 |
rust-lang/rust | 94acbebb088551e084bc77af64a818df6ec75248 | b41f22de2a13a0babd28771e96feef4c309f54aa | add test for proc-macros with custom panic payloads | [
{
"path": "tests/ui/proc-macro/any-panic-payload.rs",
"patch": "@@ -0,0 +1,17 @@\n+//! Make sure that proc-macros which panic with a payload other than\n+//! `String` or `&'static str` do not ICE.\n+//@ proc-macro: any-panic-payload.rs\n+\n+extern crate any_panic_payload;\n+\n+use any_panic_payload::*;\n+\n... | 2026-03-09T08:57:10 |
facebook/react | fc4a33eaa9c935ac860ab6043b95d55540068571 | 04bd67a4906d387ecdb8cbc798144dec2db811a5 | fix: consider alternate as a key for componentLogsEntry when inspecting raw fiber instance (#31009)
Related - https://github.com/facebook/react/pull/30899.
Looks like this was missed. We actually do this when we record errors
and warnings before sending them via Bridge:
https://github.com/facebook/react/blob/e4... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -1029,6 +1029,10 @@ export function attach(\n if (devtoolsInstance.kind === FIBER_INSTANCE) {\n const fiber = devtoolsInstance.data;\n componentLogsEntry = fiberToComponentLogsMap.get(fiber);\n+\n+ ... | 2024-09-24T16:49:19 |
nodejs/node | f75c960dcc5e9516edd54ab84ed27bb725c17ed7 | b1973550e09d5a2a07c70be5de6e3ae4722ad230 | doc: remove comma delimiter mention on permissions doc
PR-URL: https://github.com/nodejs/node/pull/58297
Fixes: https://github.com/nodejs/node/issues/58287
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewe... | [
{
"path": "doc/api/permissions.md",
"patch": "@@ -108,8 +108,8 @@ The valid arguments for both flags are:\n \n * `*` - To allow all `FileSystemRead` or `FileSystemWrite` operations,\n respectively.\n-* Paths delimited by comma (`,`) to allow only matching `FileSystemRead` or\n- `FileSystemWrite` operatio... | 2025-05-14T18:06:03 |
electron/electron | 58dc990f7a725537b447c22862956ac6d711291d | 36e1a0bf001d72f725297f43827d255b08c2e9b7 | chore: fix multi-version parsing in issue assignment (#44679)
* chore: fix multi-version parsing
* chore: tweak for review | [
{
"path": ".github/workflows/issue-opened.yml",
"patch": "@@ -57,34 +57,40 @@ jobs:\n \n const electronVersion = select('heading:has(> text[value=\"Electron Version\"]) + paragraph > text', tree)?.value.trim();\n if (electronVersion !== undefined) {\n- const major = semv... | 2024-11-18T20:25:20 |
golang/go | 31f82877e85a7e6c70b0104e704abfed622e345f | 6346349f5629a5767d2cd132f01092857a570bd2 | go/types, types2: fix misleading internal comment
See also the discussion in #75885.
Change-Id: Ieb964ea6ee51600c0c08ecba0af50a1deb209a4d
Reviewed-on: https://go-review.googlesource.com/c/go/+/712141
Reviewed-by: Mark Freeman <markfreeman@google.com>
Auto-Submit: Robert Griesemer <gri@google.com>
TryBot-Bypass: Rober... | [
{
"path": "src/cmd/compile/internal/types2/decl.go",
"patch": "@@ -575,11 +575,8 @@ func (check *Checker) typeDecl(obj *TypeName, tdecl *syntax.TypeDecl, def *TypeN\n \t\tnamed.underlying = Typ[Invalid]\n \t}\n \n-\t// Disallow a lone type parameter as the RHS of a type declaration (go.dev/issue/45639).\n-\... | 2025-10-15T18:27:17 |
vercel/next.js | 1f0322f23c5e11372e3ede029197e1635ff8cdc9 | 98b3c4679aae7a4c072b3beadeb3c7e4cfdeef04 | perf: revert to use the light safe stringify for is-error (#86053)
`is-error` is a helper that being used accorss client and server now, in
#84909 we switched the underlying safe stringify error implementation to
the precompiled dependency `safe-stable-stringify`. But it increased the
client bundle size a bit.
The ch... | [
{
"path": "packages/next/src/lib/is-error.ts",
"patch": "@@ -1,5 +1,4 @@\n import { isPlainObject } from '../shared/lib/is-plain-object'\n-import safeStringify from 'next/dist/compiled/safe-stable-stringify'\n \n // We allow some additional attached properties for Next.js errors\n export interface NextError... | 2025-11-13T01:14:46 |
facebook/react | 4708fb92c24bbc769acbc075de6105590fd29edc | 5b19dc0f06e92d3ed0aa93be3c5bbe2298da5df6 | Fix runtime_commit_artifacts workflow
I messed up the yml syntax and also realized that our script doesn't
currently handle renames or deletes, so I fixed that
ghstack-source-id: 7d481a951abaabd1a2985c8959d8acb7103ed12e
Pull Request resolved: https://github.com/facebook/react/pull/31028 | [
{
"path": ".github/workflows/runtime_commit_artifacts.yml",
"patch": "@@ -171,7 +171,7 @@ jobs:\n \n commit_www_artifacts:\n needs: download_artifacts\n- if: ${{ (github.ref == 'refs/heads/main' && needs.download_artifacts.outputs.www_branch_count == '0') || github.ref == 'refs/heads/meta-www' }}\n... | 2024-09-23T21:36:53 |
electron/electron | 36e1a0bf001d72f725297f43827d255b08c2e9b7 | d320840a54ec5bce9a066dad95c25ae9eb3e2780 | fix: utility process exit code for graceful termination (#44698) | [
{
"path": "patches/chromium/feat_enable_passing_exit_code_on_service_process_crash.patch",
"patch": "@@ -11,7 +11,7 @@ ServiceProcessHost::Observer functions, but we need to pass the exit code to\n the observer.\n \n diff --git a/content/browser/service_process_host_impl.cc b/content/browser/service_process... | 2024-11-18T14:57:06 |
golang/go | 6346349f5629a5767d2cd132f01092857a570bd2 | 284379cdfcbd6971f46616a3c66bf19e467fdf0d | cmd/compile: replace angle brackets with square
Caused Markdown rendering error on https://go.dev/src/cmd/compile/README in macOS (15.6.1) Safari (18.6).
Change-Id: Id71436d9a7bc7e461e522500d66df5dda7cd9f7f
GitHub-Last-Rev: 4e4447e163ac65e6c394807ec4874bc5ca26bb32
GitHub-Pull-Request: golang/go#75549
Reviewed-on: htt... | [
{
"path": "src/cmd/compile/README.md",
"patch": "@@ -289,9 +289,9 @@ dependencies, so is not suitable for distributed build systems.)\n ```\n After that, your edit/compile/test cycle can be similar to:\n ```\n- <... make edits to cmd/compile source ...>\n+ [... make edits to cmd/compile source ...]\... | 2025-09-20T21:36:14 |
nodejs/node | ae8a6de6095504878c053b828c155cd1b2b1e2f4 | 656bf7d0b8f69efd70595558ca1094b3f33af3d6 | watch: fix watch args not being properly filtered
currently when --watch is used, the argv arguments that
the target script receives are filtered so that they don't
include watch related arguments, however the current
filtering logic is incorrect and it causes some watch values
to incorrectly pass the filtering, the c... | [
{
"path": "lib/internal/main/watch_mode.js",
"patch": "@@ -43,11 +43,26 @@ const argsWithoutWatchOptions = [];\n \n for (let i = 0; i < process.execArgv.length; i++) {\n const arg = process.execArgv[i];\n- if (StringPrototypeStartsWith(arg, '--watch')) {\n- i++;\n- const nextArg = process.execArgv[... | 2025-05-13T13:52:46 |
vercel/next.js | 56fa9cd452be4daf63fcd5f778b0b8553b471dae | 26b95c3f0fa7226b3dd77a35b63fa0a4bf4f60d6 | Fix typo in documentation (#86054)
<!-- 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 D... | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/redirects.mdx",
"patch": "@@ -158,7 +158,7 @@ module.exports = {\n permanent: false,\n destination: '/another-page',\n },\n- // if the header `x-dont-redirect` is present,\n+ // if the header `x-do-not-redire... | 2025-11-12T20:31:13 |
facebook/react | 79bcf6eb23cd781bedbfccfe8d1507d18fd2c623 | 4e9540e3c2a8f9ae56318b967939c99b3a815190 | Fix missing trailing / in commit artifacts workflow
The trailing / was being omitted, so instead of moving the cjs
directory itself, it would move only its contents instead. This broke
some internal path assumptions.
Additionally, updates the step to create the react-dom directory prior
to moving.
ghstack-source-id:... | [
{
"path": ".github/workflows/runtime_commit_artifacts.yml",
"patch": "@@ -118,14 +118,14 @@ jobs:\n run: |\n BASE_FOLDER='compiled-rn/facebook-fbsource/xplat/js'\n mkdir -p ${BASE_FOLDER}/react-native-github/Libraries/Renderer/\n- mkdir -p ${BASE_FOLDER}/RKJSModules/vend... | 2024-09-23T18:58:05 |
rust-lang/rust | 0adea80424ab3af069c9e196da0ae75ae0147f99 | d4e76b7cb893ae3dfa6a128acc0d78726cdfcf55 | Fix other predicate for replace_is_method_with_if_let_method
- Fix parentheses for replace_is_method_with_if_let_method
Example
---
```rust
fn main() {
let x = Some(1);
if x.is_som$0e_and(predicate) {}
}
```
**Before this PR**
```rust
fn main() {
let x = Some(1);
if let Some(x1) = x {}
}
```
**Afte... | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/replace_is_method_with_if_let_method.rs",
"patch": "@@ -1,8 +1,11 @@\n use either::Either;\n use ide_db::syntax_helpers::suggest_name;\n-use syntax::ast::{self, AstNode, HasArgList, syntax_factory::SyntaxFactory};\n+use syntax::ast::{self, A... | 2026-03-09T03:43:54 |
electron/electron | dd50afa8c2d82f4a448bd66675fcde2d64642031 | 15ff999bdcda7f93d04991b131d1ea54a634498f | fix: `utilityProcess` pid should be `undefined` after exit (#44677)
fix: utilityProcess pid should be undefined after exit | [
{
"path": "docs/api/utility-process.md",
"patch": "@@ -92,6 +92,8 @@ the child process exits, then the value is `undefined` after the `exit` event is\n ```js\n const child = utilityProcess.fork(path.join(__dirname, 'test.js'))\n \n+console.log(child.pid) // undefined\n+\n child.on('spawn', () => {\n conso... | 2024-11-18T09:06:27 |
golang/go | 519ae514abace4551e0f99bf7da349a894b399b9 | b5a29cca486d26651e249c8395bc2df4a2d92d17 | cmd/compile: eliminate bound check for slices of the same length
If two slices start out with the same length and decrease in length by
the same amount on each round of the loop (or in the if block), then
we think their length are always equal.
For example:
if len(a) != len(b) {
return
}
for len(a) >= 4 {
a = a[4:... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -1240,6 +1240,173 @@ func (ft *factsTable) cleanup(f *Func) {\n \tf.Cache.freeBoolSlice(ft.recurseCheck)\n }\n \n+// addSlicesOfSameLen finds the slices that are in the same block and whose Op\n+// is OpPhi and always have the same length, then... | 2025-08-26T10:23:31 |
vercel/next.js | 26b95c3f0fa7226b3dd77a35b63fa0a4bf4f60d6 | cdf8f7959b0313799d64237e0d9d590e328f1028 | [ci]: fix retry_deploy_test workflow (#85981)
When we fixed deploy tests to consistently run with the explicitly
provided Next.js release version, it broke this job which was relying on
an explicit match on the "test e2e deploy canary" string. | [
{
"path": ".github/workflows/retry_deploy_test.yml",
"patch": "@@ -17,8 +17,8 @@ jobs:\n name: retry failed jobs\n # Retry the test-e2e-deploy-release workflow up to 2 times\n if: >-\n- ${{ \n- github.event.workflow_run.display_title == 'test-e2e-deploy canary' &&\n+ ${{\n+ ... | 2025-11-12T19:31:27 |
nodejs/node | e8c06a51d02b006376e08d71cade0b98e8e5a920 | a4e833ae17c738a6d891c9217551e7d638dab63e | doc: add puskin to collaborators
Fixes: https://github.com/nodejs/node/issues/58088
PR-URL: https://github.com/nodejs/node/pull/58308
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": ".mailmap",
"patch": "@@ -204,6 +204,7 @@ George Adams <gadams@microsoft.com> <george.adams@uk.ibm.com>\n Gerhard Stöbich <deb2001-github@yahoo.de>\n Gibson Fahnestock <gibfahn@gmail.com> <gib@uk.ibm.com>\n Gil Pedersen <git@gpost.dk> <github@gpost.dk>\n+Giovanni Bucci <github@puskin.it>\n Graham ... | 2025-05-13T09:30:33 |
facebook/react | 5d19e1c8d1a6c0b5cd7532d43b707191eaf105b7 | d4688dfaafe51a4cb6e3c51fc2330662cb4e2296 | Fix: profiling crashes #30661 #28838 (#31024)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please m... | [
{
"path": "packages/react-devtools-shared/src/devtools/ProfilerStore.js",
"patch": "@@ -289,6 +289,10 @@ export default class ProfilerStore extends EventEmitter<{\n };\n \n onProfilingStatus: (isProfiling: boolean) => void = isProfiling => {\n+ if (this._isProfiling === isProfiling) {\n+ return;... | 2024-09-23T12:25:44 |
electron/electron | 4fb5aab2ef1e928079dbc340f942afd54920a8cc | 27fe6cc97f4d40c3a74c58ed1de41c9766437192 | fix: revert required portal version for file chooser dialogs (#44426)
* feat: add support for configuring xdg portal version at runtime
* doc: update command-line-switches.md
* doc: update command-line-switches.md
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
* doc: required portal version fo... | [
{
"path": "docs/api/command-line-switches.md",
"patch": "@@ -241,6 +241,13 @@ Force using discrete GPU when there are multiple GPUs available.\n \n Force using integrated GPU when there are multiple GPUs available.\n \n+### --xdg-portal-required-version=`version`\n+\n+Sets the minimum required version of XD... | 2024-11-15T14:31:33 |
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.