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 |
|---|---|---|---|---|---|
rust-lang/rust | cd8fe54a1a743c0bf88f8a9c28ae8554345f3d58 | 6531c75612cf12c2d5d39a16bf0d9844d15e59e7 | Fix semicolon for toggle_macro_delimiter
Example
---
```rust
macro_rules! sth {
() => {};
}
sth!$0{ }
```
(old test `sth!{};` is a syntax error in item place)
**Before this PR**
```rust
macro_rules! sth {
() => {};
}
sth![ ]
```
**After this PR**
```rust
macro_rules! sth {
() => {};
}
sth![ ];
``` | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/toggle_macro_delimiter.rs",
"patch": "@@ -86,7 +86,14 @@ pub(crate) fn toggle_macro_delimiter(acc: &mut Assists, ctx: &AssistContext<'_>)\n }\n MacroDelims::LCur | MacroDelims::RCur => {\n ... | 2026-01-25T17:46:13 |
electron/electron | 1ed191114acb4182baef715729906ed7bfc02fa3 | d4e97483aa3880ed29f46603b19bac9d80d7e653 | fix: clean up callback handling in `webContents.print()` (#34894)
* refactor: clean up callback handling in webContents.print()
* chore: update patches
Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -134,7 +134,7 @@ index 1e158ecd686e775f656d5a05a9d916ce8f075fa8..20613012d1e6f435c3211d78ec311cf0\n \n void PrintJobWorkerOop::UnregisterServiceManagerClient() {\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/pri... | 2022-07-21T10:46:15 |
nodejs/node | 24d036ba4564dbb54da4b1714da806bdba5ee688 | dab20ccea75ac3576ce3d2343f9c49c6746ed46e | 2024-04-03, Version 20.12.1 'Iron' (LTS)
This is a security release.
Notable changes:
* CVE-2024-27983 - Assertion failed in node::http2::Http2Session::\~Http2Session() leads to HTTP/2 server crash- (High)
* CVE-2024-27982 - HTTP Request Smuggling via Content Length Obfuscation - (Medium)
* llhttp version 9.2.1
* un... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -50,7 +50,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V21.md#21.0.0\">21.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.12.0\">20.12.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.12.1\">20.12.1... | 2024-04-01T17:35:34 |
facebook/react | 9c1f8a962c1f15935749e604cac2d095c952af04 | 702f43eb1efb85af1f13d59c0927a615c4b10eab | Make CompilerError.reason a static string
While running the latest Forget build on www I noticed that a lot of the
bailouts were special-cases where we used interpolation in the error `reason`
string to provide more context for debugging. This is a pretty cool result,
because it means that we actually support near... | [
{
"path": "compiler/forget/src/CompilerError.ts",
"patch": "@@ -19,6 +19,7 @@ export enum ErrorSeverity {\n \n export type CompilerErrorOptions = {\n reason: string;\n+ description?: string | null | undefined;\n severity: ErrorSeverity;\n nodePath: AnyNodePath | null;\n };\n@@ -64,7 +65,8 @@ export f... | 2023-04-06T15:51:31 |
vercel/next.js | 0e769b3283c75b3adb95df0490f6bd73592bfb91 | 20fabb959eba2fffdea4c60c42288c632e06caf4 | Fix --tag argument in publish-release (#79599)
Somehow `@ts-check` didn't catch this array not being spread anymore. | [
{
"path": "scripts/publish-release.js",
"patch": "@@ -86,7 +86,8 @@ const cwd = process.cwd()\n '--access',\n 'public',\n '--ignore-scripts',\n- ['--tag', tag],\n+ '--tag',\n+ tag,\n ],\n { stdio: 'pipe' }\n )",
"additions": ... | 2025-05-25T00:38:40 |
golang/go | 1f58ad5d6d2eebc1939a65a511ca84c9b997cd6a | 90ec9996cb6e7ea98ffeab1b6e28037d79e81026 | Revert "os: employ sendfile(2) for file-to-file copying on Linux when needed"
This reverts CL 603295.
Reason for revert: can cause child exit_group to hang.
This is not a clean revert. CL 603098 did a major refactoring of the
tests. That refactor is kept, just the sendfile-specific tests are
dropped from the linux t... | [
{
"path": "src/os/readfrom_linux_test.go",
"patch": "@@ -242,25 +242,19 @@ func testSpliceToTTY(t *testing.T, proto string, size int64) {\n }\n \n var (\n-\tcopyFileTests = []copyFileTestFunc{newCopyFileRangeTest, newSendfileOverCopyFileRangeTest}\n-\tcopyFileHooks = []copyFileTestHook{hookCopyFileRange, ho... | 2025-01-27T22:05:22 |
nodejs/node | 2241e8c5b3d9d130923124d012e2fda293751cf9 | 24c1a8e7392ba127f0574e0440b18abbe3a83317 | crypto: validate RSA-PSS saltLength in subtle.sign and subtle.verify
fixes: https://github.com/nodejs/node/issues/52188
PR-URL: https://github.com/nodejs/node/pull/52262
Fixes: https://github.com/nodejs/node/issues/52188
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Revi... | [
{
"path": "lib/internal/crypto/rsa.js",
"patch": "@@ -1,6 +1,7 @@\n 'use strict';\n \n const {\n+ MathCeil,\n SafeSet,\n Uint8Array,\n } = primordials;\n@@ -27,6 +28,7 @@ const {\n \n const {\n bigIntArrayToUnsignedInt,\n+ getDigestSizeInBytes,\n getUsagesUnion,\n hasAnyNotIn,\n jobPromise,\n@... | 2024-04-03T05:16:10 |
rust-lang/rust | 8d6b2f6a49c02456002094c069ac5a4d266625d7 | db6bc0f6a4a57e1b1898e67eadfea91af70be5fe | docs: fix broken Xtensa installation link | [
{
"path": "src/doc/rustc/src/platform-support/xtensa.md",
"patch": "@@ -24,4 +24,4 @@ Xtensa targets that support `std` are documented in the [ESP-IDF platform suppor\n \n ## Building the targets\n \n-The targets can be built by installing the [Xtensa enabled Rust channel](https://github.com/esp-rs/rust/). ... | 2026-01-26T14:36:26 |
facebook/react | 592b911e7f37721ce4146af1314152bedcb85250 | 1650d8fef24ebf04c09bf4950db2013986e45648 | fix main | [
{
"path": "compiler/forget/packages/make-read-only-util/jest.config.js",
"patch": "@@ -3,7 +3,9 @@\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n- */dist/types').InitialOptionsTsJest} */\n+ */\n+\n+/** @type {import('t... | 2023-04-05T22:47:40 |
vercel/next.js | b3e6064cc30a885d1cb36ec422dcc2b5d53b8922 | 2bb5ed2103498d3ccc3ac3b085ae39b1e18f8478 | docs (data fetching): fix typo in startTransition call (#79578)
Fix typo in useEffect hook when calling the startTransition hook.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose... | [
{
"path": "docs/01-app/03-building-your-application/02-data-fetching/03-server-actions-and-mutations.mdx",
"patch": "@@ -678,7 +678,7 @@ export default function ViewCount({ initialViews }: { initialViews: number }) {\n const [isPending, startTransition] = useTransition()\n \n useEffect(() => {\n- sta... | 2025-05-24T20:37:47 |
golang/go | 62cd7cb6cdba5cd947c97ee5269699dffdbca1b0 | 7764c502e28e42279d033719b058690ca8fbaa44 | crypto/hkdf: check error in TestFIPSServiceIndicator
I don't know why this code calls panic(err) rather than
t.Fatal(err), but I didn't change it.
Change-Id: I9aa7503c604bd8d4f27cc295e2ec742446906df9
Reviewed-on: https://go-review.googlesource.com/c/go/+/643995
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
... | [
{
"path": "src/crypto/hkdf/hkdf_test.go",
"patch": "@@ -404,6 +404,9 @@ func TestFIPSServiceIndicator(t *testing.T) {\n \t// Salt and info are short, which is ok, but translates to a short HMAC key.\n \tfips140.ResetServiceIndicator()\n \t_, err = Key(sha256.New, []byte(\"YELLOW SUBMARINE\"), []byte(\"salt\... | 2025-01-23T23:50:32 |
electron/electron | 67eda4bcc81754a973a4455cd6db5ac624f4bfa0 | 9f0e7126c422c12333544de0a20f954addd13061 | fix: add support for --ozone-platform-hint flag on Linux (#34937) | [
{
"path": "filenames.gni",
"patch": "@@ -23,6 +23,7 @@ filenames = {\n \n lib_sources_linux = [\n \"shell/browser/browser_linux.cc\",\n+ \"shell/browser/electron_browser_main_parts_linux.cc\",\n \"shell/browser/lib/power_observer_linux.cc\",\n \"shell/browser/lib/power_observer_linux.h\",\n... | 2022-07-21T08:37:54 |
rust-lang/rust | 2c2602bf0d1edc47cb886dbe4be24a247eb64ab5 | 45ef76624e04700f063b3ac0c2423e15bfbd5995 | Fix macro matching of `meta` then `=>` or `==`
The parser declared it was invalid meta because it consumed the lone `=`, which is incorrect. | [
{
"path": "src/tools/rust-analyzer/crates/hir-def/src/macro_expansion_tests/mbe/matching.rs",
"patch": "@@ -237,3 +237,23 @@ fn test() {\n \"#]],\n );\n }\n+\n+#[test]\n+fn meta_fat_arrow() {\n+ check(\n+ r#\"\n+macro_rules! m {\n+ ( $m:meta => ) => {};\n+}\n+\n+m! { foo => }\n+ \"#,\n+ ... | 2026-01-26T14:13:06 |
facebook/react | fd91191c9478ebb1ec3227a8d028515a40215338 | 9d97015236b8f19bbf313e98065aaeb4d0322cbc | Script to add/fix copyright
Adds a script to automate adding/updating the copyright header to all
appropriate files. For now i've excluded fixture inputs, just because it would
impact fixture outputs too, but we can add them in a later PR if we want. | [
{
"path": "compiler/forget/scripts/copyright.js",
"patch": "@@ -0,0 +1,63 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ */\n+\"use strict\";\n+\n+const... | 2023-04-05T19:21:47 |
nodejs/node | e57992ffb2e30834fbd7c3521ecf6d2df28a35fd | ac9e5e75279c7723740196f433e2809e743514f9 | test_runner: hide new line when no error in spec reporter
PR-URL: https://github.com/nodejs/node/pull/52297
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "lib/internal/test_runner/reporter/spec.js",
"patch": "@@ -83,8 +83,8 @@ class SpecReporter extends Transform {\n const error = this.#formatError(data.details?.error, indent);\n if (hasChildren) {\n // If this test has had children - it was already reported, so slightly modify the ou... | 2024-04-02T23:03:13 |
vercel/next.js | 2bb5ed2103498d3ccc3ac3b085ae39b1e18f8478 | adc81abd894e1a3ea77b9ec23ed314275596319f | [release-legacy] fix: set `stable` dist tag for backport releases instead of `latest` (#79596)
### Why?
If the current version is less than the latest, it means this is a
backport release. Since NPM sets the `latest` tag by default during
publishing, when users install `next@latest`, they might get the
backported ver... | [
{
"path": "scripts/publish-release.js",
"patch": "@@ -3,6 +3,7 @@\n \n const path = require('path')\n const execa = require('execa')\n+const semver = require('semver')\n const { Sema } = require('async-sema')\n const { execSync } = require('child_process')\n const fs = require('fs')\n@@ -32,6 +33,34 @@ cons... | 2025-05-24T20:12:32 |
golang/go | 50455385b0e668656cac03d3012e48e071df6aa4 | 28d389ef30fc4c542a80603123990115035c6422 | internal/coverage: fix bug in text-format coverage output with multiple packages
In ProcessCoverTestDir pass the selected set of packages to
EmitTextual in addition to EmitPercent, so that when we have runs with
multiple packages selected but without -coverpkg, text format output
for package P was incorrectly includin... | [
{
"path": "src/cmd/go/testdata/script/cover_coverprofile_nocoverpkg.txt",
"patch": "@@ -0,0 +1,50 @@\n+# Testcase for #70244. In this bug we're doing a \"go test -coverprofile\"\n+# run for a pair of packages, the first one without tests and the second\n+# one with tests. When writing the profile for the se... | 2024-11-12T17:32:39 |
electron/electron | 9e0a3c44dd9dd55367f5c7b7fceb11460e1e6e40 | 1b96a3aa1d81837fa08b018bbb97c5917d1d8f45 | chore: bump chromium to 105.0.5187.0 (main) (#34921)
* chore: bump chromium in DEPS to 105.0.5179.0
* chore: update patches
* 3758224: Reland^2 "[flags] Enable freezing of flags"
https://chromium-review.googlesource.com/c/v8/v8/+/3758224
* chore: bump chromium in DEPS to 105.0.5181.0
* chore: update pat... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -1006,9 +1006,17 @@ steps-electron-gn-check: &steps-electron-gn-check\n - *step-generate-deps-hash\n - *step-touch-sync-done\n - maybe-restore-portaled-src-cache\n- - *step-wait-for-goma\n- - *step-gn-gen-default\n- - *step-gn-check\n+... | 2022-07-20T11:03:34 |
nodejs/node | cdc4437b87ab864a0361e398a894c26ee20dcfa9 | d248639285bdde5662c74fb2351a6a36e44aeb26 | test: allow slightly more diff in memory leak test
Previous limit was too low for debug builds.
PR-URL: https://github.com/nodejs/node/pull/51362
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> | [
{
"path": "test/parallel/test-crypto-dh-leak.js",
"patch": "@@ -26,4 +26,4 @@ const after = process.memoryUsage.rss();\n \n // RSS should stay the same, ceteris paribus, but allow for\n // some slop because V8 mallocs memory during execution.\n-assert(after - before < 10 << 20, `before=${before} after=${aft... | 2024-01-07T14:03:58 |
vercel/next.js | b7a7752f144b11815af1eebf8632656ceef88ba6 | 0adbbd2ee198d576a42b754553615ca166ff2604 | de-flake ReactRefreshLogBox (app) (#79573)
This test is failing fairly consistently in CI. I suspect it's a timing
issue for when the error is thrown and when the redbox gets triggered. | [
{
"path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts",
"patch": "@@ -1460,11 +1460,14 @@ describe('ReactRefreshLogBox app', () => {\n \n await next.patchFile('index.js', \"throw new Error('module error')\")\n \n- if (isTurbopack) {\n- // TODO(veil): Turbopack is flaky. Pos... | 2025-05-23T21:51:55 |
golang/go | 28d389ef30fc4c542a80603123990115035c6422 | 8071f2a1697c2a8d7e93fb1f45285f18303ddc76 | internal/godebug: check error from os.ReadFile in test
Change-Id: I4770443c8eaa12add2e04cbf9d18ebfbbd851162
Reviewed-on: https://go-review.googlesource.com/c/go/+/643259
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Commit... | [
{
"path": "src/internal/godebug/godebug_test.go",
"patch": "@@ -109,6 +109,9 @@ func TestCmdBisect(t *testing.T) {\n \n \tvar want []string\n \tsrc, err := os.ReadFile(\"godebug_test.go\")\n+\tif err != nil {\n+\t\tt.Fatal(err)\n+\t}\n \tfor i, line := range strings.Split(string(src), \"\\n\") {\n \t\tif st... | 2025-01-24T01:37:29 |
facebook/react | 9d97015236b8f19bbf313e98065aaeb4d0322cbc | 4505218911f019746172b1b39e1d1184619fad58 | [globals] Remove global shape for Array.from
Type inference currently assumes that a `FunctionSignature`'s effects have no
false positives. If a `mutate` effect is observed on a read-only place, Forget
currently assumes this is an user error and
[throws](https://github.com/facebook/react-forget/blob/207595e04e2be0... | [
{
"path": "compiler/forget/src/HIR/Globals.ts",
"patch": "@@ -87,16 +87,15 @@ const TYPED_GLOBALS: Array<[string, BuiltInType]> = [\n calleeEffect: Effect.Read,\n }),\n ],\n- [\n- \"from\",\n- // Array.from(arrayLike, optionalFn, optionalThis)\n- addFunction... | 2023-04-05T16:53:39 |
rust-lang/rust | 76b6623267dc944fd61e06741327f74ee4820a21 | 165591238e723f2e4a1adecb0b4bacebb805bb6f | target: fix destabilising target-spec-json | [
{
"path": "compiler/rustc_target/src/spec/mod.rs",
"patch": "@@ -3352,6 +3352,9 @@ impl Target {\n \n Err(format!(\"could not find specification for target {target_tuple:?}\"))\n }\n+ TargetTuple::TargetJson { ref contents, .. } if !unstable_options => {\n+ ... | 2026-01-23T11:06:57 |
electron/electron | 60b6e74e3fda131add79009ccae2e48e6a460620 | ba25714e16386c1bdc517066ba67eb965120c709 | fix: merge crash annotations instead of overwriting (#34795)
ElectronCrashReporterClient::GetProcessSimpleAnnotations() merges
annotations provided as argument with global_annotations_,
preserving useful information. | [
{
"path": "shell/app/electron_crash_reporter_client.cc",
"patch": "@@ -190,7 +190,9 @@ bool ElectronCrashReporterClient::GetShouldCompressUploads() {\n \n void ElectronCrashReporterClient::GetProcessSimpleAnnotations(\n std::map<std::string, std::string>* annotations) {\n- *annotations = global_annotat... | 2022-07-19T16:18:04 |
nodejs/node | d9c47e9b5f1f4e8fbcd178ae8c8341321404e725 | c22793d0501784901966acdc6787a1153f570450 | src: add missing TryCatch
Otherwise re-entering V8 doesn't work as expected after exceptions
were thrown.
Refs: https://chromium-review.googlesource.com/c/v8/v8/+/5050065
Co-Authored-By: Toon Verwaest <verwaest@chromium.org>
Co-Authored-By: deepak1556 <hop2deep@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/... | [
{
"path": "src/js_stream.cc",
"patch": "@@ -20,6 +20,7 @@ using v8::Int32;\n using v8::Isolate;\n using v8::Local;\n using v8::Object;\n+using v8::TryCatch;\n using v8::Value;\n \n \n@@ -169,6 +170,8 @@ void JSStream::ReadBuffer(const FunctionCallbackInfo<Value>& args) {\n const char* data = buffer.data()... | 2024-01-07T14:02:32 |
facebook/react | a3dfc7e3a2740dcf6d5a3f9c31282fc1d7bd8423 | 1e2dbf7fdbbaca335297568f17be984709ab2b28 | Use CompilerError.invariant in BabelPlugin
This means we get more information when we hit these invariants (ie the source
location) | [
{
"path": "compiler/forget/src/Babel/BabelPlugin.ts",
"patch": "@@ -10,8 +10,9 @@\n import type * as BabelCore from \"@babel/core\";\n import jsx from \"@babel/plugin-syntax-jsx\";\n import * as t from \"@babel/types\";\n-import invariant from \"invariant\";\n+import { CompilerError } from \"../CompilerErro... | 2023-04-05T00:56:11 |
rust-lang/rust | c7788af89ac962245d8c3eeb30f7f4562fd70d2a | 873d4682c7d285540b8f28bfe637006cef8918a6 | Fix contrast ratio for Since element in rustodoc dark theme
Signed-off-by: Antonio Souza <arfs.antonio@gmail.com> | [
{
"path": "src/librustdoc/html/static/css/noscript.css",
"patch": "@@ -163,7 +163,7 @@ nav.sub {\n \t\t--headings-border-bottom-color: #d2d2d2;\n \t\t--border-color: #e0e0e0;\n \t\t--button-background-color: #f0f0f0;\n-\t\t--right-side-color: grey;\n+\t\t--right-side-color: #d0d0d0;\n \t\t--code-attribute-c... | 2026-01-26T01:51:30 |
vercel/next.js | 5c8f6206b1b2454b3453ab78d45cff1ea28b4f26 | 50ffa681fb4c2953983286e14f0f0d23731fc3ed | Revert "[next-server] skip setting vary header for basic routes" (#79426)
Reverts vercel/next.js#77797
Reinstate the `Vary` header to prevent browsers from incorrectly reusing
RSC responses during bfcache restores. | [
{
"path": "packages/next/src/server/base-server.ts",
"patch": "@@ -104,6 +104,7 @@ import {\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_DID_POSTPONE_HEADER,\n NEXT_URL,\n+ NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_IS_PRERENDER_HEADER,\n } from '../client/components/app-router-headers'\n import type {... | 2025-05-23T20:44:39 |
golang/go | 8071f2a1697c2a8d7e93fb1f45285f18303ddc76 | 78e6f2a1c87df4d588b11b51da63a974ade0ca79 | runtime: mapiter linkname compatibility layer
This CL reintroduces the various mapiter* linkname functions with a
compatibility layer that is careful to maintain compatibility with users
of the linkname.
The wrappers are straightforward. Callers of these APIs get an extra
layer of indirection, with their hiter contai... | [
{
"path": "src/runtime/linkname_swiss.go",
"patch": "@@ -0,0 +1,211 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build goexperiment.swissmap\n+\n+package runtime\n+\n+import (... | 2025-01-24T21:29:13 |
electron/electron | 05d4966251580cd4ae95479ccbbfdd5e8a70702f | eb8c9452cb38b6bd32bdc92724cc1fb42a3d43dc | fix: delegate to `PrintViewManagerBase` on failed print (#34893)
fix: delegate to PrintViewManagerBase on failed print | [
{
"path": "shell/browser/printing/print_view_manager_electron.cc",
"patch": "@@ -163,12 +163,23 @@ void PrintViewManagerElectron::ScriptedPrint(\n }\n \n void PrintViewManagerElectron::ShowInvalidPrinterSettingsError() {\n+ if (headless_jobs_.size() == 0) {\n+ PrintViewManagerBase::ShowInvalidPrinterSet... | 2022-07-19T12:46:08 |
nodejs/node | 61a0d3b4c49b693cec1dd9527e2b4772d4f3528d | f55380a7257ea3a5984e56f442c5980252723ed4 | deps: V8: backport c4be0a97f981
Original commit message:
Fix build with gcc12
- A number of erroneous flags have been added to BUILD.gn
- wasm-init-expr.cc is creating an 8 byte buffer witch may be
much smaller than max size_t output. We also need to make room
for the `f` character and the te... | [
{
"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-03-21T20:13:03 |
facebook/react | 1e2dbf7fdbbaca335297568f17be984709ab2b28 | 3c46984e09b5e0343ec7e9a99a4557a2f15ef2a2 | Fix JSX form of fbt
Fixes `<fbt>`. This required a bunk of yak shaving to work through several
issues:
* First, there was a bug in codegen for JsxNamedspacedName. I added handling for
it for identifiers, but JsxNamespacedName gets converted to a Primitive. The
output looked correct because Babel happily creates ... | [
{
"path": "compiler/forget/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -14,6 +14,7 @@ import {\n Identifier,\n IdentifierId,\n InstructionKind,\n+ JsxAttribute,\n Pattern,\n Place,\n ReactiveBlock,\n@@ -566,6 +567,14 @@ const createLogicalExpression = withLoc(t.logicalExpressio... | 2023-04-04T21:37:30 |
rust-lang/rust | 0df94dd94eeb0893d60aee40c9fcdf4d2b43a569 | a1a944880f89b275745d1c5838463433980b3f72 | checksum-freshness: Fix incorrect hash/file length values of binary
dependency files | [
{
"path": "compiler/rustc_builtin_macros/src/source_util.rs",
"patch": "@@ -275,7 +275,15 @@ fn load_binary_file(\n }\n };\n match cx.source_map().load_binary_file(&resolved_path) {\n- Ok(data) => Ok(data),\n+ Ok(data) => {\n+ cx.sess\n+ .psess\n+ ... | 2026-01-14T20:20:24 |
vercel/next.js | b11a172b15104bd6c6be0ef3eab4c9366c0995c8 | 04a164ffdfbcf8307fa46ae9d0566d4c7ce3225f | Fix build and deploy workflow (#79569)
Fix syntax error introduced in
https://github.com/vercel/next.js/pull/79409
This error is hidden on the workflows page unfortunately so isn't seen
on the PR itself
https://github.com/vercel/next.js/actions/runs/15216527935?pr=79563 | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -618,7 +618,7 @@ jobs:\n if: steps.changesets.outputs.pullRequestNumber\n run: 'gh pr edit ${{ steps.changesets.outputs.pullRequestNumber }} --add-label \"created-by: CI\"'\n env:\n- GITHUB_TOKEN: ${{ secrets.G... | 2025-05-23T20:22:00 |
golang/go | f8937cb6255970de3f0c8cbccc5253ae81249c47 | 11e08d9d96fa13346d50b5f728058f2f2647664a | archive/zip, archive/tar: writer appends slash to directory names
Fixes #71235
Change-Id: I62aebb9d421db0e4b57ad5cae25c70f47aa5f8f9
GitHub-Last-Rev: 6e0fba07dd128e20e32a3a6258edf80ee91d4690
GitHub-Pull-Request: golang/go#71239
Reviewed-on: https://go-review.googlesource.com/c/go/+/642375
Reviewed-by: Jonathan Amsterd... | [
{
"path": "src/archive/tar/writer.go",
"patch": "@@ -424,6 +424,9 @@ func (tw *Writer) AddFS(fsys fs.FS) error {\n \t\t\treturn err\n \t\t}\n \t\th.Name = name\n+\t\tif d.IsDir() {\n+\t\t\th.Name += \"/\"\n+\t\t}\n \t\tif err := tw.WriteHeader(h); err != nil {\n \t\t\treturn err\n \t\t}",
"additions": 3... | 2025-01-22T02:23:08 |
rust-lang/rust | 8ff928ed4d4fe1eb74c6ce42a5e4387db49394ff | 0462e8f7e51f20692b02d68efee68bb28a6f4457 | Fix lockfile update script | [
{
"path": "src/tools/update-lockfile.sh",
"patch": "@@ -1,18 +1,18 @@\n-#!/bin/sh\n+#!/bin/bash\n \n # Updates the workspaces in `.`, `library` and `src/tools/rustbook`\n # Logs are written to `cargo_update.log`\n # Used as part of regular dependency bumps\n \n set -euo pipefail\n \n-echo -e \"\\ncompiler &... | 2026-01-26T10:30:54 |
facebook/react | 3c46984e09b5e0343ec7e9a99a4557a2f15ef2a2 | a97c55dc5da37c0d0358fee660be4343e7528c38 | Repro of fbt issues
Adds the two FBT (https://facebook.github.io/fbt/) plugins to our test setup so
that we can verify Forget plays well with FBT. Unfortunately FBT's plugins are a
bit finicky, and things that are technically allowed per the JSX spec (such as
wrapping string attribute values in a JsxExpressionCont... | [
{
"path": "compiler/forget/package.json",
"patch": "@@ -53,6 +53,8 @@\n \"@typescript-eslint/eslint-plugin\": \"^5.51.0\",\n \"@typescript-eslint/parser\": \"^5.51.0\",\n \"babel-jest\": \"^29.0.3\",\n+ \"babel-plugin-fbt\": \"^1.0.0\",\n+ \"babel-plugin-fbt-runtime\": \"^1.0.0\",\n \"... | 2023-04-04T21:32:21 |
nodejs/node | f55380a7257ea3a5984e56f442c5980252723ed4 | b9d806a2dd7d6b137cd9f0099ec0f8ed0abea4d6 | deps: V8: cherry-pick f8d5e576b814
Original commit message:
Fix build with older versions of GCC.
This ports the change from bazel on v8:
https://crrev.com/c/3368869
Compilation errors started showing after this CL:
https://crrev.com/c/5199515
Change-Id: I8c161a0d9ad5c04d452c444ef4feafae2ef... | [
{
"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.7',\n+ 'v8_embedder_string': '-node.8',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-03-21T20:07:54 |
vercel/next.js | 04a164ffdfbcf8307fa46ae9d0566d4c7ce3225f | dcd5ed0ae81cee5f3ea36e9742d30260b35f7f29 | fix: Rspack not skip .d.ts file (#79285)
Next.js skips resolving `.d.ts` files. Rspack can achieve the same
behavior by adding the `resolve.restrictions: [/^(?!.*\.d\.ts$).*$/]`
configuration.
Following test cases will be passed:
- test/integration/typescript-paths/test/index.test.js
- typescript paths default behavi... | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -779,6 +779,8 @@ export default async function getBaseWebpackConfig(\n ].filter(Boolean) as webpack.ResolvePluginInstance[],\n ...((isRspack && jsConfigPath\n ? {\n+ // Skip paths that are routed to a .d.ts file\n+ ... | 2025-05-23T20:13:21 |
electron/electron | eb8c9452cb38b6bd32bdc92724cc1fb42a3d43dc | 38848c5bf77b2fa62b3dddecfe1aecba8d4ae48f | fix: crash on `BrowserWindow.setEnabled()` (#34904)
fix: crash on BrowserWindow.setEnabled() | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -484,7 +484,8 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n // [window_ performClose:nil], the window won't close properly\n // even after the user has ended the sheet.\n // Ensure it's closed before calling [window_ performClos... | 2022-07-19T10:31:49 |
facebook/react | 6d62d9f5057f4de89fe06e71aca01974b5f8ae7c | 939582dae02fc70c6b86f82492427249d0b3e1df | Infer closures as frozen if they dont capture mutable values
Fix for the previous issue, suggested by @gsathya: when we run
InferReferenceEffects on the outer function we check each closure to see if it
actually captured any mutable values. If it didn't, we can mark the closure as
readonly and memoize it independe... | [
{
"path": "compiler/forget/src/HIR/HIR.ts",
"patch": "@@ -762,6 +762,19 @@ export enum Effect {\n Store = \"store\",\n }\n \n+export function isMutableEffect(effect: Effect): boolean {\n+ switch (effect) {\n+ case Effect.Capture:\n+ case Effect.Mutate:\n+ case Effect.Store: {\n+ return true... | 2023-04-04T19:30:12 |
rust-lang/rust | f6efe7e1d52abab87cd897fb96ccc6bad68c64b3 | 873d4682c7d285540b8f28bfe637006cef8918a6 | don't return incorrectly constrained opaques in `method_autoderef_steps` | [
{
"path": "compiler/rustc_hir_typeck/src/method/probe.rs",
"patch": "@@ -415,10 +415,14 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n infcx.instantiate_canonical(span, &query_input.canonical);\n let query::MethodAutoderefSteps { predefined_opaques_in_body: _, self_ty } = value;\... | 2026-01-26T09:12:32 |
vercel/next.js | 3f3539269ac8b78072f0389823f43b650638f4d3 | 6679022c95bfa5a273a410bc81773f474c6acec9 | [turbopack] Fix the stubbed out implementation of `signature` so that it works in a web worker. (#79509)
## What
Fix the stubbed out runtime hook for react HMR to correctly support both the `register` and `signature` APIs, by moving the stubs into the runtime directly. This way TSC can tell us we failed to uphold th... | [
{
"path": "turbopack/crates/turbopack-ecmascript-runtime/js/src/browser/runtime/base/dev-base.ts",
"patch": "@@ -129,15 +129,6 @@ const getOrInstantiateModuleFromParent: GetOrInstantiateModuleFromParent<\n })\n }\n \n-function getDevWorkerBlobURL(chunks: ChunkPath[]) {\n- return getWorkerBlobURL(\n- c... | 2025-05-23T16:44:03 |
nodejs/node | b9d806a2dd7d6b137cd9f0099ec0f8ed0abea4d6 | 63b58bc17b181ac9fb50f323bedd4b2c82b570c6 | deps: patch V8 to support compilation with MSVC
This patches V8 v12.2 for Windows, by fixing multiple compilation
errors caused by V8 being a Clang-oriented project. There are various
types of errors fixed by this going from changing `using` directives
and renaming to overcoming the differences in which Clang and MSVC... | [
{
"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-01-31T10:05:20 |
electron/electron | 57b02e153de798edb2fc415e19792e64f191a349 | 8a0df1f487449e25ccc9a2bc13e7160fe82bc61d | fix: potential hang on print settings failure (#34892) | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -78,7 +78,7 @@ index 331a084371402b5a2440b5d60feac8f0189e84b9..6755d1f497cef4deea6b83df1d8720dc\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_job_worker.cc b/chrome/browser/printin... | 2022-07-19T09:45:10 |
facebook/react | eeabb7312f509eb2094452a4389646000ea8ea14 | 0ba4d7b0d80d942dc8f074f7ce0536e6b2559fbf | Refactor DOM Bindings Completely Off of DOMProperty Meta Programming (#26546)
There are four places we have special cases based off the DOMProperty
config:
1) DEV-only: ReactDOMUnknownPropertyHook warns for passing booleans to
non-boolean attributes. We just need a simple list of all properties
that are affected... | [
{
"path": "packages/react-dom-bindings/src/client/CSSPropertyOperations.js",
"patch": "@@ -72,6 +72,21 @@ export function createDangerousStringForStyles(styles) {\n * @param {object} styles\n */\n export function setValueForStyles(node, styles) {\n+ if (styles != null && typeof styles !== 'object') {\n+ ... | 2023-04-04T15:05:56 |
vercel/next.js | a2d4733276724b426a93e271e0afc3934074e935 | b6251f7e4bf3268fb3393c1da9045f9156d96ce6 | Turbopack: leave `chunks` in `rscModuleMapping` empty (#79511)
Previously, `clientReferenceManifest.rscModuleMapping.*.chunks` would list the RSC entry, such as `server/app/encryption/page.js` which contains
```js
const CHUNK_PUBLIC_PATH = "server/app/encryption/page.js";
const runtime = require("../../chunks/ssr/[tur... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -1459,7 +1459,6 @@ impl AppEndpoint {\n entry_name: app_entry.original_name.clone(),\n client_references,\n client_references_chunks,\n- rsc_app_entry_chunks: app_entry_chunks,... | 2025-05-23T12:39:22 |
electron/electron | f1746c81c66d6857e8b857a6eaedee8cc123c942 | 9d23a624c1e7c6ca4273d727cf4423d52d1a5de4 | fix: do not define _LIBCPP_ABI_NAMESPACE=Cr for all native modules (#34932)
This define is only needed when linking against Chromiums libc++ which we currently
do not ship / expose the symbols of. We probably should make those symbols visible and
actually ensure that electron-rebuild et. al link against our libc++ ... | [
{
"path": "patches/node/.patches",
"patch": "@@ -43,6 +43,5 @@ macos_avoid_posix_spawnp_cwd_bug_3597.patch\n src_update_importmoduledynamically.patch\n fix_add_v8_enable_reverse_jsargs_defines_in_common_gypi.patch\n json_parse_errors_made_user-friendly.patch\n-build_define_libcpp_abi_namespace_as_cr_to_alig... | 2022-07-15T23:57:29 |
nodejs/node | 2e0efc1c8dcbe1e9e0f326253ff847a5e397513e | 59e6f62e34264eba7e3e8a9dda98273b8c0f0399 | deps: avoid compilation error with ASan
Refs: https://bugs.chromium.org/p/v8/issues/detail?id=14221
PR-URL: https://github.com/nodejs/node/pull/49639
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-... | [
{
"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.3',\n+ 'v8_embedder_string': '-node.4',\n \n ##### V8 defaults for Node.js #####\n "... | 2023-07-31T09:51:27 |
golang/go | f70aa3824b637d69aaaa944b3e4691c1fbe6c0d4 | 475e08349d48b172285fc8629ef1622136ee8173 | cmd/go: do not call base.fatal for an unset HOME for GOAUTH=netrc
This CL silences errors caused by GOAUTH=netrc and HOME being unset.
Instead, we log the error if the -x flag is set.
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-windows-amd64-longtest
Change-Id: Ibd323769f3562c169ebf559e060e9a... | [
{
"path": "src/cmd/go/internal/auth/auth.go",
"patch": "@@ -70,7 +70,8 @@ func runGoAuth(client *http.Client, res *http.Response, url string) {\n \t\tcase \"netrc\":\n \t\t\tlines, err := readNetrc()\n \t\t\tif err != nil {\n-\t\t\t\tbase.Fatalf(\"go: could not parse netrc (GOAUTH=%s): %v\", cfg.GOAUTH, err... | 2025-01-23T19:35:34 |
facebook/react | 0ba4d7b0d80d942dc8f074f7ce0536e6b2559fbf | da94e8b24a3f31a3e805f9bf6bba73055aad9d41 | DevTools: Inline references to fiber flags (#26542)
We shouldn't be referencing internal fields like fiber's `flag` directly
of DevTools. It's an implementation detail. However, over the years a
few of these have snuck in. Because of how DevTools is currently
shipped, where it's expected to be backwards compatible ... | [
{
"path": "packages/react-devtools-shared/src/backend/ReactFiberFlags.js",
"patch": "@@ -1,17 +0,0 @@\n-/**\n- * Copyright (c) Meta Platforms, Inc. and affiliates.\n- *\n- * This source code is licensed under the MIT license found in the\n- * LICENSE file in the root directory of this source tree.\n- *\n- *... | 2023-04-04T15:05:33 |
vercel/next.js | 278f0f099cb67918bb4855cdaf52c97ecfb6c6c6 | ded56f952154a40dcfe53bdb38c73174e9eca9e5 | fix(dev-overlay): Better handle edge-case file paths in launchEditor (#79526)
Without this, some files may fail to open correctly.
Internal discussion:
https://vercel.slack.com/archives/C07UWUAF95Z/p1747261772629689 | [
{
"path": "packages/next/src/client/components/react-dev-overlay/utils/launch-editor.test.ts",
"patch": "@@ -0,0 +1,8 @@\n+import { escapeApplescriptStringFragment } from './launch-editor'\n+\n+describe('applescript string escaping', () => {\n+ it('should escape strings correctly', () => {\n+ const resu... | 2025-05-23T00:55:24 |
electron/electron | 9a5d759ea30724d2d3fd4872ddec54232a5e551a | d32e6cc2523b371b9a706775492c196582e1b17e | fix: ensure that v8 sandbox isnt enabled for arm (#34914) | [
{
"path": "patches/node/build_ensure_v8_pointer_compression_sandbox_is_enabled_on_64bit.patch",
"patch": "@@ -8,29 +8,26 @@ Aligns common.gypi with the current build flag state of //v8.\n Specifically enables `V8_ENABLE_SANDBOX`, `V8_SANDBOXED_POINTERS`, `V8_COMPRESS_POINTERS` and `V8_COMPRESS_POINTERS_IN_S... | 2022-07-14T08:46:41 |
nodejs/node | 59e6f62e34264eba7e3e8a9dda98273b8c0f0399 | 0423f7e27ef1896526512009ee63c8e8af2f0d43 | 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.2',\n+ 'v8_embedder_string': '-node.3',\n \n ##### V8 defaults for Node.js #####\n "... | 2023-04-06T12:50:56 |
golang/go | 475e08349d48b172285fc8629ef1622136ee8173 | e2e700f8b174f34b44c32d7e923ffe4e7219e171 | Revert "runtime: Check LSE support on ARM64 at runtime init"
This reverts CL 610195.
Reason for revert: SIGILL on macOS. See issue #71411.
Updates #69124, #60905.
Fixes #71411.
Change-Id: Ie0624e516dfb32fb13563327bcd7f557e5cba940
Reviewed-on: https://go-review.googlesource.com/c/go/+/644695
LUCI-TryBot-Result: Go L... | [
{
"path": "src/runtime/asm_arm64.s",
"patch": "@@ -8,11 +8,6 @@\n #include \"funcdata.h\"\n #include \"textflag.h\"\n \n-#ifdef GOARM64_LSE\n-DATA no_lse_msg<>+0x00(SB)/64, $\"This program can only run on ARM64 processors with LSE support.\\n\"\n-GLOBL no_lse_msg<>(SB), RODATA, $64\n-#endif\n-\n TEXT runtim... | 2025-01-27T17:11:36 |
facebook/react | 0700dd50bda98f5ee86f2e3adfe5e9906ed1e8e3 | 4a1cc2ddd035f5c269e82ab6f7686e2e60d3b3ea | Implement public instances for text nodes in Fabric (#26516)
## Summary
This adds the ability to create public instances for text nodes in
Fabric. The implementation for the public instances lives in React
Native (as it does for host components after #26437). The logic here
just handles their lazy instantiation ... | [
{
"path": "packages/react-native-renderer/src/ReactFabricHostConfig.js",
"patch": "@@ -14,13 +14,16 @@ import {\n DefaultEventPriority,\n DiscreteEventPriority,\n } from 'react-reconciler/src/ReactEventPriorities';\n+import {HostText} from 'react-reconciler/src/ReactWorkTags';\n \n // Modules provided b... | 2023-04-04T13:43:35 |
vercel/next.js | 3235c6f87011fcdfc5de863d12029948314fe00a | ed2db11e4788337736d3001f1de718e0473c6299 | [turbopack] Fix a buggy serializer (#79520)
Because regexes aren't naively serializable, we use a simple alternate representation and then just re-parse them when deserializing. A trivial bug was introduced in #78251 that has broken deserialization. Fix that and add a unit test.
My only defense for such a silly mi... | [
{
"path": "Cargo.lock",
"patch": "@@ -9508,6 +9508,7 @@ dependencies = [\n \"regex\",\n \"regress\",\n \"serde\",\n+ \"serde_json\",\n \"turbo-tasks\",\n \"turbo-tasks-build\",\n ]",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "turbopack/crates/turbo-esregex/C... | 2025-05-22T22:19:38 |
facebook/react | 4a1cc2ddd035f5c269e82ab6f7686e2e60d3b3ea | b14f8da15598cdc2253529a905421ac795d68ab1 | Fix logic around attribute seralization (#26526)
There was a bug in the attribute seralization for stylesheet resources
injected by the Fizz runtime. For boolean properties the attribute value
was set to an empty string but later immediately set to a string coerced
value. This PR fixes that bug and refactors the co... | [
{
"path": "packages/react-dom-bindings/src/server/ReactDOMServerFormatConfig.js",
"patch": "@@ -3926,48 +3926,51 @@ function writeStyleResourceAttributeInJS(\n return;\n \n // Attribute renames\n- case 'className':\n+ case 'className': {\n attributeName = 'class';\n+ if (__DEV__) ... | 2023-04-03T16:34:53 |
golang/go | 608acff8479640b00c85371d91280b64f5ec9594 | 9d21ef3bd43acedfe5317184e63cc6b3dd19cbdf | go/types: avoid importer.Default
It uses a throwaway FileSet, so all position info is
wrong, and potentially misleading.
(Various other helpers in go/types testing also use a
throwaway FileSet, and should really accept it as a parameter.)
Fixes #71272
Change-Id: I9d899b987837b4041a299aad5ec266cb4f5d125c
Reviewed-on... | [
{
"path": "src/go/types/api_test.go",
"patch": "@@ -19,11 +19,16 @@ import (\n \t\"testing\"\n \n \t. \"go/types\"\n+\t\"runtime\"\n )\n \n // nopos indicates an unknown position\n var nopos token.Pos\n \n+func defaultImporter(fset *token.FileSet) Importer {\n+\treturn importer.ForCompiler(fset, runtime.Com... | 2025-01-22T15:43:44 |
electron/electron | d32e6cc2523b371b9a706775492c196582e1b17e | 440c575aa6c47a2258824945fa5442c5a89cfe0f | chore: bump chromium to 105.0.5173.0 (main) (#34770)
* chore: bump chromium in DEPS to 105.0.5147.0
* chore: update chromium/can_create_window.patch
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/3642216
fix minor code shear in patch
* chore: update chromium/port_autofill_colors_to_the_col... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '105.0.5129.0',\n+ '105.0.5173.0',\n 'node_version':\n 'v16.15.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "chromi... | 2022-07-13T21:26:16 |
rust-lang/rust | 38bb09eeff34272c36dfbaeeb31e62f9e0674698 | acfb441952cce0224244c6857b398e79b5e78d77 | Fix rust-src installation command in FAQ
Correct the command to install rust-src in the FAQ. | [
{
"path": "src/tools/rust-analyzer/docs/book/src/faq.md",
"patch": "@@ -4,7 +4,7 @@\n \n rust-analyzer fails to resolve `None`, and thinks you are binding to a variable\n named `None`. That's usually a sign of a corrupted sysroot. Try removing and re-installing\n-it: `rustup component remove rust-src` then ... | 2026-01-26T08:45:48 |
vercel/next.js | 65858a8480d65ede48b47676b5f817a0dde5cfe5 | d491c8067864a6f2a178a5fa3374130e5e54f470 | Turbopack Build: Fix next/font test (#79502)
## What?
Fixes the test which assumed specific hashes.
While digging into this with @sokra and @mischnic we found that the
reason it currently preloads 4 instead of 2 files is because of source
based side-effects detection that Turbopack does not have yet. We've
created a... | [
{
"path": "test/e2e/next-font/with-font-declarations-file.test.ts",
"patch": "@@ -1,5 +1,5 @@\n import cheerio from 'cheerio'\n-import { createNext, FileRef } from 'e2e-utils'\n+import { createNext } from 'e2e-utils'\n import { NextInstance } from 'e2e-utils'\n import { renderViaHTTP } from 'next-test-utils... | 2025-05-22T15:57:55 |
facebook/react | b14f8da15598cdc2253529a905421ac795d68ab1 | 7329ea81c154d40800e30104be40f050e8c2af3e | refactor[devtools]: forbid editing class instances in props (#26522)
## Summary
Fixes https://github.com/facebook/react/issues/24781
Restricting from editing props, which are class instances, because their
internals should be opaque.
Proposed changes:
1. Adding new data type `class_instance`: based on prototy... | [
{
"path": "fixtures/devtools/standalone/index.html",
"patch": "@@ -334,6 +334,11 @@ <h1>List</h1>\n },\n });\n \n+ class Foo {\n+ flag = false;\n+ object = {a: {b: {c: {d: 1}}}}\n+ }\n+\n function UnserializableProps() {\n return (\n <ChildCompon... | 2023-04-03T10:32:17 |
golang/go | 9d21ef3bd43acedfe5317184e63cc6b3dd19cbdf | 5a46b17b5f62616bdbc973bbd6a221edc02a0619 | runtime: fix the equality check in AddCleanup
This fixes the check that ensures that arg is not equal to ptr in
AddCleanup. This also changes any use of throw to panic in AddCleanup.
Fixes #71316
Change-Id: Ie5a3e0163b254dff44b7fefedf75207ba587b771
Reviewed-on: https://go-review.googlesource.com/c/go/+/643655
Review... | [
{
"path": "src/runtime/mcleanup.go",
"patch": "@@ -70,19 +70,19 @@ func AddCleanup[T, S any](ptr *T, cleanup func(S), arg S) Cleanup {\n \n \t// The pointer to the object must be valid.\n \tif ptr == nil {\n-\t\tthrow(\"runtime.AddCleanup: ptr is nil\")\n+\t\tpanic(\"runtime.AddCleanup: ptr is nil\")\n \t}\... | 2025-01-21T16:52:41 |
facebook/react | 7329ea81c154d40800e30104be40f050e8c2af3e | 0ae348018d5b3a3f1ccdd92de85d9cc581b2b98d | Fix suspense replaying forward refs (#26535)
Continuation of https://github.com/facebook/react/issues/26420
Fixes https://github.com/facebook/react/issues/26385 and
https://github.com/facebook/react/issues/26419
---------
Co-authored-by: eps1lon <silbermann.sebastian@gmail.com>
Co-authored-by: Andrew Clark ... | [
{
"path": "packages/react-reconciler/src/ReactFiberBeginWork.js",
"patch": "@@ -1168,18 +1168,13 @@ export function replayFunctionComponent(\n workInProgress: Fiber,\n nextProps: any,\n Component: any,\n+ secondArg: any,\n renderLanes: Lanes,\n ): Fiber | null {\n // This function is used to repl... | 2023-04-02T22:48:28 |
electron/electron | 440c575aa6c47a2258824945fa5442c5a89cfe0f | 46e5c537c87d8f81e468448629c36995329f824b | fix: alwaysOnTop browser window option for X11 Linux (#34766)
fix: alwaysontop browser window option for x11 | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -498,6 +498,13 @@ void NativeWindowViews::Show() {\n if (global_menu_bar_)\n global_menu_bar_->OnWindowMapped();\n #endif\n+\n+#if defined(USE_OZONE_PLATFORM_X11)\n+ // On X11, setting Z order before showing the window doesn't take effect... | 2022-07-13T18:59:57 |
vercel/next.js | 7ccdad985d9ceea9eb13c31f9af1137be810df78 | c916835f0ab8d1ee7a0235e3ae0007e09fce5d91 | Turbopack Build: Fix dynamic-missing-gsp test (#79472)
## What?
Fixes the test by changing the path it checks, both webpack and
turbopack versions are okay, the Turbopack version is better though
holding the full path root to page.js file.
Also fixed the test to not add `export const dynamic = undefined` as
that is ... | [
{
"path": "test/integration/app-dir-export/test/dynamic-missing-gsp-prod.test.ts",
"patch": "@@ -10,7 +10,7 @@ describe('app dir - with output export - dynamic missing gsp prod', () => {\n dynamicPage: 'undefined',\n generateStaticParamsOpt: 'set noop',\n expectedErrMsg:\n- ... | 2025-05-22T11:55:51 |
nodejs/node | d9aa33fdbf015ee2aa799c106b5039d4675f90cf | 903f28e684b64683f1ca5b8417815e950201e062 | doc: fix email pattern to be wrapped with `<<` instead of single `<`
PR-URL: https://github.com/nodejs/node/pull/52284
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "README.md",
"patch": "@@ -482,7 +482,7 @@ For information about the governance of the Node.js project, see\n * [ZYSzys](https://github.com/ZYSzys) -\n **Yongsheng Zhang** <<zyszys98@gmail.com>> (he/him)\n * [zcbenz](https://github.com/zcbenz) -\n- **Cheng Zhao** <zcbenz@gmail.com> (he/him)\n+ ... | 2024-03-31T06:53:09 |
golang/go | 5a46b17b5f62616bdbc973bbd6a221edc02a0619 | 6fc23a3cff5e38ff72923fee50f51254dcdc6e93 | os: force a goroutine to be scheduled on WASM
The TestRootConcurrentClose test can fail when GOARCH=WASM because of
goroutine starvation. The spawned goroutine will sometimes run in a
loop and never have the main goroutine be scheduled. This causes the
test to fail due to a timeout. This change forces the goroutine to... | [
{
"path": "src/os/root_test.go",
"patch": "@@ -1077,6 +1077,10 @@ func TestRootConcurrentClose(t *testing.T) {\n \t\t\t\tfirst = false\n \t\t\t}\n \t\t\tf.Close()\n+\t\t\tif runtime.GOARCH == \"wasm\" {\n+\t\t\t\t// TODO(go.dev/issue/71134) can lead to goroutine starvation.\n+\t\t\t\truntime.Gosched()\n+\t\... | 2025-01-03T21:53:32 |
facebook/react | b19555573f6ec233013e73111ffe3f05f44faa5e | 1aec5ef523202b187007a8298c3707fae9429f23 | [babel] Make gating option a pair of module and project
There are some internal restrictions in Metro that only allow us to specify one
gating module as an injected dependency. To allow multiple projects, this PR
updates the Babel plugin to take a gating options config specifiying a project
name. The project name ... | [
{
"path": "compiler/forget/src/Babel/BabelPlugin.ts",
"patch": "@@ -12,14 +12,16 @@ import jsx from \"@babel/plugin-syntax-jsx\";\n import * as t from \"@babel/types\";\n import invariant from \"invariant\";\n import { compile } from \"../CompilerPipeline\";\n-import { parsePluginOptions, PluginOptions } fr... | 2023-04-03T16:33:23 |
electron/electron | 07d168343ade5e0b665a6a812c269a0785a45249 | 62aeb74d7c8ec49b7c47915d4befee8dba3e8c14 | fix: enable `deviceName` validation on Linux (#34872) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -419,21 +419,34 @@ bool IsDeviceNameValid(const std::u16string& device_name) {\n bool printer_exists = new_printer != nullptr;\n PMRelease(new_printer);\n return printer_exists;\n-#elif BUILDFLAG(IS_WIN)\n- printing::ScopedPrint... | 2022-07-13T10:23:24 |
vercel/next.js | c916835f0ab8d1ee7a0235e3ae0007e09fce5d91 | 129ab0ee1666be0f592e4a55506de1bd1b3ebca4 | Turbopack Build: Fix _error loading test (#79455)
## What?
Fixes the test but also uses a better implementation that makes the
request block by Playwright instead of deleting files on disk. Making it
closer to the actual behavior we expect, i.e. browser fails to load the
file -> hard navigation. | [
{
"path": "test/integration/error-load-fail/test/index.test.js",
"patch": "@@ -1,16 +1,8 @@\n /* eslint-env jest */\n \n import { join } from 'path'\n-import fs from 'fs-extra'\n import webdriver from 'next-webdriver'\n-import {\n- nextBuild,\n- nextStart,\n- findPort,\n- killApp,\n- check,\n- getPage... | 2025-05-22T11:55:34 |
golang/go | 6fc23a3cff5e38ff72923fee50f51254dcdc6e93 | 70b603f4d295573197b43ad090d7cad21895144e | crypto/internal/fips140/nistec: make p256NegCond constant time on ppc64le
Remove the branching instruction from p256NegCond which made it variable
time. The technique used matches that used in p256MovCond.
Fixes #71383
Fixes CVE-2025-22866
Change-Id: Ibc2a46814d856cbbdaf6cc0c5a415ed5d42ca793
Reviewed-on: https://go-... | [
{
"path": "src/crypto/internal/fips140/nistec/p256_asm_ppc64le.s",
"patch": "@@ -126,14 +126,23 @@ GLOBL p256mul<>(SB), 8, $160\n #define PH V31\n \n #define CAR1 V6\n+\n+#define SEL V8\n+#define ZER V9\n+\n // func p256NegCond(val *p256Point, cond int)\n TEXT ·p256NegCond(SB), NOSPLIT, $0-16\n \t... | 2025-01-22T00:03:14 |
nodejs/node | 7c02486f1f91f3b15f70b394f5655092acf88951 | dde0cffb2e80302a82f562b91f029205a5e1097b | test_runner: run afterEach hooks in correct order
This commit updates the test runner afterEach hook so that the
current test's afterEach hooks run before any ancestor afterEach
hooks.
Fixes: https://github.com/nodejs/node/issues/51671
PR-URL: https://github.com/nodejs/node/pull/52239
Reviewed-By: Moshe Atlow <moshe@... | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -6,6 +6,7 @@ const {\n ArrayPrototypeShift,\n ArrayPrototypeSlice,\n ArrayPrototypeSome,\n+ ArrayPrototypeSplice,\n ArrayPrototypeUnshift,\n FunctionPrototype,\n MathMax,\n@@ -275,6 +276,7 @@ class Test extends AsyncResource {\n ... | 2024-03-30T02:58:10 |
rust-lang/rust | 9fd291ed7ee4d1313cfdaa5a5651c77b0a57fd33 | 70f4111d672e5e3ec9c8a95b4805b6bf33f22aa8 | Fix not complete 'else' before tuple
Example
---
```rust
fn foo() -> (i32, i32) {
if foo {} el$0
(2, 3)
}
```
**Before this PR**
```rust
...
kw crate::
kw false
kw for
...
```
**After this PR**
```rust
...
kw crate::
kw else
kw else if
kw false
kw for
...
``` | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/context/analysis.rs",
"patch": "@@ -2030,9 +2030,10 @@ fn is_after_if_expr(node: SyntaxNode) -> bool {\n Some(stmt) => stmt.syntax().clone(),\n None => node,\n };\n- let prev_sibling =\n- non_trivia_sibling(node.into(... | 2026-01-19T12:09:30 |
vercel/next.js | 6020a8b1c0b5e8646a4082f2c892c5650ff86c6a | e26e9dd60ef10a388f59651ff95a54132fd9c7df | Docs IA 2.0: Reorder PPR page and fix some nits (#79282)
Co-authored-by: Joseph <joseph.chamochumbi@vercel.com> | [
{
"path": "docs/01-app/01-getting-started/04-images.mdx",
"patch": "@@ -125,7 +125,7 @@ Since Next.js does not have access to remote files during the build process, you\n To safely allow images from remote servers, you need to define a list of supported URL patterns in [`next.config.js`](/docs/app/api-refer... | 2025-05-22T06:15:27 |
facebook/react | 09c8d2563300621dc91258a4c2839210e2fbdf0e | 8310854cebba4d1f404e65ff2064825ee76d78e2 | Move update scheduling to microtask (#26512)
When React receives new input (via `setState`, a Suspense promise
resolution, and so on), it needs to ensure there's a rendering task
associated with the update. Most of this happens
`ensureRootIsScheduled`.
If a single event contains multiple updates, we end up runni... | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilingCache-test.js",
"patch": "@@ -963,7 +963,7 @@ describe('ProfilingCache', () => {\n 2 => 0,\n },\n \"passiveEffectDuration\": null,\n- \"priorityLevel\": \"Immediate\",\n+ \"priorityLevel\": \"N... | 2023-03-31T17:04:08 |
electron/electron | 62aeb74d7c8ec49b7c47915d4befee8dba3e8c14 | afd08c9450f5ad9b067b5f6dbf9b9243307d00b2 | fix: `base::DictionaryValue` usage in APNS notifs (#34897) | [
{
"path": "shell/browser/api/electron_api_push_notifications.h",
"patch": "@@ -39,7 +39,7 @@ class PushNotifications\n PushNotifications& operator=(const PushNotifications&) = delete;\n \n #if BUILDFLAG(IS_MAC)\n- void OnDidReceiveAPNSNotification(const base::DictionaryValue& user_info);\n+ void OnDidRe... | 2022-07-13T10:22:17 |
nodejs/node | 29de7f82cd5952dcd6855f5da392dae2100df994 | 27493a1dd73f41c07f04ca5d89d001e340a9feec | test_runner: omit filtered test from output
This commit updates the test runner to suppress any output for
filtered tests. Filtered tests no longer generate reporter events,
and the unfiltered tests are renumbered in the output as though
the filtered tests were not present. Skipped tests that are not
filtered are stil... | [
{
"path": "doc/api/test.md",
"patch": "@@ -233,7 +233,8 @@ If Node.js is started with the [`--test-only`][] command-line option, it is\n possible to skip all top level tests except for a selected subset by passing\n the `only` option to the tests that should be run. When a test with the `only`\n option set ... | 2024-03-28T15:57:34 |
golang/go | f6d17c540024418ca8a92371931b1b4fb076d2b6 | 3aa7c5ef01e147fb482f4b3e79c6f875a4b1b9fb | net/http: update bundled golang.org/x/net/http2 [generated]
Pull in x/net CL 642606 and CL 643256 and regenerate h2_bundle.go:
http2: disable extended CONNECT by default
http2: encode :protocol pseudo-header before regular headers
For #36905.
Fixes #70728.
Fixes #71128.
[git-generate]
go install golang.org/x/buil... | [
{
"path": "src/go.mod",
"patch": "@@ -4,7 +4,7 @@ go 1.24\n \n require (\n \tgolang.org/x/crypto v0.30.0\n-\tgolang.org/x/net v0.32.1-0.20241206180132-552d8ac903a1\n+\tgolang.org/x/net v0.32.1-0.20250121202134-9a960c88dd98\n )\n \n require (",
"additions": 1,
"deletions": 1,
"language": "Unknown... | 2025-01-21T19:41:15 |
facebook/react | 5beecef28f0891e65cf229f5f26015b129ea9994 | d67b3cbdc034a48f45887a6df37f03b192dab092 | [patch] Remove invalid invariant in deriveMinimalDeps
Confirmed that this fixes invariant violation on - | [
{
"path": "compiler/forget/src/ReactiveScopes/DeriveMinimalDependencies.ts",
"patch": "@@ -360,7 +360,10 @@ function demoteSubtreeToConditional(subtree: DependencyNode): void {\n let node;\n while ((node = stack.pop()) !== undefined) {\n const { accessType, properties } = node;\n- invariant(isUnc... | 2023-03-30T21:33:37 |
vercel/next.js | 49fe0f507042320586344b00d2cb8c5f646191d6 | a2cc0734a456e6cdc5076d16c63039d550f193fa | fix(test/e2e): Increase timeout of flaky basepath test (#79481)
Reducing this timeout from the default of 3000ms to 2500ms makes the failure reproduce 100% of the time for me. Increasing it, I'm unable to reproduce the issue.
Tested with:
```
pnpm test-dev-turbo test/e2e/basepath/router-events.test.ts 'should use ur... | [
{
"path": "test/e2e/basepath/router-events.test.ts",
"patch": "@@ -124,7 +124,7 @@ describe('basePath', () => {\n { shallow: false },\n ],\n ])\n- })\n+ }, 10_000)\n } finally {\n await browser.close()\n }",
"additions": 1,
"deletions": 1,
"l... | 2025-05-22T02:03:59 |
electron/electron | 511ff8bc8daf4f976654744d6018f3aa45c40f1f | 95019f0454ba5b3c61bdabec48d1756a1f16ecae | fix: ensure that requestMediaKeySystemAccess resolves (#34886)
When widevine was disabled at the build level we never dealt with the callback passed into GetSupportedKeySystems. This was ok until requests became marked pending in https://chromium-review.googlesource.com/c/chromium/src/+/3430502 until the callback was... | [
{
"path": "shell/app/electron_content_client.cc",
"patch": "@@ -22,17 +22,18 @@\n #include \"ppapi/buildflags/buildflags.h\"\n #include \"shell/common/electron_paths.h\"\n #include \"shell/common/options_switches.h\"\n+#include \"third_party/widevine/cdm/buildflags.h\"\n #include \"ui/base/l10n/l10n_util.h\... | 2022-07-12T07:48:51 |
nodejs/node | 27493a1dd73f41c07f04ca5d89d001e340a9feec | 4d8602046ef613face5cb344b2403e6e40ad7224 | doc: fix arrow vertical alignment in HTML version
This commit fixes the alignment of the bullet points (green arrow) under
'Node.js <version> documentation' by drawing a triangle in CSS instead
of using an ASCII char.
PR-URL: https://github.com/nodejs/node/pull/52193
Reviewed-By: Antoine du Hamel <duhamelantoine1995@... | [
{
"path": "doc/api_assets/style.css",
"patch": "@@ -182,27 +182,32 @@ li.picker-header {\n position: relative;\n }\n \n-li.picker-header .collapsed-arrow, li.picker-header .expanded-arrow {\n- width: 1.5ch;\n- height: 1.5em;\n-}\n-\n-li.picker-header .collapsed-arrow {\n- display: inline-block;\n-}\n-\... | 2024-03-27T23:35:22 |
golang/go | 3aa7c5ef01e147fb482f4b3e79c6f875a4b1b9fb | 3f4164f508b8148eb526fc096884dba2609f5835 | testing: fix reference to B.N in docstring
Currently, a documentation reference to a struct member (such as [B.N])
does not result in it being rendered as a link, and thus the square
brackets remain in the rendered documentation which is mildly confusing.
The issue can be seen at
https://pkg.go.dev/testing@master#hdr... | [
{
"path": "src/testing/testing.go",
"patch": "@@ -120,7 +120,7 @@\n // # b.N-style benchmarks\n //\n // Prior to the introduction of [B.Loop], benchmarks were written in a\n-// different style using [B.N]. For example:\n+// different style using B.N. For example:\n //\n //\tfunc BenchmarkRandInt(b *testing.... | 2025-01-21T01:38:26 |
facebook/react | 1308e49a6923d0dfd935dcd12cc420ec57239981 | 1a1d61fed98a02c9b1bac029d0bc11c3e4db896d | [Flight Plugin] Scan for "use client" (#26474)
## Summary
Our toy webpack plugin for Server Components is pretty broken right now
because, now that `.client.js` convention is gone, it ends up adding
every single JS file it can find (including `node_modules`) as a
potential async dependency. Instead, it should on... | [
{
"path": "packages/react-server-dom-webpack/package.json",
"patch": "@@ -84,7 +84,7 @@\n \"webpack\": \"^5.59.0\"\n },\n \"dependencies\": {\n- \"acorn\": \"^6.2.1\",\n+ \"acorn-loose\": \"^8.3.0\",\n \"neo-async\": \"^2.6.1\",\n \"loose-envify\": \"^1.1.0\"\n },",
"additions": ... | 2023-03-30T21:05:03 |
vercel/next.js | a2cc0734a456e6cdc5076d16c63039d550f193fa | e680bee9cc1378e624267f786f9ee31a6d9f5a9a | Model prerender store as separate server and client scopes (#79429)
When we adopted the architecture of WorkUnitStore the idea was that code
could be running in only one scope at a time. The point was to limit
accidental leakage of incorrect data into a scope, for instance by
carrying request data into a cache functio... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -690,5 +690,7 @@\n \"689\": \"The \\\\`compiler.defineServer\\\\` option is configured to replace the \\\\`%s\\\\` variable. This variable is either part of a Next.js built-in or is already configured.\",\n \"690\": \"Invariant: loadManifests called fo... | 2025-05-21T23:23:30 |
electron/electron | 95019f0454ba5b3c61bdabec48d1756a1f16ecae | 4190ec248260c3e7673889f2ed77625f47812a4e | fix: update Windows caption buttons to match Win11 style (#34790) | [
{
"path": "filenames.gni",
"patch": "@@ -85,6 +85,8 @@ filenames = {\n \"shell/browser/ui/message_box_win.cc\",\n \"shell/browser/ui/tray_icon_win.cc\",\n \"shell/browser/ui/views/electron_views_delegate_win.cc\",\n+ \"shell/browser/ui/views/win_icon_painter.cc\",\n+ \"shell/browser/ui/vie... | 2022-07-12T07:13:40 |
nodejs/node | 4d8602046ef613face5cb344b2403e6e40ad7224 | 081319d762e5ca1bacaf6dbe9c07ccbfe59e4468 | tools: install npm PowerShell scripts on Windows
npm 9.8.0 added PowerShell scripts that should be installed alongside
the cmd and shell scripts on Windows.
Fixes: https://github.com/nodejs/node/issues/48471
Refs: https://github.com/npm/cli/pull/6548
PR-URL: https://github.com/nodejs/node/pull/52009
Reviewed-By: Luig... | [
{
"path": "tools/msvs/msi/nodemsi/product.wxs",
"patch": "@@ -88,8 +88,10 @@\n Description=\"!(loc.npm_Description)\">\n <ComponentRef Id=\"NpmCmdScript\"/>\n <ComponentRef Id=\"NpmBashScript\"/>\n+ <ComponentRef Id=\"NpmPowerShellScript\"/>\n <ComponentRef Id=\"NpxCmdScr... | 2024-03-27T20:39:55 |
golang/go | 3f4164f508b8148eb526fc096884dba2609f5835 | 40b3c0e58a0ae8dec4684a009bf3806769e0fc41 | runtime: delete out of date comment
Fixes #71328
Change-Id: I5827255bf1f53b8fc4a84fa1accb4089f73d5e8a
GitHub-Last-Rev: 26f4eab182130c709be269491049fade3327ddd3
GitHub-Pull-Request: golang/go#71337
Reviewed-on: https://go-review.googlesource.com/c/go/+/643456
Reviewed-by: Jorropo <jorropo.pgm@gmail.com>
Reviewed-by: K... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -1068,9 +1068,6 @@ func internal_sync_fatal(s string) {\n // throw should be used for runtime-internal fatal errors where Go itself,\n // rather than user code, may be at fault for the failure.\n //\n-// NOTE: temporarily marked \"go:noinline\" pending investig... | 2025-01-20T04:11:23 |
facebook/react | 89ea2d5f7c13195e6963ba8fc5119a910b4b546c | e43f91edc392728e6e78aeb68b1707911b760b6f | [be] Fix missing break and update no-fallthrough eslint rule
- Fixes a missing break in InferTypes - I disabled no-fallthrough previously
because it would erroneously report that certain cases with non-builtin throws
(eg `invariant`) would fall through. This brings the rule back but allows
disabling it with a `// ... | [
{
"path": "compiler/forget/src/TypeInference/InferTypes.ts",
"patch": "@@ -12,6 +12,7 @@ import {\n } from \"../HIR/HIR\";\n import { BuiltInArrayId, BuiltInObjectId } from \"../HIR/ObjectShape\";\n import { eachInstructionLValue, eachInstructionOperand } from \"../HIR/visitors\";\n+import { assertExhaustiv... | 2023-03-30T19:50:07 |
vercel/next.js | e680bee9cc1378e624267f786f9ee31a6d9f5a9a | 5ce7065020b9722f0cbc3ee238de049f86582892 | fix(next-swc): Fix react compiler usefulness detector (#79479)
### What?
Fix usefulness detector for the React Compiler
### Why?
JSX was also target of the React Compiler
### How?
Closes https://github.com/vercel/next.js/issues/79385 | [
{
"path": "crates/next-custom-transforms/src/react_compiler.rs",
"patch": "@@ -38,6 +38,18 @@ impl Visit for Finder {\n if self.found {\n return;\n }\n+ if matches!(\n+ node,\n+ Expr::JSXMember(..)\n+ | Expr::JSXNamespacedName(..)\n+ ... | 2025-05-21T22:47:22 |
electron/electron | f63bba8ce24917f1c78a8804496fe0f5b461b0af | 8f3fb8db09ac049894c8ab099979810899f9435b | fix: set Wayland application ID (#34855)
* refactor: extract XDG app ID logic into a method
* fix: set application ID on Wayland | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -51,6 +51,7 @@\n #include \"shell/browser/ui/views/client_frame_view_linux.h\"\n #include \"shell/browser/ui/views/frameless_view.h\"\n #include \"shell/browser/ui/views/native_frame_view.h\"\n+#include \"shell/common/platform_util.h\"\n #includ... | 2022-07-11T18:26:18 |
golang/go | 40b3c0e58a0ae8dec4684a009bf3806769e0fc41 | 87023bb27f2cbe86c5baa9cef5ad91a6fc9a1c14 | internal/coverage: refactor EmitTextual in preparation for bugfix
Refactor cformat.EmitTextual to accept a package filter (list of
packages to report). This is a no-op in terms of exposed coverage
functionality, but we will need this feature in a subsequent patch.
Updates #70244.
Change-Id: I1e6bcbfb5e68187d4d69d54b... | [
{
"path": "src/cmd/covdata/dump.go",
"patch": "@@ -331,7 +331,7 @@ func (d *dstate) Finish() {\n \t\t\td.format.EmitFuncs(os.Stdout)\n \t\t}\n \t\tif d.textfmtoutf != nil {\n-\t\t\tif err := d.format.EmitTextual(d.textfmtoutf); err != nil {\n+\t\t\tif err := d.format.EmitTextual(nil, d.textfmtoutf); err != ... | 2024-11-12T17:12:44 |
nodejs/node | b9dc2a3243cc723cd189c137a53422f0aab4d77b | fa13ed6d791106135d2ab8d7a82ee4285615ebf0 | 2024-03-26, Version 18.20.0 'Hydrogen' (LTS)
Notable changes:
Added support for import attributes:
Support has been added for import attributes, to replace the old import
assertions syntax. This will aid migration by making the new syntax
available across all currently supported Node.js release lines.
For more deta... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -68,7 +68,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V20.md#20.0.0\">20.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.19.1\">18.19.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.20.0\">18.20.0... | 2024-03-20T17:34:55 |
vercel/next.js | 5ce7065020b9722f0cbc3ee238de049f86582892 | c660bd4f61015a3db293fffb0dcb330b2258cef7 | build: Update `swc_core` to `v26.0.1` and `styled-jsx` (#79464)
### What?
- Update `swc_core`.
The changelog for swc_core: https://github.com/swc-project/swc/compare/swc_core%40v26.0.0...swc_core%40v26.0.1
- Update `styled-jsx` to the latest version.
### Why?
To apply the bugfix for `styled-jsx`. https://gith... | [
{
"path": "Cargo.lock",
"patch": "@@ -3009,7 +3009,7 @@ dependencies = [\n \"httpdate\",\n \"itoa\",\n \"pin-project-lite\",\n- \"socket2 0.5.8\",\n+ \"socket2 0.4.9\",\n \"tokio\",\n \"tower-service\",\n \"tracing\",\n@@ -7306,9 +7306,9 @@ dependencies = [\n \n [[package]]\n name = \"styled_jsx\"\n-v... | 2025-05-21T22:46:26 |
electron/electron | 2eb0e5dcab7e339bb2bff763d21c27181cc99d9a | 459404f53690fed4e9785dffebcb625e2d04d428 | fix: safer check for WCO button updates (#34833) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -876,7 +876,7 @@ bool NativeWindowViews::IsMovable() {\n void NativeWindowViews::SetMinimizable(bool minimizable) {\n #if BUILDFLAG(IS_WIN)\n FlipWindowStyle(GetAcceleratedWidget(), minimizable, WS_MINIMIZEBOX);\n- if (titlebar_overlay_enable... | 2022-07-11T09:45:01 |
rust-lang/rust | 2b32446c7cdda434a4aed521dd6ec63891feb0b5 | 38c71295e8cdc6f04511fd7a12b28f000b620994 | Suggest changing `iter`/`into_iter` when the other was meant
When encountering a call to `iter` that should have been `into_iter` and vice-versa, provide a structured suggestion:
```
error[E0271]: type mismatch resolving `<IntoIter<{integer}, 3> as IntoIterator>::Item == &{integer}`
--> $DIR/into_iter-when-iter-was... | [
{
"path": "compiler/rustc_span/src/symbol.rs",
"patch": "@@ -270,6 +270,7 @@ symbols! {\n Into,\n IntoFuture,\n IntoIterator,\n+ IntoIteratorItem,\n IoBufRead,\n IoLines,\n IoRead,",
"additions": 1,
"deletions": 0,
"language": "Rust"
},
... | 2026-01-25T23:00:18 |
golang/go | 87023bb27f2cbe86c5baa9cef5ad91a6fc9a1c14 | 80bf7d83edbb48e2411d755f0636565467bb5a56 | go/types, types2: ensure deterministic output when reporting an init cycle
Fixes #71254
Change-Id: Ie3bad281403c8ff6215e03d92760b9a378714cee
GitHub-Last-Rev: 9b804a7842421dca6a97c57ce18523b593b0817d
GitHub-Pull-Request: golang/go#71264
Reviewed-on: https://go-review.googlesource.com/c/go/+/642396
LUCI-TryBot-Result: ... | [
{
"path": "src/cmd/compile/internal/types2/initorder.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"fmt\"\n \t. \"internal/types/errors\"\n \t\"slices\"\n+\t\"sort\"\n )\n \n // initOrder computes the Info.InitOrder for package variables.\n@@ -139,7 +140,16 @@ func findPath(objMap map[Object]*declInfo, fro... | 2025-01-17T00:38:59 |
nodejs/node | c43a9442311a13a3fad16ce834f4b3fa9f24a94c | 6af404981030ac5d41f2d96914fab38a1a4f3c2b | tools: fix error reported by coverity in js2c.cc
Coverity reported using the wrong argument types
to printf
Signed-off-by: Michael Dawson <midawson@redhat.com>
PR-URL: https://github.com/nodejs/node/pull/52142
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "tools/js2c.cc",
"patch": "@@ -613,8 +613,8 @@ bool Simplify(const std::vector<char>& code,\n }\n \n if (simplified_count > 0) {\n- Debug(\"Simplified %d characters, \", simplified_count);\n- Debug(\"old size %d, new size %d\\n\", code_size, simplified->size());\n+ Debug(\"Simplified ... | 2024-03-18T20:15:48 |
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.