repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
9d3f7fda70900c9d311df1eb4656fe9f6d62c781
78a05c541f7c5f7b89abac11cff0ff18b029cb47
crypto/tls: fix quic comment typo Change-Id: Ibd6b8d10ecac3cdea33de1218d516b7425443313 GitHub-Last-Rev: 3d5568ba087be71f21cf816c5edd9b8b8c629865 GitHub-Pull-Request: golang/go#75092 Reviewed-on: https://go-review.googlesource.com/c/go/+/697575 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservi...
[ { "path": "src/crypto/tls/quic.go", "patch": "@@ -221,7 +221,7 @@ func (q *QUICConn) NextEvent() QUICEvent {\n \tqs := q.conn.quic\n \tif last := qs.nextEvent - 1; last >= 0 && len(qs.events[last].Data) > 0 {\n \t\t// Write over some of the previous event's data,\n-\t\t// to catch callers erroniously retain...
2025-08-21T01:40:55
rust-lang/rust
3ecd18ca376b59e96db9b1daa8d14a4fe6856adc
1500f0f47f5fe8ddcd6528f6c6c031b210b4eac5
std: make `OsString::truncate` a no-op when `len > current_len` Align `OsString::truncate` (and the underlying WTF-8 implementation) with `String::truncate` by making it a no-op when `len > self.len()`. Previously, `OsString::truncate` would panic if `len > self.len()`, while `String::truncate` treats such cases as a...
[ { "path": "library/alloc/src/wtf8/mod.rs", "patch": "@@ -342,14 +342,18 @@ impl Wtf8Buf {\n \n /// Shortens a string to the specified length.\n ///\n+ /// If `new_len` is greater than the string's current length, this has no\n+ /// effect.\n+ ///\n /// # Panics\n ///\n- /// Panic...
2026-02-23T01:45:28
vercel/next.js
df6aed34f0726061bbac6971952df4d36a0a1f05
f9ca4b5ccd3b9c5ae08bbf14467cb7f85eb9f9af
fix(Turbopack): Add better error messaging for when we can't determine Next.js root (#83918) ## Improve error message when Next.js package can't be found ### What? Enhances the `get_next_package` function to provide a more informative error message when the Next.js package cannot be found from the context directory. ...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -69,7 +69,7 @@ use crate::{\n },\n utils::{\n DetachedVc, NapiDiagnostic, NapiIssue, RootTask, TurbopackResult, get_diagnostics,\n- get_issues, subscribe,\n+ get_issues, strongly_consistent_catch_...
2025-10-06T19:43:58
electron/electron
0a8eae9019bf586f7bf191627a435ee306f3b5ef
6cca75ac7658f551967bc1268b2b576d2357c28b
docs(autoUpdater): document static storage strategy (#42690) * docs: `autoUpdater` static storage strategy * summary must be followed by newline * lint: fix whitespace for code blocks * lint: `js` -> `javascript` * bump * `javascript` -> `js` * bump
[ { "path": "docs/tutorial/updates.md", "patch": "@@ -10,6 +10,114 @@ The easiest and officially supported one is taking advantage of the built-in\n [Squirrel](https://github.com/Squirrel) framework and\n Electron's [autoUpdater](../api/auto-updater.md) module.\n \n+## Using cloud object storage (serverless)\...
2024-07-02T17:06:38
nodejs/node
99ffe3555a2156f68d014853d7f1ce9d128f2004
5d8011d91c6a473ffab6545e5bff0a244e77724a
deps: V8: cherry-pick 0d5d6e71bbb0 Original commit message: Remove `--js-promise-withresolvers` runtime flag Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com> Bug: 42204122 Change-Id: I017a0d1ae0f8225513206ffb7806a4250be75d4c Reviewed-on: https://chromium-review.googlesource.com/c/v...
[ { "path": "common.gypi", "patch": "@@ -37,7 +37,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.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "...
2024-09-20T17:17:30
facebook/react
f827c792eac95badcbe501ab7d5798985f41c0e6
146df7c311831a1d5b35f3783dae4a7030638fcf
[DevTools] Add DevToolsInstance to Store Stateful Information (#30517) Stacked on #30494 and #30491. This is setting us up to be able to track Server Components. This is now split into a FiberInstance (Client Component) and a VirtualInstance (Server Component). We're not actually creating any VirtualInstances yet...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -7,6 +7,8 @@\n * @flow\n */\n \n+import type {ReactComponentInfo} from 'shared/ReactTypes';\n+\n import {\n ComponentFilterDisplayName,\n ComponentFilterElementType,\n@@ -131,6 +133,64 @@ import type {\n import type...
2024-07-30T19:15:45
rust-lang/rust
350a964d7ca480dcfcae58ea397f8886ce004e9d
d52424c4246d94ad16ba931cb2e7d2ae33ab41cd
Fix subdiagnostics that use non-local variables
[ { "path": "compiler/rustc_hir_analysis/src/errors.rs", "patch": "@@ -88,6 +88,8 @@ pub(crate) enum AssocItemNotFoundLabel<'a> {\n NotFound {\n #[primary_span]\n span: Span,\n+ assoc_ident: Ident,\n+ assoc_kind: &'static str,\n },\n #[label(\n \"there is {$id...
2026-02-27T15:22:47
golang/go
a076f497577605e4cf0e20c147711e03dee7b2c3
98238fd495a2a16a2cd90197c6f41352760e4ccb
os: fix Root.MkdirAll to handle race of directory creation No tests were added, because in order to reproduce, the directory would have to be created precisely between the rootOpenDir and mkdirat calls, which is impossible to do in a test. Fixes #75114 Change-Id: I6f86a5b33c87452c35728318eaf2169a7534ef37 Reviewed-on...
[ { "path": "src/os/root_openat.go", "patch": "@@ -131,7 +131,9 @@ func rootMkdirAll(r *Root, fullname string, perm FileMode) error {\n \t\t\tif try > 0 || !IsNotExist(err) {\n \t\t\t\treturn 0, &PathError{Op: \"openat\", Err: err}\n \t\t\t}\n-\t\t\tif err := mkdirat(parent, name, perm); err != nil {\n+\t\t\t...
2025-08-21T17:03:42
electron/electron
1729a9868c9ca0fe6f68400296e1efc6fda3efd1
8a8241163d4a802a7daeb21e53780f74d2e87cc2
fix: use `BlockedRequest` struct to handle `webRequest` data (#42647) Fixes an issue where Chromium could crash on a dangling unretained pointer in one of several webRequest functions. This was happening as a result of the fact that we had outstanding blocking requests continue to reference state owned by ProxyingWebs...
[ { "path": "shell/browser/api/electron_api_web_request.cc", "patch": "@@ -185,37 +185,41 @@ void FillDetails(gin_helper::Dictionary* details, Arg arg, Args... args) {\n FillDetails(details, args...);\n }\n \n-// Fill the native types with the result from the response object.\n-void ReadFromResponse(v8::Iso...
2024-07-02T12:02:49
nodejs/node
d85d2f835042a9fc890e4ed4beac123f628a2835
e8f55f7b7a9f5184f31b2b86fc8ea923e38229cd
deps: define V8_PRESERVE_MOST as no-op on Windows It's causing linker errors with node.lib in node-gyp and potentially breaks other 3rd party tools PR-URL: https://github.com/nodejs/node/pull/56238 Refs: https://github.com/nodejs/node/pull/55784 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M ...
[ { "path": "common.gypi", "patch": "@@ -37,7 +37,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.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "...
2024-12-16T10:11:22
rust-lang/rust
2e0fdc5c7fc2e054d3217452961953347493e7ca
0ee5907d597b02afadb5daa26a60fedb72f098d1
disable the fragment_in_final test on s390x on s390x 128bit types have a smaller alignment then on x86[^1]. This leads to the tests falling due to different errors emitted. As this affects the same infrastructure as #149056 lets also for now disable the tests on s390x. [^1]: s390x ELF ABI Table 1.1, Page 12 https://...
[ { "path": "tests/ui/consts/const-eval/ptr_fragments_in_final.rs", "patch": "@@ -1,4 +1,5 @@\n //! Test that we properly error when there is a pointer fragment in the final value.\n+//@ ignore-s390x different alignment on s390x make the test fail\n \n use std::{mem::{self, MaybeUninit}, ptr};\n ", "addit...
2026-02-27T10:48:00
facebook/react
f963c80d2179924380bcdd80e3c067df4a3e2ce3
41ecbada0e05f1dd40f8b94c6fa98dbdaabca211
[DevTools] Implement "best renderer" by taking the inner most matched node (#30494) Stacked on #30491. When going from DOM Node to select a component or highlight a component we find the nearest mounted ancestor. However, when multiple renderers are nested there can be multiple ancestors. The original fix #24665 ...
[ { "path": "packages/react-devtools-shared/src/__tests__/legacy/storeLegacy-v15-test.js", "patch": "@@ -905,7 +905,7 @@ describe('Store (legacy)', () => {\n [root]\n ▸ <Wrapper>\n `);\n- const deepestedNodeID = global.agent.getIDForNode(ref);\n+ const deepestedNodeID = g...
2024-07-30T18:57:26
golang/go
98238fd495a2a16a2cd90197c6f41352760e4ccb
1ad30844d9cc0d5792b055f44a6e98759587bbfb
all: delete remaining windows/arm code Fixes #43800 Updates #71671 Change-Id: Ib7aafe3a3f6ae48f23fa23f03103820e9fcf5161 Reviewed-on: https://go-review.googlesource.com/c/go/+/698415 Reviewed-by: Quim Muntal <quimmuntal@gmail.com> Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -1773,7 +1773,7 @@ func buildModeSupported(compiler, buildmode, goos, goarch string) bool {\n \t\t\t\"ios/amd64\", \"ios/arm64\",\n \t\t\t\"aix/ppc64\",\n \t\t\t\"openbsd/arm64\",\n-\t\t\t\"windows/386\", \"windows/amd64\", \"windows/arm\", \"windows/arm64\":\n...
2025-08-22T09:49:53
nodejs/node
e8f55f7b7a9f5184f31b2b86fc8ea923e38229cd
b3c1b63a5d1aa41a7791e09214b504217213f637
deps: always define V8_NODISCARD as no-op It's causing compiler errors with some classes on Xcode 11 and the attribute should have no runtime effect. PR-URL: https://github.com/nodejs/node/pull/54077 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Joyee Cheun...
[ { "path": "common.gypi", "patch": "@@ -37,7 +37,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.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "...
2024-08-08T04:53:41
rust-lang/rust
5904d42592f57c306648182814f6ed1cdb69abe1
bcefe60419b4ab93ccc9cd3e4703bd5ff1fce4c1
fix(doc_paragraphs_missing_punctuation): Trim emojis and picture symbols when looking for punctuation
[ { "path": "clippy_lints/src/doc/doc_paragraphs_missing_punctuation.rs", "patch": "@@ -94,17 +94,14 @@ fn is_missing_punctuation(doc_string: &str) -> Vec<MissingPunctuation> {\n Event::Code(..) | Event::Start(Tag::Link { .. }) | Event::End(TagEnd::Link)\n if no_report_depth == 0 &...
2026-02-05T13:07:47
facebook/react
41ecbada0e05f1dd40f8b94c6fa98dbdaabca211
ab7c1663131aa0f572f21ebd8575dddb7db1b372
Enable prettier for some blocklisted fixtures with invalid GraphQL (#30425) The invalid GraphQL in these fixtures somehow causes an unhandled promise rejection error when running `yarn prettier-all`. This fixes that issue by making the GraphQL valid.
[ { "path": ".prettierignore", "patch": "@@ -22,15 +22,6 @@ compiler/**/.next\n \n # contains invalid graphql`...` which results in a promise rejection error from `yarn prettier-all`.\n compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.todo-kitchensink.js\n-compiler/packages/...
2024-07-30T18:23:43
golang/go
1ad30844d9cc0d5792b055f44a6e98759587bbfb
13c082601db45c25fc85f4cdac9cc3bab7c4329f
cmd/asm: process forward jump to PCALIGN The forward jump target are not processed when the target is PCALIGN, so process it before emit nops for PCALIGN. Fixes #74648 Change-Id: I690fbfacf79e26d7a37628a2551729b2381616c5 Reviewed-on: https://go-review.googlesource.com/c/go/+/696915 LUCI-TryBot-Result: Go LUCI <golan...
[ { "path": "src/cmd/internal/obj/x86/asm6.go", "patch": "@@ -2120,19 +2120,6 @@ func span6(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\tc0 := c\n \t\t\tc = pjc.padJump(ctxt, s, p, c)\n \n-\t\t\tif p.As == obj.APCALIGN || p.As == obj.APCALIGNMAX {\n-\t\t\t\tv := obj.AlignmentPadding(c, p, ctx...
2025-08-18T11:27:46
electron/electron
8a8241163d4a802a7daeb21e53780f74d2e87cc2
14303a0a71cbd30d772e79209355db6f01dbd635
chore: bump chromium to 128.0.6558.0 (main) (#42413) * chore: bump chromium in DEPS to 127.0.6526.0 * chore: update network_service_allow_remote_certificate_verification_logic.patch manually apply patch due to minor upstream shear Xref: https://chromium-review.googlesource.com/c/chromium/src/+/5598454 * ch...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -544,7 +544,7 @@ step-fix-sync: &step-fix-sync\n fi\n \n # Make sure we are using the right ninja\n- echo 'infra/3pp/tools/ninja/${platform}' `gclient getdep --deps-file=src/DEPS -r 'src/third_party/ninja:infra/3pp/tools/ninja/${platform}'...
2024-07-02T07:51:33
vercel/next.js
86e006bd97269a64d6324ebd827ed33d4859e13b
8d7dfab1a980b85da182b4a0441090a5990c1d70
Turbopack: debug ids for server chunks (#84557) Looks like #84319 forgot to enable them for the server chunks
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1073,6 +1073,7 @@ impl Project {\n turbo_source_maps: self.next_config().server_source_maps(),\n no_mangling: self.no_mangling(),\n scope_hoisting: self.next_config().turbo_scope_hoisting(self.next_mode()),\n+ ...
2025-10-06T11:23:54
rust-lang/rust
54c505fff04763acc13f95acf7df73536228206b
1c00e989ca032d57e815e930fad00b61e65a1826
Fix ICE when macro-expanded extern crate shadows std
[ { "path": "compiler/rustc_resolve/src/imports.rs", "patch": "@@ -1048,7 +1048,9 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {\n message,\n } => {\n if no_ambiguity {\n- assert!(import.imported_module.get().is_none());\n+ if !self.i...
2026-02-27T13:54:10
nodejs/node
b3c1b63a5d1aa41a7791e09214b504217213f637
d0361f0bba20407f2da3641cab8faeddd30eb9b7
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> PR-URL: https://github.com/nodejs/node/pul...
[ { "path": "common.gypi", "patch": "@@ -37,7 +37,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.4',\n+ 'v8_embedder_string': '-node.5',\n \n ##### V8 defaults for Node.js #####\n "...
2024-05-28T07:10:52
facebook/react
ab7c1663131aa0f572f21ebd8575dddb7db1b372
73b21a05e34f0b1a6585fbf6db53dfc76acac768
[ci] Fix incorrect polling Oops. Actually poll correctly by fetching the latest workflow run each retry, and not just checking the first attempt. Test plan: https://github.com/facebook/react/actions/runs/10165564989 ghstack-source-id: 3202d8f6aeb1e1dead95d82a33c04dce80cd44b4 Pull Request resolved: https://github.com...
[ { "path": "scripts/release/shared-commands/download-build-artifacts.js", "patch": "@@ -87,11 +87,51 @@ async function getArtifact(workflowRunId, artifactName) {\n return artifact;\n }\n \n+async function processArtifact(artifact, releaseChannel) {\n+ // Download and extract artifact\n+ const cwd = join(...
2024-07-30T15:53:15
electron/electron
14303a0a71cbd30d772e79209355db6f01dbd635
2b5342cb495e9cd9a7f6dfc96ba095211ed364ae
docs: grammar fix in isBeingCaptured docs (#42692)
[ { "path": "docs/api/web-contents.md", "patch": "@@ -1566,7 +1566,7 @@ If you would like the page to stay hidden, you should ensure that `stayHidden` i\n #### `contents.isBeingCaptured()`\n \n Returns `boolean` - Whether this page is being captured. It returns true when the capturer count\n-is large then 0.\...
2024-07-01T19:01:27
golang/go
f7c6fa709e05830cad484422f04f2b123f54a3dc
7c84e984e675e44a2abc9aa25dd68cb9c9d08ec5
[dev.simd] simd/_gen/unify: fix some missing environments There were a couples places where we failed to provide a reasonable variable environment for YAML encoding. I think this only affects encoding "!repeat" nodes, which aren't common in practice and a bit of a disaster, which is how this went unnoticed. Change-Id...
[ { "path": "src/simd/_gen/unify/trace.go", "patch": "@@ -132,10 +132,12 @@ func (t *tracer) traceUnify(v, w *Value, e envSet) {\n \t\treturn\n \t}\n \n+\tt.enc.e = e // Interpret values w.r.t. e\n \tt.logf(\"Unify\\n%s\\nwith\\n%s\\nin\\n%s\",\n \t\tyamlf(\" \", t.enc.value(v)),\n \t\tyamlf(\" \", t.enc.va...
2025-08-21T13:28:32
vercel/next.js
6b427544cfc2c3e1d853bb1038c057b0b20f2e30
631dd719283af2ac6534f4f82d2b8b12b1d57d55
test: Use nextTestSetup in scss tests (#84501) This ensures the tests have some coverage for `next dev`, and ensures proper test isolation. Previously they were just using `__dirname`, which is wrong.
[ { "path": "test/e2e/app-dir/scss/invalid-global-with-app/invalid-global-with-app.test.ts", "patch": "@@ -1,29 +1,64 @@\n /* eslint-env jest */\n \n-import { remove } from 'fs-extra'\n-import { nextBuild } from 'next-test-utils'\n-import { join } from 'path'\n+import { isNextStart, nextTestSetup } from 'e2e-...
2025-10-06T09:43:01
nodejs/node
4f8fd566cc0af766f63f7bfbdd361258b22c5790
1142f78f1df5aa2f787a4f6d0dcf82daffd22bbf
deps: disable V8 concurrent sparkplug compilation It introduces process hangs on some platforms because Node.js doesn't tear down V8 correctly. Disable it while we work on a solution. Refs: https://github.com/nodejs/node/issues/47297 Refs: https://bugs.chromium.org/p/v8/issues/detail?id=13902 PR-URL: https://github.c...
[ { "path": "common.gypi", "patch": "@@ -37,7 +37,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 "...
2023-04-06T12:50:56
facebook/react
a7f3b49be2c0111757bec48e8ee0820c7495a2f9
927ba5799a506e5f10ee71b3df8f59296550d29f
[ci] Make some workflows dispatchable The previous checks for prerelease_commit_sha was incorrectly implemented for devtools regression tests so I fixed it. I also made some other workflows dispatchable so they can be manually run from GitHub's UI as needed. Test plan: https://github.com/facebook/react/actions/runs/1...
[ { "path": ".github/workflows/devtools_regression_tests.yml", "patch": "@@ -5,8 +5,9 @@ on:\n - cron: 0 0 * * *\n workflow_dispatch:\n inputs:\n- prerelease_commit_sha:\n+ commit_sha:\n required: false\n+ type: string\n \n env:\n TZ: /usr/share/zoneinfo/America/Los_Angele...
2024-07-30T15:53:14
vercel/next.js
c1728ed2a6a1caf9be1802718410ab85795ee19f
e974ca937b2ca0e5cacaa118027765d5a23c605c
Simplify Metadata components (#84527) Metadata and Viewport litter the component tree with a number of Next.js internal implementation details. We can't yet get rid of all of these but we can simplify by consolidating these components or eliminating them altogether. One change is to render the metadata as a promise t...
[ { "path": "packages/next/src/client/components/metadata/async-metadata.tsx", "patch": "@@ -1,33 +0,0 @@\n-'use client'\n-\n-import { Suspense, use } from 'react'\n-import type { StreamingMetadataResolvedState } from './types'\n-\n-function MetadataOutlet({\n- promise,\n-}: {\n- promise: Promise<StreamingM...
2025-10-06T00:41:02
electron/electron
e9a93a8c5ca723625ac5a95f5837a025e8e0a6a6
efff369639b459b89b8e241063e8f764fbf37f84
fix: setTopBrowserView focus issue with reordering (#42653) * fix: reorder top browser view instead of adding/removing * fix: update browserViews order * test: add a test for setTopBrowserView
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -232,7 +232,12 @@ BrowserWindow.prototype.getBrowserViews = function () {\n \n BrowserWindow.prototype.setTopBrowserView = function (browserView: BrowserView) {\n if (browserView.ownerWindow !== this) { throw new Error('Given BrowserView is not a...
2024-07-01T09:36:04
nodejs/node
51c8fbb68665b75ccbb588e220cdddf09b2892c1
7f18407d0fd243bfe7115dafae02b7a034c64130
inspector: fix GN build PR-URL: https://github.com/nodejs/node/pull/56798 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/inspector/unofficial.gni", "patch": "@@ -13,7 +13,7 @@ template(\"inspector_gn_build\") {\n }\n \n node_gen_dir = get_label_info(\"../..\", \"target_gen_dir\")\n- protocol_tool_path = \"../../tools/inspector_protocol\"\n+ protocol_tool_path = \"../../deps/inspector_protocol\"\n \n gyp...
2025-01-30T06:44:39
facebook/react
941e1b4a0a81ca3d5f2ac6ef35682e2f8e96dae1
9938e248feecc6410738cc905744836d6f78c7f8
[ci] Fix passing secrets to runtime_prereleases Second try, seems like you need to explicitly pass secrets to reusable workflows. ghstack-source-id: 05ffdae13474dba64119182bf72c15d07f83efd2 Pull Request resolved: https://github.com/facebook/react/pull/30504
[ { "path": ".github/workflows/runtime_prereleases.yml", "patch": "@@ -13,6 +13,9 @@ on:\n dist_tag:\n required: true\n type: string\n+ secrets:\n+ NPM_TOKEN:\n+ required: true\n \n env:\n TZ: /usr/share/zoneinfo/America/Los_Angeles", "additions": 3, "deletions":...
2024-07-29T18:15:20
electron/electron
3ac57e17d5437be555d0d58eefef455292185b38
398dde9dfbdfcfd7757ead9a30785c01de9f0808
build: fix clang format/lint (#42715) * build: fix clang format path * fix: use gclient sync instead of gclient runhooks Refs https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/5659261 * fix: use gclient sync instead of gclient runhooks in GHA --------- Co-authored-by: David Sanders...
[ { "path": ".circleci/config/jobs/lint.yml", "patch": "@@ -31,7 +31,7 @@ steps:\n mkdir -p src/buildtools\n curl -sL \"https://chromium.googlesource.com/chromium/src/+/${chromium_revision}/buildtools/DEPS?format=TEXT\" | base64 -d > src/buildtools/DEPS\n \n- gclient runhooks --spec=\"s...
2024-06-28T20:30:07
vercel/next.js
e974ca937b2ca0e5cacaa118027765d5a23c605c
7c0c2c6b86fe3bd44f205a2677f3622ba3fb8700
[test] Enable `reactDebugChannel` for experimental test shards (#84533) The experimental flag `reactDebugChannel` is currently off by default. To avoid regressions in the debug channel integration, we enable the flag for the experimental test shards.
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -702,6 +702,7 @@ jobs:\n afterBuild: |\n export __NEXT_EXPERIMENTAL_PPR=true # for compatibility with the existing tests\n export __NEXT_EXPERIMENTAL_CACHE_COMPONENTS=true\n+ export __NEXT_EXPERIMENTAL_DEBUG_CHANNEL=...
2025-10-05T23:48:09
nodejs/node
7f18407d0fd243bfe7115dafae02b7a034c64130
5557ce4aec8749bc079e092dea2696fe311535e3
doc: fix typo in cjs example of `util.styleText` `errorMessage` needs to be printed instead of `successMessage` in console.error(). ESM example is only fixed in previous PR. Refs: https://github.com/nodejs/node/pull/56720 PR-URL: https://github.com/nodejs/node/pull/56769 Reviewed-By: Ulises Gascón <ulisesgascongonzal...
[ { "path": "doc/api/util.md", "patch": "@@ -1988,7 +1988,7 @@ const errorMessage = styleText(\n // Validate if process.stderr has TTY\n { stream: stderr },\n );\n-console.error(successMessage);\n+console.error(errorMessage);\n ```\n \n `util.inspect.colors` also provides text formats such as `italic`, an...
2025-01-30T02:02:58
facebook/react
93b12b824c3cf13be75a7fb0581187fa2fb1f52c
4e482f490405c0c601d8712a0625fd17c04978e4
[ci] Fix prerelease script npm authtoken Try again to specify the npm token so the publish script can succeed. ghstack-source-id: cd6e01b2ea9b320d02975849703269f17de45bd4 Pull Request resolved: https://github.com/facebook/react/pull/30503
[ { "path": ".github/workflows/runtime_prereleases.yml", "patch": "@@ -16,6 +16,8 @@ on:\n \n env:\n TZ: /usr/share/zoneinfo/America/Los_Angeles\n+ GH_TOKEN: ${{ github.token }}\n+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}\n \n jobs:\n publish_prerelease:\n@@ -41,6 +43,3 @@ jobs:\n scripts/release/p...
2024-07-29T17:37:53
vercel/next.js
953b4c513990b4149faa27d687449ee72c68684f
665977f2c7b124ba2f1f132d6ba4e3793a2aea49
Fix potential race condition with request ID in dev mode (#84532) In development mode, the request ID needs to be available before the bootstrap script executes and triggers hydration. Previously, the request ID was set inline with the flight data stream in a script tag that was inserted after the bootstrap script, wh...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -2206,6 +2206,13 @@ async function renderToStream(\n page\n )\n \n+ // In development mode, set the request ID as a global variable, before the\n+ // bootstrap script is executed, which depends on it during hydration.\n+ c...
2025-10-05T12:40:24
electron/electron
ec24b518086826cf4b9d019ad833f64ddf992f6d
c628de52d97dacd2e5e770d649b22c979d234884
chore: bump node to v20.15.0 (main) (#42616) * chore: bump node in DEPS to v20.15.0 * doc: Add OpenSSL errors to API docs https://github.com/nodejs/node/pull/34213 * test: crypto-rsa-dsa testing for dynamic openssl https://github.com/nodejs/node/pull/52781 * src: allow preventing debug signal handler st...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '127.0.6521.0',\n 'node_version':\n- 'v20.14.0',\n+ 'v20.15.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2024-06-27T11:34:39
facebook/react
e215aa1160adc51b8f31788872c11468585d5cc8
e0acd77aab503e63a5c7cdba605ee33a71f752e8
[compiler] Fix FBT whitespace handling again (again (again)) ghstack-source-id: 00a86e41cfb8a6fb56b7fcd811740d1d9b89a611 Pull Request resolved: https://github.com/facebook/react/pull/30451
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -2113,10 +2113,10 @@ function lowerExpression(\n }\n props.push({kind: 'JsxAttribute', name: propName, place: value});\n }\n- if (\n- tag.kind === 'BuiltinTag' &&\n- (tag.name...
2024-07-26T21:36:04
nodejs/node
5557ce4aec8749bc079e092dea2696fe311535e3
82ac335bdd8dd0379a53ad5e18d26b87f6d1b748
readline: fix unresolved promise on abortion Fixes: https://github.com/nodejs/node/issues/53497 PR-URL: https://github.com/nodejs/node/pull/54030 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "lib/internal/readline/interface.js", "patch": "@@ -33,10 +33,13 @@ const {\n SymbolDispose,\n } = primordials;\n \n-const { codes: {\n- ERR_INVALID_ARG_VALUE,\n- ERR_USE_AFTER_CLOSE,\n-} } = require('internal/errors');\n+const {\n+ AbortError,\n+ codes: {\n+ ERR_INVALID_ARG_VALUE,\n+ ...
2024-07-25T02:01:26
golang/go
9de69f6913dc253ee8ce67043f543bedde28fdb4
4afd4828129d547719e8e71352c36e5117ddb50e
errors: mention Is/As in Join docs Fixes #74461 Change-Id: Ic1b1b2b43d59dd67f31c2388ca88650ee847ba93 Reviewed-on: https://go-review.googlesource.com/c/go/+/696737 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Carlos...
[ { "path": "src/errors/join.go", "patch": "@@ -16,6 +16,7 @@ import (\n // between each string.\n //\n // A non-nil error returned by Join implements the Unwrap() []error method.\n+// The errors may be inspected with [Is] and [As].\n func Join(errs ...error) error {\n \tn := 0\n \tfor _, err := range errs {"...
2025-08-17T13:03:37
electron/electron
c628de52d97dacd2e5e770d649b22c979d234884
2b31d8459dc4343b78efd082292f6b48e089a111
fix: `defaultPath` should apply on all dialog types in Linux Portal (#42655) fix: defaultPath should apply on all dialog types in Linux Portal dialogs
[ { "path": "patches/chromium/feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch", "patch": "@@ -8,6 +8,9 @@ This CL adds support for the following features to //shell_dialogs:\n * showHiddenFiles - Show hidden files in dialog.\n * showOverwriteConfirmation - Whether the user will be presente...
2024-06-27T09:07:26
vercel/next.js
c6d03456fd455189c4678286f9fe5875c342cbff
70a3ddd3364c9dbafa530ab3f4df91de88474be1
[ci]: remove test from segment cache manifest (#84507) These are passing independently of any fixes
[ { "path": "test/client-segment-cache-tests-manifest.json", "patch": "@@ -3,21 +3,14 @@\n \"suites\": {\n \"test/e2e/app-dir/actions/app-action-node-middleware.test.ts\": {\n \"failed\": [\n- \"app-dir action handling fetch actions should handle redirects to routes that provide an invalid ...
2025-10-04T00:59:55
facebook/react
a15e8d7cdc6289c8685588d2821cb7c904141e3e
28b7f0bb714e09119dd8f102a590d41eb6335952
[compiler][repro] Test fixture for fbt plural bug ghstack-source-id: 222e7312c081faf36702a1c790a4e336b5bcc928 Pull Request resolved: https://github.com/facebook/react/pull/30432
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/bug-multiple-fbt-plural.expect.md", "patch": "@@ -0,0 +1,110 @@\n+\n+## Input\n+\n+```javascript\n+import fbt from 'fbt';\n+\n+/**\n+ * Forget + fbt inconsistency. Evaluator errors with the following\n+ * Found di...
2024-07-26T21:36:03
nodejs/node
f19ae1417a48bf0924b3182578b7a22ecf726f97
7a4e9e62daca3419eb35d780451c33c9a75109db
src: add check for Bignum in GroupOrderSize I think it's missed, cause in this file we have example of checking result of BignumPointer::new Refs: https://github.com/nodejs/node/issues/56692 PR-URL: https://github.com/nodejs/node/pull/56702 Fixes: https://github.com/nodejs/node/issues/56692 Reviewed-By: James M Snell...
[ { "path": "src/crypto/crypto_ec.cc", "patch": "@@ -918,6 +918,7 @@ size_t GroupOrderSize(const EVPKeyPointer& key) {\n const EC_KEY* ec = key;\n CHECK_NOT_NULL(ec);\n auto order = BignumPointer::New();\n+ CHECK(order);\n CHECK(EC_GROUP_get_order(ECKeyPointer::GetGroup(ec), order.get(), nullptr));\n...
2025-01-29T15:21:30
electron/electron
2b31d8459dc4343b78efd082292f6b48e089a111
912706b23a785025ad92e96280480a6a2737155c
fix: param passed to `showSaveDialogSync` on Linux (#42652) fix: pass correct param to sync functions on Linux
[ { "path": "shell/browser/ui/file_dialog_linux.cc", "patch": "@@ -208,9 +208,6 @@ class FileChooserDialog : public ui::SelectFileDialog::Listener {\n \n bool ShowOpenDialogSync(const DialogSettings& settings,\n std::vector<base::FilePath>* paths) {\n- v8::Isolate* isolate = electron:...
2024-06-27T08:23:18
rust-lang/rust
6df216934cbf91fc7e268111eb58f990447ea959
3f9853562c73af38a5e6af8b0da1b2734a327e19
Fix LegacyKeyValueFormat report from docker build: aarch64-gnu-debug
[ { "path": "src/ci/docker/host-aarch64/aarch64-gnu-debug/Dockerfile", "patch": "@@ -29,19 +29,18 @@ RUN apt-get update && apt-get install -y --no-install-recommends \\\n COPY scripts/sccache.sh /scripts/\n RUN sh /scripts/sccache.sh\n \n-ENV RUSTBUILD_FORCE_CLANG_BASED_TESTS 1\n+ENV RUSTBUILD_FORCE_CLANG_BAS...
2026-02-25T21:12:55
golang/go
4afd4828129d547719e8e71352c36e5117ddb50e
509d5f647ffc413bd874c2e2bf6d1b33f9bc0ac2
cmd/go/internal/doc: pass URL fragments separately with -http Plumb URL fragments separately when invoking pkgsite so the `#` doesn't get %-encoded into the path. Fixes: #75088 Change-Id: I33814fc6a192dff3e4f3d0b9d81205056dddd438 Reviewed-on: https://go-review.googlesource.com/c/go/+/697435 Reviewed-by: Sean Liao <se...
[ { "path": "src/cmd/go/internal/doc/doc.go", "patch": "@@ -212,16 +212,16 @@ func do(writer io.Writer, flagSet *flag.FlagSet, args []string) (err error) {\n \t\t\tmod, err := runCmd(append(os.Environ(), \"GOWORK=off\"), \"go\", \"list\", \"-m\")\n \t\t\tif err == nil && mod != \"\" && mod != \"command-line-a...
2025-08-19T17:37:18
vercel/next.js
6a0718dc05df76b52c81799f3b1bd6f89bf848d2
cf9a7259b0bdc7317fa9588912b99045238c4eca
Turbopack: Use strongly consistent reads in `random_change` unit test (#84505) I can't reproduce it locally, but I've noticed this test flake a few times in CI. Use strongly consistent reads to hopefully fix that.
[ { "path": "turbopack/crates/turbo-tasks-backend/tests/random_change.rs", "patch": "@@ -3,24 +3,30 @@\n #![allow(clippy::needless_return)] // tokio macro-generated code doesn't respect this\n \n use anyhow::{Result, bail};\n-use rand::Rng;\n-use turbo_tasks::{State, Vc};\n+use rand::{Rng, SeedableRng, rngs::...
2025-10-03T22:51:08
facebook/react
39acfdb3be2c8bd1bc664a07e003bd50955295d9
03072a7a113b3f9554676f85ba4e9f77fddf3787
[ci] Fix ci prep script During params parsing for this script, it previously would call out to CircleCI for a build ID, but this is no longer needed. ghstack-source-id: 9c70824498382827306a1b18b86e319745ab18fd Pull Request resolved: https://github.com/facebook/react/pull/30499
[ { "path": "scripts/release/shared-commands/get-build-id-for-commit.js", "patch": "@@ -1,75 +0,0 @@\n-'use strict';\n-\n-const fetch = require('node-fetch');\n-\n-const POLLING_INTERVAL = 10 * 1000; // 10 seconds\n-const RETRY_TIMEOUT = 4 * 60 * 1000; // 4 minutes\n-\n-function wait(ms) {\n- return new Prom...
2024-07-29T16:55:35
nodejs/node
0edeafd73dd1c02c88b36282c1308901148d9d0e
671d058689b6151abdd78af5efda87ff79d2713e
inspector: fix StringUtil::CharacterCount for unicodes `StringUtil::CharacterCount` should return the length of underlying representation storage of a protocol string. `StringUtil::CharacterCount` is only used in DictionaryValue serialization. Only `Network.Headers` is an object type, represented with DictionaryValue...
[ { "path": "Makefile", "patch": "@@ -1474,6 +1474,8 @@ LINT_CPP_FILES = $(filter-out $(LINT_CPP_EXCLUDE), $(wildcard \\\n \tsrc/*/*.h \\\n \ttest/addons/*/*.cc \\\n \ttest/addons/*/*.h \\\n+\ttest/cctest/*/*.cc \\\n+\ttest/cctest/*/*.h \\\n \ttest/cctest/*.cc \\\n \ttest/cctest/*.h \\\n \ttest/embedding/*.cc...
2025-01-29T14:58:25
electron/electron
607b9b8f11a7349c1e27d84470602658d7ff9bc2
a8baa6f1ade18beeea36d064818cfa9de4ae1be4
build: clean up upload-index-json error handling (#42657)
[ { "path": "script/release/uploaders/upload-index-json.py", "patch": "@@ -15,8 +15,7 @@\n \n BASE_URL = 'https://electron-metadumper.herokuapp.com/?version='\n \n-version = sys.argv[1]\n-authToken = os.getenv('META_DUMPER_AUTH_HEADER')\n+AUTH_TOKEN = os.getenv('META_DUMPER_AUTH_HEADER')\n \n def is_json(myjs...
2024-06-26T16:25:58
rust-lang/rust
cde693cc5d74a132af8149585000fcfd6b1c4fbd
720020d67a9997ec5213286316cb02be633f6711
fix: Improve newline for make `match`, `if`, `while` etc - Remove unused `ast::make::match_arm_with_guard` Example --- ```rust fn main() { if true { $0if true && false { foo() } } } ``` **Before this PR** ```rust fn main() { if true { match true ...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/move_guard.rs", "patch": "@@ -567,7 +567,8 @@ fn main() {\n match 92 {\n x => if true\n && true\n- && true {\n+ && true\n+ {\n {\n false\n }", "...
2026-02-27T10:51:42
golang/go
509d5f647ffc413bd874c2e2bf6d1b33f9bc0ac2
853fc1273912b020e428c77d35e525c9225fd51e
internal/poll: don't call Seek for overlapped Windows handles Overlapped handles don't have the file pointer updated when performing I/O operations, so there is no need to call FD.Seek to reset the file pointer. Also, some overlapped file handles don't support seeking. See #74951. Fixes #74951. Change-Id: I0edd53be...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -622,12 +622,22 @@ func (fd *FD) Pread(b []byte, off int64) (int, error) {\n \n \tfd.l.Lock()\n \tdefer fd.l.Unlock()\n-\tcuroffset, err := syscall.Seek(fd.Sysfd, 0, io.SeekCurrent)\n-\tif err != nil {\n-\t\treturn 0, err\n+\tif fd.isBlocking {\n+\t\...
2025-08-19T11:00:02
electron/electron
3534923bd2fe933089f8672fbef88cda2bc4d9d8
66b8b7922961665481fb737e5af2f0cee9885939
build: account for `subjectAndDescription` null in patch linting (#42636) fix: account for subjectAndDescription null in patch linting
[ { "path": "script/lint.js", "patch": "@@ -252,8 +252,10 @@ const LINTERS = [{\n \n const allOk = filenames.length > 0 && filenames.map(f => {\n const patchText = fs.readFileSync(f, 'utf8');\n- const subjectAndDescription = /Subject: (.*?)\\n\\n([\\s\\S]*?)\\s*(?=diff)/ms.exec(patchText);\n- ...
2024-06-25T05:32:43
facebook/react
03072a7a113b3f9554676f85ba4e9f77fddf3787
a6b5ed01ae98a18507cb92d8e932a8ca321602e6
[ci] Fix prereleases reusable workflow Turns out I had configured the reusable workflow with the wrong `on` command. Also removes the workflow_dispatch config from the nightly workflow as that was not meant to be triggered manually. ghstack-source-id: 426d07279d1a2b106918fbf662d4c64e169f1ef7 Pull Request resolved: h...
[ { "path": ".github/workflows/runtime_prereleases.yml", "patch": "@@ -1,18 +1,15 @@\n name: (Runtime) Publish Prereleases\n \n on:\n- workflow_dispatch:\n+ workflow_call:\n inputs:\n commit_sha:\n required: true\n default: ''\n type: string\n release_channel:\n ...
2024-07-29T16:28:10
rust-lang/rust
1001c0e9d8251893f7bbecfadbe3863e0761404b
25396cf54981afd1fa5a7406658b45033106a0d3
Re-add #[inline] to Eq::assert_fields_are_eq Fixes a compile-time regressions, non-inline methods are generally codegen'd while inline methods are deferred (and this should never be called, so deferring is the right choice).
[ { "path": "compiler/rustc_builtin_macros/src/deriving/cmp/eq.rs", "patch": "@@ -32,6 +32,9 @@ pub(crate) fn expand_deriving_eq(\n nonself_args: vec![],\n ret_ty: Unit,\n attributes: thin_vec![\n+ // This method will never be called, so doing codegen etc. fo...
2026-02-26T23:00:10
golang/go
853fc1273912b020e428c77d35e525c9225fd51e
bd885401d5a4b45fee8ae37069be0cc3beef9e3e
internal/poll: set the correct file offset in FD.Seek for Windows overlapped handles Windows doesn't keep the file pointer for overlapped file handles. To work around this, we keep track of the current offset ourselves and use it on every Read/Write operation. When the user calls File.Seek with whence == io.SeekCurre...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -1107,6 +1107,12 @@ func (fd *FD) Seek(offset int64, whence int) (int64, error) {\n \tfd.l.Lock()\n \tdefer fd.l.Unlock()\n \n+\tif !fd.isBlocking && whence == io.SeekCurrent {\n+\t\t// Windows doesn't keep the file pointer for overlapped file handle...
2025-08-19T10:10:54
nodejs/node
f2001e3befef1bb0e469589ab03628d19b4134d8
b185d12a7e3e58119e5c61be534ff7fff13d8917
deps: update amaro to 0.3.1 PR-URL: https://github.com/nodejs/node/pull/56785 Fixes: https://github.com/nodejs/node/issues/56597 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "deps/amaro/dist/package.json", "patch": "@@ -4,7 +4,7 @@\n \"강동윤 <kdy1997.dev@gmail.com>\"\n ],\n \"description\": \"wasm module for swc\",\n- \"version\": \"1.10.7\",\n+ \"version\": \"1.10.11\",\n \"license\": \"Apache-2.0\",\n \"repository\": {\n \"type\": \"git\",", "add...
2025-01-29T13:50:28
vercel/next.js
95b167e77dba58078d4486aa18058299baa0cbf8
1c5a74063dce8225a7eaf92989b4a387e0ba82a9
[segment cache]: fix interception route handling (#84497) With `clientSegmentCache` enabled, if you are already on a route that was intercepted/could have been intercepted, and then you navigated to it again, the router would get stuck in a state where it was infinitely suspended on data it would never receive. When ...
[ { "path": "packages/next/src/server/app-render/walk-tree-with-flight-router-state.tsx", "patch": "@@ -16,10 +16,7 @@ import {\n } from './create-flight-router-state-from-loader-tree'\n import type { AppRenderContext } from './app-render'\n import { hasLoadingComponentInTree } from './has-loading-component-i...
2025-10-03T22:11:02
rust-lang/rust
287903328011e92558dd188029991ea2e8b646ce
720020d67a9997ec5213286316cb02be633f6711
fix: migrate to SyntaxEditor in generate_derive assist
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/generate_derive.rs", "patch": "@@ -1,7 +1,7 @@\n use syntax::{\n SyntaxKind::{ATTR, COMMENT, WHITESPACE},\n T,\n- ast::{self, AstNode, HasAttrs, edit::IndentLevel, make},\n+ ast::{self, AstNode, HasAttrs, edit::IndentLevel, syn...
2026-02-27T10:09:44
electron/electron
243be0a638f7ef848dbc448d8cac00f6857e1fa5
24d6c28b5ac0dff74eceb805b9a0144abe4f51a3
docs: fix typo in ASAR integrity docs (#42538) Fix typo in ASAR integrity docs
[ { "path": "docs/tutorial/asar-integrity.md", "patch": "@@ -125,7 +125,7 @@ in the form included below:\n ]\n ```\n \n-::: info\n+:::info\n \n For an implementation example, see [`src/resedit.ts`](https://github.com/electron/packager/blob/main/src/resedit.ts)\n in the Electron Packager code.", "additions...
2024-06-22T18:26:23
facebook/react
d17e9d1ce566276fc54a8ea27f4e9ea1fa434e62
b9af819f8b0e7f14200cfffe04da835b56f2f75d
[Fizz] Prerender fallbacks before children (#30483) When prerendering it can be convenient to abort the prerender while rendering. However if any Suspense fallbacks have not yet rendered before the abort happens the fallback itself will error and cause the nearest parent Suspense boundary to render a fallback inste...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzStatic-test.js", "patch": "@@ -335,4 +335,67 @@ describe('ReactDOMFizzStatic', () => {\n });\n expect(getVisibleChildren(container)).toEqual(undefined);\n });\n+\n+ // @gate experimental\n+ it('will prerender Suspense fallbacks before child...
2024-07-26T21:06:47
nodejs/node
e46f2c10392f95ce2d700a7728c693866f0e2ca3
a7f8b23642fffa6fb81322e38e6cbae806934fcb
tools: fix license-builder for inspector_protocol Refs: https://github.com/nodejs/node/pull/56649 PR-URL: https://github.com/nodejs/node/pull/56814 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "tools/license-builder.sh", "patch": "@@ -99,8 +99,8 @@ addlicense \"npm\" \"deps/npm\" \"$licenseText\"\n # Build tools\n licenseText=\"$(cat \"${rootdir}/tools/gyp/LICENSE\")\"\n addlicense \"GYP\" \"tools/gyp\" \"$licenseText\"\n-licenseText=\"$(cat \"${rootdir}/tools/inspector_protocol/LICENSE...
2025-01-29T13:33:55
vercel/next.js
cef891788c90925a7d99041656cca924ef95a916
7f25da71fb14753052244c11a5a0bbdf897eb450
simplify the way we check for turbopack config to ensure we support an empty turbopack object (#84494) Previously we 'flattened' all the keys in the config to find unsupported leaf properties, but this meant that an empty object woudln't produce any keys. instead just directly check for the `webpack` and `turbopack` ...
[ { "path": "packages/next/src/lib/turbopack-warning.ts", "patch": "@@ -42,9 +42,6 @@ const unsupportedTurbopackNextConfigOptions = [\n 'experimental.slowModuleDetection',\n ]\n \n-// The following will need to be supported by `next build --turbopack`\n-const unsupportedProductionSpecificTurbopackNextConfig...
2025-10-03T18:13:53
rust-lang/rust
8f25f8ca50bd22097b9af769cf1ab22fd82bf316
f02672cb8bffef88934d31d9044257a4d11e5d1f
fix comment about placeholders
[ { "path": "compiler/rustc_next_trait_solver/src/placeholder.rs", "patch": "@@ -32,8 +32,10 @@ where\n Infcx: InferCtxtLike<Interner = I>,\n I: Interner,\n {\n- /// Returns `Some` if we *were* able to replace bound vars. If there are any bound vars that\n- /// use a binding level above `univers...
2026-02-27T09:36:51
electron/electron
ba8ad4716b58bb84bca85282f4ccbbd19af828a5
37608933ae06e8d140317b191e2436dac3faf93a
feat: expose system preferences to utility process (#42203) * chore: expose system preferences to utility process * chore: add tests, doc changes and module-list update * relative link * use @ * fix test * chore: disable linux test * kick * noop on windows utility process
[ { "path": "docs/api/system-preferences.md", "patch": "@@ -2,7 +2,7 @@\n \n > Get system preferences.\n \n-Process: [Main](../glossary.md#main-process)\n+Process: [Main](../glossary.md#main-process), [Utility](../glossary.md#utility-process)\n \n ```js\n const { systemPreferences } = require('electron')", ...
2024-06-20T15:15:57
facebook/react
b9af819f8b0e7f14200cfffe04da835b56f2f75d
c00e895c190f42c6f476465f4be38a9c93c9a0d1
[ci] Fix invalid username and email in synthetic commit ghstack-source-id: 951d0ef445f945d2f0e12e4b6647543b3c4eee73 Pull Request resolved: https://github.com/facebook/react/pull/30486
[ { "path": ".github/workflows/runtime_commit_artifacts.yml", "patch": "@@ -230,8 +230,8 @@ jobs:\n \n DiffTrain build for [${{ github.event.workflow_run.head_sha }}](https://github.com/facebook/react/commit/${{ github.event.workflow_run.head_sha }})\n branch: builds/facebook-www\n- ...
2024-07-26T19:06:43
golang/go
119546ea4fdded79057913a943bd3b6a8dcf8d4a
ffa882059cfbfc7cd5f16c83d24775c08d63668f
cmd/go: document install outputs to $GOOS_$GOARCH when cross compiling Fixes #74979 Change-Id: I2a93e3a78c953418cf62d93db107b9c8d25e8ed2 Reviewed-on: https://go-review.googlesource.com/c/go/+/696755 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Carlos Amedee <c...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -758,6 +758,8 @@\n // variable, which defaults to $GOPATH/bin or $HOME/go/bin if the GOPATH\n // environment variable is not set. Executables in $GOROOT\n // are installed in $GOROOT/bin or $GOTOOLDIR instead of $GOBIN.\n+// Cross compiled binaries are install...
2025-08-17T11:46:13
nodejs/node
f4fba08d7b66e72b8a2a732197478f6cacbcd5d7
adf8e97401bb3f1bb0b9a7e7c20f163deac301a2
util: enforce shouldColorize in styleText array arg PR-URL: https://github.com/nodejs/node/pull/56722 Fixes: https://github.com/nodejs/node/issues/56717 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
[ { "path": "lib/util.js", "patch": "@@ -119,6 +119,7 @@ function styleText(format, text, { validateStream = true, stream = process.stdou\n validateString(text, 'text');\n validateBoolean(validateStream, 'options.validateStream');\n \n+ let skipColorize;\n if (validateStream) {\n if (\n !isRe...
2025-01-29T09:43:57
vercel/next.js
ce56f8aa918237fdf5fd391a8cbbc93782b6f727
ba5a0ca79944b4c8a59d80d677bfedaf0fef33d6
fix: Missing link in Lazy Loading docs (#84473) Add missing space before "Importing Client Components" in Lazy Loading /app docs. This fixes the missing link in "On this page" sidebar: <img width="1092" height="446" alt="image" src="https://github.com/user-attachments/assets/0981467d-ad61-494d-80b2-c0a0e323dd0b" /> ...
[ { "path": "docs/01-app/02-guides/lazy-loading.mdx", "patch": "@@ -24,6 +24,7 @@ By default, Server Components are automatically [code split](https://developer.m\n ## Examples\n \n <AppOnly>\n+\n ### Importing Client Components\n \n ```jsx filename=\"app/page.js\"", "additions": 1, "deletions": 0, ...
2025-10-03T13:59:01
electron/electron
37608933ae06e8d140317b191e2436dac3faf93a
edb939ae8052d7b7f981c1fdd8ab25397bcdce7d
fix: fetch-dependent interfaces in Web Workers (#42579)
[ { "path": "lib/worker/init.ts", "patch": "@@ -17,6 +17,14 @@ const { makeRequireFunction } = __non_webpack_require__('internal/modules/helper\n global.module = new Module('electron/js2c/worker_init');\n global.require = makeRequireFunction(global.module);\n \n+// See WebWorkerObserver::WorkerScriptReadyForE...
2024-06-20T15:01:50
nodejs/node
adf8e97401bb3f1bb0b9a7e7c20f163deac301a2
e346323109b49fa6b9a4705f4e3816fc3a30c151
test: mark `test-esm-loader-hooks-inspect-wait` flaky `test-esm-loader-hooks-inspect-wait` is occasionally crashing on more platforms than Linux. Mark the test as flaky on those platforms as well. PR-URL: https://github.com/nodejs/node/pull/56803 Refs: https://github.com/nodejs/node/issues/54346 Reviewed-By: Colin Ih...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -69,12 +69,20 @@ test-domain-no-error-handler-abort-on-uncaught-8: PASS, FLAKY\n test-domain-no-error-handler-abort-on-uncaught-9: PASS, FLAKY\n test-domain-throw-error-then-throw-from-uncaught-exception-handler: PASS, FLAKY\n test-domain-with-abort-on...
2025-01-29T09:14:45
vercel/next.js
09bdc4523e30a140f2006ac3d3f5d351be72a1ff
f8816b06794bdb8139abf0b472c944a97262a063
Turbopack: improve incremental build performance when deployment id changes (#84460) ### What? * avoid dependencies due to tracing * Avoid invalidating client chunking context when chunk_suffix_path changes * BrowserChunkingContext::chunk_path only depends on a selected subset of fields * select cross_origin field in...
[ { "path": "crates/next-api/src/middleware.rs", "patch": "@@ -157,14 +157,14 @@ impl MiddlewareEndpoint {\n parse_segment_config_from_source(*self.await?.source, ParseSegmentMode::Base).await?;\n let runtime = config.runtime.unwrap_or(NextRuntime::Edge);\n \n- let next_config = thi...
2025-10-03T08:44:17
golang/go
ffa882059cfbfc7cd5f16c83d24775c08d63668f
1f2e8e03e48597367e674138e26432345c685b1c
unique: deflake TestCanonMap/LoadOrStore/ConcurrentUnsharedKeys I do not know yet what's causing this flake, but I've debugged it enough to be confident that it's not a serious issue; it seems to be a test flake. There is some path through which the tree nodes or keys might still be transiently reachable, but I don't ...
[ { "path": "src/unique/canonmap_test.go", "patch": "@@ -108,6 +108,25 @@ func testCanonMap(t *testing.T, newMap func() *canonMap[string]) {\n \t\t\t\twg.Wait()\n \t\t\t}\n \n+\t\t\t// Run an extra GC cycle to de-flake. Sometimes the cleanups\n+\t\t\t// fail to run in time, despite drainCleanupQueue.\n+\t\t\t...
2025-08-19T19:29:55
electron/electron
003c32331d008e9d0707b6e6a8084615aa50de20
18abeb3add82eac62c72c39db2b4b87080bc69fb
chore: add/fix interface comments for sections of methods (#42566)
[ { "path": "shell/app/electron_main_delegate.h", "patch": "@@ -30,10 +30,9 @@ class ElectronMainDelegate : public content::ContentMainDelegate {\n ElectronMainDelegate(const ElectronMainDelegate&) = delete;\n ElectronMainDelegate& operator=(const ElectronMainDelegate&) = delete;\n \n- base::StringPiece ...
2024-06-20T08:49:07
nodejs/node
e6f1ddf33fc9a04f4ea88cf58819459b7634c278
f2d274753a2aeb6f185aaea11abb0b051a3ceea1
build: add build option suppress_all_error_on_warn Add an option to suppress cases where warnings are on by default Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: https://github.com/nodejs/node/pull/56647 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "common.gypi", "patch": "@@ -27,6 +27,7 @@\n \n 'clang%': 0,\n 'error_on_warn%': 'false',\n+ 'suppress_all_error_on_warn%': 'false',\n \n 'openssl_product': '<(STATIC_LIB_PREFIX)openssl<(STATIC_LIB_SUFFIX)',\n 'openssl_no_asm%': 0,", "additions": 1, "deletions": 0, "...
2025-01-17T19:54:00
golang/go
1f2e8e03e48597367e674138e26432345c685b1c
5024d0d884f8ca4fe74a861b5b20f6a3955762f2
os: fix path in MkdirTemp error message Fixes #75012 Change-Id: I9dd3ba8987bde9db93769a1b05d13b162ba5332d Reviewed-on: https://go-review.googlesource.com/c/go/+/696715 Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts...
[ { "path": "src/os/tempfile.go", "patch": "@@ -105,7 +105,7 @@ func MkdirTemp(dir, pattern string) (string, error) {\n \t\t\tif try++; try < 10000 {\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\treturn \"\", &PathError{Op: \"mkdirtemp\", Path: dir + string(PathSeparator) + prefix + \"*\" + suffix, Err: ErrExist}\n+\t...
2025-08-16T18:36:14
vercel/next.js
2d7852af99809b4041afe3ba82ad6246128e6bb4
b28eb8e075a5436bd85e612d996332ecec062a86
[ci]: fix app-static snapshots with clientSegmentCache (#84468) More things that are only broken because we assert on `.next` files. Updates snapshots and removes the failing tests from the clientSegmentCache manifest.
[ { "path": "test/client-segment-cache-tests-manifest.json", "patch": "@@ -38,16 +38,6 @@\n \"app dir - prefetching should not unintentionally modify the requested prefetch by escaping the uri encoded query params\"\n ]\n },\n- \"test/e2e/app-dir/app-static/app-static-custom-handler.test....
2025-10-02T21:42:40
rust-lang/rust
171dae6725c64b18b43d179b1df3a8903da119dd
70bf845cb2b07be5111d7992223ce98aaa1fd6cb
feat: migrate fix_visibility assist to SyntaxEditor
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/fix_visibility.rs", "patch": "@@ -2,7 +2,7 @@ use hir::{HasSource, HasVisibility, ModuleDef, PathResolution, ScopeDef, db::Hir\n use ide_db::FileId;\n use syntax::{\n AstNode, TextRange,\n- ast::{self, HasVisibility as _, edit_in_plac...
2026-02-25T22:23:38
golang/go
5024d0d884f8ca4fe74a861b5b20f6a3955762f2
b80ffb64d815596eb8882eaefa3e2d2920380634
cmd/compile: tweak example command in README While running ./src/all.bash, I got the following error: all.bash must be run from $GOROOT/src Change-Id: Iad271654ff8647501a324c282f01baf39605e3df GitHub-Last-Rev: 2e289babf1bc81c1a44c9a72a29659d8bf9d827b GitHub-Pull-Request: golang/go#75050 Reviewed-on: https://go-revie...
[ { "path": "src/cmd/compile/README.md", "patch": "@@ -281,11 +281,11 @@ dependencies, so is not suitable for distributed build systems.)\n ```\n $ go install golang.org/x/tools/cmd/toolstash@latest\n $ git clone https://go.googlesource.com/go\n- $ cd go\n+ $ export PATH=$PWD/go/bin:$PATH\n+ $ cd go/...
2025-08-19T15:47:29
electron/electron
dad6e130f500bbf478176211f3e1c012b082ea2b
8e8ea3ee8b0f45e8b28db3bb9eb77dcae0b37b1e
build: remove fs-extra devdep (#42533) * build: remove fs-extra dependency from script/gen-filenames.ts * build: remove fs-extra dependency from script/spec-runner.js * build: remove fs-extra dependency from script/gn-asar.js * build: remove fs-extra dependency from spec/api-autoupdater-darwin-spec.ts * bu...
[ { "path": "package.json", "patch": "@@ -19,7 +19,6 @@\n \"@types/chai-as-promised\": \"^7.1.3\",\n \"@types/dirty-chai\": \"^2.0.2\",\n \"@types/express\": \"^4.17.13\",\n- \"@types/fs-extra\": \"^9.0.1\",\n \"@types/minimist\": \"^1.2.0\",\n \"@types/mocha\": \"^7.0.2\",\n \"@typ...
2024-06-19T14:10:16
vercel/next.js
b28eb8e075a5436bd85e612d996332ecec062a86
5a4c295abd974b8655007cc599784099fe8988d1
[ci]: fix build-output-prerender to support segment cache env (#84467) These tests were only failing with segment cache because I added an env variable to test `clientSegmentCache` independently. This updates the snapshots.
[ { "path": "test/client-segment-cache-tests-manifest.json", "patch": "@@ -86,14 +86,6 @@\n \"failed\": [\n \"app dir - form prefetching should prefetch a loading state for the form's target\"\n ]\n- },\n- \"test/production/app-dir/build-output-prerender/build-output-prerender.test.t...
2025-10-02T21:40:31
facebook/react
c5f3a6f42f7f42bf179c8072d90bef8842f2ce99
0023cff8716a2672467fd5cabfc7e7f3e12f669d
[circleci] Remove build_and_test workflow Now that we've fully migrated the PR CI workflow (build_and_test) to GH, we can fully delete the workflow altogether. This will break https://react-builds.vercel.app/ unfortunately but I'll wait for acdlite to come back from vacation and work with him to fix it. The remaining...
[ { "path": ".circleci/config.yml", "patch": "@@ -48,40 +48,6 @@ parameters:\n default: ''\n \n jobs:\n- yarn_build:\n- docker: *docker\n- environment: *environment\n- parallelism: 40\n- steps:\n- - checkout\n- - setup_node_modules\n- - run: yarn build --ci=circleci\n- - p...
2024-07-26T15:55:31
electron/electron
8e8ea3ee8b0f45e8b28db3bb9eb77dcae0b37b1e
6d2c72b14eb7798c47cee5a254aeba2615a2d291
fix: MessagePort closing unexpectedly with non-cloneable objects (#42535) * fix: MessagePort closing unexpectedly with non-cloneable objects * fix: handle serialization failure in parentPort
[ { "path": "shell/browser/api/message_port.cc", "patch": "@@ -76,8 +76,11 @@ void MessagePort::PostMessage(gin::Arguments* args) {\n return;\n }\n \n- electron::SerializeV8Value(args->isolate(), message_value,\n- &transferable_message);\n+ if (!electron::SerializeV8Value(a...
2024-06-19T09:27:07
golang/go
c61db5ebd52a75af80da5afd2c2de3c6ddf080d2
07ee3bfc631cd6593c10b8715fc58b05d844f4ba
syscall: forkAndExecInChild1: don't reuse pid variable A named return variable pid is reused in a few places, and while the code is not wrong, it is somewhat confusing. This variable used to be called r1 before CL 456516 (which did the right thing, but slightly added to the confusion). Now, the code calling SYS_WRIT...
[ { "path": "src/syscall/exec_linux.go", "patch": "@@ -365,11 +365,11 @@ func forkAndExecInChild1(argv0 *byte, argv, envv []*byte, chroot, dir *byte, att\n \t\tif _, _, err1 = RawSyscall(SYS_CLOSE, uintptr(mapPipe[1]), 0, 0); err1 != 0 {\n \t\t\tgoto childerror\n \t\t}\n-\t\tpid, _, err1 = RawSyscall(SYS_READ...
2025-07-17T03:32:10
facebook/react
2883d28b2d6b62f8a887364662dac35848053476
417e93ca193e3a5d5a09ecef38be0862f8e90126
[ci] Unfork runtime_commit_artifacts Promotes v2 to the primary workflow file so that we don't double write to the protected branches. Note: this may break DiffTrain temporarily, I will fix forward if so ghstack-source-id: f6505a72f2edcf73aadf827d3a41e34d2a3227ba Pull Request resolved: https://github.com/facebook/re...
[ { "path": ".github/workflows/runtime_commit_artifacts.yml", "patch": "@@ -1,8 +1,11 @@\n-name: (Runtime) Commit Artifacts for Meta WWW and fbsource\n+name: (Runtime) Commit Artifacts for Meta WWW and fbsource V2\n \n on:\n- push:\n- branches: [main, meta-www, meta-fbsource]\n+ workflow_run:\n+ workf...
2024-07-26T15:24:11
rust-lang/rust
5218b85416f8480a17f0e08758de06dae794b9c1
bcefe60419b4ab93ccc9cd3e4703bd5ff1fce4c1
fix: `explicit_counter_loop` FP when the initializer is not integral
[ { "path": "clippy_lints/src/loops/explicit_counter_loop.rs", "patch": "@@ -28,72 +28,77 @@ pub(super) fn check<'tcx>(\n \n // For each candidate, check the parent block to see if\n // it's initialized to zero at the start of the loop.\n- if let Some(block) = get_enclosing_block(cx, expr.hir_id) {...
2026-02-27T02:21:32
vercel/next.js
5a4c295abd974b8655007cc599784099fe8988d1
c781f40bd149c7714f05906be171a79dc507eaed
[Cache Components] Dim logs after prerender aborts (#84153) When prerenders abort we reject hanging promises so resources can clean up. This can lead to user code which logs errors from rejections reporting many more errors than expected and these logs are for semantically irrelevant errors. To make it clearer that t...
[ { "path": ".vscode/settings.json", "patch": "@@ -62,7 +62,7 @@\n \"packages/next/src/server/app-render/dynamic-access-async-storage-instance.ts\",\n \"packages/next/src/server/app-render/work-async-storage-instance.ts\",\n \"packages/next/src/server/app-render/work-unit-async-storage-instance.ts...
2025-10-02T21:22:44
electron/electron
980e884fa5298c54ee65edcab0bdaa8a3b96c5aa
71338140a415441735376481e3fe6be3b5c27985
build: remove klaw dependency (#42529) * refactor: remove klaw dependency Node 20 added recursive readdir() so klaw is not needed * fixup! refactor: remove klaw dependency findMatchingFiles returns a Promise<string[]>
[ { "path": "package.json", "patch": "@@ -20,7 +20,6 @@\n \"@types/dirty-chai\": \"^2.0.2\",\n \"@types/express\": \"^4.17.13\",\n \"@types/fs-extra\": \"^9.0.1\",\n- \"@types/klaw\": \"^3.0.1\",\n \"@types/minimist\": \"^1.2.0\",\n \"@types/mocha\": \"^7.0.2\",\n \"@types/node\": \...
2024-06-18T22:54:26
golang/go
07ee3bfc631cd6593c10b8715fc58b05d844f4ba
5a56d8848b4ffb79c5ccc11ec6fa01823a91aaf8
cmd/go: use modern pprof flags in documentation This change updates our mentions of pprof flags so that we now refer to the modern flag names instead of the legacy ones. Fixes #74336. Change-Id: Ie8fbc7407178219b84ce5171fa5e94621129267e Reviewed-on: https://go-review.googlesource.com/c/go/+/689095 Reviewed-by: Micha...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -3231,8 +3231,8 @@\n //\n // Several of the flags control profiling and write an execution profile\n // suitable for \"go tool pprof\"; run \"go tool pprof -h\" for more\n-// information. The --alloc_space, --alloc_objects, and --show_bytes\n-// options of ppr...
2025-07-21T03:25:57
nodejs/node
0741d69f6df5ef2bc503d063b36e0ef80d37e7e3
efe698ee93f004694b05e2d37762c902354a6e55
test: remove duplicate error reporter from ci PR-URL: https://github.com/nodejs/node/pull/56739 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": ".github/workflows/build-tarball.yml", "patch": "@@ -105,4 +105,4 @@ jobs:\n - name: Test\n run: |\n cd $TAR_DIR\n- make run-ci -j4 V=1 TEST_CI_ARGS=\"-p dots --node-args='--test-reporter=./test/common/test-error-reporter.js' --measure-flakiness 9\"\n+ mak...
2025-01-28T16:41:52
facebook/react
7f217d1d88d3b628d97a714ce1573526080af47d
27d5dba8846c86858f72cf4c5b823aa3b92fcb0e
[Fiber] use srcset to trigger load even on img mount (#30351) In https://github.com/facebook/react/pull/23316 we fixed a bug where onload events were missed if they happened too early. This update adds support for srcset to retrigger the load event. Firefox unfortunately does not trigger a load even when you assign...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -692,8 +692,19 @@ export function commitMount(\n }\n return;\n case 'img': {\n+ // The technique here is to assign the src or srcSet property to cause the browser\n+ // to issue a new load event...
2024-07-25T22:46:45
rust-lang/rust
4b2e965f8e7c8bdc91f38820e140e3f9886a0ebd
bcefe60419b4ab93ccc9cd3e4703bd5ff1fce4c1
fix: `redundant_closure` suggests wrongly when local is derefed to callable
[ { "path": "clippy_lints/src/eta_reduction.rs", "patch": "@@ -216,6 +216,18 @@ fn check_closure<'tcx>(cx: &LateContext<'tcx>, outer_receiver: Option<&Expr<'tcx\n \"redundant closure\",\n |diag| {\n if let Some(mut snippet) = snippet_opt(cx, call...
2026-02-27T02:32:14
electron/electron
86cf60c3f1e7c992b7bf4269fc1eb2919890625d
e217b063a5c7306a719fe630941c67829263655c
chore: improve error message on failed SMApp register/unregister (#42526)
[ { "path": "shell/common/platform_util_mac.mm", "patch": "@@ -111,7 +111,7 @@\n return \"The specified path doesn't exist or the helper tool at the \"\n \"specified path isn't valid\";\n default:\n- return \"Failed to register the login item\";\n+ return base::SysNS...
2024-06-18T08:51:37
golang/go
5a56d8848b4ffb79c5ccc11ec6fa01823a91aaf8
c3927a47f092fc7248d973f4d8a64ab410804986
cmd/compile: ensure we use allowed registers for input-clobbering instructions For instructions which clobber their input register, we make a second copy of the input value so it is still available in a register for future instructions. That second copy might not respect the register input restrictions for the instru...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -1725,10 +1725,9 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\t\t\t// spilling the value with the most distant next use.\n \t\t\t\t\tcontinue\n \t\t\t\t}\n-\t\t\t\t// Copy input to a new clobberable register.\n+\t\t\t\t// Copy input...
2025-08-18T17:17:27
facebook/react
fe225e3a1fc3aefc97d5bc535aeae8ebae0666fb
0a76aecbfa3d493c6b97998d0444f6505f5e5365
[ci] Add devtools regression workflow More or less a straight copy from the circleci config. I spotted some inefficiencies but will fix those later to make reviewing this easier. ghstack-source-id: cb3456c602bf0bd3cb6ef5862ecac6b8d6e99e0b Pull Request resolved: https://github.com/facebook/react/pull/30406
[ { "path": ".github/workflows/devtools_regression_tests.yml", "patch": "@@ -0,0 +1,171 @@\n+name: (DevTools) Regression Tests\n+\n+on:\n+ schedule:\n+ - cron: 0 0 * * *\n+ workflow_dispatch:\n+ inputs:\n+ prerelease_commit_sha:\n+ required: false\n+\n+env:\n+ TZ: /usr/share/zoneinfo/Amer...
2024-07-25T21:20:16
nodejs/node
50d405a2b6db859fe5e0f67c71b0b706e89cd5f2
04f147b0245ac22fc983ddc7d9d0efd3ec69ee38
test: reduce number of written chunks Reduce chances of write errors while the request is sent. Refs: https://github.com/nodejs/node/pull/56756 PR-URL: https://github.com/nodejs/node/pull/56757 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Ste...
[ { "path": "test/parallel/test-http-server-headers-timeout-delayed-headers.js", "patch": "@@ -55,10 +55,12 @@ server.listen(0, common.mustCall(() => {\n \n sendDelayedRequestHeaders = common.mustCall(() => {\n setTimeout(() => {\n- client.write('POST / HTTP/1.1\\r\\n');\n- client.write('Conte...
2025-01-27T10:35:11
electron/electron
e217b063a5c7306a719fe630941c67829263655c
ae88e64c889945b3a521e69032c39781dd6b15fb
build: fix nan/node tests on GHA (#42548)
[ { "path": ".github/workflows/pipeline-segment-node-nan-test.yml", "patch": "@@ -53,7 +53,7 @@ jobs:\n uses: ./src/electron/.github/actions/install-build-tools\n - name: Init Build Tools\n run: |\n- e init --root=$(pwd) --out=Default ${{ inputs.gn-build-type }} --import ${{ inputs.gn-b...
2024-06-18T08:49:39
golang/go
c3927a47f092fc7248d973f4d8a64ab410804986
77f911e31c243a8302c086d64dbef340b0c999b8
runtime: fix comments in tracetype.go They seem to have been copy and pasted from tracestack.go without being updated. Change-Id: I6a6a69645a778fe8e6e8a2f4a80429f20e90162e Reviewed-on: https://go-review.googlesource.com/c/go/+/674215 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount...
[ { "path": "src/runtime/tracetype.go", "patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-// Trace stack table and acquisition.\n+// Trace type table.\n \n package runtime\n \n@@ -13,7 +13,7 @@ import (\n \t\"unsafe\"\n )...
2025-05-19T18:46:47
facebook/react
c5fa460784c41a2e09e9ed1c4468f4f089e2a78b
e8df0cf9f7c7f641192f19841db9bf34b6a0abf7
[compiler] Add tests for incorrect global mutation detection If a function expression that mutates a global is passed as a prop, we don't throw an error as we assume it's not called in render. But if this function expression is captured in an object and passed down as prop, we throw an error. ghstack-source-id: 74ca...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.object-capture-global-mutation.expect.md", "patch": "@@ -0,0 +1,33 @@\n+\n+## Input\n+\n+```javascript\n+function Foo() {\n+ const x = () => {\n+ window.href = 'foo';\n+ };\n+ const y = {x};\n+ return <Bar ...
2024-07-25T13:06:30