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 |
|---|---|---|---|---|---|
nodejs/node | 756a24242ed6dd99be7ccaed68346c3b9fd1bbea | c0953d9de72576bb9b748e575db19d093601e90a | build: remove explicit linker call to libm on macOS
/usr/lib/libm.tbd is available via libSystem.*.dylib and
reexports sanitizer symbols. When building for asan
this becomes an issue as the linker will resolve the symbols
from the system library rather from libclang_rt.*
For V8 that rely on specific version of these ... | [
{
"path": "deps/brotli/unofficial.gni",
"patch": "@@ -25,7 +25,7 @@ template(\"brotli_gn_build\") {\n } else if (target_os == \"freebsd\") {\n defines = [ \"OS_FREEBSD\" ]\n }\n- if (!is_win) {\n+ if (is_linux) {\n libs = [ \"m\" ]\n }\n if (is_clang || !is_win) {",
"ad... | 2025-02-03T12:44:36 |
electron/electron | bbd7f4a5ad6fbc6d88fcd6924eace4ad3f777d33 | 493bc3ac9d99b33ab87bed0c93d78ec4588d84af | fix: File System Access API should remember last picked directory (#42850) | [
{
"path": "shell/browser/file_system_access/file_system_access_permission_context.cc",
"patch": "@@ -12,6 +12,8 @@\n #include \"base/json/values_util.h\"\n #include \"base/path_service.h\"\n #include \"base/task/thread_pool.h\"\n+#include \"base/time/time.h\"\n+#include \"base/timer/timer.h\"\n #include \"b... | 2024-07-14T16:43:37 |
golang/go | 9d0829963ccab19093c37f21cfc35d019addc78a | ddce0522bee36764c3b9529b8584c3d5b53c5dac | net/http: fix cookie value of "" being interpreted as empty string.
In issue #46443, we have established that double-quotes in cookie values
should be kept as part of the value, rather than being discarded.
However, we have missed the edge case of "" until now. This CL fixes
said edge case.
Fixes #75244
Change-Id: I... | [
{
"path": "src/net/http/cookie.go",
"patch": "@@ -459,9 +459,6 @@ func sanitizeCookieName(n string) string {\n // See https://golang.org/issue/7243 for the discussion.\n func sanitizeCookieValue(v string, quoted bool) string {\n \tv = sanitizeOrWarn(\"Cookie.Value\", validCookieValueByte, v)\n-\tif len(v) =... | 2025-09-03T18:25:59 |
vercel/next.js | 29010ffdf40c9d0cd371a862e9aa72878528626b | 9c9e793bdc8de08453aa722da781a8646a4db0b6 | Update cases for build complete with adapters (#84361)
This handles `i18n` cases, ensures `pathname` field is prefixed with
`basePath` when configured, and fixes interop with `output: 'export'`
configured. | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -35,6 +35,8 @@ import {\n JSON_CONTENT_TYPE_HEADER,\n NEXT_RESUME_HEADER,\n } from '../../lib/constants'\n+import { normalizeLocalePath } from '../../shared/lib/i18n/normalize-locale-path'\n+import { addPathPrefix } from '../../... | 2025-10-07T21:59:01 |
facebook/react | 3d61b9b4cd4135084d1e8e3b05813b915c38764d | 22360089b5e40ccfa5df26f1ec491b5c46e7ad61 | [compiler] Stay in SSA form through entire pipeline
This PR updates to use SSA form through the entire compilation pipeline. This means that in both HIR form and ReactiveFunction form, `Identifier` instances map 1:1 to `IdentifierId` values. If two identifiers have the same IdentifierId, they are the same instance. Wh... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -77,7 +77,11 @@ import {flattenScopesWithHooksOrUseHIR} from '../ReactiveScopes/FlattenScopesWit\n import {pruneAlwaysInvalidatingScopes} from '../ReactiveScopes/PruneAlwaysInvalidatingScopes';\n import pruneI... | 2024-08-06T18:24:51 |
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 |
electron/electron | 493bc3ac9d99b33ab87bed0c93d78ec4588d84af | 3a6a20153429bf6b2712af91c970c56ea4d72173 | fix: `desktopCapturer` and `screen` display ids should match (#42883)
* fix: `desktopCapturer` and `screen` display IDs should match
* simplify wide-to-utf8 conversion
* remove unnecessary include | [
{
"path": "shell/browser/api/electron_api_desktop_capturer.cc",
"patch": "@@ -399,28 +399,37 @@ void DesktopCapturer::UpdateSourcesList(DesktopMediaList* list) {\n if (using_directx_capturer_) {\n std::vector<std::string> device_names;\n // Crucially, this list of device names will be in the... | 2024-07-14T07:51:57 |
golang/go | 00b8474e47a1f0381170734604a7ce8123d7146d | e36c5aead681d8264f1fac725f2a15c1ca2b895a | cmd/trace: don't filter events for profile by whether they have stack
Right now the profile-from-trace code blindly discards events that don't
have a stack, but this means it can discard 'end' events for goroutine
time ranges that don't have stacks, like when a goroutine exits a
syscall. This means we drop stack sampl... | [
{
"path": "src/cmd/trace/pprof.go",
"patch": "@@ -153,10 +153,6 @@ func makeComputePprofFunc(state trace.GoState, trackReason func(string) bool) co\n \t\t\tif ev.Kind() != trace.EventStateTransition {\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\tstack := ev.Stack()\n-\t\t\tif stack == trace.NoStack {\n-\t\t\t\tcont... | 2025-08-07T18:53:00 |
vercel/next.js | b0780f2ae236901bb57cae0b4cf4b48c01792845 | 640d7bc5097c2327d30f63a288d2afa2f488d518 | Turbopack: don't ignore TS parse errors (#84597)
`no_early_errors: true` was causing parse errors to be discarded.
For example with https://github.com/swc-project/swc/issues/11142 where there was a parse error (though it was a bug in this case), that left a `Invalid` AST node in the output, which only broke minificat... | [
{
"path": ".prettierignore",
"patch": "@@ -65,6 +65,7 @@ test/development/mcp-server/fixtures/default-template/app/build-error/page.tsx\n /turbopack/crates/turbopack-tests/tests/execution/turbopack/basic/error/input/broken.js\n /turbopack/crates/turbopack-tests/tests/execution/turbopack/exports/invalid-expo... | 2025-10-07T21:11:45 |
facebook/react | c9143b98d0096c909a2cc23290e3044c1390f6e2 | e8a2b47eb5d807a2da22915a6d444d3947c9a885 | [compiler] Refactor release script
Updates the release script to publish tags as well as take a `--ci`
option
Test plan:
```
$ yarn npm:publish --debug --frfr
yarn run v1.22.22
$ node scripts/release/publish --debug --frfr
ℹ Preparing to publish (for real) [debug=true]
ℹ Building packages
✔ Successfully built babel-... | [
{
"path": "compiler/package.json",
"patch": "@@ -25,9 +25,11 @@\n \"snap\": \"yarn workspace babel-plugin-react-compiler run snap\",\n \"snap:build\": \"yarn workspace snap run build\",\n \"postinstall\": \"perl -p -i -e 's/react\\\\.element/react.transitional.element/' packages/snap/node_module... | 2024-08-06T18:41:26 |
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 |
electron/electron | 3a6a20153429bf6b2712af91c970c56ea4d72173 | 53d7cca7a21c39f88cca177b6baec4ecd700c0db | build: fixup GHA running on fork PRs (#42880)
* chore: update build-tools for GHA
* chore: don't rely on environment variables for source cache location | [
{
"path": ".github/actions/install-build-tools/action.yml",
"patch": "@@ -6,6 +6,6 @@ runs:\n - name: Install Build Tools\n shell: bash\n run: |\n- export BUILD_TOOLS_SHA=47d4bb016f47d89938898c794db80b9f98d78ad7\n+ export BUILD_TOOLS_SHA=d5b87591842be19058e8d75d2c5b7f1fabe9f450\n n... | 2024-07-13T17:38:03 |
golang/go | e36c5aead681d8264f1fac725f2a15c1ca2b895a | 150fae714eb2bcf0a5fb216ac0e5c7fd76f37e02 | log/slog: add multiple handlers support for logger
Fixes #65954
Change-Id: Ib01c6f47126ce290108b20c07479c82ef17c427c
GitHub-Last-Rev: 34a36ea4bf099b2ad30f35e639155853ff73ef46
GitHub-Pull-Request: golang/go#74840
Reviewed-on: https://go-review.googlesource.com/c/go/+/692237
LUCI-TryBot-Result: Go LUCI <golang-scoped@l... | [
{
"path": "api/next/65954.txt",
"patch": "@@ -0,0 +1,6 @@\n+pkg log/slog, func NewMultiHandler(...Handler) *MultiHandler #65954\n+pkg log/slog, method (*MultiHandler) Enabled(context.Context, Level) bool #65954\n+pkg log/slog, method (*MultiHandler) Handle(context.Context, Record) error #65954\n+pkg log/slo... | 2025-08-27T14:27:31 |
facebook/react | e8a2b47eb5d807a2da22915a6d444d3947c9a885 | ff0d2621f4846414b134800b1639287b66df42cf | [compiler] Remove sleep in manual release script
I originally added this prior to the compiler being OSS'd as a "just in
case" feature to panic cancel if something went wrong. Now that the
compiler is already launched this is unnecessary.
ghstack-source-id: dd17dc8a331657ce23c0cbc012ba967cfc3b9542
Pull Request resolv... | [
{
"path": "compiler/scripts/release/publish-manual.js",
"patch": "@@ -11,7 +11,6 @@ const PUBLISHABLE_PACKAGES = [\n 'eslint-plugin-react-compiler',\n 'react-compiler-healthcheck',\n ];\n-const TIME_TO_RECONSIDER = 3_000;\n \n function _spawn(command, args, options, cb) {\n const child = cp.spawn(comm... | 2024-08-06T18:41:25 |
vercel/next.js | 0a02fd820edc2ec57f85c5c3f08b769291694256 | 82bb2558bec5ee4e136dffdbaf578a4c161027b5 | Turbopack: Remove workaround in hyper for rustc miscompilation bug on macos intel (#84578)
Reverts https://github.com/vercel/next.js/pull/81950
This bug was fixed a few months ago upstream in rustc with https://github.com/rust-lang/rust/pull/143126
We worked around this by patching the hyper crate since updating rus... | [
{
"path": "Cargo.lock",
"patch": "@@ -2831,19 +2831,22 @@ dependencies = [\n \n [[package]]\n name = \"hyper\"\n-version = \"1.6.0\"\n-source = \"git+https://github.com/bgw/hyper-rs.git?branch=v1.6.0-with-macos-intel-miscompilation-workaround#ab3544930722e6c270c16d3239dbb1d58f713393\"\n+version = \"1.7.0\"\... | 2025-10-07T17:56:12 |
electron/electron | 7dd6d7697d097363d30fc5a2fe491778b8fd97fa | 514e9bbb04c6daca135753365c5be559fdb4059d | chore: allow multiple OS selection on bug reports (#42854) | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -26,7 +26,8 @@ body:\n required: true\n - type: dropdown\n attributes:\n- label: What operating system are you using?\n+ label: What operating system(s) are you using?\n+ multiple: true\n options:\n - Windows\n - ... | 2024-07-11T20:23:43 |
vercel/next.js | 75b1ceff2fb29d78f7a8566124a877bc2b7386c2 | 316c06295ca33cd8c340a64722cf9019b980efbf | fix(cache-tags): add `/index` to implicit tags and adjust `revalidatePath()` (#84586)
This fixes an issue where the tag was `/` but the build output was
`/index` (and vice-versa) meaning you couldn't use `revalidatePath()` in
some cases because the tag didn't match.
---------
Co-authored-by: JJ Kasper <jj@jjsweb.sit... | [
{
"path": "packages/next/src/server/lib/implicit-tags.test.ts",
"patch": "@@ -0,0 +1,83 @@\n+import type { OpaqueFallbackRouteParams } from '../request/fallback-params'\n+import { getImplicitTags } from './implicit-tags'\n+\n+describe('getImplicitTags()', () => {\n+ it.each<{\n+ page: string\n+ url: ... | 2025-10-07T16:03:51 |
facebook/react | ff0d2621f4846414b134800b1639287b66df42cf | eb52f3788fe821427863ebe52fb6935ea7ec2474 | Fix rust lints
ghstack-source-id: baf433a98a70d9105c8088d82e04a3d96783e9e6
Pull Request resolved: https://github.com/facebook/react/pull/30616 | [
{
"path": "compiler/crates/react_hir/src/merge_consecutive_blocks.rs",
"patch": "@@ -151,6 +151,7 @@ impl MergedBlocks {\n \n #[derive(Debug, Error)]\n #[error(\"Expected predecessor {predecessor} to exist\")]\n+#[allow(dead_code)]\n pub struct ExpectedPredecessorToExist {\n predecessor: BlockId,\n }",
... | 2024-08-06T18:41:24 |
golang/go | b8cc907425c4b851d2b941cf689cf8177ea8a153 | 8c27a808905b0611b0a7b7bbff08819206be3b86 | cmd/internal/obj/loong64: fix the usage of offset in the instructions [X]VLDREPL.{B/H/W/D}
The previously defined usage of offset was ambiguous and not easy to understand.
For example, to fetch 4 bytes of data from the address base+8 and
broadcast it to each word element of vector register V5, the assembly
implementat... | [
{
"path": "src/cmd/asm/internal/asm/testdata/loong64enc1.s",
"patch": "@@ -538,13 +538,29 @@ lable2:\n \n \t// Load data from memory and broadcast to each element of a vector register: VMOVQ offset(Rj), <Vd>.<T>\n \tVMOVQ\t\t(R4), V0.B16\t// 80008030\n-\tVMOVQ\t\t1(R4), V1.H8\t// 81044030\n-\tVMOVQ\t\t2(... | 2025-08-29T08:20:16 |
nodejs/node | 4355b3f16294aaf456ed6b9f2fc05bb0d407d788 | 269496e8e166fbc06d6f3808a5863ce792de9f11 | crypto: fix X509* leak in --use-system-ca
The X509 structures are never freed. Use ncrypto::X509Pointer to
manage it automatically and move the X509* to PEM conversion into
a helper to be reused by integration in other systems.
PR-URL: https://github.com/nodejs/node/pull/56832
Reviewed-By: James M Snell <jasnell@gmai... | [
{
"path": "src/crypto/crypto_context.cc",
"patch": "@@ -35,6 +35,7 @@ using ncrypto::MarkPopErrorOnReturn;\n using ncrypto::SSLPointer;\n using ncrypto::StackOfX509;\n using ncrypto::X509Pointer;\n+using ncrypto::X509View;\n using v8::Array;\n using v8::ArrayBufferView;\n using v8::Boolean;\n@@ -255,6 +256,... | 2025-01-30T17:02:49 |
electron/electron | dab006b1cf78d9f34cb0acaedbe5ebac998cd819 | 4e10eeb87e8ad361ef497d3e40ab435d8504d4c9 | ci: fix Nan test failure on Linux (#42863)
ci: Nan test failure on Linux | [
{
"path": ".github/workflows/pipeline-segment-node-nan-test.yml",
"patch": "@@ -152,7 +152,7 @@ jobs:\n unzip -:o dist.zip\n - name: Setup Linux for Headless Testing\n run: sh -e /etc/init.d/xvfb start\n- - name: Run Node.js Tests\n+ - name: Run Nan Tests\n run: |\n cd ... | 2024-07-11T14:47:02 |
vercel/next.js | 316c06295ca33cd8c340a64722cf9019b980efbf | b5eba8ff916464232004fc914570365f9110296b | [dev] Define request ID for RSC requests on the client (#84605)
Previously, we defined a request ID for RSC requests on the server. The
request ID is used to tag debug information sent via WebSocket to the
client, which then routes those chunks to the debug channel associated
with this ID.
However, this meant that th... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -851,5 +851,6 @@\n \"850\": \"metadataBase is not a valid URL: %s\",\n \"851\": \"Pass either `webpack` or `turbopack`, not both.\",\n \"852\": \"Only custom servers can pass `webpack`, `turbo`, or `turbopack`.\",\n- \"853\": \"Turbopack build faile... | 2025-10-07T14:59:00 |
facebook/react | eb52f3788fe821427863ebe52fb6935ea7ec2474 | 187dd6a7a234095dfe67d3ee30dabfd5e2ddc531 | [CI] fix the shared_lint cached key (#30609)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please ma... | [
{
"path": ".github/workflows/shared_lint.yml",
"patch": "@@ -43,7 +43,7 @@ jobs:\n uses: actions/cache@v4\n with:\n path: \"**/node_modules\"\n- key: ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}\n+ key: ${{ runner.arch }}-${{ runner.os... | 2024-08-06T18:43:10 |
electron/electron | 4e10eeb87e8ad361ef497d3e40ab435d8504d4c9 | fa6ce4f0f886644e5bea79fcb619181dce48f47d | fix: `desktopCapturer` and `screen` source ids should match screen ids (#42781)
* fix: desktopCapturer screen source ids should match screen ids
* test: add a regression test | [
{
"path": "shell/browser/api/electron_api_desktop_capturer.cc",
"patch": "@@ -167,6 +167,16 @@ std::unique_ptr<ThumbnailCapturer> MakeScreenCapturer() {\n : nullptr;\n }\n \n+#if BUILDFLAG(IS_WIN)\n+BOOL CALLBACK EnumDisplayMonitorsCallback(HMONITOR monitor,\n+ ... | 2024-07-10T23:32:29 |
nodejs/node | 269496e8e166fbc06d6f3808a5863ce792de9f11 | d54641cd3883b3be116ea24e7b64744331f265a4 | src: improve error handling in encoding_binding.cc
PR-URL: https://github.com/nodejs/node/pull/56915
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Xuguang Mei <meixuguang@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "src/encoding_binding.cc",
"patch": "@@ -20,7 +20,6 @@ using v8::Context;\n using v8::FunctionCallbackInfo;\n using v8::Isolate;\n using v8::Local;\n-using v8::MaybeLocal;\n using v8::Object;\n using v8::ObjectTemplate;\n using v8::String;\n@@ -139,8 +138,7 @@ void BindingData::EncodeUtf8String(co... | 2025-02-06T16:12:42 |
golang/go | b7c20413c5b78b7dfc7f7de52f333a8ca85cd55b | df290384864c0b3cbb557ef11fc95a29d52f6aca | runtime: remove obsolete osArchInit function
The osArchInit function was introduced as a workaround for a Linux kernel bug
that corrupted vector registers on x86 CPUs during signal delivery.
The bug was introduced in Linux 5.2 and fixed in 5.3.15, 5.4.2, and all 5.5 and later kernels.
The fix was also back-ported by m... | [
{
"path": "src/runtime/os_freebsd_riscv64.go",
"patch": "@@ -1,7 +0,0 @@\n-// Copyright 2022 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-package runtime\n-\n-func osArchInit() {}",
"additions": 0,
... | 2025-09-03T14:15:06 |
facebook/react | c0ee8e94b049a8fb19dd3606a5a1cecc0cbc6a1b | 6750423ca4b9371363fbad1a2be2de84a8e94054 | Fix typos in Turbopack configuration and in Node.js loader error messages (#30593)
<!--
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.
Befor... | [
{
"path": "packages/react-server-dom-esm/src/ReactFlightESMNodeLoader.js",
"patch": "@@ -329,9 +329,9 @@ async function transformClientModule(\n newSrc +=\n 'throw new Error(' +\n JSON.stringify(\n- `Attempted to call the default export of ${url} from the server` +\n+ ... | 2024-08-05T14:11:39 |
vercel/next.js | b5eba8ff916464232004fc914570365f9110296b | 52a26cdb0ccb8c27d1c484aa22c46d2c9332890e | [Cache Components] Schedule work on timeouts (#84344)
Previously we used the immediate queue to schedule the consecutive tasks
that would prerender and abort and page prerender. This works fine but
since React does not consider immediates as IO for async work tracking
it means we can't use it for scheduling more advan... | [
{
"path": "packages/next/src/server/app-render/app-render-prerender-utils.ts",
"patch": "@@ -2,7 +2,7 @@ import { InvariantError } from '../../shared/lib/invariant-error'\n \n /**\n * This is a utility function to make scheduling sequential tasks that run back to back easier.\n- * We schedule on the same q... | 2025-10-07T14:16:07 |
electron/electron | fa6ce4f0f886644e5bea79fcb619181dce48f47d | f9d94211bb2ad2f96ed1c4fe8c457f3c5b4c4817 | fix: High Contrast mode not working on Windows (#42853)
Closes https://github.com/electron/electron/issues/42609
Refs https://chromium-review.googlesource.com/c/chromium/src/+/5324688
Refs https://chromium-review.googlesource.com/c/chromium/src/+/5368321 | [
{
"path": "shell/browser/electron_browser_client.cc",
"patch": "@@ -424,6 +424,7 @@ void ElectronBrowserClient::OverrideWebkitPrefs(\n renderer_prefs->can_accept_load_drops = false;\n \n ui::NativeTheme* native_theme = ui::NativeTheme::GetInstanceForNativeUi();\n+ prefs->in_forced_colors = native_theme... | 2024-07-10T22:14:02 |
nodejs/node | 436723282d64643fb3d1d91648c5f51bce8a077e | a08129cb0d8ff1df3ce45c3910cae1fc72aaf080 | doc: update post sec release process
PR-URL: https://github.com/nodejs/node/pull/56907
Fixes: https://github.com/nodejs-private/security-release/issues/52
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewe... | [
{
"path": "doc/contributing/security-release-process.md",
"patch": "@@ -156,14 +156,10 @@ security announcements for more information.\n \n ## Post-Release\n \n-* [ ] 1\\. **Merge the Next Security Release PR:**\n- * This involves moving the `vulnerabilities.json` file from\n- `security-release/next-sec... | 2025-02-05T19:48:05 |
golang/go | df290384864c0b3cbb557ef11fc95a29d52f6aca | 4373754bc990fc13b27ae823f977bc6328cc331e | cmd/compile/internal/ssa: load constant values from abi.PtrType.Elem
This CL makes the generated code for reflect.TypeFor as simple as an
intrinsic function.
Fixes #75203
Change-Id: I7bb48787101f07e77ab5c583292e834c28a028d6
Reviewed-on: https://go-review.googlesource.com/c/go/+/700336
LUCI-TryBot-Result: Go LUCI <go... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -2767,6 +2767,22 @@\n (Load <typ.Uintptr> (OffPtr [off] (ITab (IMake (Addr {s} sb) _))) _) && isFixedSym(s, off) => (Addr {fixedSym(b.Func, s, off)} sb)\n (Load <typ.Uintptr> (OffPtr [off] (ITab (IMake (Convert (Addr {s} ... | 2025-09-01T10:31:29 |
facebook/react | 8a70d31ba977a8cdbd8ae2146fdeb5b427bf4ff9 | 3af905d95448d582cbd62fe6d41bd976ce9787ea | [DevTools] Track DOM nodes to Fiber map for HostHoistable Resources (#30590)
Follow up from #30584.
You can already select a singleton or hoistable (that's not a resource)
in the browser elements panel and it'll select the corresponding node in
the RDT Components panel. That works because it uses the same mechani... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -696,6 +696,40 @@ const fiberToFiberInstanceMap: Map<Fiber, FiberInstance> = new Map();\n // operations that should be the same whether the current and work-in-progress Fiber is used.\n const idToDevToolsInstanceMap: Map<... | 2024-08-02T23:22:39 |
vercel/next.js | 21f72d3ff85d403f56899cf27e597b2f070c8b35 | 1da862828f4a9fccac2a2499d27f32cab4fd3882 | fix(cna): use correct postcss plugins syntax (#79949)
this updates all CNA templates to use the correct object syntax for
postcss plugins.
this was done previously in https://github.com/vercel/next.js/pull/77376
but only for the `--empty` CNA templates.
Co-authored-by: Tim Neutkens <tim@timneutkens.nl> | [
{
"path": "packages/create-next-app/templates/app-tw/js/postcss.config.mjs",
"patch": "@@ -1,5 +1,7 @@\n const config = {\n- plugins: [\"@tailwindcss/postcss\"],\n+ plugins: {\n+ \"@tailwindcss/postcss\": {},\n+ },\n };\n \n export default config;",
"additions": 3,
"deletions": 1,
"languag... | 2025-10-07T13:18:21 |
electron/electron | 170b72ccfacf4f46cc675fd5d246fd961699dde7 | e54ffdf7ed0d3961f87904247cc5393b14b57118 | ci: fix CircleCI config (#42829)
* ci: fix CircleCI config
* ci: fix syntax error | [
{
"path": ".circleci/config.yml",
"patch": "@@ -31,7 +31,6 @@ jobs:\n - path-filtering/set-parameters:\n base-revision: main\n mapping: |\n- ^((?!docs/).)*$ run-build-mac true\n ^((?!docs/).)*$ run-build-linux true\n docs/.* run-docs-only true\n ... | 2024-07-09T01:38:05 |
nodejs/node | a08129cb0d8ff1df3ce45c3910cae1fc72aaf080 | a5cc976254df818dc7dfbe23de00b386dbc1ed2f | src: improve error handling in permission.cc
PR-URL: https://github.com/nodejs/node/pull/56904
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Xuguang Mei <meixuguang@gmail.com> | [
{
"path": "src/permission/permission.cc",
"patch": "@@ -17,9 +17,9 @@ namespace node {\n \n using v8::Context;\n using v8::FunctionCallbackInfo;\n+using v8::IntegrityLevel;\n using v8::Local;\n using v8::MaybeLocal;\n-using v8::NewStringType;\n using v8::Object;\n using v8::String;\n using v8::Value;\n@@ -3... | 2025-02-03T15:50:39 |
golang/go | 80038586ed2814a03dcb95cd6f130766f8d803c3 | 91e76a513bdfa4159ea0aa65a01f89e006e6ead3 | cmd/compile: export to DWARF types only referenced through interfaces
Delve and viewcore use DWARF type DIEs to display and explore the
runtime value of interface variables.
This has always been slightly problematic since the runtime type of an
interface variable might only be reachable through interfaces and thus
be ... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -128,14 +128,29 @@ func Info(ctxt *obj.Link, fnsym *obj.LSym, infosym *obj.LSym, curfn obj.Func) (s\n \t// already referenced by a dwarf var, attach an R_USETYPE relocation to\n \t// the function symbol to insure that the type included in ... | 2025-08-18T13:49:50 |
facebook/react | 3af905d95448d582cbd62fe6d41bd976ce9787ea | aa8469fefbde17ab9d2e2cc06deb0a8f153bd005 | [compiler] Fix issue with macro arguments being outlined
Summary:
Fixes issue documented by #30435. We change the pipeline order so that outlining comes after tracking macro operands, and any function that is referenced in a macro will now not be outlined.
ghstack-source-id: f731ad65c8b84db3fc5f3a2ff3a6986112765963
P... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -56,7 +56,7 @@ import {\n flattenReactiveLoops,\n flattenScopesWithHooksOrUse,\n inferReactiveScopeVariables,\n- memoizeFbtOperandsInSameScope,\n+ memoizeFbtAndMacroOperandsInSameScope,\n mergeOverla... | 2024-08-02T21:55:54 |
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 |
vercel/next.js | 15edf7b9865a5ca887d5b9fc4908b7bc121827e8 | 1712abe192c2214919403b4076c17dc9032369c6 | fix hidden errors in router-act (#84603)
`createRouterAct` had a couple places where we create a promise via `new
Promise(async (resolve) => { ... })` without accounting for the fact
that some operations inside can throw, in which case the promise would
never resolve. Some tests that use `createRouterAct` like to hang... | [
{
"path": "test/e2e/app-dir/segment-cache/router-act.ts",
"patch": "@@ -159,7 +159,7 @@ export function createRouterAct(\n // `act` controls the timing of when responses reach the client,\n // but it should not affect the timing of when requests reach the\n // server; we ... | 2025-10-07T13:05:20 |
electron/electron | e9db02948e8c3b7f08dcfe4c6984009a2436cd9a | 27e3273f0ab1bdddb853bd780fb786c432f28d6e | fix: multiple move() calls on the same unique_ptr (#42788) | [
{
"path": "shell/browser/extensions/electron_extensions_browser_client.cc",
"patch": "@@ -343,13 +343,12 @@ void ElectronExtensionsBrowserClient::BroadcastEventToRenderers(\n return;\n }\n \n- auto event = std::make_unique<extensions::Event>(histogram_value, event_name,\n- ... | 2024-07-08T15:04:35 |
nodejs/node | a5cc976254df818dc7dfbe23de00b386dbc1ed2f | cebf4c8a9f23e5c15e005a96a4c968f2a074d305 | src: improve error handling in node_sqlite
PR-URL: https://github.com/nodejs/node/pull/56891
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -126,13 +126,15 @@ inline void THROW_ERR_SQLITE_ERROR(Isolate* isolate, int errcode) {\n const char* errstr = sqlite3_errstr(errcode);\n \n Environment* env = Environment::GetCurrent(isolate);\n- auto error = CreateSQLiteError(isolate, errstr).ToLocalChecked... | 2025-02-03T04:43:44 |
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 |
vercel/next.js | 1712abe192c2214919403b4076c17dc9032369c6 | 7453d200579512a6574f9c53edd716e5cc01615c | Guard `createDebugChannel` import by feature flag (#84604)
We already do that for the initial load in `app-index.tsx` (via #83699), and should also do it for RSC requests. | [
{
"path": "packages/next/src/client/components/router-reducer/fetch-server-response.ts",
"patch": "@@ -41,7 +41,10 @@ let createDebugChannel:\n | typeof import('../../dev/debug-channel').createDebugChannel\n | undefined\n \n-if (process.env.NODE_ENV !== 'production') {\n+if (\n+ process.env.NODE_ENV !=... | 2025-10-07T13:01:17 |
facebook/react | 1db4d6c41531579fa3a1a8dbcd69d0891d08201f | 8269d55d2325fc382b5e1cf120119130d11f2e94 | [compiler] Validate against setState in useMemo (resubmit of #30552)
ghstack failed to land #30552 properly, resubmitting
Developers sometimes use `useMemo()` as a way to conditionally execute code, including conditionally calling setState. However, the compiler may remove existing useMemo calls if they are not neces... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -127,11 +127,11 @@ export function* run(\n code,\n useMemoCacheIdentifier,\n );\n- yield {\n+ yield log({\n kind: 'debug',\n name: 'EnvironmentConfig',\n value: prettyFormat(env.config)... | 2024-08-02T16:53:27 |
golang/go | e8f9127d1f47ea9cf252237d387ea61d17651c3e | 731e54616686889146c579317c7d1715c85a8505 | net/netip: export Prefix.Compare, fix ordering
Fixes #61642
Co-authored-by: David Anderson <dave@natulte.net>
Change-Id: I54795763bdc5f62da469c2ae20618c36b64396f3
Reviewed-on: https://go-review.googlesource.com/c/go/+/700355
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Rev... | [
{
"path": "api/next/61642.txt",
"patch": "@@ -0,0 +1 @@\n+pkg net/netip, method (Prefix) Compare(Prefix) int #61642",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/net/netip/61642.md",
"patch": "@@ -0,0 +1 @@\n+The new [Prefix.Compa... | 2025-09-02T07:44:42 |
electron/electron | 5ff91159cdf0bd181967b09e1dc14f9524a266b3 | e89da2bad2f4c449903de1edc7b8655320a6dadc | fix: dangling raw_ptr ElectronBrowserContext::extension_system_ (#42785)
The extension system is freed by the DestroyBrowserContextServices()
call in the destructor, so we need to zero out the pointer to avoid
a dangling raw_ptr error. | [
{
"path": "shell/browser/electron_browser_context.cc",
"patch": "@@ -372,6 +372,10 @@ ElectronBrowserContext::ElectronBrowserContext(\n ElectronBrowserContext::~ElectronBrowserContext() {\n DCHECK_CURRENTLY_ON(BrowserThread::UI);\n NotifyWillBeDestroyed();\n+\n+ // the DestroyBrowserContextServices() c... | 2024-07-08T10:56:03 |
nodejs/node | cebf4c8a9f23e5c15e005a96a4c968f2a074d305 | 316014d1727360bff37c670087322ce16cf4b301 | sqlite: fix use-after-free in StatementSync due to premature GC
PR-URL: https://github.com/nodejs/node/pull/56840
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -535,7 +535,8 @@ void DatabaseSync::Prepare(const FunctionCallbackInfo<Value>& args) {\n sqlite3_stmt* s = nullptr;\n int r = sqlite3_prepare_v2(db->connection_, *sql, -1, &s, 0);\n CHECK_ERROR_OR_THROW(env->isolate(), db, r, SQLITE_OK, void());\n- BaseObj... | 2025-02-05T14:33:59 |
vercel/next.js | 7453d200579512a6574f9c53edd716e5cc01615c | c0a7c842563e3722dea30b00a1ac4fd0a18c6cbf | Turbopack: improve next/dynamic eventual consistentcy (#84560)
Use bail instead of panic to better recover from eventual consistency situations. | [
{
"path": "crates/next-api/src/dynamic_imports.rs",
"patch": "@@ -19,7 +19,7 @@\n //! to wait until all the dynamic components are being loaded, this ensures hydration mismatch\n //! won't occur\n \n-use anyhow::Result;\n+use anyhow::{Context, Result};\n use next_core::{\n next_app::ClientRefe... | 2025-10-07T10:03:24 |
facebook/react | 8269d55d2325fc382b5e1cf120119130d11f2e94 | 5fb67fa25c4ea8be046c6d9af41047f3cc379279 | chore[react-devtools]: add global for native and use it to fork backend implementation (#30533)
Adding `__IS_NATIVE__` global, which will be used for forking backend
implementation. Will only be set to `true` for `react-devtools-core`
package, which is used by `react-native`.
Ideally, we should name it `react-dev... | [
{
"path": ".eslintrc.js",
"patch": "@@ -496,6 +496,7 @@ module.exports = {\n __IS_CHROME__: 'readonly',\n __IS_FIREFOX__: 'readonly',\n __IS_EDGE__: 'readonly',\n+ __IS_NATIVE__: 'readonly',\n __IS_INTERNAL_VERSION__: 'readonly',\n },\n },",
"additions": ... | 2024-08-02T09:51:15 |
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 |
electron/electron | e89da2bad2f4c449903de1edc7b8655320a6dadc | cb2e7f130b66a58edba518605b371a35bd2761ee | fix: dangling raw_ptr<Session> in UserDataLink (#42786)
* fix: dangling raw_ptr<Session> in UserDataLink
* chore: make linter happy | [
{
"path": "shell/browser/api/electron_api_session.cc",
"patch": "@@ -530,9 +530,10 @@ class DictionaryObserver final : public SpellcheckCustomDictionary::Observer {\n #endif // BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)\n \n struct UserDataLink : base::SupportsUserData::Data {\n- explicit UserDataLink(Session... | 2024-07-08T10:55:48 |
nodejs/node | 8ac3055501da3fa82773a478ad33a59329a75ca6 | 95c04e23ab40d85da196ba77ab705bd42c919e1f | src: improve error handling in node_os by removing ToLocalChecked
PR-URL: https://github.com/nodejs/node/pull/56888
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com> | [
{
"path": "src/node_os.cc",
"patch": "@@ -50,6 +50,7 @@ using v8::Isolate;\n using v8::Local;\n using v8::LocalVector;\n using v8::MaybeLocal;\n+using v8::Name;\n using v8::NewStringType;\n using v8::Null;\n using v8::Number;\n@@ -71,8 +72,10 @@ static void GetHostname(const FunctionCallbackInfo<Value>& arg... | 2025-02-05T04:20:01 |
vercel/next.js | a29b4fa5c3f02c5a8f5a14050a1cdd7736a8bb30 | c0cd530ad8699b433a52c1459ef4d6c06de286ee | [MCP] Fix: Do not dedup by URL for MCP get_page_metadata (#84564)
The `get_page_metadata` MCP tool was incorrectly grouping browser
sessions by URL instead of counting each session individually. When
multiple browser tabs were open to the same URL, the tool would report
only 1 session instead of the actual number of s... | [
{
"path": "packages/next/src/server/mcp/tools/get-page-metadata.ts",
"patch": "@@ -59,16 +59,17 @@ export function registerGetPageMetadataTool(\n }\n }\n \n- const metadataByUrl = new Map<string, PageMetadata>()\n+ const sessionMetadata: Array<{ url: string; metadata: PageMet... | 2025-10-07T03:26:04 |
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 |
facebook/react | 4ea12a11d1848c1398f9a8babcfbcd51e150f1d9 | 88ee14ffa57beb0689f26f0c52c357e3ac446af8 | [DevTools] Make Element Inspection Feel Snappy (#30555)
There's two problems. The biggest one is that it turns out that Chrome
is throttling looping timers that we're using both while polling and for
batching bridge traffic. This means that bridge traffic a lot of the
time just slows down to 1 second at a time. No ... | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -117,12 +117,11 @@ describe('InspectedElement', () => {\n <SettingsContextController>\n <TreeContextController\n defaultSelectedElementID={defaultSelectedElementID}\n- def... | 2024-08-01T15:04:56 |
nodejs/node | 95c04e23ab40d85da196ba77ab705bd42c919e1f | 6aa42f9cf045e31d5b9ac6c404ed722710ad7a8c | src: improve error handling in node_url
Eliminate uses of USE and ToLocalChecked to properly
propagate errors
PR-URL: https://github.com/nodejs/node/pull/56886
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-B... | [
{
"path": "src/node_url.cc",
"patch": "@@ -26,17 +26,17 @@ using v8::FunctionCallbackInfo;\n using v8::HandleScope;\n using v8::Isolate;\n using v8::Local;\n-using v8::NewStringType;\n using v8::Object;\n using v8::ObjectTemplate;\n+using v8::SnapshotCreator;\n using v8::String;\n using v8::Value;\n \n void... | 2025-02-05T03:47:55 |
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 | cb2e7f130b66a58edba518605b371a35bd2761ee | 2f4a46f47a4d284ed2748c539bfaf10482908713 | fix: potentially closed webContents in BrowserView (#42633) | [
{
"path": "lib/browser/api/browser-view.ts",
"patch": "@@ -4,6 +4,9 @@ const v8Util = process._linkedBinding('electron_common_v8_util');\n \n export default class BrowserView {\n #webContentsView: WebContentsView;\n+ #ownerWindow: BrowserWindow | null = null;\n+\n+ #destroyListener: ((e: any) => void) |... | 2024-07-08T10:13:53 |
facebook/react | a7d1240c962d2fdeac3ba31f1fdc12b5be4bbd2e | 2b0001834769cab6d73e68627a8b15c4708961e6 | [Fizz] Update postpone abort semantics when prerendering (#30541)
When aborting with a postpone value in Fizz if any tasks are still
pending in the root while prerendering the prerender will fatally error.
This is different from postponing imperatively in a root task and really
the semantics should be the same. Thi... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzStatic-test.js",
"patch": "@@ -398,4 +398,60 @@ describe('ReactDOMFizzStatic', () => {\n </div>,\n );\n });\n+\n+ // @gate enablePostpone\n+ it('does not fatally error when aborting with a postpone during a prerender', async () => {\n+ ... | 2024-07-31T15:33:43 |
vercel/next.js | c0cd530ad8699b433a52c1459ef4d6c06de286ee | 844f0a62430dd697f4757d2f5eeef75da81f6e81 | Allow silencing unhandled rejection filter warnings and improve debugging (#84572)
The original debug logs were added to help validate the filter worked
correctly in real applications. They leak implementation details which
is more permissive than ideal. One reason to keep these around however
is if you end up seeing ... | [
{
"path": "packages/next/src/server/node-environment-extensions/unhandled-rejection.test.ts",
"patch": "@@ -61,7 +61,7 @@ type WorkerResult = {\n stderr: string\n uhr: Array<UHRReport>\n count: Array<CountReport>\n- errorLog: Array<ErrorLogReport>\n+ errorLog: Array<string>\n data: Record<string, ... | 2025-10-07T02:03:12 |
nodejs/node | c889b85498d1c45b278ce225d0c3ce3426ac0a88 | c4fb331390b5e9b2c6e328cc9e32a23b0e15d997 | deps: V8: cherry-pick 9ab40592f697
Original commit message:
[riscv] Flush icache in both local and remote harts
Fix the I-Cache flush flag according to the implementation of flush_icache_mm in Linux kernel.
Change-Id: I6e6b1f56c377c2c0a629e170737bfac6c357ce8d
Reviewed-on: https://chromium-review.goo... | [
{
"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.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n... | 2025-02-04T16:11:38 |
facebook/react | 47069f0e80e151c2664908366ccc07b4a0e727d9 | 12e957909948483d0eef83d1ffb2255946d0e4b0 | Build all bundles required by flight fixture with `build-for-flight-dev` (#30534) | [
{
"path": "package.json",
"patch": "@@ -113,7 +113,7 @@\n \"build-for-devtools\": \"cross-env RELEASE_CHANNEL=experimental yarn build react/index,react/jsx,react/compiler-runtime,react-dom/index,react-dom/client,react-dom/unstable_testing,react-dom/test-utils,react-is,react-debug-tools,scheduler,react-t... | 2024-07-31T13:02:36 |
electron/electron | 2f4a46f47a4d284ed2748c539bfaf10482908713 | ac074a554804f9041f07260def59cbb576d663a0 | fix: video and audio capture should be separate (#42775) | [
{
"path": "shell/browser/web_contents_permission_helper.cc",
"patch": "@@ -282,10 +282,10 @@ bool WebContentsPermissionHelper::CheckMediaAccessPermission(\n base::Value::Dict details;\n details.Set(\"securityOrigin\", security_origin.GetURL().spec());\n details.Set(\"mediaType\", MediaStreamTypeToStri... | 2024-07-08T08:11:40 |
vercel/next.js | d796c0f20966482d3187923a145dafe9ff30cc08 | c388db43dc580c22d8a42b6092b48717e1ad1d81 | [test] Unflake static image test (#84535)
[flakiness
metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22%20%40test.name%3A%22Static%20Image%20Component%20Tests%20development%20mode%20Should%20allow%20an%20image%20with%20a%20static%20src%20... | [
{
"path": "test/integration/next-image-new/default/pages/static-img.js",
"patch": "@@ -25,6 +25,16 @@ export const getStaticProps = () => ({\n props: { testImgProp },\n })\n \n+function FillContainer({ children }) {\n+ // Optimized to accept the square test images. Subtracting 16px to account for\n+ // ... | 2025-10-06T22:44:45 |
facebook/react | d06196c1cd2dc0bb2288f3a3efa30669d4a7ea61 | edfaa99f01596ea22ed892897f5c002a438c0655 | [compiler] Visit nested scopes in pruned scopes in PromoteUsedTemporaries
While debugging #30536 I happened to notice that the bug only reproduced
when there was interleaving scopes, and observed that an unpruned scope
nested inside of a pruned one was not being visited by
CollectPromotableTemporaries, which keeps tra... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/PromoteUsedTemporaries.ts",
"patch": "@@ -138,6 +138,7 @@ class CollectPromotableTemporaries extends ReactiveFunctionVisitor<State> {\n usedOutsideScope: false,\n });\n }\n+ this.visitBlock(scopeBlock.instructio... | 2024-07-30T20:55:41 |
nodejs/node | c4fb331390b5e9b2c6e328cc9e32a23b0e15d997 | dd92abc40587c3c236c40b262dd1918660900cb9 | sqlite: handle conflicting SQLite and JS errors
This commit adds support for the situation where SQLite is
trying to report an error while JavaScript already has an
exception pending.
Fixes: https://github.com/nodejs/node/issues/56772
PR-URL: https://github.com/nodejs/node/pull/56787
Reviewed-By: James M Snell <jasne... | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -101,9 +101,16 @@ inline MaybeLocal<Object> CreateSQLiteError(Isolate* isolate, sqlite3* db) {\n return e;\n }\n \n-inline void THROW_ERR_SQLITE_ERROR(Isolate* isolate, sqlite3* db) {\n+class DatabaseSync;\n+\n+inline void THROW_ERR_SQLITE_ERROR(Isolate* isolat... | 2025-02-04T13:58:33 |
electron/electron | ac074a554804f9041f07260def59cbb576d663a0 | 19e030a6e860b6a797e9b509560082351e42233c | refactor: run Windows `SelectFileDialog` out of process (#42758)
* refactor: run Windows SelectFileDialog out of process
* fix: add missing IS_WIN guard
* refactor: use upstream SelectFileDialogFactory
* fix: build chrome/services/util_win/public/mojom target | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -156,9 +156,13 @@ static_library(\"chrome\") {\n \"//chrome/browser/ui/frame/window_frame_util.h\",\n \"//chrome/browser/win/chrome_process_finder.cc\",\n \"//chrome/browser/win/chrome_process_finder.h\",\n+ \"//chrome/browser/win/chrome... | 2024-07-05T09:36:44 |
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 |
golang/go | 4c4cefc19a16924f3aa7135d3fdc6d1687fe26c7 | 925a3cdcd13472c8f78d51c9ce99a59e77d46eb4 | cmd/gofmt: simplify logic to process arguments
Rather than stat-ing each argument and taking different code paths
depending on whether it's a directory or not, we can leverage
the fact that filepath.WalkDir works on regular files and already
has to figure out whether each file it walks is a directory or not.
We can t... | [
{
"path": "src/cmd/gofmt/gofmt.go",
"patch": "@@ -87,10 +87,8 @@ func initParserMode() {\n \t}\n }\n \n-func isGoFile(f fs.DirEntry) bool {\n-\t// ignore non-Go files\n-\tname := f.Name()\n-\treturn !strings.HasPrefix(name, \".\") && strings.HasSuffix(name, \".go\") && !f.IsDir()\n+func isGoFilename(name st... | 2025-08-30T17:54:43 |
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 |
facebook/react | 212d5ae8cbdb16788bcbb8c7f0c35369968eff5e | 704c34e21f7468fc72c33aa843051c7949ebeccd | [compiler][repro] fixtures for fbt plural and macro bugs
ghstack-source-id: 8ccf49bb40cd634932b84dd637439042aa60fd46
Pull Request resolved: https://github.com/facebook/react/pull/30535 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/bug-fbt-plural-multiple-function-calls.expect.md",
"patch": "@@ -0,0 +1,87 @@\n+\n+## Input\n+\n+```javascript\n+import fbt from 'fbt';\n+\n+/**\n+ * Similar to error.todo-multiple-fbt-plural\n+ *\n+ * Evaluator err... | 2024-07-30T20:24:45 |
nodejs/node | eb11adfc026993b2e67064116198a50e6de91f23 | a091f4890e239c9a726137a045eef4db32b7e3db | src,test: expand test coverage for urlpattern and fix error
PR-URL: https://github.com/nodejs/node/pull/56878
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> | [
{
"path": "src/node_url_pattern.cc",
"patch": "@@ -104,13 +104,14 @@ URLPatternRegexProvider::regex_search(std::string_view input,\n return std::nullopt;\n }\n \n+ // V8 checks that the regexp exec result is one of the correct types.\n+ DCHECK_IMPLIES(!entry->IsUndefined(), entry->IsString()... | 2025-02-04T04:52:39 |
electron/electron | 07e6b34a07c5cc9f8a526b244171175a0aa390d6 | cf5fb4505ebde6a8347b45ec7e66a58d851944df | chore: bump chromium to 128.0.6571.0 (main) (#42749)
* chore: bump chromium in DEPS to 128.0.6571.0
* 5636652: [4/n] Introduce RenderInputRouterClient and move InputRouterClient implementation to RenderInputRouter.
https://chromium-review.googlesource.com/c/chromium/src/+/5636652
* 5655811: Revert "Reland "Re... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '128.0.6558.0',\n+ '128.0.6571.0',\n 'node_version':\n 'v20.15.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "build/... | 2024-07-03T15:15:35 |
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 |
golang/go | 925a3cdcd13472c8f78d51c9ce99a59e77d46eb4 | 3e596d448fb6b9668d144cffaa65e1d12a5fdce8 | unicode/utf8: make DecodeRune{,InString} inlineable
This change makes the fast path for ASCII characters inlineable in
DecodeRune and DecodeRuneInString and removes most instances of manual
inlining at call sites.
Here are some benchmark results (no change to allocations):
goos: darwin
goarch: amd64
pkg: unicode/utf... | [
{
"path": "src/bufio/bufio.go",
"patch": "@@ -311,10 +311,7 @@ func (b *Reader) ReadRune() (r rune, size int, err error) {\n \tif b.r == b.w {\n \t\treturn 0, 0, b.readErr()\n \t}\n-\tr, size = rune(b.buf[b.r]), 1\n-\tif r >= utf8.RuneSelf {\n-\t\tr, size = utf8.DecodeRune(b.buf[b.r:b.w])\n-\t}\n+\tr, size ... | 2025-09-02T22:10:40 |
nodejs/node | a091f4890e239c9a726137a045eef4db32b7e3db | 694787826863eaf613f8f624e1a4bb5a8cf87aeb | src: prevent URLPattern property accessors from crashing on invalid this
PR-URL: https://github.com/nodejs/node/pull/56877
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "src/node_url_pattern.cc",
"patch": "@@ -26,6 +26,7 @@ using v8::Object;\n using v8::PropertyAttribute;\n using v8::ReadOnly;\n using v8::RegExp;\n+using v8::Signature;\n using v8::String;\n using v8::Value;\n \n@@ -682,58 +683,71 @@ static void Initialize(Local<Object> target,\n auto prototype_... | 2025-02-04T03:34:31 |
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 |
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 |
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 | 2a7f1d47b0650c92b47f0cd5bc3536d438e4bbbe | b09068041a20ed3cd44685a1d7f4dccbabfc2e94 | runtime: use one more address bit for tagged pointers
We use one extra bit to placate systems which simulate amd64 binaries on
an arm64 host. Allocated arm64 addresses could be as high as 1<<48-1,
which would be invalid if we assumed 48-bit sign-extended addresses.
(Note that this does not help the other way around, ... | [
{
"path": "src/runtime/tagptr_64bit.go",
"patch": "@@ -22,10 +22,17 @@ const (\n \t// On AMD64, virtual addresses are 48-bit (or 57-bit) sign-extended.\n \t// Other archs are 48-bit zero-extended.\n \t//\n+\t// We use one extra bit to placate systems which simulate amd64 binaries on\n+\t// an arm64 host. Al... | 2025-09-02T22:46:11 |
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 |
nodejs/node | 35d199f27b12151e2768d8360b24516d463fab8a | 2972fe961bb7690f7935e85012d0a94287e61c7e | src: make multiple improvements to node_url_pattern
* remove USE from node_url_pattern to handle error correctly
* simplify if block in node_url_pattern
* improve error handling in node_url_pattern
* fix error propagation on URLPattern init
* use ToV8Value where more convenient in node_url_pattern
* simplify URLPatter... | [
{
"path": "src/node_url_pattern.cc",
"patch": "@@ -165,6 +165,10 @@ void URLPattern::New(const FunctionCallbackInfo<Value>& args) {\n input = input_buffer.ToString();\n } else if (args[0]->IsObject()) {\n init = URLPatternInit::FromJsObject(env, args[0].As<Object>());\n+ // If init does not hav... | 2025-02-01T20:10:03 |
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 | 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 |
golang/go | 1eec830f545ae9c75f143d7d5c757013d6d229be | 7bba745820b771307593b7278ce17464eeda2f3d | go/doc: linkify interface methods
Create doc links for references to interface methods,
such as "[Context.Err]".
This does not attempt to handle embedded interfaces:
The linked-to method must be declared within the named type.
Fixes #54033
Change-Id: I4d7a132affe682c85958ca785bcc96571404e6c1
Reviewed-on: https://go... | [
{
"path": "src/go/doc/comment_test.go",
"patch": "@@ -24,12 +24,12 @@ func TestComment(t *testing.T) {\n \tpkg := New(pkgs[\"pkgdoc\"], \"testdata/pkgdoc\", 0)\n \n \tvar (\n-\t\tinput = \"[T] and [U] are types, and [T.M] is a method, but [V] is a broken link. [rand.Int] and [crand.Reader] are thi... | 2025-07-10T22:43:43 |
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 |
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 | 793c7936c394aba54875f84b135684e38a30ff94 | cadc4ed06703e25e4f05e9108b941b0a61dcbf89 | test: fix race condition in test-child-process-bad-stdio
test-child-process-bad-stdio.js contains a race condition between
a timeout in the test process and a timeout in the spawned child
process. This commit addresses the race condition by having the
child process wait indefinitely to be killed.
PR-URL: https://gith... | [
{
"path": "test/parallel/test-child-process-bad-stdio.js",
"patch": "@@ -3,7 +3,7 @@\n const common = require('../common');\n \n if (process.argv[2] === 'child') {\n- setTimeout(() => {}, common.platformTimeout(100));\n+ setTimeout(() => {}, common.platformTimeout(1000));\n return;\n }\n ",
"additio... | 2025-02-03T03:12:19 |
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 |
golang/go | d4b17f58695337c7eefa9d066cc51a425842e491 | 6a08e80399bd65b95e60e3c74b7e1f86754752a7 | internal/runtime/atomic: reset wrong jump target in Cas{,64} on loong64
The implementation here needs to be consistent with ssa.OpLOONG64LoweredAtomicCas{32,64},
which was ignored in CL 613396.
Change-Id: I72e8d2318e0c1935cc3a35ab5098f8a84e48bcd5
Reviewed-on: https://go-review.googlesource.com/c/go/+/699395
Reviewed-... | [
{
"path": "src/internal/runtime/atomic/atomic_loong64.s",
"patch": "@@ -19,7 +19,7 @@ TEXT ·Cas(SB), NOSPLIT, $0-17\n \tMOVW\tnew+12(FP), R6\n \n \tMOVBU\tinternal∕cpu·Loong64+const_offsetLOONG64HasLAMCAS(SB), R8\n-\tBEQ\tR8, cas_again\n+\tBEQ\tR8, ll_sc\n \tMOVV\tR5, R7 // backup old value\n \tAMCASDBW\tR... | 2025-08-27T06:45:58 |
nodejs/node | 0a4672e2086d7feb576cc6f238887b6e12f153cb | b78df6c40248d42e46e3c2ad2de3f2a0e9098111 | tools: remove test-asan/ubsan workflows
They have been disabled for months without anyone looking into fixing
the builds.
PR-URL: https://github.com/nodejs/node/pull/56823
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Re... | [
{
"path": ".github/workflows/test-asan.yml",
"patch": "@@ -1,66 +0,0 @@\n-name: Test ASan\n-\n-on:\n- pull_request:\n- types: [opened, synchronize, reopened, ready_for_review]\n- paths-ignore:\n- - .mailmap\n- - '**.md'\n- - AUTHORS\n- - doc/**\n- - .github/**\n- - '!.gi... | 2025-02-01T07:53:52 |
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 |
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 |
golang/go | 6a08e80399bd65b95e60e3c74b7e1f86754752a7 | 8bcda6c79d40f49363cd04cdaf5bd7909de8f94f | net/http: skip redirecting in ServeMux when URL path for CONNECT is empty
In 1.21 ServeMux, we had a special-case to skip redirection when a given
path is empty for CONNECT requests:
https://go.googlesource.com/go/+/refs/tags/go1.24.4/src/net/http/servemux121.go#205.
This special case seems to not have been carried o... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -2759,9 +2759,12 @@ func (mux *ServeMux) matchOrRedirect(host, method, path string, u *url.URL) (_ *\n \tdefer mux.mu.RUnlock()\n \n \tn, matches := mux.tree.match(host, method, path)\n-\t// If we have an exact match, or we were asked not to try trailing-slas... | 2025-08-29T14:34:10 |
nodejs/node | 1a2eb15bc610926789a8a3a002ec722c39768c20 | 96718268fec7e7f1c6156ff9a57899a5cd1487cc | test_runner: remove promises returned by t.test()
This commit updates the TestContext.prototype.test() API to no
longer return a Promise.
Fixes: https://github.com/nodejs/node/issues/51292
PR-URL: https://github.com/nodejs/node/pull/56664
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Pietro Marc... | [
{
"path": "doc/api/test.md",
"patch": "@@ -105,11 +105,11 @@ top level test with two subtests.\n \n ```js\n test('top level test', async (t) => {\n- await t.test('subtest 1', (t) => {\n+ t.test('subtest 1', (t) => {\n assert.strictEqual(1, 1);\n });\n \n- await t.test('subtest 2', (t) => {\n+ t.te... | 2025-01-20T01:06:50 |
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 | 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 |
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 |
nodejs/node | 96718268fec7e7f1c6156ff9a57899a5cd1487cc | aa3523ec22c95dfb11ef93c8333ced41cd431f89 | test_runner: remove promises returned by test()
This commit updates the test() and suite() APIs to no longer
return a Promise.
Fixes: https://github.com/nodejs/node/issues/51292
PR-URL: https://github.com/nodejs/node/pull/56664
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Pietro Marchini <pietr... | [
{
"path": "doc/api/test.md",
"patch": "@@ -1407,6 +1407,11 @@ run({ files: [path.resolve('./tests/test.js')] })\n added:\n - v22.0.0\n - v20.13.0\n+changes:\n+ - version:\n+ - REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/56664\n+ description: This function no longer returns a `Prom... | 2025-01-20T00:42:22 |
golang/go | 8bcda6c79d40f49363cd04cdaf5bd7909de8f94f | 8377adafc548a0d9dab831477923d25ce4b10710 | runtime/race: add race detector support for linux/riscv64
This enables support for the race detector on linux/riscv64.
Fixes #64345
Cq-Include-Trybots: luci.golang.try:gotip-linux-riscv64
Change-Id: I98962827e91455404858549b0f9691ee438f104b
Reviewed-on: https://go-review.googlesource.com/c/go/+/690497
Reviewed-by: C... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -1698,7 +1698,7 @@ func (t *tester) makeGOROOTUnwritable() (undo func()) {\n func raceDetectorSupported(goos, goarch string) bool {\n \tswitch goos {\n \tcase \"linux\":\n-\t\treturn goarch == \"amd64\" || goarch == \"ppc64le\" || goarch == \"arm64\" || goarch ... | 2025-07-25T10:41:51 |
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.