repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
facebook/react | e0af1aabec3d3ee24f57aaaf9407860463f20213 | 9b5e0517b4d203d49063e975a4597e9c666e0212 | Fix wrong context argument to `apply`
The context argument should be the array, not null.
I wrote a test that I'll include in the next PR. | [
{
"path": "packages/react-reconciler/src/ReactFiberWorkLoop.new.js",
"patch": "@@ -925,7 +925,7 @@ export function queueRecoverableErrors(errors: Array<mixed>) {\n workInProgressRootRecoverableErrors = errors;\n } else {\n workInProgressRootConcurrentErrors = workInProgressRootConcurrentErrors.pus... | 2022-02-10T01:49:35 |
vercel/next.js | 121306dd245d0730f0058652e7a7a40a99e7c446 | 9ac41a44a9a6c2e281ff6c3add2c7e13521f5013 | Fork Form implementation for Pages and App Router (#76498)
The Form component should not need to check at runtime whether it's
running in Pages or App Router — this is a build-time condition.
The implementation is different enough that we might as well fork the
implementations at the module level.
I used #73019 as a... | [
{
"path": "crates/next-core/src/next_import_map.rs",
"patch": "@@ -208,6 +208,10 @@ pub async fn get_next_client_import_map(\n \"next/link\",\n request_to_import_mapping(project_path, \"next/dist/client/app-dir/link\"),\n );\n+ import_map.insert_exact_a... | 2025-02-25T17:27:17 |
electron/electron | ef2ce9dd67a9bb4cba025c26e4b2501f0a52e4cc | e54667e17e191a8facee71d3dda251afc3461130 | fix: flakey extension bg page test (#29744) | [
{
"path": "spec-main/extensions-spec.ts",
"patch": "@@ -432,21 +432,18 @@ describe('chrome extensions', () => {\n it('has session in background page', async () => {\n const customSession = session.fromPartition(`persist:${require('uuid').v4()}`);\n const promise = emittedOnce(app, 'web-conte... | 2021-06-21T01:11:40 |
golang/go | 42d1f08cbbe32f3734ed701975897654ae25efe6 | 557211c150150647301f92caf8965c4c6dc60a5f | src/cmd/go/internal/load: remove PackageError.Hard
This field isn't actually used. The last usage was deleted in CL 518775
and even then it wasn't actually being set.
Change-Id: Ifbe9da9c2a6d81a40c136a60028902176f443588
Reviewed-on: https://go-review.googlesource.com/c/go/+/610255
Reviewed-by: Sam Thanawalla <samthan... | [
{
"path": "src/cmd/go/internal/load/pkg.go",
"patch": "@@ -459,7 +459,6 @@ type PackageError struct {\n \tPos string // position of error\n \tErr error // the error itself\n \tIsImportCycle bool // the error is an import cycle\n-\tHard bool // whether th... | 2024-09-03T15:26:09 |
rust-lang/rust | e603055d89063ee3fea237f34deccbf333a6e91a | 9e8a0c51641114b46b2dba657a121b2483b5aee3 | Fix ICE when transmute Assume field is invalid | [
{
"path": "compiler/rustc_transmute/src/lib.rs",
"patch": "@@ -155,14 +155,14 @@ mod rustc {\n .enumerate()\n .find(|(_, field_def)| name == field_def.name)\n .unwrap_or_else(|| panic!(\"There were no fields named `{name}`.\"));\n- f... | 2026-01-05T16:20:36 |
facebook/react | 9b5e0517b4d203d49063e975a4597e9c666e0212 | 274b9fb168eae1b3e5b83db657eb964d365fc45a | Remove deprecated wildcard folder mapping (#23256)
* Remove deprecated folder mapping
Node v16 deprecated the use of trailing "/" to define subpath folder
mappings in the "exports" field of package.json.
The recommendation is to explicitly list all our exports. We already do
that for all our public modules. I ... | [
{
"path": "packages/react-dom/package.json",
"patch": "@@ -50,8 +50,8 @@\n \"./profiling\": \"./profiling.js\",\n \"./test-utils\": \"./test-utils.js\",\n \"./unstable_testing\": \"./unstable_testing.js\",\n- \"./package.json\": \"./package.json\",\n- \"./\": \"./\"\n+ \"./src/*\": \"./... | 2022-02-09T19:37:17 |
nodejs/node | 4aa0eff787c14f14a239cf2f44bf751a0151e3eb | 4fdf70f9abdff71ab784234a0dc7a1ba92f82fca | policy: disable process.binding() when enabled
process.binding() can be used to trivially bypass restrictions imposed
through a policy. Since the function is deprecated already, simply
replace it with a stub when a policy is being enabled.
Fixes: https://hackerone.com/bugs?report_id=1946470
PR-URL: https://github.com... | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -2215,6 +2215,9 @@ Type: Documentation-only (supports [`--pending-deprecation`][])\n \n `process.binding()` is for use by Node.js internal code only.\n \n+While `process.binding()` has not reached End-of-Life status in general, it is\n+unavailable when [poli... | 2023-04-16T20:26:47 |
vercel/next.js | 10ff5509918c6d7d9fcfb8953cd22145229bcfe3 | f505395d8e58a904a74699b8e85cdd478fa5b5ae | [dev-overlay] style: improve error label background color contrast (#76490)
### Why?
The color contrast for the error label does not satisfy AAA of WCAG
color contrast standards.
Even though it is AA, the text is small and is generally hard to read.
| Before | After |
|--------|--------|
|
 (#29721) | [
{
"path": "shell/browser/ui/views/frameless_view.cc",
"patch": "@@ -38,6 +38,13 @@ int FramelessView::ResizingBorderHitTest(const gfx::Point& point) {\n bool can_ever_resize = frame_->widget_delegate()\n ? frame_->widget_delegate()->CanResize()\n :... | 2021-06-21T01:10:40 |
golang/go | ca2cb8d7a77c06530e2cef3931c195ad8abb2b4f | 2b832b4296220aab1189e1b7e939e4e68e8924b9 | cmd/internal/testdir: remove temp files
Function stdlibImportcfgFile creates a temporary directory and a file in
it, which are never deleted.
The easiest to fix this (without creating the file unnecessarily, or
creating it multiple times) is to add a global tmpDir and use it in
stdlibImportcfgFile.
Change-Id: Ia971b... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -63,6 +63,7 @@ var (\n \tcgoEnabled bool\n \tgoExperiment string\n \tgoDebug string\n+\ttmpDir string\n \n \t// dirs are the directories to look for *.go files in.\n \t// TODO(bradfitz): just use all directories?\n@@ -115,6 +116... | 2024-09-05T05:40:31 |
rust-lang/rust | accfc34e43b0fb6ef9ac162ca256ae270b6d468e | bd33b83cfdbac9bffa3b04aaef95ec97827909a9 | rustc_codegen_llvm: update alignment for double on AIX
This was recently fixed upstream in LLVM, so we update our default
layout to match.
@rustbot label: +llvm-main | [
{
"path": "compiler/rustc_codegen_llvm/src/context.rs",
"patch": "@@ -211,6 +211,10 @@ pub(crate) unsafe fn create_module<'ll>(\n // LLVM 22 updated the NVPTX layout to indicate 256-bit vector load/store: https://github.com/llvm/llvm-project/pull/155198\n target_data_layout = target_... | 2025-12-11T15:31:33 |
facebook/react | 5690932765b65998ea9f054f0740002257b7675c | 0dedfcc681d7963c5d4d138dc8eba69539a56015 | Add onErrorShell Callback (#23247)
This indicates that an error has happened before the shell completed and
there's no point in emitting the result of this stream.
This is not quite the same as other fatal errors that can happen even
after streaming as started.
It's also not quite the same as onError before on... | [
{
"path": "fixtures/fizz-ssr-browser/index.html",
"patch": "@@ -20,29 +20,37 @@ <h1>Fizz Example</h1>\n <script src=\"../../build/node_modules/react-dom/umd/react-dom-server.browser.development.js\"></script>\n <script src=\"https://unpkg.com/babel-standalone@6/babel.js\"></script>\n <script typ... | 2022-02-09T03:38:14 |
nodejs/node | bd7443ad0a99f786634791d85545a8c5557653c8 | ae25da20fa098bd8cb551efb7bbefa3e8ce7328b | lib,permission: restrict process.binding when pm is enabled
PR-URL: https://github.com/nodejs-private/node-private/pull/438
Fixes: https://github.com/nodejs-private/node-private/issues/422
CVE-ID: CVE-2023-32558 | [
{
"path": "lib/internal/process/pre_execution.js",
"patch": "@@ -33,6 +33,7 @@ const {\n ERR_MANIFEST_ASSERT_INTEGRITY,\n ERR_NO_CRYPTO,\n ERR_MISSING_OPTION,\n+ ERR_ACCESS_DENIED,\n } = require('internal/errors').codes;\n const assert = require('internal/assert');\n const {\n@@ -536,6 +537,9 @@ func... | 2023-06-27T13:44:56 |
vercel/next.js | f505395d8e58a904a74699b8e85cdd478fa5b5ae | 03a600c5b8cbbcdcd98c58874b5a139741c9de16 | [app i18n]: warn about i18n configuration deprecation in app router (#76346)
The `i18n` configuration was supported in app router to assist with
incremental migration, but it's only meant to be used for pages router.
There are some bugs that can pop up when attempting to use it with app
router.
Disabling `i18n` confi... | [
{
"path": "packages/next/src/server/config.ts",
"patch": "@@ -28,6 +28,7 @@ import { transpileConfig } from '../build/next-config-ts/transpile-config'\n import { dset } from '../shared/lib/dset'\n import { normalizeZodErrors } from '../shared/lib/zod'\n import { HTML_LIMITED_BOT_UA_RE_STRING } from '../shar... | 2025-02-25T15:37:14 |
electron/electron | 4450327fda2a1d14fc426a49a8d6cb520cce9c94 | de6696ef1de289d68e9f1981cfd8951ea5be0efc | fix: select element not working on Windows (#29742) | [
{
"path": "patches/chromium/extend_apply_webpreferences.patch",
"patch": "@@ -12,7 +12,7 @@ Ideally we could add an embedder observer pattern here but that can be\n done in future work.\n \n diff --git a/third_party/blink/renderer/core/exported/web_view_impl.cc b/third_party/blink/renderer/core/exported/web... | 2021-06-18T07:05:18 |
golang/go | 8cb6143fed45d23586a2b66e5767a656138b4cb3 | d1ce116e409453be764bde7c3f494e7fe1565102 | go/printer: mention that input file is formatted in TestFiles error message
Currently when one of the tests in TestFiles fail, then the error looks
like this:
--- testdata/generics.input
+++ testdata/generics.golden
which is confusing, with this change it will be:
--- format(testdata/generics.input)
+++ testdata/ge... | [
{
"path": "src/go/printer/printer_test.go",
"patch": "@@ -126,7 +126,7 @@ func runcheck(t *testing.T, source, golden string, mode checkMode) {\n \t}\n \n \t// formatted source and golden must be the same\n-\tif err := checkEqual(source, golden, res, gld); err != nil {\n+\tif err := checkEqual(fmt.Sprintf(\"... | 2024-09-05T16:07:13 |
facebook/react | 9d4e8e84f7fb782385d81ffcdcda73822acf4ad1 | 1dece523505390a2e0da5f93db6d0c37287e02c4 | React Native raw event EventEmitter - intended for app-specific perf listeners and debugging (#23232)
* RawEventEmitter: new event perf profiling mechanism outside of Pressability to capture all touch events, and other event types
* sync
* concise notation
* Move event telemetry event emitter call from Plugin... | [
{
"path": "packages/react-native-renderer/src/ReactFabricEventEmitter.js",
"patch": "@@ -21,6 +21,8 @@ import {plugins} from './legacy-events/EventPluginRegistry';\n import getListener from './ReactNativeGetListener';\n import {runEventsInBatch} from './legacy-events/EventBatching';\n \n+import {RawEventEmi... | 2022-02-08T02:34:01 |
nodejs/node | 6d46d986a47ba86ea7ed52c86c46085ca5a8462b | eed21991fbae3dfef4d80b73fe343908a426fa52 | 2023-08-09, Version 18.17.1 'Hydrogen' (LTS)
Notable changes:
Following CVEs are fixed in this release:
* CVE-2023-32002: Policies can be bypassed via Module._load (High)
* CVE-2023-32006: Policies can be bypassed by module.constructor.createRequire (Medium)
* CVE-2023-32559: Policies can be bypassed via process.bin... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -44,7 +44,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.17.0\">18.17.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.17.1\">18.17.1... | 2023-08-06T13:11:24 |
vercel/next.js | 03a600c5b8cbbcdcd98c58874b5a139741c9de16 | 35eb671e0ef60ebea7f18c73cdc05ffa67376024 | fix: workaround for TS bug in Object.defineProperty (#75944)
This PR changes the server action generated code a bit to work around a
typescript bug and remove some false positives we got while
typechecking: https://github.com/microsoft/TypeScript/issues/61165
The trick is that typescript seems to look for *exactly*
`... | [
{
"path": "crates/next-custom-transforms/src/transforms/server_actions.rs",
"patch": "@@ -24,6 +24,7 @@ use swc_core::{\n utils::{private_ident, quote_ident, ExprFactory},\n visit::{noop_visit_mut_type, visit_mut_pass, VisitMut, VisitMutWith},\n },\n+ quote,\n };\n use turbo_rcstr::Rc... | 2025-02-25T15:30:03 |
electron/electron | c8412478157c9a506927c3b29d9c73f278d431c4 | f00a2d062973327f87d8c7c368713d00b19009be | fix: color select eyedropper not working within DevTools (#29729) | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -142,6 +142,8 @@ static_library(\"chrome\") {\n \n if (enable_color_chooser) {\n sources += [\n+ \"//chrome/browser/devtools/devtools_eye_dropper.cc\",\n+ \"//chrome/browser/devtools/devtools_eye_dropper.h\",\n \"//chrome/browser/platform... | 2021-06-17T13:42:51 |
rust-lang/rust | 622572f6df87a8b374159a8ee95a1195a600754b | de505d24db776bf399b9932f673f3f3de8c591a0 | tests/debuginfo/basic-stepping.rs: Add revisions `default-mir-passes`, `no-SingleUseConsts-mir-pass`
To prevent regressions our test must cover the code both inside and
outside of the `SingleUseConsts` MIR pass. Use revisions for that. | [
{
"path": "tests/debuginfo/basic-stepping.rs",
"patch": "@@ -10,19 +10,23 @@\n // Debugger tests need debuginfo\n //@ compile-flags: -g\n \n+// FIXME(#128945): SingleUseConsts shouldn't need to be disabled.\n+//@ revisions: default-mir-passes no-SingleUseConsts-mir-pass\n+//@ [no-SingleUseConsts-mir-pass] c... | 2025-10-07T04:41:09 |
facebook/react | 1dece523505390a2e0da5f93db6d0c37287e02c4 | cd4eb116cf24d5b05107caf67b96c8e0f0cd7dbc | Add back warning with component stack on Hydration mismatch (#23241)
* add back warning
* wrapper errorMock in __DEV__ flag
* lint | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -1740,8 +1740,13 @@ describe('ReactDOMFizzServer', () => {\n 'The server HTML was replaced with client content',\n ]);\n }).toErrorDev(\n- 'Warning: An error occurred during hydration. The ... | 2022-02-07T22:25:33 |
golang/go | 123594d3863b0a4b9094a569957d1bd94ebe7512 | 9e9b1f57c26a6d13fdaebef67136718b8042cdba | runtime: remove cloudwego/frugal unused linkname from comment
frugal no longer uses these methods from next Go version
Fixes #69222
Change-Id: Ie71de0752cabef7d5584d3392d6e5920ba742350
Reviewed-on: https://go-review.googlesource.com/c/go/+/609918
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Austin Cl... | [
{
"path": "src/runtime/alg.go",
"patch": "@@ -97,7 +97,6 @@ func memhash64(p unsafe.Pointer, h uintptr) uintptr\n // - github.com/aristanetworks/goarista\n // - github.com/bytedance/sonic\n // - github.com/bytedance/go-tagexpr/v2\n-// - github.com/cloudwego/frugal\n // - github.com/cloudwego/dynam... | 2024-09-04T03:55:52 |
nodejs/node | eed21991fbae3dfef4d80b73fe343908a426fa52 | 6432060c7ce1670467c230d2c0c925465dd311f8 | 2023-08-09, Version 16.20.2 'Gallium' (LTS)
This is a security release.
Notable changes:
Following CVEs are fixed in this release:
* CVE-2023-32002: Policies can be bypassed via Module._load (High)
* CVE-2023-32006: Policies can be bypassed by module.constructor.createRequire (Medium)
* CVE-2023-32559: Policies can... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -69,7 +69,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V18.md#18.0.0\">18.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V16.md#16.20.1\">16.20.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V16.md#16.20.2\">16.20.2... | 2023-08-04T22:13:15 |
rust-lang/rust | de505d24db776bf399b9932f673f3f3de8c591a0 | 6885bdf1af7e0435b80bf79a780c3fe7a495094f | tests/debuginfo/basic-stepping.rs: Don't mix `compile-flags` with `ignore-*`
We want directives nice and tidy. | [
{
"path": "tests/debuginfo/basic-stepping.rs",
"patch": "@@ -5,9 +5,11 @@\n //@ ignore-aarch64: Doesn't work yet.\n //@ ignore-loongarch64: Doesn't work yet.\n //@ ignore-riscv64: Doesn't work yet.\n-//@ compile-flags: -g\n //@ ignore-backends: gcc\n \n+// Debugger tests need debuginfo\n+//@ compile-flags: ... | 2026-01-05T07:08:02 |
vercel/next.js | 86aef9d9bc31d2f5a1748450bbdfc6c0abcc776b | 000a142769ac4147e73c4f92281819e4bf5dc361 | Only log unrecoverable SSR shell errors once (#76484) | [
{
"path": "packages/next/src/client/app-index.tsx",
"patch": "@@ -26,8 +26,6 @@ import { createInitialRouterState } from './components/router-reducer/create-ini\n import { MissingSlotContext } from '../shared/lib/app-router-context.shared-runtime'\n import { setAppBuildId } from './app-build-id'\n import { ... | 2025-02-25T13:45:10 |
electron/electron | b3daa2d672f5b15acf9b69e7fec90a45eb4166e0 | 542abcd6fd18dd0ad5557df1feea7e730eb75e39 | chore: fix BoringSSL conflict in patches (#29748) | [
{
"path": "patches/boringssl/.patches",
"patch": "@@ -1,5 +1,3 @@\n expose_ripemd160.patch\n expose_aes-cfb.patch\n expose_des-ede3.patch\n-src_add_impl_for_evp_pkey_get0.patch\n-ensure_name_not_null_in_evp_get_cipherbyname.patch",
"additions": 0,
"deletions": 2,
"language": "Unknown"
},
{
... | 2021-06-17T11:06:19 |
facebook/react | 848e802d203e531daf2b9b0edb281a1eb6c5415d | 5318971f50da06fd42763689826acecdb14b4c5e | Add onRecoverableError option to hydrateRoot, createRoot (#23207)
* [RFC] Add onHydrationError option to hydrateRoot
This is not the final API but I'm pushing it for discussion purposes.
When an error is thrown during hydration, we fallback to client
rendering, without triggering an error boundary. This is good... | [
{
"path": "packages/react-art/src/ReactARTHostConfig.js",
"patch": "@@ -451,3 +451,7 @@ export function preparePortalMount(portalInstance: any): void {\n export function detachDeletedInstance(node: Instance): void {\n // noop\n }\n+\n+export function logRecoverableError(error) {\n+ // noop\n+}",
"add... | 2022-02-04T15:57:33 |
golang/go | 0fb35efe5bb4d557e2f80171ede59f945646354e | 1e2114349d995ce09c75411463c4cdb59d40d8fc | go/types, types2: factor out code for type checking composite literals
Move code into separate function in separate file.
Replace "goto Error" statements with "x.mode = invalid; return".
No other semantic changes.
Change-Id: I2d5e858e8df3dc1011fa79cdac3db9d3e7b1dfe5
Reviewed-on: https://go-review.googlesource.com/c/g... | [
{
"path": "src/cmd/compile/internal/types2/expr.go",
"patch": "@@ -1150,235 +1150,11 @@ func (check *Checker) exprInternal(T *target, x *operand, e syntax.Expr, hint Ty\n \t\t}\n \n \tcase *syntax.CompositeLit:\n-\t\tvar typ, base Type\n-\t\tvar isElem bool // true if composite literal is an element of an e... | 2024-09-04T23:01:32 |
rust-lang/rust | 93f8ad99507ecb851ace4b1d4e3e7c5cd67ed80c | 5c5c1ff6dbe84e1d9eddd158116f6e40b941ed03 | cleaned up some tests
cleaned up cast-enum-const.rs
cleaned up ufcs-trait-object-format.rs
add comment to cast-to-box-arr.rs
add comment to shadow-primitives.rs
add comment to associated-type-const-nomalization.rs
add comment to fn-trait-explicit-call.rs
add comment to call-unit-struct-impl-fn-once.rs
add comme... | [
{
"path": "tests/ui/associated-types/associated-type-const-nomalization.rs",
"patch": "@@ -1,3 +1,4 @@\n+//! regression test for <https://github.com/rust-lang/rust/issues/26614>\n //@ check-pass\n \n trait Mirror {",
"additions": 1,
"deletions": 0,
"language": "Rust"
},
{
"path": "tests/... | 2025-12-25T15:13:11 |
nodejs/node | d150316a8ecad1a9c20615ae62fcaf4f8d060dcc | 107600923db9b0f4f41f73c5bfe00e113ad45c05 | doc: clarify use of process.env in worker threads on Windows
Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/49008
Fixes: https://github.com/nodejs/node/issues/48955
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed... | [
{
"path": "doc/api/process.md",
"patch": "@@ -1666,7 +1666,9 @@ each [`Worker`][] thread has its own copy of `process.env`, based on its\n parent thread's `process.env`, or whatever was specified as the `env` option\n to the [`Worker`][] constructor. Changes to `process.env` will not be visible\n across [`W... | 2023-08-05T15:26:19 |
vercel/next.js | 000a142769ac4147e73c4f92281819e4bf5dc361 | 825246f5ac15a9de76de6c4c5f6bbfcabc55cfdb | misc: set `.cursorignore` path to start from root (#76486)
### Why?
Since `errors/` is pattern matching,
`react-dev-overlay/components/errors/` was also ignored from Cursor
Editor. | [
{
"path": ".cursorignore",
"patch": "@@ -1,27 +1,24 @@\n # Add directories or file patterns to ignore during indexing (e.g. foo/ or *.csv)\n-.config/\n-.github/\n-.husky/\n-.vscode/\n-bench/\n-crates/**/tests/\n-docs/\n-errors/\n-examples/\n-packages/create-next-app/templates/\n-packages/next/src/compiled/\... | 2025-02-25T13:02:19 |
electron/electron | f71c6c04fdaebe267552b29af6b7389653943d7c | 330c3bc1364e1c99f47878c560312618ddbd9605 | fix: ensure detached devtools are not always draggable (#29717) | [
{
"path": "shell/browser/ui/cocoa/electron_inspectable_web_contents_view.mm",
"patch": "@@ -169,13 +169,12 @@ - (void)setIsDocked:(BOOL)docked activate:(BOOL)activate {\n \n // Switch to new state.\n devtools_docked_ = docked;\n+ auto* inspectable_web_contents =\n+ inspectableWebContentsView_->ins... | 2021-06-16T17:18:02 |
facebook/react | 5318971f50da06fd42763689826acecdb14b4c5e | 3a44621296e866eb86123fa5777975765138e633 | Remove logic for multiple error recovery attempts (#23227)
This deletes some internal behavior that was only used by
useOpaqueIdentifier, as an implementation detail: if an update is
scheduled during the render phase, and something threw an error, we
would try rendering again, either until there were no more errors... | [
{
"path": "packages/react-reconciler/src/ReactFiberWorkLoop.new.js",
"patch": "@@ -894,23 +894,7 @@ function recoverFromConcurrentError(root, errorRetryLanes) {\n }\n }\n \n- let exitStatus;\n-\n- const MAX_ERROR_RETRY_ATTEMPTS = 50;\n- for (let i = 0; i < MAX_ERROR_RETRY_ATTEMPTS; i++) {\n- exi... | 2022-02-02T21:14:20 |
golang/go | 1e2114349d995ce09c75411463c4cdb59d40d8fc | 32bd777a37847566b5cf921f77ccd8877b07027b | cmd/compile/internal/syntax: handle parentheses around constraints consistently
Generally, the parser strips (i.e., does not record in the syntax tree)
unnecessary parentheses. Specifically, given a type parameter list of
the form
[P (C),]
it records it as
[P C]
and then no comma is required when p... | [
{
"path": "src/cmd/compile/internal/syntax/parser.go",
"patch": "@@ -721,8 +721,20 @@ func extractName(x Expr, force bool) (*Name, Expr) {\n \tcase *CallExpr:\n \t\tif name, _ := x.Fun.(*Name); name != nil {\n \t\t\tif len(x.ArgList) == 1 && !x.HasDots && (force || isTypeElem(x.ArgList[0])) {\n-\t\t\t\t// x... | 2024-09-04T20:20:36 |
nodejs/node | 556b1ca900979c9c91b0f15232802f5d966f2fe0 | 3af7cfe7d4b55ed88a68d2a04212d72540a4951a | tls: fix bugs of double TLS
Fixs two issues in `TLSWrap`, one of them is reported in
https://github.com/nodejs/node/issues/30896.
1. `TLSWrap` has exactly one `StreamListener`, however,
that `StreamListener` can be replaced. We have not been
rigorous enough here: if an active write has not been
finished before the tr... | [
{
"path": "lib/_tls_wrap.js",
"patch": "@@ -545,25 +545,36 @@ function TLSSocket(socket, opts) {\n this[kPendingSession] = null;\n \n let wrap;\n- if ((socket instanceof net.Socket && socket._handle) || !socket) {\n- // 1. connected socket\n- // 2. no socket, one will be created with net.Socket()... | 2023-07-15T01:48:53 |
facebook/react | 2ed58eb889b2b2a8a745ec6c73785f8a87034d1f | 3d1e7e72783bbd03d5d28c5e9d682da98d6b426e | Readme fixes (#23187)
* readme: fix contributing guide links | [
{
"path": "README.md",
"patch": "@@ -3,10 +3,10 @@\n React is a JavaScript library for building user interfaces.\n \n * **Declarative:** React makes it painless to create interactive UIs. Design simple views for each state in your application, and React will efficiently update and render just the right comp... | 2022-01-27T00:13:17 |
vercel/next.js | 400a1814b490cdfc8e0c2da6868737dd800acd0e | 0aa6c66621e697c3b71c2ae8989186424178fd58 | [dev-overlay] replace the react hydration error link with nextjs one (#76438) | [
{
"path": "packages/next/src/client/components/is-hydration-error.ts",
"patch": "@@ -10,7 +10,10 @@ const reactHydrationStartMessages = [\n `A tree hydrated but some attributes of the server rendered HTML didn't match the client properties. This won't be patched up. This can happen if a SSR-ed Client Comp... | 2025-02-25T09:40:44 |
electron/electron | d59e2d7b2ec1fdef8cd3eeb212da3624d17e8c7a | 6fd9e4280c7036ba74527380431c80fb573a10b6 | fix: draggable regions with devtools open (#29696) | [
{
"path": "shell/browser/api/electron_api_browser_window.cc",
"patch": "@@ -396,6 +396,10 @@ void BrowserWindow::ResetBrowserViews() {\n #endif\n }\n \n+void BrowserWindow::OnDevToolsResized() {\n+ UpdateDraggableRegions(draggable_regions_);\n+}\n+\n void BrowserWindow::SetVibrancy(v8::Isolate* isolate,\n ... | 2021-06-16T16:58:30 |
golang/go | f22d73197635b23c13bb852e330e5339eefaf910 | 08c84420bc40d1cd5eb71b85cbe3a36f707bdb3f | go/build/constraint: add parsing limits
Limit the size of build constraints that we will parse. This prevents a
number of stack exhaustions that can be hit when parsing overly complex
constraints. The imposed limits are unlikely to ever be hit in real
world usage.
Fixes #69141
Fixes CVE-2024-34158
Change-Id: I38b614... | [
{
"path": "src/go/build/constraint/expr.go",
"patch": "@@ -16,6 +16,10 @@ import (\n \t\"unicode/utf8\"\n )\n \n+// maxSize is a limit used to control the complexity of expressions, in order\n+// to prevent stack exhaustion issues due to recursion.\n+const maxSize = 1000\n+\n // An Expr is a build tag const... | 2024-06-20T17:45:30 |
rust-lang/rust | af5bebeae3d66b2b92bee4187108f64d931537f8 | 4d166cd2f17472e92b135f31198d012e4ee4f39f | Merge `associated_const_equality` feature gate into MGCA
This removes `associated_const_equality` as a separate feature gate and makes it part of `min_generic_const_args` (mgca).
Key changes:
- Remove `associated_const_equality` from unstable features, add to removed
- Update all test files to use `min_generic_co... | [
{
"path": "tests/ui/trait_duplication_in_bounds_assoc_const_eq.fixed",
"patch": "@@ -1,6 +1,6 @@\n #![deny(clippy::trait_duplication_in_bounds)]\n #![expect(incomplete_features)]\n-#![feature(associated_const_equality, min_generic_const_args)]\n+#![feature(min_generic_const_args)]\n \n trait AssocConstTrait... | 2026-01-03T08:24:56 |
facebook/react | 529dc3ce84f0efe99a8be33ff453c09d5801d5ca | e28a0db224e1c702cf63916eb39284325c439b8b | Fix context providers in SSR when handling multiple requests (#23171)
* add failing test for renderToPipeableStream
* Fix context providers in SSR when handling multiple requests. Closes #23089
* Add sibling regression test
Co-authored-by: zhuyi01 <zhuyi01@ke.com>
Co-authored-by: Dan Abramov <dan.abramov@me.... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServerNode-test.js",
"patch": "@@ -338,4 +338,188 @@ describe('ReactDOMFizzServer', () => {\n expect(output.result).toContain('Loading');\n expect(isCompleteCalls).toBe(1);\n });\n+\n+ // @gate experimental\n+ it('should be able to get cont... | 2022-01-24T17:52:51 |
nodejs/node | 3af7cfe7d4b55ed88a68d2a04212d72540a4951a | a061781da3c79cb56b108627303f38d446700d67 | test: refactor `test-node-output-errors`
The main reason is to not have the test fail if the CWD contains some
special URL chars.
PR-URL: https://github.com/nodejs/node/pull/48992
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "test/parallel/test-node-output-errors.mjs",
"patch": "@@ -3,6 +3,7 @@ import * as fixtures from '../common/fixtures.mjs';\n import * as snapshot from '../common/assertSnapshot.js';\n import * as os from 'node:os';\n import { describe, it } from 'node:test';\n+import { pathToFileURL } from 'node:u... | 2023-08-03T21:52:30 |
vercel/next.js | 0aa6c66621e697c3b71c2ae8989186424178fd58 | 63f2a78fee8184271ae3aea9ee1f55baae70326e | [Turbopack] fix TLA cycle detection (#76475)
### What?
* add cycle detection to module graph
* add cycle order test case
* only check cycles with inherit async for async module flagging | [
{
"path": "turbopack/crates/turbopack-core/src/module_graph/async_module_info.rs",
"patch": "@@ -111,18 +111,19 @@ async fn compute_async_module_info_single(\n },\n )?;\n \n- petgraph::algo::TarjanScc::new().run(&*graph.graph, |scc| {\n- // Only SCCs with more than one node are cycles\... | 2025-02-25T09:37:20 |
golang/go | 08c84420bc40d1cd5eb71b85cbe3a36f707bdb3f | dd2019528b669908f8ccc0c327a64d0e07fc2a1b | encoding/gob: cover missed cases when checking ignore depth
This change makes sure that we are properly checking the ignored field
recursion depth in decIgnoreOpFor consistently. This prevents stack
exhaustion when attempting to decode a message that contains an
extremely deeply nested struct which is ignored.
Thanks... | [
{
"path": "src/encoding/gob/decode.go",
"patch": "@@ -911,8 +911,11 @@ func (dec *Decoder) decOpFor(wireId typeId, rt reflect.Type, name string, inProg\n var maxIgnoreNestingDepth = 10000\n \n // decIgnoreOpFor returns the decoding op for a field that has no destination.\n-func (dec *Decoder) decIgnoreOpFor... | 2024-05-03T13:21:39 |
facebook/react | 13036bfbc8ecbcf4451adb7bde397f438caa8607 | ca143e18d83dcc57d7133d8859e0fc06df39b9f0 | DevTools should not crawl unmounted subtrees when profiling starts (#23162)
Previously we crawled all subtrees, even not-yet-mounted ones, to initialize context values. This was not only unecessary, but it also caused an error to be thrown. This commit adds a test and fixes that behavior. | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilerStore-test.js",
"patch": "@@ -221,4 +221,24 @@ describe('ProfilerStore', () => {\n expect(data.commitData).toHaveLength(1);\n expect(data.operations).toHaveLength(1);\n });\n+\n+ it('should not throw while initializing context values... | 2022-01-21T16:05:49 |
electron/electron | 6fd9e4280c7036ba74527380431c80fb573a10b6 | 7474c59ea076e6a3b20bc3d0ea9712b40e431c59 | fix: disable CET as v8 deoptimization is incompatible with it (#29689)
Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com> | [
{
"path": "build/args/all.gn",
"patch": "@@ -31,3 +31,5 @@ is_cfi = false\n \n # Make application name configurable at runtime for cookie crypto\n allow_runtime_configurable_key_storage = true\n+\n+enable_cet_shadow_stack = false",
"additions": 2,
"deletions": 0,
"language": "Unknown"
}
] | 2021-06-16T16:57:58 |
nodejs/node | a061781da3c79cb56b108627303f38d446700d67 | 1353681edfeace3571c8eda965e5a0a02ca6d3a5 | test: use `fixtures.fileURL` when appropriate
PR-URL: https://github.com/nodejs/node/pull/48990
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/parallel/test-fs-whatwg-url.js",
"patch": "@@ -3,19 +3,9 @@\n const common = require('../common');\n const fixtures = require('../common/fixtures');\n const assert = require('assert');\n-const path = require('path');\n const fs = require('fs');\n \n-function pathToFileURL(p) {\n- if (!path.... | 2023-08-03T21:36:13 |
vercel/next.js | 86ef88556317f517c211c14bf671e08d66dfca30 | a27d411037d2701331e71fa0b7e0c1a54b8a6d76 | docs: adjust Caching data with an ORM or Database section (#76454)
## Why?
Adjust first sentence of [Caching with an ORM or Database](https://nextjs.org/docs/app/building-your-application/data-fetching/fetching#caching-data-with-an-orm-or-database) section to clarify that you don't need `unstable_cache` to prerender ... | [
{
"path": "docs/01-app/03-building-your-application/02-data-fetching/01-fetching.mdx",
"patch": "@@ -207,7 +207,7 @@ export function Posts() {\n \n ### Caching data with an ORM or Database\n \n-You can use the `unstable_cache` API to cache the response to allow pages to be prerendered when running `next bui... | 2025-02-25T00:08:43 |
golang/go | dd2019528b669908f8ccc0c327a64d0e07fc2a1b | 73fa90e2908d525efb9f7ad0dbcfceb5f25c7251 | go/parser: track depth in nested element lists
Prevents stack exhaustion with extremely deeply nested literal values,
i.e. field values in structs.
Fixes #69138
Fixes CVE-2024-34155
Change-Id: I2e8e33b44105cc169d7ed1ae83fb56df0c10f1ee
Reviewed-on: https://go-internal-review.googlesource.com/c/go/+/1520
Reviewed-by: ... | [
{
"path": "src/go/parser/parser.go",
"patch": "@@ -1676,6 +1676,8 @@ func (p *parser) parseElementList() (list []ast.Expr) {\n }\n \n func (p *parser) parseLiteralValue(typ ast.Expr) ast.Expr {\n+\tdefer decNestLev(incNestLev(p))\n+\n \tif p.trace {\n \t\tdefer un(trace(p, \"LiteralValue\"))\n \t}",
"ad... | 2024-06-10T22:34:12 |
facebook/react | 7bee1379b740896c5e6a91c2e95d4fe8bb557105 | a63708432082d480d422b0c93de5403611d9ce38 | Filter out deleted components that are added to the updaters list (#23156)
There was a bug that occurred when a destroy effect is called that causes an update. The update would be added to the updaters list even though the fiber that was calling the destroy effect was unmounted and no longer exists. This PR:
* Adds... | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilingCache-test.js",
"patch": "@@ -752,4 +752,97 @@ describe('ProfilingCache', () => {\n utils.act(() => store.profilerStore.stopProfiling());\n expect(container.textContent).toBe('About');\n });\n+\n+ it('components that were deleted an... | 2022-01-20T21:29:43 |
electron/electron | 226f2a9a56c22cbc90c3987e8905fa4ab8291623 | 2ae7e04598bc5ba36dcb1c1c06e7df8887cf71dd | fix setWindowOpenHandler call syntax (#29551) | [
{
"path": "docs/api/window-open.md",
"patch": "@@ -85,15 +85,18 @@ const mainWindow = new BrowserWindow()\n mainWindow.webContents.setWindowOpenHandler(({ url }) => {\n if (url === 'about:blank') {\n return {\n- frame: false,\n- fullscreenable: false,\n- backgroundColor: 'black',\n- ... | 2021-06-16T07:16:18 |
nodejs/node | 1353681edfeace3571c8eda965e5a0a02ca6d3a5 | f214155c267ae6233e28b24c727deea72727743e | test: remove --no-warnings flag in test_runner fixtures
no longer needed after #48915 fix
PR-URL: https://github.com/nodejs/node/pull/48989
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "test/fixtures/test-runner/output/abort.js",
"patch": "@@ -1,4 +1,3 @@\n-// Flags: --no-warnings\n 'use strict';\n require('../../../common');\n const test = require('node:test');",
"additions": 0,
"deletions": 1,
"language": "JavaScript"
},
{
"path": "test/fixtures/test-runner... | 2023-08-03T19:41:20 |
vercel/next.js | a27d411037d2701331e71fa0b7e0c1a54b8a6d76 | ee2888aabdeb5b8fc94d7f26ea62273229194544 | docs(lazy-loading): add caveat to importing client components section (#76358)
## Why?
Automatic code-splitting is currently not supported when a Server Component dynamically imports a Client Component.
- x-ref: https://github.com/vercel/next.js/issues/61066
- Fixes https://github.com/vercel/next.js/issues/6065... | [
{
"path": "docs/01-app/03-building-your-application/06-optimizing/07-lazy-loading.mdx",
"patch": "@@ -55,6 +55,8 @@ export default function ClientComponentExample() {\n }\n ```\n \n+> **Note:** When a Server Component dynamically imports a Client Component, automatic [code splitting](https://developer.mozil... | 2025-02-24T23:37:29 |
facebook/react | e12a9dfc96be12ea8e5c759986041ee5308e8e06 | 3fba8d64f12ae04af1b7df88604c49b8ec410b76 | Fix production-only updateSyncExternalStore() crash when doing setState in render (#23150)
* Update ReactFiberHooks.new.js
* Add regression test + replace-fork
* Prettier
Co-authored-by: Dan Abramov <dan.abramov@me.com> | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.new.js",
"patch": "@@ -2471,7 +2471,7 @@ const HooksDispatcherOnRerender: Dispatcher = {\n useDeferredValue: rerenderDeferredValue,\n useTransition: rerenderTransition,\n useMutableSource: updateMutableSource,\n- useSyncExternalStore: mountSync... | 2022-01-20T15:22:17 |
golang/go | de0aafa3c7f669df0a93dd62cc336ebda52815f2 | 004686b6e5ec2536689a5303686ee28c8fc619ed | vendor/golang.org/x/tools: update to v0.24.1-0.20240904143311-70f56264139c
Among other things, this should fix a regression in printf
whereby materialized aliases caused "any" and "interface{}"
in printf signatures not to be recognized as identical.
It also updates ureader.go used by vendored x/tools during
some test... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.23.0\n \tgolang.org/x/telemetry v0.0.0-20240828202201-a797f331ea97\n \tgolang.org/x/term v0.22.1-0.20240716160707-d4346f0be292\n-\tgolang.org/x/tools v0.23.1-0.20240722161640-ec1a81bfec7c\n+\tgolang.org/x/tools v0.24.1... | 2024-09-04T16:24:55 |
electron/electron | 2ae7e04598bc5ba36dcb1c1c06e7df8887cf71dd | 81795744cf82a57b129f8a1fe113a9b64f61ffb2 | fix: potential crash when setting vibrancy (#29677) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -1360,8 +1360,6 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n return;\n }\n \n- vibrancy_type_ = type;\n-\n NSVisualEffectView* effect_view = (NSVisualEffectView*)vibrant_view;\n if (effect_view == nil) {\n effect_view ... | 2021-06-16T06:39:20 |
rust-lang/rust | 442127051669be574107571773c669006413dedf | 451b7b6c775a2378fd18d2560bbfb31c3695d1cc | Merge `associated_const_equality` feature gate into MGCA
This removes `associated_const_equality` as a separate feature gate and makes it part of `min_generic_const_args` (mgca).
Key changes:
- Remove `associated_const_equality` from unstable features, add to removed
- Update all test files to use `min_generic_co... | [
{
"path": "compiler/rustc_ast_passes/src/feature_gate.rs",
"patch": "@@ -505,7 +505,6 @@ pub fn check_crate(krate: &ast::Crate, sess: &Session, features: &Features) {\n half_open_range_patterns_in_slices,\n \"half-open range patterns in slices are unstable\"\n );\n- gate_all!(associat... | 2026-01-03T08:24:56 |
nodejs/node | 5c65565108c626884c5c722bb512c7c1e5c1c809 | c58e8fc31fd68614bd6bb5360a9d563d15dc433e | esm: fix typo `parentUrl` -> `parentURL`
PR-URL: https://github.com/nodejs/node/pull/48999
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "lib/internal/modules/esm/initialize_import_meta.js",
"patch": "@@ -5,16 +5,16 @@ const experimentalImportMetaResolve = getOptionValue('--experimental-import-meta\n \n /**\n * Generate a function to be used as import.meta.resolve for a particular module.\n- * @param {string} defaultParentUrl The ... | 2023-08-02T20:27:39 |
vercel/next.js | 573fb12b1883aa362466b178f92e29bb858cd635 | 3aa8bc5f68aa570e5bb611d10933ebba3c8a15a9 | docs: fix duplicate "scroll" parameter in Link component documentation (#74820)
### What
This PR fixes a duplicate description of the `scroll` parameter in the
[Link component API
documentation](https://nextjs.org/docs/pages/api-reference/components/link#disable-scrolling-to-the-top-of-the-page).
### Why
The section ... | [
{
"path": "docs/01-app/04-api-reference/02-components/link.mdx",
"patch": "@@ -370,34 +370,6 @@ An `<a>` element is no longer required as a child of `<Link>`. Add the `legacyBe\n \n Forces `Link` to send the `href` property to its child. Defaults to `false`. See the [passing a functional component](#nesting... | 2025-02-24T20:23:58 |
facebook/react | 05a55a4b09b7b7c8f63778fb8252a001ca66f8d7 | d8cfeaf221563f3828fe7bf07833f3824accfa39 | Fix change events for custom elements (#22938)
* Bypass react event system for custom elements
* Going to try fixing react event system instead
* finally got it to call onChange, but perhaps too many times
* update test
* Removed ReactDOMComponent changes, now works but still doubles for bubbles
* Maybe... | [
{
"path": "packages/react-dom/src/__tests__/DOMPropertyOperations-test.js",
"patch": "@@ -22,6 +22,17 @@ describe('DOMPropertyOperations', () => {\n ReactDOM = require('react-dom');\n });\n \n+ // Sets a value in a way that React doesn't see,\n+ // so that a subsequent \"change\" event will trigger ... | 2022-01-19T19:34:07 |
electron/electron | 81795744cf82a57b129f8a1fe113a9b64f61ffb2 | 18b03db073d8b9af1b56da5aee6317e2f3f929ab | fix: ensure the typescript definitions only export correct value types (#28712)
* fix: ensure the typescript definitions only export correct value types
In typescript there are two main types of "types" you can export, value types (class, const) and definition types (type, interface). The typescript compiler will ... | [
{
"path": ".markdownlint.json",
"patch": "@@ -22,5 +22,8 @@\n \"no-trailing-spaces\": {\r\n \"br_spaces\": 0\r\n },\r\n- \"single-h1\": false\r\n+ \"single-h1\": false,\r\n+ \"no-inline-html\": {\r\n+ \"allowed_elements\": [\"br\"]\r\n+ }\r\n }\r",
"additions": 4,
"deletions": 1,
... | 2021-06-15T20:50:31 |
nodejs/node | c58e8fc31fd68614bd6bb5360a9d563d15dc433e | fb47afc335ef78a8cef7eac52b8ee7f045300696 | test_runner: fix global after not failing the tests
PR-URL: https://github.com/nodejs/node/pull/48913
Fixes: https://github.com/nodejs/node/issues/48867
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -688,6 +688,14 @@ class Test extends AsyncResource {\n this.parent.processReadySubtestRange(false);\n this.parent.processPendingSubtests();\n } else if (!this.reported) {\n+ if (!this.passed && failed === 0 && this.error) {\n+ ... | 2023-08-02T20:06:25 |
vercel/next.js | 3aa8bc5f68aa570e5bb611d10933ebba3c8a15a9 | 7a0d1b4923b64a352a0156900b07663dd9c2a31e | docs: add note to language and filename section (#74239)
## Description
Some people are baffled by [JavaScript files with JSX
code](https://nextjs.org/docs/community/contribution-guide#language-and-filename)
in [contribution
guide](https://nextjs.org/docs/community/contribution-guide) due to
mismatch the extension.
... | [
{
"path": "docs/04-community/01-contribution-guide.mdx",
"patch": "@@ -228,6 +228,11 @@ When writing JavaScript code blocks, we use the following language and extension\n | TypeScript files with JSX | ```tsx | .tsx |\n | TypeScript files without JSX | ```ts | .ts |\n \n+> **Good to kn... | 2025-02-24T19:46:37 |
facebook/react | d8cfeaf221563f3828fe7bf07833f3824accfa39 | d5048247804ad3e6bb8e59dd311a4470affd7811 | Fix context propagation for offscreen/fallback trees (#23095)
* Failing test for Context.Consumer in suspended Suspense
See issue #19701.
* Fix context propagation for offscreen trees
* Address nits
* Specify propagation root for Suspense too
* Pass correct propagation root
* Harden test coverage
... | [
{
"path": "packages/react-reconciler/src/ReactFiberBeginWork.new.js",
"patch": "@@ -174,7 +174,7 @@ import {\n checkIfContextChanged,\n readContext,\n prepareToReadContext,\n- scheduleWorkOnParentPath,\n+ scheduleContextWorkOnParentPath,\n } from './ReactFiberNewContext.new';\n import {\n renderWi... | 2022-01-19T16:30:34 |
golang/go | 004686b6e5ec2536689a5303686ee28c8fc619ed | d61b73c1d1a74ef3132c04e5fd389a551dd58cf9 | crypto/internal/nistec: Avo port of p256_asm_amd64.s
This implementation utilizes the same registers found in the reference
implementation, aiming to produce a minimal semantic diff between the
Avo-generated output and the original hand-written assembly.
To verify the Avo implementation, the reference and Avo-generat... | [
{
"path": "src/cmd/compile/internal/types2/stdlib_test.go",
"patch": "@@ -359,6 +359,7 @@ var excluded = map[string]bool{\n \t\"crypto/aes/_asm/standard\": true,\n \t\"crypto/internal/bigmod/_asm\": true,\n \t\"crypto/internal/edwards25519/field/_asm\": true,\n+\t\"crypto/internal... | 2024-07-21T00:23:05 |
rust-lang/rust | 3f1dd92cc7e5c97b54b58e70ad9d904ce08e372c | e29fcf45e4ae686d77b490bf07320f0d3a2cf35f | Motor OS: fix compile error
PR https://github.com/rust-lang/rust/pull/146341 introduced
a compilation error. This fixes it. | [
{
"path": "library/std/src/sys/fs/motor.rs",
"patch": "@@ -4,7 +4,7 @@ use crate::io::{self, BorrowedCursor, IoSlice, IoSliceMut, SeekFrom};\n use crate::os::fd::{AsFd, AsRawFd, BorrowedFd, FromRawFd, IntoRawFd, RawFd};\n use crate::path::{Path, PathBuf};\n use crate::sys::fd::FileDesc;\n-pub use crate::sys... | 2026-01-05T00:55:57 |
electron/electron | ebf54d7cc08a6f3ffabdf839329bc40e60140b93 | 8b945cb29675fe221a976a75d05ae54c1250a64e | refactor: use PathProvider for user-data-dir and others (#29649)
* refactor: use PathProvider for user-data-dir and others
* consolidate logic for DIR_RECENT and DIR_APP_LOGS into path provider
* fix bad include
* remove debugging code
* fix build on mac
* fix build on win
* create app logs dir on bo... | [
{
"path": "default_app/main.ts",
"patch": "@@ -109,7 +109,7 @@ function loadApplicationPackage (packagePath: string) {\n \n try {\n const filePath = Module._resolveFilename(packagePath, module, true);\n- app._setDefaultAppPaths(appPath || path.dirname(filePath));\n+ app.setAppPath(appPat... | 2021-06-15T00:32:56 |
nodejs/node | ce958d2d782d98659c9f1404a0dd74b19a488bd5 | d396a041f71cc055ad60b0abc63ad81c0ee6a574 | test: validate error code rather than message
PR-URL: https://github.com/nodejs/node/pull/48972
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/es-module/test-cjs-legacyMainResolve.js",
"patch": "@@ -82,7 +82,7 @@ describe('legacyMainResolve', () => {\n {},\n ''\n ),\n- { message: /instance of URL/ }\n+ { message: /instance of URL/, code: 'ERR_INVALID_ARG_TYPE' },\n );\n });\n \n@@ -99,7 +... | 2023-08-01T19:40:06 |
vercel/next.js | 7a0d1b4923b64a352a0156900b07663dd9c2a31e | 964a92a26582aec9c65c9b408d4e20663c1a412d | [test] fix client navigation error count in react 18 (#76442) | [
{
"path": "test/development/pages-dir/client-navigation/index.test.ts",
"patch": "@@ -1,6 +1,12 @@\n /* eslint-env jest */\n \n-import { assertNoRedbox, fetchViaHTTP, waitFor, check } from 'next-test-utils'\n+import {\n+ assertNoRedbox,\n+ fetchViaHTTP,\n+ waitFor,\n+ check,\n+ retry,\n+} from 'next-te... | 2025-02-24T19:42:14 |
facebook/react | 790b5246f691adafbf4b6a4b3fe2e6cc1370c43e | 51947a14bb24bd151f76f6fc0acdbbc404de13f7 | Fix setState ignored in Safari when iframe is added to DOM in the same commit (#23111)
* Fix setState being ignored in Safari
* Add a regression test
* Add comment | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMSafariMicrotaskBug-test.js",
"patch": "@@ -0,0 +1,71 @@\n+/**\n+ * Copyright (c) Facebook, Inc. and its 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+ *\... | 2022-01-18T18:25:34 |
golang/go | d61b73c1d1a74ef3132c04e5fd389a551dd58cf9 | 6ee8c07c3cb8b20e46cd168a8bf6ebaf8243b2ac | crypto/aes: Avo port of asm_amd64.s
This implementation utilizes the same registers found in the reference
implementation, aiming to produce a minimal semantic diff between the
Avo-generated output and the original hand-written assembly.
To verify the Avo implementation, the reference and Avo-generated
assembly files... | [
{
"path": "src/cmd/compile/internal/types2/stdlib_test.go",
"patch": "@@ -356,6 +356,7 @@ var excluded = map[string]bool{\n \n \t// go.dev/issue/46027: some imports are missing for this submodule.\n \t\"crypto/aes/_asm/gcm\": true,\n+\t\"crypto/aes/_asm/standard\": true,\n... | 2024-07-23T03:39:44 |
electron/electron | 86ff4a9836cc28b811420e7c61c6101f7b270c34 | cc04450b85cb9176171f5b7812ba6280a9b91233 | docs: fix typo in process-model.md (#29563) | [
{
"path": "docs/tutorial/process-model.md",
"patch": "@@ -138,7 +138,7 @@ way to import Electron's content scripts.\n <!-- Note: This guide doesn't take sandboxing into account, which might fundamentally \n change the statements here. -->\n Preload scripts contain code that executes in a renderer process be... | 2021-06-14T15:33:07 |
nodejs/node | 88094bba3c3460f35dd3755352f735bdfd5be6cf | 217abd475f8c6c6fb31e6c23663d6d86f445c689 | test_runner: fix timeout in *Each hook failing further tests
PR-URL: https://github.com/nodejs/node/pull/48925
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -193,8 +193,8 @@ class SuiteContext {\n }\n \n class Test extends AsyncResource {\n- #abortController;\n- #outerSignal;\n+ abortController;\n+ outerSignal;\n #reportedSubtest;\n \n constructor(options) {\n@@ -292,16 +292,16 @@ class Test ext... | 2023-07-31T22:13:02 |
facebook/react | a87adefecdff672d5261e93945c227ad72c5444c | 9a7e6bf0d0cf08114b74c9fe45c06e60a5e496e4 | Allow functions to be passed to custom element setters (#23042)
This is part of the new custom element features that were implemented
here:
https://github.com/facebook/react/commit/24dd07bd269590ee5024b7f0f1906887d256ea86
When a custom element has a setter for a property and passes the `in`
heuristic, the value ... | [
{
"path": "packages/react-dom/src/__tests__/DOMPropertyOperations-test.js",
"patch": "@@ -504,6 +504,35 @@ describe('DOMPropertyOperations', () => {\n expect(customElement.foo).toBe('two');\n expect(customElement.getAttribute('foo')).toBe('one');\n });\n+\n+ // @gate enableCustomElementPr... | 2022-01-12T20:12:07 |
vercel/next.js | 669c52e393341753679f604a3e71c61e362253da | 871ca31e60bd31ad2fabfb014aa614089384adca | typechecking inputs/outputs in action transform tests (#75935)
This PR attempts to add typechecking to the server actions tests
fixtures in order to add an extra layer of validation against compiler
bugs. (there's a couple!). Unfortunately the tests were pretty
loosey-goosey around undefined variables, so there's a lo... | [
{
"path": "crates/next-custom-transforms/tests/fixture/server-actions/client-graph/3/input.js",
"patch": "@@ -1,5 +1,7 @@\n 'use server'\n \n-export const { sampleFunction } = someObject\n-export const { sampleFunction2 } = fn()\n-export let { 0: sampleFunction3, 1: sampleFunction4 } = [g(), g()]\n+import A... | 2025-02-24T16:59:34 |
golang/go | 6ee8c07c3cb8b20e46cd168a8bf6ebaf8243b2ac | 1e0cba8ee19206a6f76acb18b1f2de1c9375de05 | crypto/aes: Avo port of gcm_amd64.s
This implementation utilizes the same registers found in the reference
implementation, aiming to produce a minimal semantic diff between the
Avo-generated output and the original hand-written assembly.
To verify the Avo implementation, the reference and Avo-generated
assembly files... | [
{
"path": "src/cmd/compile/internal/types2/stdlib_test.go",
"patch": "@@ -355,6 +355,7 @@ var excluded = map[string]bool{\n \t\"builtin\": true,\n \n \t// go.dev/issue/46027: some imports are missing for this submodule.\n+\t\"crypto/aes/_asm/gcm\": true,\n \t\"crypto/internal/bigmod/_asm... | 2024-07-27T03:17:02 |
facebook/react | 9a7e6bf0d0cf08114b74c9fe45c06e60a5e496e4 | 2f26eb85d657a08c21edbac1e00f9626d68f84ae | Add --no-show-signature to "git show" commands (#23038)
* Add --no-show-signature to "git show" commands.
This fixes errors if the user has configured the following in their ~/.gitconfig:
[log]
showSignature = true
* yarn prettier-all | [
{
"path": "packages/react-devtools-extensions/utils.js",
"patch": "@@ -20,7 +20,7 @@ const GITHUB_URL = 'https://github.com/facebook/react';\n \n function getGitCommit() {\n try {\n- return execSync('git show -s --format=%h')\n+ return execSync('git show -s --no-show-signature --format=%h')\n ... | 2022-01-11T17:14:08 |
nodejs/node | 217abd475f8c6c6fb31e6c23663d6d86f445c689 | eb504c940620d84b176dbde4dd96ce5c47afd463 | test: fix snapshot tests when cwd contains spaces or backslashes
Both are valid characters for file names on non-Windows systems.
PR-URL: https://github.com/nodejs/node/pull/48959
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/common/assertSnapshot.js",
"patch": "@@ -5,7 +5,7 @@ const test = require('node:test');\n const fs = require('node:fs/promises');\n const assert = require('node:assert/strict');\n \n-const stackFramesRegexp = /(\\s+)((.+?)\\s+\\()?(?:\\(?(.+?):(\\d+)(?::(\\d+))?)\\)?(\\s+\\{)?(\\[\\d+m)?(\\n... | 2023-07-31T21:54:28 |
vercel/next.js | 871ca31e60bd31ad2fabfb014aa614089384adca | 0dc87f713436e554a1bb60c8b86b8b309f81f31f | [app] Send errors not handled by explicit error boundaries through `reportError` (#76101) | [
{
"path": "packages/next/src/client/app-index.tsx",
"patch": "@@ -244,11 +244,11 @@ function Root({ children }: React.PropsWithChildren<{}>) {\n return children\n }\n \n-const reactRootOptions = {\n+const reactRootOptions: ReactDOMClient.RootOptions = {\n onRecoverableError,\n onCaughtError,\n onUnc... | 2025-02-24T16:59:22 |
golang/go | 1e0cba8ee19206a6f76acb18b1f2de1c9375de05 | 3b78ca06262988992ac3427a0acb4e1c7ac482ac | crypto/md5: Avo port of md5block_amd64.s
This implementation utilizes the same registers found in the reference
implementation, aiming to produce a minimal semantic diff between the
Avo-generated output and the original hand-written assembly.
To verify the Avo implementation, the reference and Avo-generated
assembly ... | [
{
"path": "src/cmd/compile/internal/types2/stdlib_test.go",
"patch": "@@ -357,6 +357,7 @@ var excluded = map[string]bool{\n \t// go.dev/issue/46027: some imports are missing for this submodule.\n \t\"crypto/internal/bigmod/_asm\": true,\n \t\"crypto/internal/edwards25519/field/_asm\": true,\n+\t... | 2024-07-21T05:00:56 |
facebook/react | fe419346da0de40858d5a5c5992c29a1e0b79bb5 | 42c30e8b122841d7fe72e28e36848a6de1363b0c | Console message fixed for devtools (#23067) | [
{
"path": "scripts/circleci/run_devtools_e2e_tests.js",
"patch": "@@ -86,7 +86,7 @@ function runTestShell() {\n });\n serverProcess.stderr.on('data', data => {\n if (`${data}`.includes('EADDRINUSE')) {\n- // Something is occuprying this port;\n+ // Something is occupying this port;\n ... | 2022-01-05T16:45:45 |
electron/electron | 34a4e26b24ec975bd044230370728db4f72db153 | fed5ad53038abf041b7c59af955427453b3c2e60 | fix: check DCHECK_IS_ON() instead of #ifdef DCHECK_IS_ON (#29620) | [
{
"path": "shell/browser/api/electron_api_menu.cc",
"patch": "@@ -236,7 +236,7 @@ std::u16string Menu::GetToolTipAt(int index) const {\n return model_->GetToolTipAt(index);\n }\n \n-#ifdef DCHECK_IS_ON\n+#if DCHECK_IS_ON()\n std::u16string Menu::GetAcceleratorTextAtForTesting(int index) const {\n ui::Ac... | 2021-06-14T02:06:09 |
nodejs/node | eb504c940620d84b176dbde4dd96ce5c47afd463 | 97ca9a8961f47b2fd482db5c635810f59663827b | diagnostics_channel: fix last subscriber removal
When iterating over diagnostics channel subscribers, assume their count
is zero if the list of subscribers becomes undefined, because there may
be only one subscriber which may unsubscribe itself as part of its
onMessage handler.
Signed-off-by: Gabriel Schulhof <gabrie... | [
{
"path": "lib/diagnostics_channel.js",
"patch": "@@ -136,7 +136,7 @@ class ActiveChannel {\n }\n \n publish(data) {\n- for (let i = 0; i < this._subscribers.length; i++) {\n+ for (let i = 0; i < (this._subscribers?.length || 0); i++) {\n try {\n const onMessage = this._subscribers[i... | 2023-07-26T19:26:39 |
vercel/next.js | 0dc87f713436e554a1bb60c8b86b8b309f81f31f | 1d23d8f875043a87966bfc6259a954618f69adb3 | Turbopack: fix duplicate modules due to import context (#76432)
### What?
Avoid instantiation modules with empty import context. This avoid duplicate modules due to that.
add a test case for splitting based on module order. | [
{
"path": "turbopack/crates/turbopack-core/src/reference_type.rs",
"patch": "@@ -61,6 +61,12 @@ pub struct ImportAttributes {\n pub media: Option<RcStr>,\n }\n \n+impl ImportAttributes {\n+ pub fn is_empty(&self) -> bool {\n+ self.layer.is_none() && self.supports.is_none() && self.media.is_non... | 2025-02-24T16:55:21 |
facebook/react | 42c30e8b122841d7fe72e28e36848a6de1363b0c | 9724e180045806480d7ef2a50e6a9d70fea98252 | Correct typing errors detected in several files (#22965)
* Correct spelling errors in several files
* Correct typos in devtools-shared package files | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Profiler/Profiler.css",
"patch": "@@ -116,8 +116,8 @@\n color: var(--color-button);\n }\n \n-.TimlineSearchInputContainer {\n+.TimelineSearchInputContainer {\n flex: 1 1;\n display: flex;\n align-items: center;\n-}\n\\ No newline at end of... | 2022-01-04T15:30:07 |
golang/go | 3b78ca06262988992ac3427a0acb4e1c7ac482ac | f9eb06c3022b20ae0b7944717d58d582eb5677ea | crypto/sha512: Avo port of sha512block_amd64.s
This implementation utilizes the same registers found in the reference
implementation, aiming to produce a minimal semantic diff between the
Avo-generated output and the original hand-written assembly.
To verify the Avo implementation, the reference and Avo-generated
ass... | [
{
"path": "src/cmd/compile/internal/types2/stdlib_test.go",
"patch": "@@ -359,6 +359,7 @@ var excluded = map[string]bool{\n \t\"crypto/internal/edwards25519/field/_asm\": true,\n \t\"crypto/sha1/_asm\": true,\n \t\"crypto/sha256/_asm\": true,\n+\t\"crypto/sha512/_... | 2024-07-18T00:00:53 |
nodejs/node | 384f5d44a829dc330252809ad92d28aecc1ee287 | 1dcfc650972b5c9afbaf7030e1ae305d754dd619 | test: fix some assumptions in tests
Some tests are assuming they will be run from a directory that do not
contain any quote or special character in its path. That assumption is
not necessary, using `JSON.stringify` or `pathToFileURL` ensures the
test can be run whatever the path looks like.
PR-URL: https://github.com... | [
{
"path": "test/es-module/test-cjs-legacyMainResolve-permission.js",
"patch": "@@ -49,21 +49,21 @@ describe('legacyMainResolve', () => {\n \n const packageJsonUrl = pathToFileURL(\n path.resolve(\n- '${fixtextureFolderEscaped}',\n+ ${JSON.stringify(fix... | 2023-07-31T13:09:07 |
rust-lang/rust | 7dbe12ec729ed3ce6d7b228cbb213d8e73df30b4 | bfe82cbbc149ac88d230b1c05dad27be982cfd36 | fix: Suppress false positive missing assoc item diag on specialization | [
{
"path": "src/tools/rust-analyzer/crates/hir/src/lib.rs",
"patch": "@@ -920,6 +920,48 @@ impl Module {\n }\n }\n \n+ // HACK: When specialization is enabled in the current crate, and there exists\n+ // *any* blanket impl that provides a defa... | 2026-01-04T15:37:40 |
electron/electron | fed5ad53038abf041b7c59af955427453b3c2e60 | f6d673c32a968d85cfdc435cb6a9f3785d8fc194 | fix: use correct spelling of attachment with Content-Disposition header (#29621) | [
{
"path": "shell/browser/api/electron_api_web_request.cc",
"patch": "@@ -129,7 +129,7 @@ v8::Local<v8::Value> HttpResponseHeadersToV8(\n !value.empty()) {\n net::HttpContentDisposition header(value, std::string());\n std::string decodedFilename =\n- header.is_attachment(... | 2021-06-14T02:05:16 |
facebook/react | 3dc41d8a2590768a6ac906cd1f4c11ca00417eee | 20212349add45c81fe5ab4760214eabc3d91077f | fix: parseExportNamesInto specifiers typo (#22537) | [
{
"path": "packages/react-server-dom-webpack/src/ReactFlightWebpackNodeLoader.js",
"patch": "@@ -210,10 +210,10 @@ async function parseExportNamesInto(\n addExportNames(names, node.declaration.id);\n }\n }\n- if (node.specificers) {\n- const specificers = node.s... | 2021-12-23T18:08:56 |
vercel/next.js | 72e908d3407cf0647e47bf3aec85c934fdc38c40 | 6e276347fb48a42b06084b7824a1f9bf5e6246eb | [dev-overlay] Disable error feedback in UI if `NEXT_TELEMETRY_DISABLED` is set (#76423) | [
{
"path": "packages/next/src/build/webpack/plugins/define-env-plugin.ts",
"patch": "@@ -275,6 +275,9 @@ export function getDefineEnv({\n 'process.env.__NEXT_ASSET_PREFIX': config.assetPrefix,\n 'process.env.__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS':\n !!config.experimental.authInterrupts,\n+ 'pr... | 2025-02-24T15:48:52 |
golang/go | f9eb06c3022b20ae0b7944717d58d582eb5677ea | dbd50a16dc79d0876f9c523af2aaeb9e1b7b7839 | crypto/sha1: Avo port of sha1block_amd64.s
This implementation utilizes the same registers found in the reference
implementation, aiming to produce a minimal semantic diff between the
Avo-generated output and the original hand-written assembly.
To verify the Avo implementation, the reference and Avo-generated
assembl... | [
{
"path": "src/cmd/compile/internal/types2/stdlib_test.go",
"patch": "@@ -357,6 +357,7 @@ var excluded = map[string]bool{\n \t// go.dev/issue/46027: some imports are missing for this submodule.\n \t\"crypto/internal/bigmod/_asm\": true,\n \t\"crypto/internal/edwards25519/field/_asm\": true,\n+\t... | 2024-07-17T02:44:17 |
electron/electron | e8c9a814d6bafa4ce7eece0e4c9c006abe6fc365 | af7181b93fb2be37b6d25f104b036e484dba9bc8 | fix: copy received data in URLPipeLoader to prevent corruption (#29567) | [
{
"path": "shell/browser/net/url_pipe_loader.cc",
"patch": "@@ -85,7 +85,7 @@ void URLPipeLoader::OnDataReceived(base::StringPiece string_piece,\n producer_->Write(\n std::make_unique<mojo::StringDataSource>(\n string_piece, mojo::StringDataSource::AsyncWritingMode::\n- ... | 2021-06-14T01:18:52 |
facebook/react | 20212349add45c81fe5ab4760214eabc3d91077f | a8e9bbe0fe19266e3061b266aabc0269f332a03c | Fix variable name (#23021) | [
{
"path": "packages/react-devtools-inline/__tests__/__e2e__/profiler.test.js",
"patch": "@@ -41,7 +41,7 @@ test.describe('Profiler', () => {\n });\n }\n \n- async function clickButtonAndVerifySnapshotSelecetorText(\n+ async function clickButtonAndVerifySnapshotSelectorText(\n buttonTag... | 2021-12-23T13:35:54 |
vercel/next.js | 1d58205632810ab55341c59297ef242af98449aa | 9b994bf80ecc6188faf527a057f93119d522384e | [dev-overlay] Link to section explaining opt-in error feedback (#76424) | [
{
"path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/error-overlay-footer/error-feedback/error-feedback.tsx",
"patch": "@@ -53,7 +53,15 @@ export function ErrorFeedback({ errorCode, className }: ErrorFeedbackProps) {\n </p>\n ) : (\n <>\n- <p>W... | 2025-02-24T15:15:58 |
nodejs/node | 7a33f2b88dc29565ee1376c4357cef1ec9c7b7e7 | a955c534a8753610d3884ca24d502e4bd37c33e2 | test_runner: cleanup test timeout abort listener
fix #48475
PR-URL: https://github.com/nodejs/node/pull/48915
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -20,10 +20,12 @@ const {\n SafeSet,\n SafePromiseAll,\n SafePromiseRace,\n+ SymbolDispose,\n+ ObjectDefineProperty,\n Symbol,\n } = primordials;\n+const { addAbortListener } = require('events');\n const { AsyncResource } = require('async_h... | 2023-07-31T08:10:36 |
rust-lang/rust | d7fa6e527fef7337dc25b1e824664dd5847ba4a2 | 85c8ff69cb3efd950395cc444a54bbbdad668865 | enrich error info when tries to dlopen Enzyme | [
{
"path": "compiler/rustc_codegen_llvm/messages.ftl",
"patch": "@@ -1,4 +1,5 @@\n-codegen_llvm_autodiff_component_unavailable = failed to load our autodiff backend. Did you install it via rustup?\n+codegen_llvm_autodiff_component_unavailable = failed to load our autodiff backend.\n+ .note = load error: {... | 2026-01-04T13:56:17 |
golang/go | dbd50a16dc79d0876f9c523af2aaeb9e1b7b7839 | d6d5d8c8fbe574349422b444a8cf0ff0647a6dcf | crypto/sha256: Avo port of sha256block_amd64.s
This implementation utilizes the same registers found in the reference
implementation, aiming to produce a minimal semantic diff between the
Avo-generated output and the original hand-written assembly.
To verify the Avo implementation, the reference and Avo-generated
ass... | [
{
"path": "src/cmd/compile/internal/types2/stdlib_test.go",
"patch": "@@ -355,8 +355,9 @@ var excluded = map[string]bool{\n \t\"builtin\": true,\n \n \t// go.dev/issue/46027: some imports are missing for this submodule.\n-\t\"crypto/internal/edwards25519/field/_asm\": true,\n \t\"crypto/internal/bigmod/_asm... | 2024-06-28T04:46:32 |
facebook/react | bd0a5dd6826ff7b3ab889ed0bd55dacc2f69a47e | a4ead704ba1df8718d4866a23ac25e78f8ea901a | #22988 - Fix Bug: @license header in React 18 bundles contains vundefined (#23004)
* Fix Bug: @license header in React 18 bundles contains vundefined
* Remove React version from the header comment | [
{
"path": "scripts/rollup/wrappers.js",
"patch": "@@ -3,7 +3,6 @@\n const {resolve} = require('path');\n const {readFileSync} = require('fs');\n const {bundleTypes, moduleTypes} = require('./bundles');\n-const reactVersion = require('../../package.json').version;\n \n const {\n NODE_ES2015,\n@@ -54,7 +53,... | 2021-12-21T17:27:59 |
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.