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 |
|---|---|---|---|---|---|
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 | 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 |
golang/go | 2cde950049dd46cae3ae91cde3e270825793ba0f | fd6afa352d0dfc86a158a6ef011454891593d065 | runtime: disable TestSegv in race mode
This was just enabled in CL 643897. It seems to work fine on Linux, but
there are traceback issues on Darwin. We could disable just on Darwin,
but I'm not sure SIGSEGV inside of TSAN is something we care to support.
Fixes #73784.
Cq-Include-Trybots: luci.golang.try:gotip-darwin... | [
{
"path": "src/runtime/crash_cgo_test.go",
"patch": "@@ -659,8 +659,8 @@ func TestSegv(t *testing.T) {\n \tcase \"plan9\", \"windows\":\n \t\tt.Skipf(\"no signals on %s\", runtime.GOOS)\n \t}\n-\tif asan.Enabled || msan.Enabled {\n-\t\tt.Skip(\"skipping test on ASAN/MSAN: triggers SIGSEGV in sanitizer runti... | 2025-05-19T20:20:47 |
facebook/react | a023a2da723b730149667d783b1e08aadccbfeae | 4d84bee1723ad024058dda7e9a47774146912c77 | Fixtures for control values that become reactive due to interleaving
See the previous PR, interleaved mutation can cause values that were not
reactive to become reactive. I swear I had a case where this was observable, but
I came up with it before reordering the PRs in this stack. I think my repro
relied on an imm... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reactive-control-dependency-from-interleaved-reactivity-do-while.expect.md",
"patch": "@@ -0,0 +1,73 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ // a and b are independent but their mutations are... | 2024-01-23T16:59:20 |
nodejs/node | 305137faaec137a1f0c40bafd0edac0eed7b8ead | 7feff2434dab5a45ba1fe4f4bc72cf521ebd28c5 | doc: fix typo callsite.lineNumber
PR-URL: https://github.com/nodejs/node/pull/54969
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/util.md",
"patch": "@@ -395,7 +395,7 @@ function exampleFunction() {\n console.log(`CallSite ${index + 1}:`);\n console.log(`Function Name: ${callSite.functionName}`);\n console.log(`Script Name: ${callSite.scriptName}`);\n- console.log(`Line Number: ${callSite.lineNumer}`)... | 2024-09-16T20:25:24 |
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 |
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 | e098327271327f86fb6aac22e64136f4a3268d31 | bb8b30a5fce59f5d3d17a8f010601c59f0f19d79 | Don't ICE on layout error in vtable computation | [
{
"path": "compiler/rustc_middle/src/ty/vtable.rs",
"patch": "@@ -99,9 +99,10 @@ pub(super) fn vtable_allocation_provider<'tcx>(\n // This confirms that the layout computation for &dyn Trait has an accurate sizing.\n assert!(vtable_entries.len() >= vtable_min_entries(tcx, poly_trait_ref));\n \n- ... | 2026-02-10T14:10:04 |
facebook/react | cb9899955b3d2c6e1e4477585f06068c2007efec | bf32989264ff2faa9a009550401f573f29db4df2 | Fix ReactFreshIntegration-test not running all tests as assumed (#28033)
Fix ReactFreshIntegration-test not running all tests as assumed
`testCommon` was executed twice without setting `compileDestructuring`
ever to true.
This fixes this and removes one layer of abstraction in this test by
using `describe.each`. | [
{
"path": "packages/react-refresh/src/__tests__/ReactFreshIntegration-test.js",
"patch": "@@ -47,7 +47,7 @@ describe('ReactFreshIntegration', () => {\n }\n });\n \n- function executeCommon(source, compileDestructuring) {\n+ function executeJavaScript(source, compileDestructuring) {\n const compi... | 2024-01-23T14:59:14 |
golang/go | 177d5eb630ab25916b6c44a6fa89ab371433f9fa | 3602cec3af6083d095729f3db8493a226b9273c3 | net/http: clarify ServeMux.Handler behavior
Explain that ServeMux.Handler doesn't populate the request with
matches.
Fixes #69623.
Change-Id: If625b3f8e8f4e54b05e1d9a86e8c471045e77763
Reviewed-on: https://go-review.googlesource.com/c/go/+/674095
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: Chressie Himpe... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -836,6 +836,7 @@ var copyBufPool = sync.Pool{New: func() any { return new([copyBufPoolSize]byte)\n func getCopyBuf() []byte {\n \treturn copyBufPool.Get().(*[copyBufPoolSize]byte)[:]\n }\n+\n func putCopyBuf(b []byte) {\n \tif len(b) != copyBufPoolSize {\n \t... | 2025-05-19T13:20:04 |
nodejs/node | c1afd2c8e3298c28a0ea7a14b5e0761e688e5697 | 53ede878a51aee2dd2d1c97b5cefa43ae12f14aa | fs: translate error code properly in cpSync
UV error code needs to be negative integer so it can be mapped
correctly. The filesystem error are positive integer, so we need to
handle it before throwing.
Co-authored-by: Jake Yuesong Li <jake.yuesong@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/54906
Reviewed-... | [
{
"path": "src/node_file.cc",
"patch": "@@ -3147,7 +3147,14 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n ? std::filesystem::symlink_status(src_path, error_code)\n : std::filesystem::status(src_path, error_code);\n if (error_co... | 2024-09-16T12:41:55 |
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 |
facebook/react | 4d84bee1723ad024058dda7e9a47774146912c77 | 57163f0a52bed6229364cc558a786595cd6fa9d3 | Propagate reactive scope dependencies transitively
During PruneNonReactiveDependencies, we sometimes need to promote a value from
non-reactive to reactive if it ended up being grouped in the same reactive scope
as some other reactive value. This generally happens due to interleaving
mutations.
In this case all d... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PruneNonReactiveDependencies.ts",
"patch": "@@ -5,7 +5,14 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import { IdentifierId, ReactiveFunction, ReactiveScopeBlock } from \"../HIR\";\n+import {\n+ Identif... | 2024-01-22T23:35:56 |
electron/electron | e14964ccd014e595da4cbaf8c73f0999948c6042 | 33000c4b42157f06fc78ef83300dcaec61a69fbe | feat: add setter and getter apis to specify udp port range for webrtc (#39046)
* feat:Add setter and getter apis to specify udp port range for webrtc (issue#9042)
* lint error fix for PR#39046
* feat: add setter and getter apis to specify udp port range for webrtc (issue#9042) , changed for codereview
* fix l... | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -2069,6 +2069,24 @@ Setting the WebRTC IP handling policy allows you to control which IPs are\n exposed via WebRTC. See [BrowserLeaks](https://browserleaks.com/webrtc) for\n more details.\n \n+#### `contents.getWebRTCUDPPortRange()`\n+\n+Returns `Object`:\n... | 2023-08-24T21:21:22 |
golang/go | 3602cec3af6083d095729f3db8493a226b9273c3 | d52679006c8e08875fac92aca1f723fce488d0d2 | net/http: fix ServeMux.Handler on trailing-slash redirect
When a match involves a trailing-slash redirect, ServeMux.Handler now
returns the pattern that matched.
Fixes #73688.
Change-Id: I682d9cc9a3628bed8bf21139b98369ffa6c53792
Reviewed-on: https://go-review.googlesource.com/c/go/+/673815
Reviewed-by: Filippo Vals... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -391,6 +391,19 @@ func TestServeMuxHandler(t *testing.T) {\n \t}\n }\n \n+// Issue 73688\n+func TestServeMuxHandlerTrailingSlash(t *testing.T) {\n+\tsetParallel(t)\n+\tmux := NewServeMux()\n+\tconst original = \"/{x}/\"\n+\tmux.Handle(original, NotFoundHa... | 2025-05-17T23:36:06 |
nodejs/node | 53ede878a51aee2dd2d1c97b5cefa43ae12f14aa | 91952103991b809805115ac176b05cd34144bae3 | src: add `--env-file-if-exists` flag
Fixes: https://github.com/nodejs/node/issues/50993
Refs: https://github.com/nodejs/node/issues/51451
test: remove unnecessary comment
src: conform to style guidelines
src: change flag to `--env-file-optional`
test: revert automatic linter changes
doc: fix typos
src: change fl... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -828,6 +828,8 @@ in the file, the value from the environment takes precedence.\n You can pass multiple `--env-file` arguments. Subsequent files override\n pre-existing variables defined in previous files.\n \n+An error is thrown if the file does not exist.\n+\n ```ba... | 2024-09-16T00:58:16 |
facebook/react | 57163f0a52bed6229364cc558a786595cd6fa9d3 | 0894e35d94fa84136e68403c7135c276a5f7898a | InferReactivePlaces account for immutable aliases of mutably aliased values
I found this by adding logic to reject inputs where reactivity gets newly
propagated in PruneNonReactiveDependencies. It's possible to create a readonly
alias to a mutable value such that we don't know the value is reactive yet when
the al... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReactivePlaces.ts",
"patch": "@@ -23,7 +23,6 @@ import {\n eachInstructionValueOperand,\n eachTerminalOperand,\n } from \"../HIR/visitors\";\n-import { hasBackEdge } from \"../Optimization/DeadCodeElimination\";\n import {\n fin... | 2024-01-22T23:35:55 |
rust-lang/rust | 6afebcc4dd5f4e4b3a7d117aa7dcdd38f560d5af | 08a4ce529f4ea17ad1c0fa2e39ca1f5e7cd047b6 | Fix feature gating for new `try bikeshed` expressions | [
{
"path": "compiler/rustc_ast_passes/src/feature_gate.rs",
"patch": "@@ -330,15 +330,11 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {\n fn visit_expr(&mut self, e: &'a ast::Expr) {\n match e.kind {\n ast::ExprKind::TryBlock(_, None) => {\n+ // `try { ... }` is... | 2026-02-12T06:19:26 |
vercel/next.js | b8eba4f7038cfb9e66b8b18def445d377b00defe | b07bf2a0f7681080fd827c2cf408b2e0adff019d | Mark bun builtin modules as external (fixes #75220) (#77616)
Fixes https://github.com/vercel/next.js/issues/75220
This marks Bun's builtin modules as external, following the same pattern
as for Node.
- `"bun:ffi"`
- `"bun:jsc"`
- `"bun:sqlite"`
- `"bun:test"`
- `"bun:wrap"`
- `"bun"`
I have not manually tested this... | [
{
"path": "packages/next/src/build/handle-externals.ts",
"patch": "@@ -188,6 +188,11 @@ export function makeExternalHandler({\n return `commonjs ${request}`\n }\n \n+ // Handle Bun builtins as external modules\n+ if (request === 'bun' || request.startsWith('bun:')) {\n+ return... | 2025-08-01T09:15:57 |
electron/electron | 33e66b5cd02d2b258b956022c482024c74c13b4b | 2affecd4dd26b9f0cf2644ec115635559f920480 | fix: ensure windows respect fullscreenability with different resizability values (#39620)
* fix: ensure child windows respect fullscreenability/resizability when parent is fullscreen
* test: add an extra resize test | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -830,23 +830,19 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n ScopedDisableResize disable_resize;\n SetStyleMask(resizable, NSWindowStyleMaskResizable);\n \n+ bool was_fullscreenable = IsFullScreenable();... | 2023-08-24T20:54:08 |
golang/go | d52679006c8e08875fac92aca1f723fce488d0d2 | 972639fc4cf257f04f9690e63bea7cd729b3edd2 | cmd/compile: fold negation into addition/subtraction on mipsx
Fold negation into addition/subtraction and avoid double negation.
file before after Δ %
addr2line 3742022 3741986 -36 -0.001%
asm 6668616 6668628 +12 +0.000%
buildid 3583786 3583630 -156 -0.004%
cgo 6... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/MIPS.rules",
"patch": "@@ -614,11 +614,14 @@\n \n // generic simplifications\n (ADD x (NEG y)) => (SUB x y)\n+(SUB x (NEG y)) => (ADD x y)\n (SUB x x) => (MOVWconst [0])\n (SUB (MOVWconst [0]) x) => (NEG x)\n (AND x x) => x\n (OR x x) => x\n (XOR x x) => (MOVWco... | 2025-05-16T16:27:37 |
nodejs/node | c77bcf018716e97ae35203990bcd51c143840348 | 3da465a8158906606b6df9feb2b2339ddcf3f3b7 | test: adjust test-tls-junk-server for OpenSSL32
Refs: #53382
OpenSSL32 returns different error text. Looking through
the test it seems like the expected error text has been adjusted
for different OpenSSL versions in the past and what the test
is testing is not related to the error being returned.
Update test to allo... | [
{
"path": "test/parallel/test-tls-junk-server.js",
"patch": "@@ -20,8 +20,12 @@ server.listen(0, function() {\n const req = https.request({ port: this.address().port });\n req.end();\n \n+ let expectedErrorMessage = new RegExp('wrong version number');\n+ if (common.hasOpenSSL(3, 2)) {\n+ expectedEr... | 2024-09-15T16:40:05 |
facebook/react | 0894e35d94fa84136e68403c7135c276a5f7898a | 8be56418d31ba6ff0113c3ccb91ce3f3d11ee4fd | More fixtures for reactivity and mutable aliasing (property load case) | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reactivity-via-aliased-mutation-through-property-load.expect.md",
"patch": "@@ -0,0 +1,87 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const x = {};\n+ const y = [];\n+ x.y = y;\n+ x.y.push(pro... | 2024-01-20T03:12:58 |
electron/electron | a8999bc529390e7a9a2515bfa23445b34b10860a | 522bba3dc6b4893fdcf4d1a978fec0204b50d63b | fix: ensure `BrowserView` bounds are always relative to window (#39605)
fix: ensure BrowserView bounds are always relative to window | [
{
"path": "shell/browser/api/electron_api_base_window.cc",
"patch": "@@ -768,10 +768,20 @@ void BaseWindow::AddBrowserView(gin::Handle<BrowserView> browser_view) {\n browser_view->SetOwnerWindow(nullptr);\n }\n \n+ // If the user set the BrowserView's bounds before adding it to the window,\n+ ... | 2023-08-23T13:55:31 |
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 |
nodejs/node | 86bdca9772f63d5566bd725df7f5e2bc4738f93d | 4c0ad1fef1e83c3166a2177a8eb2326a93602cc2 | repl: avoid interpreting 'npm' as a command when errors are recoverable
This change ensures that 'npm' within JavaScript code is not mistakenly
interpreted as an npm command when the error is recoverable.
This allows 'npm' to be treated as expected in such scenarios.
Fixes: https://github.com/nodejs/node/issues/54830... | [
{
"path": "lib/repl.js",
"patch": "@@ -931,7 +931,9 @@ function REPLServer(prompt,\n ReflectApply(_memory, self, [cmd]);\n \n if (e && !self[kBufferedCommandSymbol] &&\n- StringPrototypeStartsWith(StringPrototypeTrim(cmd), 'npm ')) {\n+ StringPrototypeStartsWith(StringPrototype... | 2024-09-15T13:25:19 |
facebook/react | 8be56418d31ba6ff0113c3ccb91ce3f3d11ee4fd | a272cf9b0c46e2be49a5a05feb4a4a2dd1628a80 | InferReactivePlaces accounts for mutable aliasing
Fixes T175227223. When inferring reactivity, mutation of a value with a reactive
input marks the mutable value as reactive. However, we also need to account for
aliases:
```javascript
const x = [];
const y = x;
y.push(props.value);
```
Previously we woul... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReactivePlaces.ts",
"patch": "@@ -24,7 +24,11 @@ import {\n eachTerminalOperand,\n } from \"../HIR/visitors\";\n import { hasBackEdge } from \"../Optimization/DeadCodeElimination\";\n-import { isMutable } from \"../ReactiveScopes/In... | 2024-01-20T00:03:58 |
rust-lang/rust | eb1e41162938cba510f059738687d78fdc0f14a0 | bb8b30a5fce59f5d3d17a8f010601c59f0f19d79 | Add 2048-bit HvxVectorPair support to Hexagon SIMD ABI checks
Previously, rustc rejected HvxVectorPair types in function signatures
because the HEXAGON_FEATURES_FOR_CORRECT_FIXED_LENGTH_VECTOR_ABI array
only had entries for vectors up to 1024 bits. This caused the ABI checker
to emit "unsupported vector type" errors f... | [
{
"path": "compiler/rustc_target/src/target_features.rs",
"patch": "@@ -984,8 +984,11 @@ const RISCV_FEATURES_FOR_CORRECT_FIXED_LENGTH_VECTOR_ABI: &'static [(u64, &'stat\n const SPARC_FEATURES_FOR_CORRECT_FIXED_LENGTH_VECTOR_ABI: &'static [(u64, &'static str)] =\n &[/*(64, \"vis\")*/];\n \n-const HEXAGO... | 2026-02-12T18:56:00 |
vercel/next.js | 1c5f64b99329b88638b27c14b3984a74450724ea | 4b0f74651e0d2b1b939fac8705c8122c292e0afc | [Cache Components] Runtime prefetching (#81088)
Initial implementation of runtime prefetching.
A "runtime prefetch" is a more complete version of a static prefetch
(i.e. the one that a link does by default), rendered on demand, and not
cached server-side. It will render the server part of the page
dynamically, allowi... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -764,5 +764,11 @@\n \"763\": \"\\\\`unstable_rootParams\\\\` must not be used within a client component. Next.js should be preventing it from being included in client components statically, but did not in this case.\",\n \"764\": \"Missing workStore in... | 2025-07-31T21:07:06 |
electron/electron | ddc7e3ebb3c34357d4999174d692e18124cb7798 | 2481f94b4efe262c9ae2f5f16cd0845eeb6c4efd | fix: assert module in the renderer process (#39540) | [
{
"path": "patches/node/.patches",
"patch": "@@ -41,3 +41,4 @@ fix_ftbfs_werror_wextra-semi.patch\n fix_isurl_implementation.patch\n ci_ensure_node_tests_set_electron_run_as_node.patch\n chore_update_fixtures_errors_force_colors_snapshot.patch\n+fix_assert_module_in_the_renderer_process.patch",
"additio... | 2023-08-23T09:38:47 |
facebook/react | 29fbf6f62625c4262035f931681c7b7822ca9843 | 4c63dc7bddeea8b44466e918708ea44f76b05378 | Convert ReactError-test to createRoot (#27995) | [
{
"path": "packages/shared/__tests__/ReactError-test.internal.js",
"patch": "@@ -9,7 +9,8 @@\n 'use strict';\n \n let React;\n-let ReactDOM;\n+let ReactDOMClient;\n+let act;\n \n describe('ReactError', () => {\n let globalErrorMock;\n@@ -27,7 +28,8 @@ describe('ReactError', () => {\n }\n jest.rese... | 2024-01-19T19:35:56 |
rust-lang/rust | dd8a98a9bc83076db950c2f10c46a4ce4499a011 | 8526aa53613bf82bc145bb02161933fb336643e3 | Fix pretty print tests with #[prelude_import] | [
{
"path": "tests/pretty/delegation-inherit-attributes.pp",
"patch": "@@ -7,7 +7,7 @@\n #![allow(incomplete_features)]\n #![feature(fn_delegation)]\n extern crate std;\n-#[prelude_import]\n+#[attr = PreludeImport]\n use std::prelude::rust_2021::*;\n \n extern crate to_reuse_functions;",
"additions": 1,
... | 2026-02-12T17:43:58 |
nodejs/node | 4c0ad1fef1e83c3166a2177a8eb2326a93602cc2 | 6db320acbc56f84ce06e9d365d215db56fa2dacc | doc: fix broken Android building link
PR-URL: https://github.com/nodejs/node/pull/54922
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Xuguang Mei <meixuguang@gmail.com> | [
{
"path": "doc/api/os.md",
"patch": "@@ -1373,7 +1373,7 @@ The following process scheduling constants are exported by\n </tr>\n </table>\n \n-[Android building]: https://github.com/nodejs/node/blob/HEAD/BUILDING.md#androidandroid-based-devices-eg-firefox-os\n+[Android building]: https://github.com/nodejs/... | 2024-09-15T12:29:18 |
electron/electron | 2481f94b4efe262c9ae2f5f16cd0845eeb6c4efd | e1d63794e5ce74006188ed2b7f1c35b5793caf36 | fix: instantiate tab video tracks from BrowserCaptureMediaStreamTrack (#39074)
return BrowserCaptureMediaStreamTrack instead of MediaStreamTrack | [
{
"path": "shell/browser/electron_browser_context.cc",
"patch": "@@ -580,7 +580,7 @@ void ElectronBrowserContext::DisplayMediaDeviceChosen(\n blink::MediaStreamDevice video_device(request.video_type, id, name);\n video_device.display_media_info = DesktopMediaIDToDisplayMediaInformation(\n ... | 2023-08-23T08:49:24 |
facebook/react | a272cf9b0c46e2be49a5a05feb4a4a2dd1628a80 | c8323f3b42887e292fec37a7dbb476f0fabc1d09 | Reactive control fixtures use multipass evaluation
Updates all of the reactive control dependency fixtures to use multipass
evaluation in sprout. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reactive-control-dependency-do-while-indirect.expect.md",
"patch": "@@ -16,8 +16,17 @@ function Component(props) {\n \n export const FIXTURE_ENTRYPOINT = {\n fn: Component,\n- params: [{ limit: 10 }],\n- // TODO: test... | 2024-01-19T19:04:18 |
vercel/next.js | c6cefce4cb01d20ae5e21986e809e8595d405c21 | e2b6a50aec59c42b2c0450a899005d5dbd5cb932 | fix(Turbopack): Fix duplicated layout rendering in edge cases (#81948)
## Fix module reference handling in app_structure.rs creating duplicated layouts
### What?
Fixed a bug in the `check_and_update_module_references` function by
making the code always overrides the `not-found`, `unauthorized`, etc
files at the top l... | [
{
"path": "crates/next-core/src/app_structure.rs",
"patch": "@@ -923,18 +923,31 @@ async fn directory_tree_to_loader_tree(\n /// set.\n /// * `file_path` - The file path to the default page if neither the current module nor the parent\n /// module is set.\n+/// * `is_first_layer_group_route` - If true, ... | 2025-07-31T17:04:35 |
rust-lang/rust | 0c724e57c309e5804f98097d53c188bb36e42acc | d32a47377ebe75569071503138545aa7e1cc2b22 | Refactor handling of associated type shorthand for type parameters, i.e. `T::AssocType` without specifying the trait
I believe the new code is both cleaner and more robust, and should fix some edge cases.
rustc does all of this very differently with plenty of queries for various forms of predicate lowering; but we ha... | [
{
"path": "src/tools/rust-analyzer/crates/hir-def/src/hir/generics.rs",
"patch": "@@ -184,7 +184,7 @@ static EMPTY: LazyLock<Arc<GenericParams>> = LazyLock::new(|| {\n \n impl GenericParams {\n /// The index of the self param in the generic of the non-parent definition.\n- pub(crate) const SELF_PARAM... | 2026-02-12T16:50:20 |
electron/electron | e1d63794e5ce74006188ed2b7f1c35b5793caf36 | bfa58df7c97a7d2e191a5d7ac5ea1891e95f9907 | fix: `chrome.tabs` 'url' and 'title' are privileged information (#39595)
fix: tabs url and title are privileged information | [
{
"path": "shell/browser/extensions/api/tabs/tabs_api.cc",
"patch": "@@ -301,6 +301,7 @@ ExtensionFunction::ResponseAction TabsQueryFunction::Run() {\n \n tabs::Tab tab;\n tab.id = contents->ID();\n+ tab.title = base::UTF16ToUTF8(wc->GetTitle());\n tab.url = wc->GetLastCommittedURL().spec();\... | 2023-08-22T12:56:58 |
facebook/react | 601dba82175edd321c833395514081fe3aa6f445 | feed8f3f95836a99eeaf5dc64d1c9ed62217c1de | Convert ReactErrorLoggingRecovery to createRoot (#28003) | [
{
"path": "packages/react-dom/src/__tests__/ReactErrorLoggingRecovery-test.js",
"patch": "@@ -17,7 +17,8 @@ if (global.window) {\n \n // The issue only reproduced when React was loaded before JSDOM.\n const React = require('react');\n-const ReactDOM = require('react-dom');\n+const ReactDOMClient = require('... | 2024-01-19T17:07:08 |
nodejs/node | a65105ec284023960e93b3a66f6661ddd2f4121f | c6f514c7ab72083bc96108afd776bc23c836844d | test: adjust tls test for OpenSSL32
Refs: https://github.com/nodejs/node/issues/53382
Looks like test is forcing an error through bad data and
the error code we get is different for OpenSSL32. Adjust
test to cope with the variation across versions.
Signed-off-by: Michael Dawson <midawson@redhat.com>
PR-URL: https://... | [
{
"path": "test/parallel/test-tls-alert-handling.js",
"patch": "@@ -31,10 +31,17 @@ const max_iter = 20;\n let iter = 0;\n \n const errorHandler = common.mustCall((err) => {\n- assert.strictEqual(err.code, 'ERR_SSL_WRONG_VERSION_NUMBER');\n+ let expectedErrorCode = 'ERR_SSL_WRONG_VERSION_NUMBER';\n+ let ... | 2024-09-14T16:55:40 |
vercel/next.js | e2b6a50aec59c42b2c0450a899005d5dbd5cb932 | 2bb227ebee5609809eb5a7e9ad00b900f458128d | Turbopack: fix dev test manifest (#82241)
<!-- 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 Contributors
### Impr... | [
{
"path": "test/turbopack-dev-tests-manifest.json",
"patch": "@@ -12043,11 +12043,10 @@\n \"react-compiler default should render\",\n \"react-compiler default should show an experimental warning\",\n \"react-compiler default should work with a library that uses the react-server condition\"... | 2025-07-31T12:27:23 |
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 |
rust-lang/rust | 7df6e6799fceff11ce4e0a73520050b549cc9acf | d2ce1c9c3d87f81e6550f6af56eb133db46e9b42 | Update Cargo.lock
Updates cc crate to 1.2.55 which fixes macabi target triple
handling for x86_64-apple-ios-macabi builds. | [
{
"path": "library/stdarch/Cargo.lock",
"patch": "@@ -10,18 +10,18 @@ checksum = \"320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa\"\n \n [[package]]\n name = \"aho-corasick\"\n-version = \"1.1.3\"\n+version = \"1.1.4\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-... | 2026-02-12T16:41:53 |
facebook/react | 4aa60d32b954ce14ad84892f5b4f937df3e42e28 | a0e90065c60223ed14caa0a233e2bcf5a903a821 | [patch][dce] Patch dce to have separate mark and sweep phases
---
Previously, our logic was something like:
```js
fixed-point-loop {
foreach instruction {
mark referenced identifiers
// assume that usages are always visited before declarations
if (instruction is decl) {
prune(instruction);
}
}
f... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Optimization/DeadCodeElimination.ts",
"patch": "@@ -29,62 +29,17 @@ import { assertExhaustive, retainWhere } from \"../Utils/utils\";\n * Note that unreachable blocks are already pruned during HIR construction.\n */\n export function deadCodeElimi... | 2024-01-18T23:29:19 |
electron/electron | 3a91d1f1e18177ceadc02580722a1349c5b18357 | 09190085c0d1d6acdbb83833afab8c1fe8177ba0 | fix: dangling raw_ptr in ElectronBrowserMainParts dtor (#39539)
* fix: dangling raw_ptr in ElectronBrowserMainParts dtor
* fixup! fix: dangling raw_ptr in ElectronBrowserMainParts dtor
Browser::WhenReady() holds a reference to JsEnv isolate so must come after | [
{
"path": "shell/browser/electron_browser_main_parts.cc",
"patch": "@@ -204,11 +204,11 @@ ElectronBrowserMainParts* ElectronBrowserMainParts::self_ = nullptr;\n \n ElectronBrowserMainParts::ElectronBrowserMainParts()\n : fake_browser_process_(std::make_unique<BrowserProcessImpl>()),\n- browser_(std... | 2023-08-21T08:29:25 |
nodejs/node | c6f514c7ab72083bc96108afd776bc23c836844d | efbba60e5b8aed95b2413ff4169632bf3605c963 | test: fix test-http2-socket-close.js
Fixes: https://github.com/nodejs/node/issues/54819
PR-URL: https://github.com/nodejs/node/pull/54900
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "test/parallel/parallel.status",
"patch": "@@ -30,8 +30,6 @@ test-runner-watch-mode-complex: PASS, FLAKY\n test-async-context-frame: PASS, FLAKY\n # https://github.com/nodejs/node/issues/54534\n test-runner-run-watch: PASS, FLAKY\n-# https://github.com/nodejs/node/issues/54819\n-test-http2-socket-... | 2024-09-14T16:01:56 |
vercel/next.js | 2bb227ebee5609809eb5a7e9ad00b900f458128d | 189f971fe8a2ad30dbb9f74e2472fe8748c28e00 | fix: turbopack loader ipc field mapping (#82112)
Co-authored-by: Dario Lehmhus <dario.lehmhus@ffw.com> | [
{
"path": "test/development/app-dir/turbopack-loader-file-dependencies/app/layout.tsx",
"patch": "@@ -0,0 +1,8 @@\n+import { ReactNode } from 'react'\n+export default function Root({ children }: { children: ReactNode }) {\n+ return (\n+ <html>\n+ <body>{children}</body>\n+ </html>\n+ )\n+}",
... | 2025-07-31T12:24:18 |
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 |
facebook/react | a0e90065c60223ed14caa0a233e2bcf5a903a821 | f88e7fe4120b8355ec290acea54036874edec641 | [patch][babel] check babel identifier before lowering to HoistedConst
Same babel identifier issue as #2510 but for HoistedConst
Not sure how we should best test this -- one possibility is using constant prop.
Currently, we have false positives for HoistedConst that prevent constant
propagation. I don't want to ov... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -372,6 +372,9 @@ function lowerStatement(\n */\n s.traverse({\n Identifier(id: NodePath<t.Identifier>) {\n+ if (!id.isReferencedIdentifier()) {\n+ return;\n+ ... | 2024-01-18T23:29:19 |
rust-lang/rust | d2ce1c9c3d87f81e6550f6af56eb133db46e9b42 | 01036ee64e341a83c88ebe38bb94f57eaf5bda44 | stdarch-gen-hexagon: Fix clippy warnings
- Move regex compilations outside loops
- Use Option::map and or_else instead of manual if-let chains
- Use strip_prefix instead of manual starts_with + slice
- Use !is_empty() instead of len() >= 1
- Combine consecutive str::replace calls | [
{
"path": "library/stdarch/crates/stdarch-gen-hexagon/src/main.rs",
"patch": "@@ -333,10 +333,10 @@ fn parse_prototype(prototype: &str) -> Option<(RustType, Vec<(String, RustType)>\n \n let mut params = Vec::new();\n if !params_str.trim().is_empty() {\n+ // Pattern: Type Name or T... | 2026-02-12T14:03:13 |
electron/electron | 9937a2bbe8dd6cc01ff3dd0ce32268e33c0ec1de | 95bf9d8adb33bc2aaf988977b18663f9a770ef77 | fix: explorer restart does not recreated thumbnail toolbar buttons (#39551)
fix: explorer restart does not recreated thumbnail toolbar buttons. | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -254,6 +254,10 @@ NativeWindowViews::NativeWindowViews(const gin_helper::Dictionary& options,\n \n if (title_bar_style_ != TitleBarStyle::kNormal)\n set_has_frame(false);\n+\n+ // If the taskbar is re-created after we start up, we have to... | 2023-08-21T00:43:49 |
nodejs/node | efbba60e5b8aed95b2413ff4169632bf3605c963 | c3e1c31baa8f4a59ef49ea0d0429ec55efe2ca81 | path: fix bugs and inconsistencies
Fixes: https://github.com/nodejs/node/issues/54025
PR-URL: https://github.com/nodejs/node/pull/54224
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bri... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -702,7 +702,7 @@ Module._findPath = function(request, paths, isMain) {\n \n let exts;\n const trailingSlash = request.length > 0 &&\n- (StringPrototypeCharCodeAt(request, request.length - 1) === CHAR_FORWARD_SLASH || (\n+ ((StringPrototy... | 2024-09-14T14:56:31 |
vercel/next.js | 6b5fe4637d2001a4cefa6bff179c7f970c7fe748 | ccde68ff349dd4bc4acee60f097032afc1b4a5bd | Fix: Don't bail out of prefetch if head is missing (#82216)
This fixes an edge case where a Link is prefetched with prefetch={true},
and the target page has a dynamic head, but the head is not fully
prefetched. If all the segment data for the target page was already
cached, the prefetch scheduler would bail out and sk... | [
{
"path": "packages/next/src/client/components/segment-cache-impl/cache.ts",
"patch": "@@ -109,6 +109,9 @@ type RouteCacheEntryShared = {\n // received a response from the server.\n couldBeIntercepted: boolean\n \n+ // See comment in scheduler.ts for context\n+ TODO_metadataStatus: EntryStatus.Empty |... | 2025-07-31T03:29:03 |
rust-lang/rust | 6a3baf6f2764e404f282119165b78ef68436edcc | f5a8b86695fb7109d494f8aed595318e76957d36 | CI: rfl: add temporary commit for compiler bug
The compiler is fixing a bug [1] that Rust for Linux happened to trigger,
thus temporarily add Benno's patch to the CI job.
As usual, the patch will eventually make it to the Linux kernel so that
both sides are good.
Cc: Benno Lossin <lossin@kernel.org>
Link: https://gi... | [
{
"path": "src/ci/docker/scripts/rfl-build.sh",
"patch": "@@ -3,7 +3,8 @@\n set -euo pipefail\n \n # https://github.com/rust-lang/rust/pull/151534\n-LINUX_VERSION=eb268c7972f65fa0b11b051c5ef2b92747bb2b62\n+# https://github.com/rust-lang/rust/pull/149389\n+LINUX_VERSION=167ea5357eb7c3a39200627a36dfbfe2495761... | 2026-02-12T12:48:12 |
facebook/react | f88e7fe4120b8355ec290acea54036874edec641 | 241a615732a71e8da90e17812d855e4c40f0d3b9 | [repro] add fixture repro for destructuring bug | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug-destructuring-same-property-identifier-names.expect.md",
"patch": "@@ -0,0 +1,51 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const {\n+ x: { destructured },\n+ sameName: renamed,\n+ } ... | 2024-01-18T23:29:18 |
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 |
electron/electron | 95bf9d8adb33bc2aaf988977b18663f9a770ef77 | c75e193a3e4683b1d55e56152dcef92e93d5eb56 | fix: `chrome://gpu` failing to load (#39556)
fix: chrome://gpu failing to load | [
{
"path": "electron_paks.gni",
"patch": "@@ -61,6 +61,7 @@ template(\"electron_extra_paks\") {\n \"$root_gen_dir/content/browser/tracing/tracing_resources.pak\",\n \"$root_gen_dir/content/browser/webrtc/resources/webrtc_internals_resources.pak\",\n \"$root_gen_dir/content/content_resources... | 2023-08-21T00:41:00 |
nodejs/node | 3569493ba7ec1eb6884acf4899a2bd4406f0b62d | c4f295470392db237c0adfc9832214538a99a034 | test: deflake test-dns
Prevent responses from being cached.
Fixes: https://github.com/nodejs/node/issues/54124
PR-URL: https://github.com/nodejs/node/pull/54902
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/parallel/test-dns.js",
"patch": "@@ -361,11 +361,11 @@ assert.throws(() => {\n const cases = [\n { method: 'resolveAny',\n answers: [\n- { type: 'A', address: '1.2.3.4', ttl: 3333333333 },\n- { type: 'AAAA', address: '::42', ttl: 3333333333 },\n- { type: 'MX'... | 2024-09-14T14:09:11 |
rust-lang/rust | ef8c95cde1a83a12b7e34a71138729e624da86e0 | 7ad4e69ad585d8ff214f7b42d01f1959eda08f40 | privacy: Fix type privacy holes when it doesn't cause too much breakage | [
{
"path": "compiler/rustc_privacy/src/lib.rs",
"patch": "@@ -1590,13 +1590,14 @@ impl<'tcx> PrivateItemsInPublicInterfacesChecker<'_, 'tcx> {\n let mut check = self.check(item.def_id.expect_local(), vis, effective_vis);\n \n let is_assoc_ty = item.is_type();\n- check.hard_error = is_a... | 2026-02-12T14:35:57 |
vercel/next.js | eabcc9efae27ec75c0c785480d401438f24e1f34 | 0899283aee33271d9b1c9cf3c6c212922030100f | fix: display multiple lockfile warn if neither `outputFileTracingRoot` or `turbopack.root` option is provided (#82164)
> Better to be reviewed with "Hide whitespace".
This PR fixed a bug where `findRootDir()` was called and displayed
multiple lockfile warnings even if the app had `turbopack.root`, as
there was no `ou... | [
{
"path": "packages/next/src/lib/find-root.ts",
"patch": "@@ -40,14 +40,25 @@ export function findRootDir(cwd: string) {\n .map((str) => '\\n * ' + str)\n .join('')\n \n- Log.warnOnce(\n- `Warning: Next.js inferred your workspace root, but it may not be correct.\\n` +\n- ` We de... | 2025-07-30T21:26:00 |
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 |
facebook/react | 241a615732a71e8da90e17812d855e4c40f0d3b9 | 8f18b8233f2e68d00e8d175a8bed61c9db601f50 | [babel][contextvar] Patch context identifier babel logic; only use referenced
identifiers
---
A few fixes for finding context identifiers:
Previously, we counted every babel identifier as a reference. This is
problematic because babel counts every string symbol as an identifier.
```js
print(x); // x is an ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/FindContextIdentifiers.ts",
"patch": "@@ -8,18 +8,28 @@\n import type { NodePath } from \"@babel/traverse\";\n import type * as t from \"@babel/types\";\n import { CompilerError } from \"../CompilerError\";\n-import { Set_union } from \"../Utils... | 2024-01-18T23:29:18 |
electron/electron | c75e193a3e4683b1d55e56152dcef92e93d5eb56 | 0621f3929693530076b75befbdaa83755f6cd4fa | fix: use tiled edges to calculate frame inset sizes in Linux (#39523)
Adapt to the window frame size calculation changes in CL 3970920 by
setting the inset sizes to 0 for tiled edges. | [
{
"path": "shell/browser/ui/views/client_frame_view_linux.cc",
"patch": "@@ -150,7 +150,13 @@ void ClientFrameViewLinux::Init(NativeWindowViews* window,\n }\n \n gfx::Insets ClientFrameViewLinux::GetBorderDecorationInsets() const {\n- return frame_provider_->GetFrameThicknessDip();\n+ const auto insets = ... | 2023-08-17T18:26:49 |
rust-lang/rust | eb6bbfa830e94c9f8ba57a8a5b5367631d2dcbee | 736af97d6c4b2d94d5a1189bbd9d330080571a42 | examples: Fix rustfmt formatting in gaussian.rs | [
{
"path": "library/stdarch/examples/gaussian.rs",
"patch": "@@ -274,7 +274,8 @@ fn main() {\n for (i, &expected) in expected_ref_row2.iter().enumerate() {\n let actual = dst_ref[2 * WIDTH + 1 + i];\n assert_eq!(\n- actual, expected,\n+ actual,\n+... | 2026-02-12T13:47:01 |
nodejs/node | c4f295470392db237c0adfc9832214538a99a034 | 45f44badaf120d9d0cab608a1e226fc0e74a57b7 | test: fix test test-tls-dhe for OpenSSL32
Refs: https://github.com/nodejs/node/issues/53382
- OpenSSL32 has a minimum dh key size by 2048 by default.
- Adjust test to use larger 3072 key instead of 1024
when OpenSSL32 is present.
Signed-off-by: Michael Dawson <midawson@redhat.com>
PR-URL: https://github.com/nodejs... | [
{
"path": "test/parallel/test-tls-dhe.js",
"patch": "@@ -43,9 +43,12 @@ const dheCipher = 'DHE-RSA-AES128-SHA256';\n const ecdheCipher = 'ECDHE-RSA-AES128-SHA256';\n const ciphers = `${dheCipher}:${ecdheCipher}`;\n \n-// Test will emit a warning because the DH parameter size is < 2048 bits\n-common.expectWa... | 2024-09-14T13:25:24 |
vercel/next.js | d0b0cf0fbe121f68c20e3884e3b261edab456d0a | 993e4d39299687d2a36701fae56e81e8413a5531 | Grammar fix on forms.mdx (#82209)
grammar nit: "an API" is singular
Co-authored-by: JJ Kasper <jj@jjsweb.site> | [
{
"path": "docs/02-pages/02-guides/forms.mdx",
"patch": "@@ -8,7 +8,7 @@ Forms enable you to create and update data in web applications. Next.js provides\n \n ## Server Forms\n \n-To handle form submissions on the server, create an API endpoint securely mutate data.\n+To handle form submissions on the serve... | 2025-07-30T20:21:46 |
facebook/react | b3003047101b4c7a643788a8faf576f7e370fb45 | 5c607369ceebe56d85175df84b7b6ad58dd25e1f | Update error decoder URL (#27240)
Updates the error decoder to the URL for the new docs site.
- Switches the domain from reactjs.org to react.dev
- Switches to put the error code in the URL for SSG
- All params are still in the query
Example without args:
- Before: `https://reactjs.org/docs/error-decoder.ht... | [
{
"path": "packages/shared/__tests__/ReactError-test.internal.js",
"patch": "@@ -41,7 +41,7 @@ describe('ReactError', () => {\n it('should error with minified error code', () => {\n expect(() => ReactDOM.render('Hi', null)).toThrowError(\n 'Minified React error #200; visit ' +\n- 'https:/... | 2024-01-18T02:41:07 |
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 |
electron/electron | 0621f3929693530076b75befbdaa83755f6cd4fa | aeb89b143b5c61f52d8852ab247297ea2b2045b5 | test: enable `parallel/test-debugger-random-port-with-inspect-port` (#39533)
test: enable parallel/test-debugger-random-port-with-inspect-port | [
{
"path": "patches/node/fix_account_for_debugger_agent_race_condition.patch",
"patch": "@@ -21,6 +21,18 @@ index eab99c9b0e2fb387ef9a716396e41c7fc93e93bc..ef8b20a60df88a0a412c309f597e1b1f\n await cli.waitForPrompt();\n await cli.command('sb(\"alive.js\", 3)');\n await cli.waitFor(/break/);\n+... | 2023-08-17T16:16:14 |
rust-lang/rust | 7a2f2fe754ada6d7d93e3a19bb171c3244ea2ee6 | 1eddc1798998c9faed8725d249640ff7c63548ab | fix tidy | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs",
"patch": "@@ -279,8 +279,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n \n let is_shadowed = self.infcx.probe(|_| {\n let impl_substs = self.infcx.fresh_args_for_item(DUMMY_SP, impl_def_id);\n- ... | 2026-02-12T12:20:36 |
nodejs/node | 45f44badaf120d9d0cab608a1e226fc0e74a57b7 | cb20c5b9f46c64d28bf495814fec5fe8a89b663d | doc, build: fixup build docs
PR-URL: https://github.com/nodejs/node/pull/54899
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "BUILDING.md",
"patch": "@@ -206,8 +206,7 @@ For use of AVX2,\n * llvm version 3.3 or higher\n * nasm version 2.10 or higher in Windows\n \n-Please refer to\n-<https://www.openssl.org/docs/man1.1.1/man3/OPENSSL_ia32cap.html> for details.\n+Please refer to <https://docs.openssl.org/1.1.1/man3/OPENS... | 2024-09-14T11:45:38 |
vercel/next.js | 993e4d39299687d2a36701fae56e81e8413a5531 | 7351d9245055bc8babca01ae14e21831b78d3604 | Fix: the unexpected clearing of symbolic link directories (#82191)
When I was using the standalone build, the second build would delete the
contents of local packages. As a result, developers had to delete the
cache of local empty directories and re-download the packages. I added a
condition for recursive deletion to ... | [
{
"path": ".changeset/lemon-islands-care.md",
"patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Fix the unexpected clearing of symbolic link directories",
"additions": 5,
"deletions": 0,
"language": "Markdown"
},
{
"path": "packages/next/src/lib/recursive-delete.ts",
"patch"... | 2025-07-30T19:34:43 |
facebook/react | 9b6605d313bad279722ac8ef7ed0e03bb16d111e | fb0cf4f83307ff7d4da06f6ce0c90d4ef45bdc37 | Remove [ReactForget] prefix from eslint messages
Remove [ReactForget] prefix from eslint messages
No other lint warnings have a prefix, removing this is cleaner. | [
{
"path": "compiler/packages/eslint-plugin-react-forget/__tests__/ReactForgetDiagnostics-test.ts",
"patch": "@@ -104,7 +104,7 @@ const tests: ForgetTestCases = {\n errors: [\n {\n message:\n- \"[ReactForget] React Forget has bailed out of optimizing this component as one o... | 2024-01-16T18:47:20 |
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 |
rust-lang/rust | 1eddc1798998c9faed8725d249640ff7c63548ab | 6b3c42592e0aa3dd748d40b5268b772b24b0e27a | fix GATs logic | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs",
"patch": "@@ -58,6 +58,7 @@ use rustc_hir::def_id::DefId;\n use rustc_hir::intravisit::Visitor;\n use rustc_hir::lang_items::LangItem;\n use rustc_hir::{self as hir};\n+use rustc_infer::infer::DefineOpaqueTypes;\n use rustc_macros:... | 2026-02-12T12:10:08 |
electron/electron | 213388cd8738bcac2c99a4d20179d6d1cf89d067 | 8374b9c2ad23187c614a2305c3f5cc6e52a14c0c | refactor: prefer Sorted variant of MakeFixedFlatSet() (#39537)
perf: prefer Sorted variant of MakeFixedFlatSet()
https://chromium-review.googlesource.com/c/chromium/src/+/4660000
says that the sorted version is simpler at compile time because it
can skip MakeFixedFlatSet()'s compile-time dynamic sorting. | [
{
"path": "shell/app/node_main.cc",
"patch": "@@ -54,13 +54,14 @@ namespace {\n // See https://nodejs.org/api/cli.html#cli_options\n void ExitIfContainsDisallowedFlags(const std::vector<std::string>& argv) {\n // Options that are unilaterally disallowed.\n- static constexpr auto disallowed = base::MakeFi... | 2023-08-17T13:58:04 |
nodejs/node | 05ad94789916563664acb666a7ac367fd8b2cc8b | aff2214ca9b13dafee25e8c2d7e0eebeebd0f176 | http: reduce likelihood of race conditions on keep-alive timeout
Fixes: https://github.com/nodejs/node/issues/52649
Refs: https://github.com/nodejs/node/issues/54293
Co-authored-by: Arrigo Zanette <zanettea@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/54863
Reviewed-By: James M Snell <jasnell@gmail.com>
Rev... | [
{
"path": "lib/_http_agent.js",
"patch": "@@ -49,6 +49,9 @@ const {\n const kOnKeylog = Symbol('onkeylog');\n const kRequestOptions = Symbol('requestOptions');\n const kRequestAsyncResource = Symbol('requestAsyncResource');\n+\n+// TODO(jazelly): make this configurable\n+const HTTP_AGENT_KEEP_ALIVE_TIMEOUT_... | 2024-09-09T13:17:10 |
facebook/react | 60a927d04ad3888facebcdf7da620aa1cfc9528f | 33068c9db9153a479bb29d138397cb9c32fabfdd | Fix: useOptimistic should return passthrough value when there are no updates pending (#27936)
This fixes a bug that happened when the canonical value passed to
useOptimistic without an accompanying call to setOptimistic. In this
scenario, useOptimistic should pass through the new canonical value.
I had written te... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -1256,10 +1256,19 @@ function updateReducerImpl<S, A>(\n queue.pending = null;\n }\n \n- if (baseQueue !== null) {\n+ const baseState = hook.baseState;\n+ if (baseQueue === null) {\n+ // If there are no pending updates, t... | 2024-01-14T02:37:35 |
vercel/next.js | 4e355ccbb712a958183bcd1250529c00482e8201 | 2b84bc2553f8fcbe931bde2a197bd0a273cb5254 | Turbopack: Use a BTreeMap in InvalidatorMap to avoid many `O(n)` traversals when finding child paths (#82133)
This fixes an `O(n)` iteration of the invalidators (which can be quite large) in `invalidate_path_and_children_execute`.
It requires the nightly `btree_cursors` API. It's possible to implement this without th... | [
{
"path": "turbopack/crates/turbo-tasks-fs/src/invalidator_map.rs",
"patch": "@@ -1,4 +1,5 @@\n use std::{\n+ collections::BTreeMap,\n path::PathBuf,\n sync::{LockResult, Mutex, MutexGuard},\n };\n@@ -16,18 +17,18 @@ pub enum WriteContent {\n Link(ReadRef<LinkContent>),\n }\n \n-type InnerMap... | 2025-07-30T18:01:21 |
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 |
rust-lang/rust | ba0e1c949729c14fa495c49747b9eea54c234eb4 | 6f406161488b9656ab8bd8f35fa8ce6f3c2c8b95 | Address review comments: fix span and add run-rustfix
- Change error span to start from 'const' keyword instead of binop RHS
- Add decl_lo parameter to missing_semi_from_binop() for better spans
- Add run-rustfix directive to test file
- Simplify test to focus on const item recovery cases | [
{
"path": "compiler/rustc_parse/src/parser/item.rs",
"patch": "@@ -6,9 +6,7 @@ use rustc_ast::ast::*;\n use rustc_ast::token::{self, Delimiter, InvisibleOrigin, MetaVarKind, TokenKind};\n use rustc_ast::tokenstream::{DelimSpan, TokenStream, TokenTree};\n use rustc_ast::util::case::Case;\n-use rustc_ast::{\n... | 2026-02-01T03:45:12 |
electron/electron | dd8df3b0c47102fe5686f516c80e698ab555a6f9 | b04ce6a5c867aae4931517923c535388679994ad | fix: destruction order of js env fields (#39521)
isolate_ depends on isolate_holder_ and so must be destroyed first. | [
{
"path": "shell/browser/javascript_environment.cc",
"patch": "@@ -104,9 +104,10 @@ gin::IsolateHolder CreateIsolateHolder(v8::Isolate* isolate) {\n \n JavascriptEnvironment::JavascriptEnvironment(uv_loop_t* event_loop,\n bool setup_wasm_streaming)\n- : isolat... | 2023-08-17T04:06:24 |
facebook/react | bcbbbec1f58eeb714ded2b6d824344490b323fb0 | 33118be83592961ef4c07b4b7fc043c44ba47b71 | [housekeeping] Remove unused test fixtures
We don't use these fixtures, let's just clean them up. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/todo/README.md",
"patch": "@@ -1,5 +0,0 @@\n-## TODOs\n-\n-This directory contains files that are currently crashing the compiler and\n-should be moved to `../transform/` as a potential new fixture once the crash\n-is fixed.",
... | 2024-01-12T20:22:23 |
nodejs/node | aff2214ca9b13dafee25e8c2d7e0eebeebd0f176 | fee02c70ee780558e3044066cde6d217b56c0230 | build: fix conflicting V8 object print flags
Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/54785
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "configure.py",
"patch": "@@ -1671,7 +1671,7 @@ def configure_v8(o, configs):\n o['variables']['v8_enable_short_builtin_calls'] = 1\n if options.v8_enable_snapshot_compression:\n o['variables']['v8_enable_snapshot_compression'] = 1\n- if options.v8_enable_object_print and options.v8_dis... | 2024-09-03T09:20:21 |
vercel/next.js | 355831afbda41e65a106eed328b4a3bf4af5be3c | aae25a1deafa061523e66f7e91c69ff2d944e449 | docs: fix typo in docs (#82186)
### What?
This pull request just fix typo in documentation.
---------
Co-authored-by: Joseph <joseph.chamochumbi@vercel.com> | [
{
"path": "docs/01-app/01-getting-started/07-fetching-data.mdx",
"patch": "@@ -106,7 +106,7 @@ There are two ways to fetch data in Client Components, using:\n You can use React's [`use` hook](https://react.dev/reference/react/use) to [stream](#streaming) data from the server to client. Start by fetching dat... | 2025-07-30T10:03:04 |
rust-lang/rust | 6f406161488b9656ab8bd8f35fa8ce6f3c2c8b95 | 6d0e077d138c3c499a51da17b8d7bdc8b1dbdcda | remove mismatched errors when recovered | [
{
"path": "compiler/rustc_parse/src/parser/item.rs",
"patch": "@@ -2723,9 +2723,17 @@ impl<'a> Parser<'a> {\n } else if self.check(exp!(OpenBrace)) || self.token.is_metavar_block() {\n let prev_in_fn_body = self.in_fn_body;\n self.in_fn_body = true;\n- let res = se... | 2026-01-19T07:43:03 |
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 |
electron/electron | 9d6d606192b1be9d82175ed7d61091856a362f10 | 1eb398b328d304f227deef0e89ca0be7b9e20755 | build: fixup libcxx zip (#39536) | [
{
"path": "build/zip_libcxx.py",
"patch": "@@ -30,8 +30,8 @@ def get_object_files(base_path, archive_name):\n def main(argv):\n dist_zip, = argv\n out_dir = os.path.dirname(dist_zip)\n- base_path_libcxx = os.path.join(out_dir, 'obj/third_party/libc++')\n- base_path_libcxxabi = os.path.join(out_dir, 'o... | 2023-08-16T18:05:39 |
nodejs/node | e21984b70cbb31577cc80d4c047ae4d78e6fdda6 | 59220bb08a4608c64e73409a8bd05e47a9d277ce | test_runner: update kPatterns
PR-URL: https://github.com/nodejs/node/pull/54728
Fixes: https://github.com/nodejs/node/issues/54726
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Jake Yue... | [
{
"path": "lib/internal/test_runner/utils.js",
"patch": "@@ -51,7 +51,7 @@ const coverageColors = {\n const kMultipleCallbackInvocations = 'multipleCallbackInvocations';\n const kRegExpPattern = /^\\/(.*)\\/([a-z]*)$/;\n \n-const kPatterns = ['test', 'test/**/*', 'test-*', '*[.-_]test'];\n+const kPatterns =... | 2024-09-13T02:51:35 |
rust-lang/rust | 0cbe1cc992f712704abdcbbcb35db431ab181bbc | 590c1c9966caea982b0e6d946dd7637b8c08f0a3 | try to work around rustdoc bug, and other rustdoc adjustments | [
{
"path": "library/core/src/num/nonzero.rs",
"patch": "@@ -31,7 +31,7 @@ use crate::{fmt, intrinsics, ptr, ub_checks};\n issue = \"none\"\n )]\n pub unsafe trait ZeroablePrimitive: Sized + Copy + private::Sealed {\n- #[doc(hidden)]\n+ /// A type like `Self` but with a niche that includes zero.\n ... | 2026-01-21T07:49:25 |
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 |
facebook/react | 33118be83592961ef4c07b4b7fc043c44ba47b71 | 653373141a36a120a1c09391e0e6d3d81be5750c | [housekeeping] Remove fixtures/
Do we still use these? I'm happy to close this PR if we still want this but it
feels like these may have served their purpose and no longer be necessary. | [
{
"path": "compiler/fixtures/demo-2021Q3/.babelrc",
"patch": "@@ -1,3 +0,0 @@\n-{\n- \"plugins\": [\"../../\"]\n-}",
"additions": 0,
"deletions": 3,
"language": "Unknown"
},
{
"path": "compiler/fixtures/demo-2021Q3/.env",
"patch": "@@ -1 +0,0 @@\n- SKIP_PREFLIGHT_CHECK=true",
"a... | 2024-01-12T20:22:19 |
electron/electron | 1eb398b328d304f227deef0e89ca0be7b9e20755 | f7a7085019bf757700df3c2f8714e0de356203cd | fix: crash when calling `BrowserWindow.moveTop()` on modal children (#39499)
fix: crash when calling moveTop() on modal children | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -812,7 +812,7 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n if (!webrtc::GetWindowOwnerPid(window_id))\n return false;\n \n- if (!parent()) {\n+ if (!parent() || is_modal()) {\n [window_ orderWindo... | 2023-08-16T11:28:29 |
vercel/next.js | 7e4c74b9f59550f974f9240e5b4a8b72e67997fd | ad4fd37d373c125456a323a1e533c147c2e02e13 | Turbopack: Make the "non-recursive" logic for the fs watcher a runtime flag instead of a build-time one (#82031)
We use different modes on macos/windows and linux for watching files for performance reasons: https://github.com/vercel/turborepo/pull/4100
Now with `TURBO_TASKS_FORCE_WATCH_MODE=recursive` or `TURBO_TASKS... | [
{
"path": "turbopack/crates/turbo-tasks-fs/src/lib.rs",
"patch": "@@ -255,9 +255,10 @@ impl DiskFileSystemInner {\n let invalidator = turbo_tasks::get_invalidator();\n self.invalidator_map\n .insert(path_to_key(path), invalidator, None);\n- #[cfg(not(any(target_os = \"maco... | 2025-07-30T07:47:59 |
nodejs/node | 92ca0b7ec138317161e18fc7b7f5550989c06fa0 | f5f67ae4a76f15df47fdf3f1253aba695c3d0ab9 | test: strip color chars in `test-runner-run`
Fixes: https://github.com/nodejs/node/issues/54551
PR-URL: https://github.com/nodejs/node/pull/54552
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "test/parallel/test-runner-run.mjs",
"patch": "@@ -4,6 +4,7 @@ import { join } from 'node:path';\n import { describe, it, run } from 'node:test';\n import { dot, spec, tap } from 'node:test/reporters';\n import assert from 'node:assert';\n+import util from 'node:util';\n \n const testFixtures = fi... | 2024-09-12T23:13:04 |
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 |
facebook/react | 653373141a36a120a1c09391e0e6d3d81be5750c | 0c866672b07ae47d8d6f80d1aac9029e5ae73d90 | Extra fixture for validating preserved memoization of non-escaping callbacks | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/repro-false-positive-preserve-memoization-nonescaping-invoked-callback-escaping-return.expect.md",
"patch": "@@ -0,0 +1,109 @@\n+\n+## Input\n+\n+```javascript\n+// @validatePreserveExistingMemoizationGuarantees @enableAs... | 2024-01-12T22:32:35 |
vercel/next.js | 9c120306afd437b6640c9b9964abcfffbf459f52 | 1b2e69fdd09b00f1fd503a6450e5aefe1db519f9 | Fix RSC hash validation for middleware external rewrites (#82176) | [
{
"path": "packages/next/src/server/web/adapter.ts",
"patch": "@@ -19,6 +19,7 @@ import {\n FLIGHT_HEADERS,\n NEXT_REWRITTEN_PATH_HEADER,\n NEXT_REWRITTEN_QUERY_HEADER,\n+ NEXT_RSC_UNION_QUERY,\n RSC_HEADER,\n } from '../../client/components/app-router-headers'\n import { ensureInstrumentationRegis... | 2025-07-30T00:55:39 |
nodejs/node | e60caeebdab832291f71bf2684adca5470ec9ec3 | 6cc4d5fc87503a6bc033b70f125d319d46f1c01e | test: deflake test-http2-misbehaving-multiplex
Fixes: https://github.com/nodejs/node/issues/54859
PR-URL: https://github.com/nodejs/node/pull/54872
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "test/parallel/test-http2-misbehaving-multiplex.js",
"patch": "@@ -11,18 +11,30 @@ const h2 = require('http2');\n const net = require('net');\n const { NghttpError } = require('internal/http2/util');\n const h2test = require('../common/http2');\n+let client;\n \n const server = h2.createServer();\... | 2024-09-12T15:48:13 |
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 |
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.