repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
1c67899ffb32871461c7ff2d82597d8f9c5cd6af
a75e3dff7e640f56d4b4eaca8105b8acfeebb54b
buffer: fix out of range for toString Co-authored-by: Michaël Zasso <targos@protonmail.com> PR-URL: https://github.com/nodejs/node/pull/54553 Fixes: https://github.com/nodejs/node/issues/52298 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "lib/buffer.js", "patch": "@@ -843,12 +843,12 @@ Buffer.prototype.toString = function toString(encoding, start, end) {\n else if (start >= len)\n return '';\n else\n- start |= 0;\n+ start = MathTrunc(start) || 0;\n \n if (end === undefined || end > len)\n end = len;\n else\n-...
2024-09-06T17:39:24
electron/electron
16aec702b407af24aab4632c97a21d24c2015acc
ac040bf734090cef83c954a63463bd9e21656217
fix: ensure app load is limited to real asar files when appropriate (#39788)
[ { "path": "lib/asar/fs-wrapper.ts", "patch": "@@ -27,7 +27,7 @@ const cachedArchives = new Map<string, NodeJS.AsarArchive>();\n const getOrCreateArchive = (archivePath: string) => {\n const isCached = cachedArchives.has(archivePath);\n if (isCached) {\n- return cachedArchives.get(archivePath);\n+ ...
2023-09-11T18:51:14
golang/go
972639fc4cf257f04f9690e63bea7cd729b3edd2
11c86ddcb898f4c2c5fa548d46821ab76ea2d0fd
go/token: add FileSet.AddExistingFiles + test, doc, relnote Fixes #73205 Change-Id: Id3a4cc6290c55ffa518ad174a02ccca85e8636f7 Reviewed-on: https://go-review.googlesource.com/c/go/+/672875 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Robert Findley <rfindley@g...
[ { "path": "api/next/73205.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/token, method (*FileSet) AddExistingFiles(...*File) #73205", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/token/73205.md", "patch": "@@ -0,0 +1,4 @@\n+The new [Fil...
2025-05-14T19:22:36
facebook/react
e10a7b5cd541882a78ff659147c1a0294413ccb0
323b6e98a76fe6ee721f10d327a9a682334d1a97
Don't log onRecoverableError if the current commit fail (#28665) We didn't recover after all. Currently we might log a recoverable error in the recovery pass. E.g. the SSR server had an error. Then the client component fails to render which errors again. This ends up double logging. So if we fail to actually c...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -6004,23 +6004,23 @@ describe('ReactDOMFizzServer', () => {\n expect(reportedServerErrors.length).toBe(1);\n expect(reportedServerErrors[0].message).toBe('Oops!');\n \n+ const reportedCaughtErrors = [];\n co...
2024-03-28T14:39:49
vercel/next.js
bdd41bbcab24e25b925f53424d244b3a81188a18
2da86a46918dd20a2f496ba89d8c0fd9a2eb0a54
Docs: Updating guides on PPR and ISR (#81307) The PR fixes issues in two different guides. ### PPR In PPR, the code for jsx and tsx versions should use the language switcher. Currently, these are displayed below each other in the guide which seems unintentional. ### ISR This change fixes multiple issues: **fixes i...
[ { "path": "docs/01-app/01-getting-started/06-partial-prerendering.mdx", "patch": "@@ -142,7 +142,7 @@ export default function Layout({ children }: { children: React.ReactNode }) {\n }\n ```\n \n-```jsx filename=\"/app/dashboard/layout.js\" switcher\n+```jsx filename=\"/app/dashboard/layout.jsx\" switcher\n ...
2025-08-05T16:18:35
nodejs/node
a75e3dff7e640f56d4b4eaca8105b8acfeebb54b
b345118e1e4960e8dcfa0dd5797f91dc4c4565e1
test: fix `test-process-load-env-file` when path contains `'` If the repo is cloned on a path that contains a quote, the test should not fail. PR-URL: https://github.com/nodejs/node/pull/54511 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/parallel/test-process-load-env-file.js", "patch": "@@ -8,7 +8,7 @@ const { join } = require('node:path');\n \n const basicValidEnvFilePath = fixtures.path('dotenv/basic-valid.env');\n const validEnvFilePath = fixtures.path('dotenv/valid.env');\n-const missingEnvFile = fixtures.path('dotenv/n...
2024-09-06T17:38:42
rust-lang/rust
b4ee9953d8dd037fcfce60a0d10c0da90ec81650
8af02e230aac276d7eaa538729abca8618f02225
modify error comment and bless test, delete tests/ui/const-generics/generic_const_exprs/lit_type_mismatch.rs
[ { "path": "tests/crashes/133966.rs", "patch": "@@ -1,3 +0,0 @@\n-//@ known-bug: #133966\n-pub struct Data([[&'static str]; 5_i32]);\n-const _: &'static Data = unsafe { &*(&[] as *const Data) };", "additions": 0, "deletions": 3, "language": "Rust" }, { "path": "tests/ui/const-generics/adt...
2026-02-10T16:01:13
electron/electron
ac040bf734090cef83c954a63463bd9e21656217
aceb432f45287492fa00982a7f2679ee7f6a04a8
build: update @electron/typescript-definitions to fix titlebaroverlay (#39799) build: update @electron/typescript-definitions to fix titlebarstyle
[ { "path": "yarn.lock", "patch": "@@ -220,9 +220,9 @@\n vscode-uri \"^3.0.7\"\n \n \"@electron/typescript-definitions@^8.14.5\":\n- version \"8.14.5\"\n- resolved \"https://registry.yarnpkg.com/@electron/typescript-definitions/-/typescript-definitions-8.14.5.tgz#07ffc7dac6008e0f659215e3b88bc0d7c6bc6ece...
2023-09-11T18:36:36
golang/go
11c86ddcb898f4c2c5fa548d46821ab76ea2d0fd
bc5aa2f7d3e1deb5468432230c438a8a9e8de316
runtime: check for gsignal in asancall/msancall/racecall asancall and msancall are reachable from the signal handler, where we are running on gsignal. Currently, these calls will use the g0 stack in this case, but if the interrupted code was running on g0 this will corrupt the stack and likely cause a crash. As far a...
[ { "path": "src/runtime/asan_amd64.s", "patch": "@@ -100,7 +100,12 @@ TEXT\tasancall<>(SB), NOSPLIT, $0-0\n \tJE\tcall\t// no g; still on a system stack\n \n \tMOVQ\tg_m(R14), R13\n-\t// Switch to g0 stack.\n+\n+\t// Switch to g0 stack if we aren't already on g0 or gsignal.\n+\tMOVQ\tm_gsignal(R13), R10\n+\t...
2025-01-22T19:13:33
facebook/react
323b6e98a76fe6ee721f10d327a9a682334d1a97
9f33f699e4f832971dc0f2047129f832655a3b6d
Remove errorHydratingContainer (#28664) I originally added this in #21021 but I didn't mention why and I don't quite remember why. Maybe because there were no other message? However at the time the recoverable errors mechanism didn't exist. Today I believe all cases where this happens will trigger another recove...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -2406,19 +2406,12 @@ describe('ReactDOMFizzServer', () => {\n },\n });\n \n- await expect(async () => {\n- // The first paint switches to client rendering due to mismatch\n- await waitForPaint([\n- ...
2024-03-28T03:48:18
vercel/next.js
2da86a46918dd20a2f496ba89d8c0fd9a2eb0a54
a388c0a095c72a1ade80ac68a0e3cbcc9b1fdae7
fix: OTel root span should indicate error status on exceptions (#82212) For cases when the root span's status returned 500, the span status returned `OK`. This results in inaccurate telemetry, as users may expect the span to indicate an error when a 500 occurs. Failed CI: https://github.com/vercel/next.js/actions/run...
[ { "path": "packages/next/src/server/app-render/create-error-handler.tsx", "patch": "@@ -91,6 +91,7 @@ export function createFlightReactServerErrorHandler(\n const span = getTracer().getActiveScopeSpan()\n if (span) {\n span.recordException(err)\n+ span.setAttribute('error.type', err.name)...
2025-08-05T15:28:23
golang/go
bc5aa2f7d3e1deb5468432230c438a8a9e8de316
2c929d6f4c8fcd1021dc3cd57b2eedff5ae9a592
go/types, types2: improve error message for init without body Change-Id: I8a684965e88e0e33a6ff33a16e08d136e3267f7e Reviewed-on: https://go-review.googlesource.com/c/go/+/663636 TryBot-Bypass: Mark Freeman <mark@golang.org> Auto-Submit: Mark Freeman <mark@golang.org> Reviewed-by: Robert Griesemer <gri@google.com>
[ { "path": "src/cmd/compile/internal/types2/resolver.go", "patch": "@@ -436,10 +436,8 @@ func (check *Checker) collectObjects() {\n \t\t\t\t\tif name == \"init\" {\n \t\t\t\t\t\tobj.parent = pkg.scope\n \t\t\t\t\t\tcheck.recordDef(s.Name, obj)\n-\t\t\t\t\t\t// init functions must have a body\n \t\t\t\t\t\tif...
2025-04-04T17:44:38
electron/electron
d1827941790f23b241ef3f234a9782750ac97e8d
ab185c058f894ddc556f67b2853de4adad2bb10c
fix: frameless mica/acrylic windows (#39708) * fix: backgroundMaterial works with frameless * TODO: fix frameless mica/acrylic windows * update caption color appropriately * set background color properly * refactor translucency method * actualization
[ { "path": "patches/chromium/.patches", "patch": "@@ -130,5 +130,6 @@ fix_harden_blink_scriptstate_maybefrom.patch\n chore_add_buildflag_guard_around_new_include.patch\n fix_use_delegated_generic_capturer_when_available.patch\n build_remove_ent_content_analysis_assert.patch\n+fix_activate_background_material...
2023-09-11T12:51:54
vercel/next.js
a388c0a095c72a1ade80ac68a0e3cbcc9b1fdae7
5c38caab382517104ff80f94d93275073381cf8f
Turbopack: clean up some old TODOs (#82364) I looked through all TODOs if there are any remaining "todo fix this for prod builds"-style comments, but there weren't any. But some of them are outdated now
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -66,7 +66,7 @@ use turbopack_core::{\n },\n output::{OutputAsset, OutputAssets},\n raw_output::RawOutput,\n- reference_type::{CssReferenceSubType, ReferenceType},\n+ reference_type::{CommonJsReferenceSubType, CssReferenceSubType, Referen...
2025-08-05T15:15:23
facebook/react
51668692046ebd997d93c45a91f7cc1ca1479fac
b98b569017c1fd896159ba2430faadcf03d7bf70
[patch] Fix control flow bug in PropagateScopeDeps A dependency D from either an instruction or scope is poisoned if there may be a (non-linear) jump instruction between it and the start of its immediate parent scope. Poisoned dependencies are added as conditional dependencies to their parent scope. (done: reduc...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PropagateScopeDependencies.ts", "patch": "@@ -7,6 +7,8 @@\n \n import { CompilerError } from \"../CompilerError\";\n import {\n+ BlockId,\n+ GeneratedSource,\n Identifier,\n IdentifierId,\n InstructionId,\n@@ -135,9 +137,152 @...
2024-03-28T00:26:18
electron/electron
ab185c058f894ddc556f67b2853de4adad2bb10c
2324c4d8fd6f7b2cd336d4e93591464544e12953
fix: fullscreen crashing with no roundedCorners and no frame (#39747)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -683,9 +683,6 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n }\n \n void NativeWindowMac::SetFullScreen(bool fullscreen) {\n- if (!has_frame() && !HasStyleMask(NSWindowStyleMaskTitled))\n- return;\n-\n //...
2023-09-11T07:38:10
golang/go
5afada035ced1f89267d3177a9fb75fab4df81ff
a74ae952826fd65006a8190c50bbbee4c4869cf9
go/ast: add PreorderStack, a variant of Inspect that builds a stack + doc, test, relnote Fixes #73319 Change-Id: Ib7c9d0d7107cd62dc7f09120dfb475c4a469ddc9 Reviewed-on: https://go-review.googlesource.com/c/go/+/672696 Reviewed-by: Robert Findley <rfindley@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-pr...
[ { "path": "api/next/73319.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/ast, func PreorderStack(Node, []Node, func(Node, []Node) bool) #73319", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/ast/73319.md", "patch": "@@ -0,0 +1,4 @@\n+The...
2025-05-14T20:15:40
vercel/next.js
d63378945224ab2d246d817768e690402d512a9d
fb83b8345fe63838e5e5efc46b772b5c9eb76717
Turbopack: pass `is_development` to `next_page_config` (#82363) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For ...
[ { "path": "crates/next-core/src/next_client/transforms.rs", "patch": "@@ -45,7 +45,8 @@ pub async fn get_next_client_transforms_rules(\n \n rules.push(get_next_font_transform_rule(enable_mdx_rs));\n \n- if mode.await?.is_development() {\n+ let is_development = mode.await?.is_development();\n+ i...
2025-08-05T12:36:22
facebook/react
b98b569017c1fd896159ba2430faadcf03d7bf70
2782fa2664784d7c3c941aa708349e570418103d
[DeriveMinimalDeps] Account for conditional / poisoned accesses within conditionals This change is needed for #2752. To minimize renaming `error.fixture` -> `fixture` files, I'm reordering this PR to earlier in the stack. Prior to the fix in #2752, we only expected unconditional accesses within `depsInCurrentCon...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/DeriveMinimalDependencies.ts", "patch": "@@ -6,7 +6,7 @@\n */\n \n import { CompilerError } from \"../CompilerError\";\n-import { GeneratedSource, Identifier, ReactiveScopeDependency } from \"../HIR\";\n+import { Identifier, Reactive...
2024-03-28T00:26:18
golang/go
198c3cb785282ee4c199680ec2d05381805a6f66
da9c5b142c855496222f0ab167c3f1d9e98403c4
std: pass bytes.Buffer and strings.Builder by pointer This CL fixes a number of (all true positive) findings of vet's copylock analyzer patched to treat the Bu{ff,uild}er types as non-copyable after first use. This does require imposing an additional indirection between noder.writer and Encoder since the field is emb...
[ { "path": "src/bytes/buffer_test.go", "patch": "@@ -354,7 +354,7 @@ func TestWriteAppend(t *testing.T) {\n \t\tgot.Write(b)\n \t}\n \tif !Equal(got.Bytes(), want) {\n-\t\tt.Fatalf(\"Bytes() = %q, want %q\", got, want)\n+\t\tt.Fatalf(\"Bytes() = %q, want %q\", &got, want)\n \t}\n \n \t// With a sufficiently ...
2024-12-11T20:42:06
nodejs/node
b345118e1e4960e8dcfa0dd5797f91dc4c4565e1
bec80892b324f55e030b354c87bfb011f28fff62
test: refactor fs-watch tests due to macOS issue In `macOS`, fsevents generated immediately before start watching may leak into the event callback. See: https://github.com/nodejs/node/issues/54450 for an explanation. This might be fixed at some point in `libuv` though it may take some time (see: https://github.com/lib...
[ { "path": "test/parallel/test-fs-promises-watch.js", "patch": "@@ -8,6 +8,7 @@ const { watch } = require('fs/promises');\n const fs = require('fs');\n const assert = require('assert');\n const { join } = require('path');\n+const { setTimeout } = require('timers/promises');\n const tmpdir = require('../commo...
2024-09-06T17:38:28
electron/electron
792037b338ecab58dca67ae96b255743a444be4b
0b44f433c8764e710ad5a36b8e82cc5720dd1be0
fix: raw_ptr destruction order in NodeBindings (#39762)
[ { "path": "shell/common/node_bindings.cc", "patch": "@@ -394,21 +394,11 @@ base::FilePath GetResourcesPath() {\n return exec_path.DirName().Append(FILE_PATH_LITERAL(\"resources\"));\n #endif\n }\n-\n } // namespace\n \n NodeBindings::NodeBindings(BrowserEnvironment browser_env)\n- : browser_env_(brows...
2023-09-07T23:25:17
facebook/react
1515cb32182e48c25369673607abb76ba773bab6
4d37a599e302ec11647c75b9cedfce52922256b8
[be][sprout] Add ErrorBoundary to test exceptions in sequentialRenders
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reduce-reactive-deps/cfg-condexpr.expect.md", "patch": "@@ -6,11 +6,18 @@\n // scope that produces x, since it is accessed unconditionally in all cfg\n // paths\n \n-function TestCondDepInConditionalExpr(props, other) {\n...
2024-03-28T00:26:15
vercel/next.js
fb83b8345fe63838e5e5efc46b772b5c9eb76717
9e9ee8521784b9c92c24f3599d84fde55bbae12c
Turbopack: run styled-jsx after typescript transform (#82359) Closes PACK-5183 Based on https://github.com/swc-project/swc/issues/10944#issuecomment-3120775091, we need to run styled-jsx after typescript Fixes this crash ``` entered unreachable code: This visitor does not support TypeScript. This method fails for o...
[ { "path": "crates/next-core/src/next_server/context.rs", "patch": "@@ -58,7 +58,7 @@ use crate::{\n get_invalid_styled_jsx_resolve_plugin,\n },\n transforms::{\n- emotion::get_emotion_transform_rule, get_ecma_transform_rule,\n+ EcmascriptTransformStage, emot...
2025-08-05T12:33:50
golang/go
42f9ee904caf6681ee32e7b048f15ab7cddf3eb3
6425749695130f2032ac9cfdf5407b6a322534db
text/template: limit expression parenthesis nesting Deeply nested parenthesized expressions could cause a stack overflow during parsing. This change introduces a depth limit (maxStackDepth) tracked in Tree.stackDepth to prevent this. Additionally, this commit clarifies the security model in the package documentation,...
[ { "path": "src/text/template/doc.go", "patch": "@@ -15,6 +15,11 @@ Execution of the template walks the structure and sets the cursor, represented\n by a period '.' and called \"dot\", to the value at the current location in the\n structure as execution proceeds.\n \n+The security model used by this package ...
2025-05-14T18:16:54
nodejs/node
e4fdd0b492f6a022a7a2bc63190dc6764a6ec7d6
94419bf64de32d27f9d3b693abd9924a56d8799d
test: refactor `test-esm-type-field-errors` Co-Authored-By: Jacob Smith <jacob@frende.me> PR-URL: https://github.com/nodejs/node/pull/54368 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/es-module/test-esm-type-field-errors.js", "patch": "@@ -2,6 +2,7 @@\n const common = require('../common');\n const assert = require('assert');\n const exec = require('child_process').execFile;\n+const { describe, it } = require('node:test');\n \n const mjsFile = require.resolve('../fixtures/...
2024-09-06T08:29:26
electron/electron
0b44f433c8764e710ad5a36b8e82cc5720dd1be0
5fa9dee68a7ef9f0fd74d5be0c836dc4fefa5b70
fix: make titlebar opaque while fullscreen (#39759)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1692,6 +1692,9 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n // Restore the window title under fullscreen mode.\n if (buttons_proxy_)\n [window_ setTitleVisibility:NSWindowTitleVisible];\n+\n+ if (tr...
2023-09-07T22:55:17
vercel/next.js
cee784dea0a4dffcf8f09261cfe2412f2df4f0d2
ba47a7c3cf3aad10719fe5deae73ebf9ba4a4216
[turbopack] vibecode a benchmark runner for module-cost (#82287) # Add automated benchmark runner for module-cost ## What? This PR adds an automated benchmark runner for the module-cost benchmark, allowing for consistent measurement of module loading and execution times. ## Why? It is to tedious and error prone to ...
[ { "path": "bench/module-cost/.gitignore", "patch": "@@ -1,3 +1,4 @@\n commonjs/*\n esm/*\n-CPU*\n\\ No newline at end of file\n+CPU*\n+benchmark-results-*.json\n\\ No newline at end of file", "additions": 2, "deletions": 1, "language": "Unknown" }, { "path": "bench/module-cost/components...
2025-08-04T23:16:57
facebook/react
4d37a599e302ec11647c75b9cedfce52922256b8
a37f242f593c685f0a71a8ff35d9f0ebd4e8391a
[be][tests] Move PropagateScopeDep fixtures to separate directory
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reduce-reactive-deps/cfg-condexpr.expect.md", "patch": "@@ -36,4 +36,12 @@ function TestCondDepInConditionalExpr(props, other) {\n }\n \n ```\n- \n\\ No newline at end of file\n+ \n+### Eval output\n+(kind: exce...
2024-03-28T00:26:14
golang/go
6425749695130f2032ac9cfdf5407b6a322534db
8798f9e7a4929bafb570da29d342104c8cb32f9b
cmd/distpack: remove more tools from packaged distribution The "doc", "fix", and "covdata" tools invoked by the go command are not needed for builds. Instead of invoking them directly using the installed binary in the tool directory, use "go tool" to run them, building them if needed. We can then stop distributing tho...
[ { "path": "src/cmd/distpack/pack.go", "patch": "@@ -169,7 +169,8 @@ func main() {\n \t\t\t}\n \t\t\t// Inside pkg/tool/$GOOS_$GOARCH, discard helper tools, and tools not needed for builds.\n \t\t\tswitch strings.TrimSuffix(path.Base(name), \".exe\") {\n-\t\t\tcase \"addr2line\", \"api\", \"buildid\", \"dist...
2025-05-15T19:30:57
nodejs/node
94419bf64de32d27f9d3b693abd9924a56d8799d
13d6950a6c5a17ae078f8f8d32a8ac1338efbb4a
typings: fix TypedArray to a global type PR-URL: https://github.com/nodejs/node/pull/54063 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "typings/globals.d.ts", "patch": "@@ -19,19 +19,6 @@ import { WASIBinding } from './internalBinding/wasi';\n import { WorkerBinding } from './internalBinding/worker';\n import { ModulesBinding } from './internalBinding/modules';\n \n-declare type TypedArray =\n- | Uint8Array\n- | Uint8ClampedArr...
2024-09-06T08:29:11
electron/electron
75bad341317fa62fe16525c7084df8c3a4662179
0a064cece99b266262a6fd69ca62933c9e56313a
fix: prevent errors when extensions listen for `chrome.tabs` events (#39729) * fix: prevent errors when extensions listen for chrome.tabs events * chore: mark events unsupported in Electron
[ { "path": "shell/common/extensions/api/tabs.json", "patch": "@@ -704,9 +704,362 @@\n }\n }\n ],\n+ // Electron does not yet support tab events - we define them here because otherwise extensions crash when\n+ // they try to listen for them.\n \"events\": [\n+ {\n+ \"n...
2023-09-07T10:41:24
vercel/next.js
ba47a7c3cf3aad10719fe5deae73ebf9ba4a4216
1f8ea2a1b09bf6017bee7d72e99727c1f351bc69
Turbopack: Update `jsonc-parser`, dedupe with SWC (#82343) I noticed we had two copies of this library. There are a few minor API changes (some things that were properties are now methods, "message" is now "kind"), and I switched our error type over to use `RcStr` since it implements `Clone`.
[ { "path": "Cargo.lock", "patch": "@@ -3475,18 +3475,9 @@ dependencies = [\n \n [[package]]\n name = \"jsonc-parser\"\n-version = \"0.21.0\"\n-source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"3a1853e40333206f9a685358046d13ab200169e3ee573019bddf0ede0dc29307\"\n-dependencies = ...
2025-08-04T23:09:47
facebook/react
0a3d1c3d31ce83d18906357c29381e722cbec8b4
a6c6855dd12b0e3fb40b6b987e6c7ad60045c026
Add type defs for reanimated The reanimated babel plugin specifically looks for args to their hooks that are callbacks, then it workletizes the body of that callback so it can run on the main thread. But, forget extracts that callback into a temporary variable and then replaces the previously inlined callback as...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts", "patch": "@@ -17,6 +17,7 @@ import {\n DEFAULT_SHAPES,\n Global,\n GlobalRegistry,\n+ installReAnimatedTypes,\n } from \"./Globals\";\n import {\n BlockId,\n@@ -357,6 +358,16 @@ const EnvironmentConfigSchema = z.object(...
2024-03-28T12:26:22
nodejs/node
5fb9083b1a3bd2b89d9c013f11bb4ad0f69b8cc3
9441ce1c905df5584eeeabc0a5f069360eb42686
doc: fix typo in module.md PR-URL: https://github.com/nodejs/node/pull/54794 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "doc/api/module.md", "patch": "@@ -171,7 +171,7 @@ changes:\n -->\n \n The module compile cache can be enabled either using the [`module.enableCompileCache()`][]\n-method or the [`NODE_COMPILE_CACHE=dir`][] environemnt variable. After it's enabled,\n+method or the [`NODE_COMPILE_CACHE=dir`][] envi...
2024-09-05T23:11:54
golang/go
8097cf14d20b547a615aae7d1b738a6aa563aa31
07a279794dff7ef3371710f1de4b3f9fc4ef4987
cmd/compile: fold negation into addition/subtraction on mips64x Fold negation into addition/subtraction and avoid double negation. file before after Δ % addr2line 4007310 4007470 +160 +0.004% asm 7007636 7007436 -200 -0.003% buildid 3839268 3838972 -296 -0.008% cgo ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/MIPS64.rules", "patch": "@@ -719,11 +719,14 @@\n \n // generic simplifications\n (ADDV x (NEGV y)) => (SUBV x y)\n+(SUBV x (NEGV y)) => (ADDV x y)\n (SUBV x x) => (MOVVconst [0])\n (SUBV (MOVVconst [0]) x) => (NEGV x)\n (AND x x) => x\n (OR x x) => x\n (XOR x x)...
2025-05-16T16:14:31
electron/electron
0a064cece99b266262a6fd69ca62933c9e56313a
f6e8544ef638f1e517a4a2b287950cb27edeac0f
fix: devtools allow restoring saved dock state on Windows (#39734) * fix: devtools allow restoring saved dock state on Windows * chore: address feedback
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2667,14 +2667,6 @@ void WebContents::OpenDevTools(gin::Arguments* args) {\n state = \"detach\";\n }\n \n-#if BUILDFLAG(IS_WIN)\n- auto* win = static_cast<NativeWindowViews*>(owner_window());\n- // Force a detached state when W...
2023-09-07T08:14:01
vercel/next.js
1f8ea2a1b09bf6017bee7d72e99727c1f351bc69
752599478f68a25f25cb3a5dcfc660ef063f9fbc
docs: Clarify revalidatePath (#82142) Fixes: https://github.com/vercel/next.js/issues/81776
[ { "path": "docs/01-app/03-api-reference/04-functions/revalidatePath.mdx", "patch": "@@ -5,25 +5,83 @@ description: API Reference for the revalidatePath function.\n \n `revalidatePath` allows you to purge [cached data](/docs/app/guides/caching) on-demand for a specific path.\n \n+## Usage\n+\n+`revalidatePat...
2025-08-04T18:02:36
facebook/react
a0537160771bafae90c6fd3154eeead2f2c903e7
9f8daa6cb5aae476cf54611874ea7522243c6ba6
Make onUncaughtError and onCaughtError Configurable (#28641) Stacked on #28627. This makes error logging configurable using these `createRoot`/`hydrateRoot` options: ``` onUncaughtError(error: mixed, errorInfo: {componentStack?: ?string}) => void onCaughtError(error: mixed, errorInfo: {componentStack?: ?strin...
[ { "path": "packages/react-dom/index.classic.fb.js", "patch": "@@ -20,11 +20,8 @@ Object.assign((Internals: any), {\n \n export {\n createPortal,\n- createRoot,\n- hydrateRoot,\n findDOMNode,\n flushSync,\n- render,\n unmountComponentAtNode,\n unstable_batchedUpdates,\n unstable_createEventHan...
2024-03-27T04:51:37
nodejs/node
24302c9fe94e1dd755ac8a8cc1f6aa4444f75cb3
26eb062a9b9c0ae8cee9cb5c378e43bca363207c
doc: fix typo in CppgcMixin docs PR-URL: https://github.com/nodejs/node/pull/54762 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/README.md", "patch": "@@ -1013,7 +1013,7 @@ A `cppgc`-managed native wrapper should look something like this:\n // CPPGC_MIXIN is a helper macro for inheriting from cppgc::GarbageCollected,\n // cppgc::NameProvider and public CppgcMixin. Per cppgc rules, it must be\n // placed at the left-mos...
2024-09-05T17:45:26
electron/electron
65901f4c6a7c5201d039bde9d516cc18300eef62
feb804cea817eca9a2b30bdc657905caa9c01367
fix: restore flag that allowed websockets to not be backgrounded (#39738)
[ { "path": "patches/chromium/.patches", "patch": "@@ -131,3 +131,4 @@ chore_add_buildflag_guard_around_new_include.patch\n fix_use_delegated_generic_capturer_when_available.patch\n build_remove_ent_content_analysis_assert.patch\n fix_move_autopipsettingshelper_behind_branding_buildflag.patch\n+revert_remove_...
2023-09-06T18:23:17
golang/go
07a279794dff7ef3371710f1de4b3f9fc4ef4987
e6cd9c083ec1a2d989608fd6b4d4809b8b08d0fe
cmd/go/internal/modget: check in workspace mode if go.work present The purpose of this change is to enable go get to be used when working on a module that is usually built from a workspace and has unreleased dependencies in that workspacae that have no requirements satisfying them. These modules can't build in single ...
[ { "path": "src/cmd/go/internal/modfetch/fetch.go", "patch": "@@ -35,7 +35,12 @@ import (\n \tmodzip \"golang.org/x/mod/zip\"\n )\n \n-var downloadCache par.ErrCache[module.Version, string] // version → directory\n+// The downloadCache is used to cache the operation of downloading a module to disk\n+// (if i...
2025-05-01T02:17:21
vercel/next.js
9d3069adc7bf452eaaf13075c3a7f321b1c36d4e
92042340b3b2618692c06c084405761950e190e3
docs: Improve Content Security Policy documentation (#80580) # Improve Content Security Policy Documentation This PR comprehensively improves the Next.js Content Security Policy (CSP) documentation to address community feedback from Reddit and GitHub discussions about gaps in the current documentation. ## Changes Ma...
[ { "path": "docs/01-app/02-guides/content-security-policy.mdx", "patch": "@@ -27,7 +27,9 @@ A [nonce](https://developer.mozilla.org/docs/Web/HTML/Global_attributes/nonce) i\n \n ### Why use a nonce?\n \n-Even though CSPs are designed to block malicious scripts, there are legitimate scenarios where inline scr...
2025-08-04T16:47:26
nodejs/node
65b4fb840ed7ae80fdca5d2c92dd647590d99686
a48852be17422c1e10766fb12cecbb13c66a7fe7
crypto: return a clearer error when loading an unsupported pkcs12 PR-URL: https://github.com/nodejs/node/pull/54485 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -1148,6 +1148,16 @@ void SecureContext::LoadPKCS12(const FunctionCallbackInfo<Value>& args) {\n if (!ret) {\n // TODO(@jasnell): Should this use ThrowCryptoError?\n unsigned long err = ERR_get_error(); // NOLINT(runtime/int)\n+\n+#if OPENSSL_...
2024-09-05T14:15:01
facebook/react
6786563f3cbbc9b16d5a8187207b5bd904386e53
5910eb34567a8699d1faa73b546baafd94f26411
[Fiber] Don't Rethrow Errors at the Root (#28627) Stacked on top of #28498 for test fixes. ### Don't Rethrow When we started React it was 1:1 setState calls a series of renders and if they error, it errors where the setState was called. Simple. However, then batching came and the error actually got thrown some...
[ { "path": "packages/internal-test-utils/ReactInternalTestUtils.js", "patch": "@@ -13,6 +13,8 @@ import simulateBrowserEventDispatch from './simulateBrowserEventDispatch';\n \n export {act} from './internalAct';\n \n+import {thrownErrors, actingUpdatesScopeDepth} from './internalAct';\n+\n function assertYie...
2024-03-27T03:44:07
electron/electron
34b79c15c2f2de2fa514538b7ccb4b3c473808ae
d9ba26273ad3e7a34c905eccbd5dabda4eb7b402
build: fix `depot_tools` patch application (#39742) build: fix depot_tools patch application
[ { "path": ".circleci/config/base.yml", "patch": "@@ -249,19 +249,19 @@ step-depot-tools-get: &step-depot-tools-get\n cd depot_tools\n cat > gclient.diff \\<< 'EOF'\n diff --git a/gclient.py b/gclient.py\n- index 3a9c5c6..f222043 100755\n+ index c305c248..e6e0fbdc 100755\n ...
2023-09-06T11:49:00
golang/go
e6cd9c083ec1a2d989608fd6b4d4809b8b08d0fe
2b3794e3e8a0ecf9d0ff7d8689ca9cdaea974e08
sync: set GOMAXPROCS to 1 in TestPoolGC This test expects to be able to drain a Pool using only Get. This isn't actually possible in the general case, since a pooled value could get stuck in some P's private slot. However, if GOMAXPROCS=1, there's only 1 P we could be running on, so getting stuck becomes impossible. ...
[ { "path": "src/sync/pool_test.go", "patch": "@@ -102,6 +102,18 @@ func TestPoolRelease(t *testing.T) {\n }\n \n func testPool(t *testing.T, drain bool) {\n+\tif drain {\n+\t\t// Run with GOMAXPROCS=1 if drain is set. The code below implicitly\n+\t\t// assumes it can remove all the pool-cached values with cl...
2025-05-16T04:42:38
vercel/next.js
6e20a10d76878c3b2937329cd51d77c7dc85f8e6
1388270e77409c2d58e43ceb1364ce907be92b4c
docs: add React Developer Tools section for debugging (#82320) ## What? Added a new "React Developer Tools" section to the debugging documentation.  ## Why?  This PR resolves #82308 which highlighted that React DevTools - a fundamental debugging tool for React applications - was missing from Next.js debugging docu...
[ { "path": "docs/01-app/02-guides/debugging.mdx", "patch": "@@ -101,6 +101,14 @@ In either browser, any time your client-side code reaches a [`debugger`](https:/\n \n Note that when searching, your source files will have paths starting with `webpack://_N_E/./`.\n \n+### React Developer Tools\n+\n+For React-s...
2025-08-04T14:19:17
rust-lang/rust
c22301b0991e641b276271bea1930dcd2a02176e
a423f68a0d75656eabab4982a06bed9f316f7109
Test(lib/win/net): Skip UDS tests when under Win7 Unix Domain Socket support has only been added to Windows since Windows 10 Insider Preview Build 17063. Thus, it has no chance of ever being supported under Windows 7, making current tests fail. This therefore adds the necessary in order to make the tests dynamically s...
[ { "path": "library/std/src/os/windows/net/listener.rs", "patch": "@@ -12,6 +12,8 @@ use crate::{fmt, io};\n \n /// A structure representing a Unix domain socket server.\n ///\n+/// Under Windows, it will only work starting from Windows 10 17063.\n+///\n /// # Examples\n ///\n /// ```no_run", "additions"...
2026-02-12T11:21:32
nodejs/node
a48852be17422c1e10766fb12cecbb13c66a7fe7
0debdac9da67d744f4706a1c8ccb537b44ce3647
fs: respect dereference when copy symlink directory Co-authored-by: Jake Yuesong Li <jake.yuesong@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54732 Fixes: https://github.com/nodejs/node/issues/54730 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -3155,7 +3155,9 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n \n bool dest_exists = !error_code && dest_status.type() !=\n std::filesystem::file_type::not_found;\n- bool src_is_dir = src_stat...
2024-09-05T13:54:49
facebook/react
5910eb34567a8699d1faa73b546baafd94f26411
2ec2aaea98588178525f83495669e11e96815a00
Add Flag to Favor Hydration Performance over User Safety (#28655) If false, this ignores text comparison checks during hydration at the risk of privacy safety. Since React 18 we recreate the DOM starting from the nearest Suspense boundary if any of the text content mismatches. This ensures that if we have nodes ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -4423,6 +4423,7 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ // @gate favorSafetyOverHydrationPerf\n it('#24384: Suspending should halt hydration warnings but still emit hydration warnings after unsu...
2024-03-27T02:52:46
vercel/next.js
1388270e77409c2d58e43ceb1364ce907be92b4c
5bb867a9f19aa18329b60232bd1ae2f41d3742f6
chore: fix eslint-typechecked-require with template (#82328) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Con...
[ { "path": "packages/eslint-plugin-internal/src/eslint-typechecked-require.js", "patch": "@@ -34,12 +34,25 @@ module.exports = {\n node.callee.type !== 'Identifier' ||\n node.callee.name !== 'require' ||\n node.arguments.length !== 1 ||\n- node.arguments[0].type !== 'Literal'\n...
2025-08-04T14:02:20
electron/electron
4cc0f6fb781a3efe6b018aa4ef410e4196c03ecf
f27b0340454ada29977a7d08f2dbc8321923e1b1
test: fix flaky content tracing test (#39682)
[ { "path": "spec/api-content-tracing-spec.ts", "patch": "@@ -5,8 +5,8 @@ import * as path from 'node:path';\n import { setTimeout } from 'node:timers/promises';\n import { ifdescribe } from './lib/spec-helpers';\n \n-// FIXME: The tests are skipped on arm/arm64 and ia32.\n-ifdescribe(!(['arm', 'arm64', 'ia32...
2023-09-04T12:08:26
golang/go
f529d56508b4bbb1e3707917404be57e9b815ccd
b450b5409dbdec1810873413b1213fc543f43a39
cmd/go: add global ignore mechanism This CL adds the ignore directive which enables users to tell the Go Command to skip traversing into a given directory. This behaves similar to how '_' or 'testdata' are currently treated. This mainly has benefits for go list and go mod tidy. This does not affect what is packed int...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1259,9 +1259,13 @@\n // The -tool=path and -droptool=path flags add and drop a tool declaration\n // for the given path.\n //\n+// The -ignore=path and -dropignore=path flags add and drop a ignore declaration\n+// for the given path.\n+//\n // The -godebug, -...
2025-01-08T18:30:50
nodejs/node
dc74f17f6c37b1bb2d675216066238f33790ed29
2bd6a57b7b934afcaf437a90e2abebcb79c13acf
buffer: re-enable Fast API for Buffer.write Re-enables fast Fast API for Buffer.write after fixing UTF8 handling. Fixes: https://github.com/nodejs/node/issues/54521 PR-URL: https://github.com/nodejs/node/pull/54526 Reviewed-By: Daniel Lemire <daniel@lemire.me> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Re...
[ { "path": "src/node_buffer.cc", "patch": "@@ -22,6 +22,7 @@\n #include \"node_buffer.h\"\n #include \"node.h\"\n #include \"node_blob.h\"\n+#include \"node_debug.h\"\n #include \"node_errors.h\"\n #include \"node_external_reference.h\"\n #include \"node_i18n.h\"\n@@ -1442,6 +1443,79 @@ void CopyArrayBuffer(...
2024-09-04T22:34:29
vercel/next.js
5bb867a9f19aa18329b60232bd1ae2f41d3742f6
b3229324d488e66ea5d8171ce09c2f69f8b45091
fix: next/root-params erroring when rerendering after action (#82326) When implementing the check that disallows using `next/root-params` in server actions, i forgot that when a page is rerendered after an action, the render is still wrapped with an `actionAsyncStorage` with `actionStore.isAction === true`. The fix is...
[ { "path": "packages/next/errors.json", "patch": "@@ -771,5 +771,6 @@\n \"770\": \"createParamsFromClient should not be called in a runtime prerender.\",\n \"771\": \"\\\\`%s\\\\` was called during a runtime prerender. Next.js should be preventing %s from being included in server components statically, b...
2025-08-04T12:21:20
electron/electron
54d8402a6ca8a357d7695c1c6d01d5040e42926a
89659fa9c997977ee2a25ce2c769d86742eccb90
fix: broken `chrome.scripting` compilation (#39725) fix: broken chrome.scripting impl after roll
[ { "path": "shell/browser/extensions/api/scripting/scripting_api.cc", "patch": "@@ -51,55 +51,14 @@ constexpr char kDuplicateFileSpecifiedError[] =\n \"Duplicate file specified: '*'.\";\n constexpr char kExactlyOneOfCssAndFilesError[] =\n \"Exactly one of 'css' and 'files' must be specified.\";\n-con...
2023-09-04T07:03:10
golang/go
b450b5409dbdec1810873413b1213fc543f43a39
045b5c1bfb4535dc8149d93efec1f6412f5ccdae
runtime: prevent cleanup goroutines from missing work Currently, there's a window of time where each cleanup goroutine has committed to going to sleep (immediately after full.pop() == nil) but hasn't yet marked itself as asleep (state.sleep()). If new work arrives in this window, it might get missed. This is what we s...
[ { "path": "src/internal/runtime/math/math.go", "patch": "@@ -6,7 +6,10 @@ package math\n \n import \"internal/goarch\"\n \n-const MaxUintptr = ^uintptr(0)\n+const (\n+\tMaxUint32 = ^uint32(0)\n+\tMaxUintptr = ^uintptr(0)\n+)\n \n // MulUintptr returns a * b and whether the multiplication overflowed.\n // O...
2025-05-10T18:53:14
facebook/react
2ec2aaea98588178525f83495669e11e96815a00
f7aa5e0aa3e2aa51279af4b6cb5413912cacd7f5
Add Diffs to Hydration Warnings (#28512) Stacked on #28502. This builds on the mechanism in #28502 by adding a diff of everything we've collected so far to the thrown error or logged error. This isn't actually a longest common subsequence diff. This means that there are certain cases that can appear confusing ...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -251,7 +251,7 @@ function warnForExtraAttributes(\n ) {\n if (__DEV__) {\n attributeNames.forEach(function (attributeName) {\n- serverDifferences[attributeName] =\n+ serverDifferences[getPropNameFromAttribu...
2024-03-27T00:02:18
nodejs/node
03fe00e3da29cfe7340fd70423cb271bc5bf296f
b7b96282b212a2274b9db605ac29d388246754de
benchmark: adds groups to better separate benchmarks Fixes: https://github.com/nodejs/node/issues/26425 Co-Authored-By: Yaman Kassir <mestery@protonmail.com> PR-URL: https://github.com/nodejs/node/pull/54393 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
[ { "path": "benchmark/common.js", "patch": "@@ -22,27 +22,36 @@ class Benchmark {\n this.name = require.main.filename.slice(__dirname.length + 1);\n \n // Execution arguments i.e. flags used to run the jobs\n- this.flags = process.env.NODE_BENCHMARK_FLAGS ?\n- process.env.NODE_BENCHMARK_FLAGS...
2024-09-04T03:26:53
golang/go
7b4a3d93d7783e2c4593e604bedc6ffda64f2225
d681270714bc91b28a2cd97c3eae138b3112ff1d
crypto/tls: fix bogo IgnoreClientVersionOrder skip reason The BoGo IgnoreClientVersionOrder test checks that a client that sends a supported_versions extension with the list [TLS 1.2, TLS 1.3] ends up negotiating TLS 1.3. However, the crypto/tls module treats this list as being in client preference order, and so nego...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -66,7 +66,7 @@\n \"SupportTicketsWithSessionID\": \"TODO: first pass, this should be fixed\",\n \"NoNullCompression-TLS12\": \"TODO: first pass, this should be fixed\",\n \"KeyUpdate-RequestACK\": \"TODO: first pass, this shou...
2025-05-09T14:29:47
electron/electron
89659fa9c997977ee2a25ce2c769d86742eccb90
89117fdd999783091e019f7c6c06e7b5a45244d9
chore: fix broken patches on main (#39715)
[ { "path": "patches/chromium/refactor_expose_hostimportmoduledynamically_and.patch", "patch": "@@ -7,10 +7,10 @@ Subject: refactor: expose HostImportModuleDynamically and\n This is so that Electron can blend Blink's and Node's implementations of these isolate handlers.\n \n diff --git a/third_party/blink/ren...
2023-09-01T08:28:01
rust-lang/rust
43eb3b9684cbb01c1a99ad23d4045e7e8eaaa6f4
0f4f81df13a18212e1b3b578ccfc8d055ad120be
fix: `RustcCallbacks::config()` in `clippy-driver` The `RustcCallbacks::config()` function used by `clippy-driver` was not setting `config.extra_symbols`, so when interned symbols were computed, such as `sym::CLIPPY_ARGS`, it was using some random string in the binary. The fix is to set ```rust config.extra_symbols ...
[ { "path": "src/driver.rs", "patch": "@@ -126,6 +126,7 @@ impl rustc_driver::Callbacks for RustcCallbacks {\n config.psess_created = Some(Box::new(move |psess| {\n track_clippy_args(psess, clippy_args_var.as_deref());\n }));\n+ config.extra_symbols = sym::EXTRA_SYMBOLS.into...
2026-02-13T18:49:57
facebook/react
f7aa5e0aa3e2aa51279af4b6cb5413912cacd7f5
4b8dfd6215bf855402ae1a94cb0ae4f467afca9a
Move Hydration Mismatch Errors to Throw or Log Once (Kind of) (#28502) Stacked on #28476. We used to `console.error` for every mismatch we found, up until the error we threw for the hydration mismatch. This changes it so that we build up a set of diffs up until we either throw or complete hydrating the root/su...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzForm-test.js", "patch": "@@ -182,7 +182,8 @@ describe('ReactDOMFizzForm', () => {\n ReactDOMClient.hydrateRoot(container, <App isClient={true} />);\n });\n }).toErrorDev(\n- 'Prop `action` did not match. Server: \"function\" Clie...
2024-03-27T00:01:41
nodejs/node
01c88f913601bc43c149d76a70e95df77d23dc1b
9e5d2b74fb22fa23b57653c08c2bd58c2971f852
meta: fix links in `SECURITY.md` PR-URL: https://github.com/nodejs/node/pull/54696 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "SECURITY.md", "patch": "@@ -222,6 +222,6 @@ Security notifications will be distributed via the following methods.\n \n ## Comments on this policy\n \n-If you have suggestions on how this process could be improved please submit a\n-[pull request](https://github.com/nodejs/nodejs.org) or\n-[file an...
2024-09-03T16:38:27
vercel/next.js
da7cbb13be80d0eed985cf4a4df417cfd4cf7e47
825753a284bb49f3143c4fe6d04e37ca5f856b42
[turbopack] Use Arrays instead of objects to bootstrap chunks (#81877) ### Improve performance of chunk bootstrapping leveraging arrays and maps Currently we bootstrap the set of the modules in a chunk by passing an object to the runtime, this is suboptimal for a few reasons: * The runtime just wants to iterate the ...
[ { "path": "test/development/app-dir/ssr-in-rsc/ssr-in-rsc.test.ts", "patch": "@@ -369,16 +369,16 @@ describe('react-dom/server in React Server environment', () => {\n `)\n } else {\n expect(redbox).toMatchInlineSnapshot(`\n- {\n- \"description\": \"react-dom/server ...
2025-08-02T18:47:23
electron/electron
89117fdd999783091e019f7c6c06e7b5a45244d9
0b0707145b157343c42266d2586ed9413a1d54f5
chore: bump chromium to 118.0.5975.0 (main) (#39531) * chore: bump chromium in DEPS to 118.0.5951.0 * chore: update printing.patch Xref: https://chromium-review.googlesource.com/c/chromium/src/+/4727894 No logic changes, but patch needed to be manually re-applied due to upstream code shear * chore: update ...
[ { "path": "BUILD.gn", "patch": "@@ -730,8 +730,8 @@ source_set(\"electron_lib\") {\n \"//pdf\",\n ]\n sources += [\n- \"shell/browser/electron_pdf_web_contents_helper_client.cc\",\n- \"shell/browser/electron_pdf_web_contents_helper_client.h\",\n+ \"shell/browser/electron_pdf_doc...
2023-09-01T06:54:59
facebook/react
4b8dfd6215bf855402ae1a94cb0ae4f467afca9a
bb66aa3cef4e42aee790200d03cf7a82659da121
Move Hydration Warnings from the DOM Config into the Fiber reconciliation (#28476) Stacked on #28458. This doesn't actually really change the messages yet, it's just a refactor. Hydration warnings can be presented either as HTML or React JSX format. If presented as HTML it makes more sense to make that a DOM s...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -80,7 +80,6 @@ import {\n \n let didWarnControlledToUncontrolled = false;\n let didWarnUncontrolledToControlled = false;\n-let didWarnInvalidHydration = false;\n let didWarnFormActionType = false;\n let didWarnFormActionNa...
2024-03-26T23:04:18
nodejs/node
981c7014009eee456bdc70adf4d9d5c89211cafe
3d954dcf812bb500a77913ffd5ebec76235714f0
lib: ensure no holey array in fixed_queue Co-authored-by: Jake Yuesong Li <jake.yuesong@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54537 Fixes: https://github.com/nodejs/node/issues/54472 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Benjamin...
[ { "path": "lib/internal/fixed_queue.js", "patch": "@@ -2,6 +2,7 @@\n \n const {\n Array,\n+ ArrayPrototypeFill,\n } = primordials;\n \n // Currently optimal queue size, tested on V8 6.0 - 6.6. Must be power of two.\n@@ -17,18 +18,18 @@ const kMask = kSize - 1;\n // +-----------+ <-----\\ +---------...
2024-09-02T01:42:44
rust-lang/rust
a9cc42e5763b55e95aed9adf48435a03ac4abf1f
ca35562cd3a7023d4059737bffd58a64fc1a5186
Revert "fix: Stale diagnostics with rust-project.json and rustc JSON" This reverts commit 2cefe47e6d55c186b68687bf677bf0d5eb65a922.
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs", "patch": "@@ -741,63 +741,42 @@ impl FlycheckActor {\n flycheck_id = self.id,\n message = diagnostic.message,\n package_id = package_id.as_ref().map(|...
2026-02-13T18:19:07
electron/electron
7858921a1f318a4bffe9a570addfde2360a701e8
ac031bf8dedf8e3da6d918cbbc2e64a03830c639
docs: fix return typing of ses.getExtension (#39697)
[ { "path": "docs/api/session.md", "patch": "@@ -1491,7 +1491,7 @@ is emitted.\n \n * `extensionId` string - ID of extension to query\n \n-Returns `Extension` | `null` - The loaded extension with the given ID.\n+Returns `Extension | null` - The loaded extension with the given ID.\n \n **Note:** This API canno...
2023-08-31T01:10:32
facebook/react
dbfbfb3312db019183ef92fd2ef110cc7d807e80
f24cf4a1af4e677dd85fce66001eee42b75b1cf7
Update error messages (#28652) ## Overview The error messages that say: > ReactDOM.hydrate is no longer supported in React 18 Don't make sense in the React 19 release. Instead, they should say: > ReactDOM.hydrate was removed in React 19. For legacy mode, they should say: > ReactDOM.hydrate has not be...
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -2159,7 +2159,7 @@ describe('InspectedElement', () => {\n const container = document.createElement('div');\n container.innerHTML = '<div></div>';\n withErrorsOrWarningsIgnored(\n- ['React...
2024-03-26T21:25:53
nodejs/node
2f0b3713efd1f8f06a38115393cee8531803ce43
a1ffa644e923b0006010c5c4be8ef55e3e6921fb
meta: fix `contributing` codeowners PR-URL: https://github.com/nodejs/node/pull/54641 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": ".github/CODEOWNERS", "patch": "@@ -15,7 +15,7 @@\n /.github/ISSUE_TEMPLATE/* @nodejs/tsc\n /CODE_OF_CONDUCT.md @nodejs/tsc\n /CONTRIBUTING.md @nodejs/tsc\n-/doc/contributing/*.md @nodejs/tsc\n+/doc/contributing/**/* @nodejs/tsc\n /GOVERNANCE.md @nodejs/tsc\n /SECURITY.md @nodejs/tsc\n /LICENSE @n...
2024-08-31T17:33:24
golang/go
11fa0de475f9446870bc086bfb42cb67bac40634
fc641e7fae1b09e25402bc73660d2deea51c2ad6
cmd/compile: use OpMove instead of memmove more on arm64 OpMove is faster for small moves of fixed size. For safety, we have to rewrite the Move rewrite rules a bit so that all the loads are done before any stores happen. Also use an 8-byte move instead of a 16-byte move if the tail is at most 8 bytes. Change-Id: I...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules", "patch": "@@ -472,26 +472,39 @@\n \t\t(MOVDstore dst (MOVDload src mem) mem))\n (Move [16] dst src mem) =>\n \t(STP dst (Select0 <typ.UInt64> (LDP src mem)) (Select1 <typ.UInt64> (LDP src mem)) mem)\n-(Move [32] dst src mem) =>\n-\t(STP [16] dst (Se...
2025-04-24T21:34:10
rust-lang/rust
c43a33eec7b29a637ff8a41804d30e679092bad9
47611e16044c68ef27bac31c35fda2ba1dc20b73
Feed `ErrorGuaranteed` from late lifetime resolution to RBV If late lifetime resolution fails for whatever reason, forward to RBV the guarantee that an error was emitted - thereby eliminating the need for a "hack" to suppress subsequent/superfluous error diagnostics.
[ { "path": "compiler/rustc_ast_lowering/src/lib.rs", "patch": "@@ -878,7 +878,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {\n \n (hir::ParamName::Fresh, hir::LifetimeParamKind::Elided(kind))\n }\n- LifetimeRes::Static { .. } | LifetimeRes::Error => return None,\n+ ...
2026-02-03T23:34:42
electron/electron
ac031bf8dedf8e3da6d918cbbc2e64a03830c639
b8ac7983448d1f7e43eba7eddc6e561e4b1f4855
feat: I guess it's esm (#37535) * fix: allow ESM loads from within ASAR files * fix: ensure that ESM entry points finish loading before app ready * fix: allow loading ESM entrypoints via default_app * fix: allow ESM loading for renderer preloads * docs: document current known limitations of esm * chore:...
[ { "path": "default_app/default_app.ts", "patch": "@@ -51,16 +51,17 @@ async function createWindow (backgroundColor?: string) {\n autoHideMenuBar: true,\n backgroundColor,\n webPreferences: {\n- preload: path.resolve(__dirname, 'preload.js'),\n+ preload: url.fileURLToPath(new URL('prelo...
2023-08-31T00:38:07
facebook/react
91f7bc8be7837ded7664220a30e447a8aae5b87b
fbd68eef7f8fad5dd1fdceb0fb79162c3d972e59
Ensure valid mutable ranges for all scopes; fix ranges for context vars Our current validation fails to detect some invalid cases of mutable ranges — namely, ranges that are fully or partially uninitialized, with start or start+end still set to zero. This PR fixes these cases, starting by validating that the rang...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/PrintHIR.ts", "patch": "@@ -633,10 +633,14 @@ function isMutable(range: MutableRange): boolean {\n }\n \n function printMutableRange(identifier: Identifier): string {\n- const range =\n- identifier.scope !== null\n- ? identifier.scope.r...
2024-03-26T20:29:24
nodejs/node
a1ffa644e923b0006010c5c4be8ef55e3e6921fb
4c844a2f307fc758b0c50b99e830ea90d41c4acc
doc: fix typo name used instructions differed that what is in the code Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: https://github.com/nodejs/node/pull/54640 Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Richard Lau <rlau@redha...
[ { "path": "doc/contributing/maintaining/maintaining-dependencies.md", "patch": "@@ -110,7 +110,7 @@ shared library is available can added by:\n Support for an externalizable dependency with JavaScript code\n can be added by:\n \n-* adding an entry to the `sharable_builtins` map in\n+* adding an entry to the...
2024-08-31T17:33:09
golang/go
fc641e7fae1b09e25402bc73660d2deea51c2ad6
6df855ebac86499402cfd31d92256592c3b2a233
cmd/compile: create LSym for closures with type conversion Follow-up to #54959 with another failing case. The linker needs FuncInfo metadata for all inlined functions. CL 436240 explicitly creates LSym for direct closure calls to ensure we keep the FuncInfo metadata. However, CL 436240 won't work if the direct closu...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -1117,12 +1117,18 @@ func mkinlcall(callerfn *ir.Func, n *ir.CallExpr, fn *ir.Func, bigCaller, closur\n \t\t\t// Not a standard call.\n \t\t\treturn\n \t\t}\n-\t\tif n.Fun.Op() != ir.OCLOSURE {\n-\t\t\t// Not a direct closure call.\n+\n+\t\tva...
2025-05-15T13:53:23
vercel/next.js
825753a284bb49f3143c4fe6d04e37ca5f856b42
b98796b1741630dd194e13e775e74e031b725ad2
Turbopack: name the module factory function (#73553) ### What? In development give the module factory a useful name, so it's clear in stack traces that this is the module evaluation part of the execution. This also fixes some bugs with the stack trace parser, which seems to struggle if function names contain bra...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/code-frame/code-frame.tsx", "patch": "@@ -139,7 +139,6 @@ export const CODE_FRAME_STYLES = `\n }\n \n .code-frame-link [data-text] {\n- display: inline-flex;\n text-align: left;\n margin: auto 6px;\n }", "additions": 0, ...
2025-08-02T17:15:24
rust-lang/rust
ee8ca0a89ff8bff74c98ac0920cbfcb366354286
c61c2603cf153196aed4f741a9d86a753794839c
Port `#[panic_handler]` to the new attribute parsers
[ { "path": "compiler/rustc_attr_parsing/src/attributes/rustc_internal.rs", "patch": "@@ -668,6 +668,15 @@ impl<S: Stage> NoArgsAttributeParser<S> for RustcHasIncoherentInherentImplsParse\n const CREATE: fn(Span) -> AttributeKind = |_| AttributeKind::RustcHasIncoherentInherentImpls;\n }\n \n+pub(crate) st...
2026-02-13T12:43:02
electron/electron
2e79f34c841776a7184ba311cd937b3513e75f32
f30fbebb984816d71ab6723c04dd40b81337f397
docs: fix the minimum supported macOS version to Catalina (#39667) docs: update the minimum supported macOS version to Catalina
[ { "path": "README.md", "patch": "@@ -38,7 +38,7 @@ For more installation options and troubleshooting tips, see\n \n Each Electron release provides binaries for macOS, Windows, and Linux.\n \n-* macOS (High Sierra and up): Electron provides 64-bit Intel and ARM binaries for macOS. Apple Silicon support was a...
2023-08-29T00:01:11
nodejs/node
d6f523480b1ce7e4440be04018b731a8232434a4
0b120af159d3f049e9886a01b281824eedf1e9a0
deps: fix sign-compare warning in ncrypto PR-URL: https://github.com/nodejs/node/pull/54624 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "deps/ncrypto/ncrypto.cc", "patch": "@@ -1194,7 +1194,7 @@ DataPointer DHPointer::computeSecret(const BignumPointer& peer) const {\n \n // The size of the computed key can be smaller than the size of the DH key.\n // We want to make sure that the key is correctly padded.\n- if (size < dp.size...
2024-08-31T02:10:36
golang/go
6df855ebac86499402cfd31d92256592c3b2a233
fac2ccbed320ef9fdca251d63b759b61bbc21f2a
testing: fix panic in t.Log If a testing.TB is no longer on the stack, t.Log would panic because its outputWriter is nil. Check for nil and drop the write, which is the previous behavior. Change-Id: Ifde97997a3aa26ae604ac9c218588c1980110cbf Reviewed-on: https://go-review.googlesource.com/c/go/+/673215 LUCI-TryBot-Res...
[ { "path": "src/testing/sub_test.go", "patch": "@@ -280,7 +280,6 @@ func TestTRun(t *T) {\n \t\t\t\t\tt.Run(\"c\", func(t *T) {\n \t\t\t\t\t\tt.Parallel()\n \t\t\t\t\t})\n-\n \t\t\t\t})\n \t\t\t})\n \t\t},\n@@ -305,7 +304,6 @@ func TestTRun(t *T) {\n \t\t\t\t\t\t\t\t\ttime.Sleep(time.Nanosecond)\n \t\t\t\t\t...
2025-05-15T15:16:34
vercel/next.js
804cbc410639fd4ae2c5ef5cd93ceb710e49af63
49ac27c137b336aea57f594b62b4129d7d287660
feat: add route context to prerender error messages (#82283) ### What? This PR improves error debugging during prerendering by adding route context to hanging promise rejection errors and related error messages. ### Why? When developers encounter dynamic access issues during static generation, the current error mes...
[ { "path": "packages/next/errors.json", "patch": "@@ -770,5 +770,6 @@\n \"769\": \"createSearchParamsFromClient should not be called in a runtime prerender.\",\n \"770\": \"createParamsFromClient should not be called in a runtime prerender.\",\n \"771\": \"\\\\`%s\\\\` was called during a runtime prere...
2025-08-01T21:46:01
nodejs/node
d49f47ee3536ed76616d0328c01a949325321c40
64bb5f8f8ed4d6bb786b6dfc02e22a94caf3bc21
doc: fix webcrypto.md AES-GCM backticks PR-URL: https://github.com/nodejs/node/pull/54621 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/webcrypto.md", "patch": "@@ -567,7 +567,7 @@ The algorithms currently supported include:\n * `'RSA-OAEP'`\n * `'AES-CTR'`\n * `'AES-CBC'`\n-* `'AES-GCM`'\n+* `'AES-GCM'`\n \n ### `subtle.deriveBits(algorithm, baseKey[, length])`\n \n@@ -703,7 +703,7 @@ The algorithms currently supported i...
2024-08-30T22:32:03
golang/go
01e0e8b6b397f2e775d9ccbfcde104d025464382
b338f6bfa68da6fc8dfb7a38a975337e659424dc
runtime/pprof: include PCs for deduplication in TestMutexBlockFullAggregation TestMutexBlockFullAggregation aggregates stacks by function, file, and line number. But there can be multiple function calls on the same line, giving us different sequences of PCs. This causes the test to spuriously fail in some cases. Inclu...
[ { "path": "src/runtime/pprof/pprof_test.go", "patch": "@@ -2632,7 +2632,7 @@ func produceProfileEvents(t *testing.T, depth int) {\n \tgoroutineDeep(t, depth-4) // -4 for produceProfileEvents, **, chanrecv1, chanrev, gopark\n }\n \n-func getProfileStacks(collect func([]runtime.BlockProfileRecord) (int, bool)...
2025-05-15T11:01:14
electron/electron
f30fbebb984816d71ab6723c04dd40b81337f397
f0ad357af207a7f8b4a425bbad0e23d15c92fbbc
fix: promise resolved to early when browser initiated in-page navigation v2 (#39597)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -454,6 +454,7 @@ WebContents.prototype.loadURL = function (url, options) {\n };\n \n let navigationStarted = false;\n+ let browserInitiatedInPageNavigation = false;\n const navigationListener = (event: Electron.Event, url: string, isSa...
2023-08-28T16:37:28
vercel/next.js
068ae14412e69feb2cde40bb222c45174f26a201
4f61b84e57cbba11a61db0a51dbf0798e2f2a86c
[turbopack] Fix a snapshot test (#82281) A recent output change in #82214 invalidated a new test added in #77616 A classic write-write race
[ { "path": "turbopack/crates/turbopack-tests/tests/snapshot/node/bun_protocol_external/output/[root-of-the-server]__e251cfe1._.js", "patch": "@@ -52,7 +52,7 @@ module.exports = mod;\n \"use strict\";\n \n // Test that Bun builtins are treated as external\n-__turbopack_context__.s({});\n+__turbopack_context__...
2025-08-01T17:40:33
rust-lang/rust
da9ff14a13d072835afc9e70740547d5b0aacc87
4b5b1819350fed8e27ca67e34a049ea20444f247
Remove incorrect warning log
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs", "patch": "@@ -757,13 +757,6 @@ impl FlycheckActor {\n DiagnosticsReceived::AtLeastOneAndClearedWorkspace;\n }\n \n- if let Some(pac...
2026-02-13T15:23:59
golang/go
b338f6bfa68da6fc8dfb7a38a975337e659424dc
8105ea53c3d17546a35709d51e6e0993b1d0c261
cmd/link: fix outdated output mmap check Outbuf.View used to perform a mmap check by default and return an error if the check failed, this behavior has been changed so that now the View never returns any error, so the usage needs to be modified accordingly. Change-Id: I76ffcda5476847f6fed59856a5a5161734f47562 GitHub-...
[ { "path": "src/cmd/link/internal/ld/asmb.go", "patch": "@@ -195,10 +195,7 @@ func relocSectFn(ctxt *Link, relocSect func(*Link, *OutBuf, *sym.Section, []load\n \t\tfn = func(ctxt *Link, sect *sym.Section, syms []loader.Sym) {\n \t\t\twg.Add(1)\n \t\t\tsem <- 1\n-\t\t\tout, err := ctxt.Out.View(sect.Reloff)\...
2025-05-15T10:50:40
nodejs/node
ef6b9ffc8dfc7b2a395c864d2729a0ce1be9ef18
9bdf2ee1d184e7ec5c690319e068894ed324b595
async_hooks: add an InactiveAsyncContextFrame class This gives a class prototype for AsyncContextFrame that contains the required methods, so that when we swap the prototype, ActiveAsyncContextFrame methods are used instead. Previously, the methods were defined in AsyncContextFrame, so swapping the prototype didn't sw...
[ { "path": "lib/internal/async_context_frame.js", "patch": "@@ -11,7 +11,7 @@ const {\n \n let enabled_;\n \n-class ActiveAsyncContextFrame {\n+class ActiveAsyncContextFrame extends Map {\n static get enabled() {\n return true;\n }\n@@ -50,12 +50,7 @@ function checkEnabled() {\n return enabled;\n }...
2024-08-30T20:27:28
electron/electron
d42a94dddeb86d349c050c2ee59b135bd6c8245c
3bdc7ce64a79120c4001d0c614e4ad037246229e
fix: webview exiting fullscreen presentation mode (#39616)
[ { "path": "patches/chromium/.patches", "patch": "@@ -98,7 +98,6 @@ make_gtk_getlibgtk_public.patch\n build_disable_print_content_analysis.patch\n custom_protocols_plzserviceworker.patch\n feat_filter_out_non-shareable_windows_in_the_current_application_in.patch\n-fix_allow_guest_webcontents_to_enter_fullscr...
2023-08-25T18:11:58
vercel/next.js
db561cb924cbea0f3384e89f251fc443a8aec1ae
b085fafe5ef9ca18fafadc644eeb75cb5662f85f
Turbopack: fix glob with empty alternative branch (#82275) This came up during NFT where the ignore pattern `'**/node_modules/react{,-dom,-dom-server-turbopack}/**/*.development.js'` wasn't applied.
[ { "path": "turbopack/crates/turbo-tasks-fs/src/glob.rs", "patch": "@@ -193,6 +193,8 @@ mod tests {\n #[case::alternatives_nested2(\"{a,b/c,d/e/{f,g/h}}\", \"b/c\")]\n #[case::alternatives_nested3(\"{a,b/c,d/e/{f,g/h}}\", \"d/e/f\")]\n #[case::alternatives_nested4(\"{a,b/c,d/e/{f,g/h}}\", \"d/e/g...
2025-08-01T14:37:26
rust-lang/rust
b3d9fbc17271a03bdd3ccbf95bb296b3505d4120
b4f38c1da4a7aa9d7065253f77a65a482a5a7993
ICE to delayed bug
[ { "path": "compiler/rustc_ty_utils/src/layout.rs", "patch": "@@ -777,7 +777,9 @@ fn layout_of_uncached<'tcx>(\n let err = if ty.has_param() || !cx.typing_env.param_env.caller_bounds().is_empty() {\n LayoutError::TooGeneric(ty)\n } else {\n- unreachable!...
2026-02-13T12:52:05
facebook/react
c3048aab4c3346dca90ab0052a89fdb48450570f
75de4ff72aa8b53a0af1f6b1f23e338329069c74
Fix tests on main (#28643) Not sure how these broke when merging https://github.com/facebook/react/pull/28299 and https://github.com/facebook/react/pull/28361
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js", "patch": "@@ -453,17 +453,17 @@ describe('ReactDOMServerPartialHydration', () => {\n // Client rendered - suspense comment nodes removed.\n expect(container.innerHTML).toBe('Hello<article>Mismatch</arti...
2024-03-26T15:26:42
golang/go
8105ea53c3d17546a35709d51e6e0993b1d0c261
bb0c14b895d90bb5941e0463ba6c3564fc504e4f
net: avoid windows hang in TestCloseWrite On Windows, reading from a socket at the same time as the other end is closing it will occasionally hang. This is a Windows issue, not a Go issue, similar to what happens in macOS (see #49352). Work around this condition by adding a brief sleep before the read. Fixes #73140....
[ { "path": "src/net/net_test.go", "patch": "@@ -98,12 +98,12 @@ func TestCloseWrite(t *testing.T) {\n \t\t\t\t}\n \n \t\t\t\t// Workaround for https://go.dev/issue/49352.\n-\t\t\t\t// On arm64 macOS (current as of macOS 12.4),\n+\t\t\t\t// On Windows and arm64 macOS (current as of macOS 12.4),\n \t\t\t\t// r...
2025-05-13T12:28:01
electron/electron
48e14bc54e26b540d3667b940b51434a76e0205b
83760bd5c627c56c16eb93c2617dbb3896aaa626
ci: fix deprecation review automation for PRs (#39649)
[ { "path": ".github/workflows/pull-request-labeled.yml", "patch": "@@ -23,7 +23,7 @@ jobs:\n echo \"TOKEN=$TOKEN\" >> \"$GITHUB_OUTPUT\"\n - name: Set status\n if: ${{ steps.generate-token.outputs.TOKEN }}\n- uses: github/update-project-action@2d475e08804f11f4022df7e21f5816531e...
2023-08-25T18:09:12
rust-lang/rust
e373b93b0b953033f869e386d30d2446b920133b
27e25ff6d8f9594b23ebb22e677481029fbbd8a7
Fix formatting
[ { "path": "src/builder.rs", "patch": "@@ -1892,11 +1892,9 @@ impl<'a, 'gcc, 'tcx> Builder<'a, 'gcc, 'tcx> {\n (rounded_min.value.to_bits(), rounded_max.value.to_bits())\n };\n fn compute_clamp_bounds<F: Float>(signed: bool, int_width: u64) -> (u128, u128) {\n- let roun...
2026-02-13T13:35:12
facebook/react
75de4ff72aa8b53a0af1f6b1f23e338329069c74
07def0cc5a377fc36c410b85112fdc51485ecc11
fix[devtools/ci]: split profiling cache test for different react versions and toEqual checker (#28628) This should fix the failing backwards-compatibility tests on CI: - https://app.circleci.com/pipelines/github/facebook/react/51347/workflows/9d319db5-7a29-4e9a-a3a0-8d49a24ee9bd/jobs/809381 - https://app.circleci....
[ { "path": "packages/react-devtools-shared/src/__tests__/profilingCache-test.js", "patch": "@@ -310,7 +310,8 @@ describe('ProfilingCache', () => {\n });\n \n // @reactVersion >= 16.9\n- it('should record changed props/state/context/hooks', () => {\n+ // @reactVersion <= 18.2\n+ it('should record chang...
2024-03-26T10:55:07