repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
facebook/react
15ca8b6bad9c2e51f1a3b6e943c9af494b62a1a6
6e169fc65da097629588132f8fec82d8a836afdd
Don't strip out component stack in assertConsole helpers (#30204) Use the same normalizeCodeLocInfo that we use everywhere else. We should actually test the component stack itself. Not just that it exists. This was causing false passes. However, the logic was also wrong before because it wouldn't always strip ...
[ { "path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js", "patch": "@@ -1002,8 +1002,8 @@ describe('ReactInternalTestUtils console assertions', () => {\n - Hi\n - Wow\n - Bye\n- + Wow <component stack>\n- + Bye <component stack>\"\n+ + ...
2024-07-03T20:57:05
electron/electron
ed3242adc1ac2cd1e549a9a8a528b59add6764af
87fb2ad70cf778752aadc5496f534b7a0793da61
fix: vibrant view is inserted into Views API hierarchy (#43078) * fix: vibrant view is inserted into Views API hierarchy (#42263) * Update shell/browser/native_window_mac.mm Co-authored-by: Charles Kerr <charles@charleskerr.com> --------- Co-authored-by: Hans Halverson <hans_halverson@alumni.brown.edu> Co...
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -12,6 +12,7 @@\n #include <string>\n #include <vector>\n \n+#include \"base/memory/raw_ptr.h\"\n #include \"electron/shell/common/api/api.mojom.h\"\n #include \"shell/browser/native_window.h\"\n #include \"third_party/skia/include/core/SkRegion.h\"...
2024-07-30T23:21:20
golang/go
de5d7eccb99088e3ab42c0d907da6852d8f9cebe
8098b99547e2bb802c976a424e486ba94d3222a8
runtime/internal/maps: only conditionally clear groups when sparse We only want to do the work of clearing slots if they are full. But we also don't want to do too much work to figure out whether a slot is full or not, especially if clearing a slot is cheap. 1) We decide group-by-group instead of slot-by-slot. If...
[ { "path": "src/internal/runtime/maps/table.go", "patch": "@@ -604,12 +604,37 @@ func (t *table) Clear(typ *abi.MapType) {\n \tif t.used == 0 && t.growthLeft == mgl { // no current entries and no tombstones\n \t\treturn\n \t}\n-\tfor i := uint64(0); i <= t.groups.lengthMask; i++ {\n-\t\tg := t.groups.group(t...
2025-08-21T00:33:14
nodejs/node
395439be8b101c29ce86bb13464fd53381859768
2a6f90813f4802def79f2df1bfe20e95df279abf
assert: improve myers diff performance fix: https://github.com/nodejs/node/issues/57242 PR-URL: https://github.com/nodejs/node/pull/57279 Fixes: https://github.com/nodejs/node/issues/57242 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: LiviaMedeiros <livia@cirno.name>
[ { "path": "benchmark/assert/assertion-error.js", "patch": "@@ -0,0 +1,38 @@\n+'use strict';\n+const common = require('../common.js');\n+const assert = require('assert');\n+\n+const bench = common.createBenchmark(main, {\n+ n: [10, 50, 200, 500],\n+ size: [10, 100],\n+ datasetName: ['objects'],\n+});\n+\n...
2025-03-06T11:59:53
rust-lang/rust
2aaced63444987973c1205931ed3dda94f26a26b
8129da81e247cb21f8d7cacf486f4683cc291660
Replace two `abort_if_errors` calls. Calling `abort_if_errors` after emitting an error is guaranteed to call `raise_fatal`, so just do that directly instead.
[ { "path": "compiler/rustc_query_impl/src/execution.rs", "patch": "@@ -132,9 +132,8 @@ fn mk_cycle<'tcx, C: QueryCache>(\n query.value_from_cycle_error(tcx, cycle_error, guar)\n }\n CycleErrorHandling::Fatal => {\n- error.emit();\n- tcx.dcx().abort_if_errors(...
2026-02-27T03:31:51
vercel/next.js
e30082161443d774b18182256bc980f3ee4fbaac
de2b47f8bee1e8e0866b33d3f8cf202ebfc8dfaa
[mcp] capture next config schema errors (#84832)
[ { "path": "packages/next/src/server/config.ts", "patch": "@@ -46,6 +46,7 @@ import { interopDefault } from '../lib/interop-default'\n import { djb2Hash } from '../shared/lib/hash'\n import type { NextAdapter } from '../build/adapter/build-complete'\n import { HardDeprecatedConfigError } from '../shared/lib/...
2025-10-13T22:08:03
facebook/react
9c6806964f453cb5e8a530881dcc9f33480e7388
572ded3762fa7332e2d062e4373369cd7008b7b0
Add regression test for #30172 (#30198) The issue reported in #30172 was fixed with #29823. The PR also added the test [`should resolve deduped objects that are themselves blocked`](https://github.com/facebook/react/blob/6d2a97a7113dfac2ad45067001b7e49a98718324/packages/react-server-dom-webpack/src/__tests__/ReactFl...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMBrowser-test.js", "patch": "@@ -392,6 +392,70 @@ describe('ReactFlightDOMBrowser', () => {\n expect(container.innerHTML).toBe('<div><span>12345</span>12345</div>');\n });\n \n+ it('should resolve deduped objects in nested childr...
2024-07-03T11:10:23
nodejs/node
755e4603fd1679de72d250514ea5096b272ae8d6
157b36b91b5998508973ecbb04c4dc498f8370c1
doc: fix Windows ccache section position PR-URL: https://github.com/nodejs/node/pull/57326 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "BUILDING.md", "patch": "@@ -40,6 +40,7 @@ file a new issue.\n * [Option 2: Automated install with WinGet](#option-2-automated-install-with-winget)\n * [Option 3: Automated install with Boxstarter](#option-3-automated-install-with-boxstarter)\n * [Building Node.js](#building-nodejs...
2025-03-05T16:33:52
golang/go
8098b99547e2bb802c976a424e486ba94d3222a8
fe5420b054a091f59f5adbd78f4716d20c7f484c
internal/runtime/maps: speed up Clear We don't need to know the actual full slots, just whether there are any or not. The test for any full slots is simpler on amd64. We don't have to use PMOVMSKB and do the intreg->floatreg transfer. Fixes #75097 Change-Id: Iace1c100618d7fc2ac5ddd5fe9e8fe5c9595243f Reviewed-on: ht...
[ { "path": "src/internal/runtime/maps/group.go", "patch": "@@ -215,6 +215,12 @@ func (g ctrlGroup) matchFull() bitset {\n \treturn ctrlGroupMatchFull(g)\n }\n \n+// anyFull reports whether any slots in the group are full.\n+func (g ctrlGroup) anyFull() bool {\n+\t// A slot is full iff bit 7 is unset. Test wh...
2025-08-20T23:53:09
electron/electron
87fb2ad70cf778752aadc5496f534b7a0793da61
1bcc566ad898d97ec13623bdf01d7bf4f770a714
build: fixup ffmpeg release on x64 macOS (#43093) chore: fixup arch on x64 macOS ffmpeg
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -36,7 +36,7 @@ runs:\n shell: bash\n if: ${{ inputs.target-arch == 'x64' && inputs.target-platform == 'macos' }}\n run: |\n- GN_APPENDED_ARGS=\"$GN_EXTRA_ARGS v8_snapshot_toolchain=\\\"//build/toolchain/mac:clang_x6...
2024-07-30T20:35:11
rust-lang/rust
c0770baed8b4158a063ed27493ff2eeacfd6681c
cc1b878386666be4b97ed21e053487f1ec0f6c0c
Make `from_cycle_error` consume the `CycleError`. This makes it clear the `CycleError` is not used after the call.
[ { "path": "compiler/rustc_middle/src/query/plumbing.rs", "patch": "@@ -151,7 +151,7 @@ pub struct QueryVTable<'tcx, C: QueryCache> {\n pub hash_value_fn: Option<fn(&mut StableHashingContext<'_>, &C::Value) -> Fingerprint>,\n \n pub value_from_cycle_error:\n- fn(tcx: TyCtxt<'tcx>, cycle_error:...
2026-02-26T23:31:32
facebook/react
572ded3762fa7332e2d062e4373369cd7008b7b0
3db98c917701d59f62cf1fbe45cbf01b0b61c704
React DevTools 5.3.0 -> 5.3.1 (#30199) ## Summary Full list of changes, mostly fixes: * chore[react-devtools/renderer]: dont show strict mode warning for prod renderer builds ([hoxyq](https://github.com/hoxyq) in [#30158](https://github.com/facebook/react/pull/30158)) * chore[react-devtools/ui]: fix strict mode...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.3.0\",\n+ \"version\": \"5.3.1\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2024-07-03T10:46:46
vercel/next.js
53e104259d39abfc1455cea245c97bba2fe328f1
632fa5cd72a011532480ba3689acaf322e173060
Revert "Fix flakey overlay feedback test" (#84819)
[ { "path": "test/development/error-overlay/index.test.tsx", "patch": "@@ -1,5 +1,5 @@\n import { nextTestSetup } from 'e2e-utils'\n-import { assertHasRedbox, retry } from 'next-test-utils'\n+import { assertHasRedbox } from 'next-test-utils'\n \n describe('DevErrorOverlay', () => {\n const { next } = nextTe...
2025-10-13T15:19:48
golang/go
fad1dc608d178bf2527c249ded24ca22948269b8
b1f3e38e4153de19b1964068d79e7da6eac7b5d8
runtime: don't artificially limit TestReadMetricsSched TestReadMetricsSched/running can take some time to enter in steady state on busy systems. We currently only allow 1 second for that, we should let it run unlimitedly until success or the test time's out. Fixes #75049 Change-Id: I452059e1837caf12a2d2d9cae1f70a0ef...
[ { "path": "src/runtime/metrics_test.go", "patch": "@@ -1632,15 +1632,13 @@ func TestReadMetricsSched(t *testing.T) {\n \tcheckEq := func(t *testing.T, s *metrics.Sample, value uint64) {\n \t\tcheck(t, s, value, value)\n \t}\n-\tspinUntil := func(f func() bool, timeout time.Duration) bool {\n-\t\tstart := ti...
2025-09-10T06:23:42
electron/electron
47dde3b6e23bba1b76387d4478e6d36483116fee
1a6e6518440cb3cf325b4648e2dfef8f9e68053f
chore: remove unused class `electron::ObjectLifeMonitor` (#43089) * chore: remove unused electron::ObjectLifeMonitor The last users were removed in June 2020 e1e73fa5f (#24115) and May 2020 9d7ba982 (#23592). * fixup! chore: remove unused electron::ObjectLifeMonitor fix: oops
[ { "path": "filenames.gni", "patch": "@@ -562,8 +562,6 @@ filenames = {\n \"shell/common/api/electron_bindings.cc\",\n \"shell/common/api/electron_bindings.h\",\n \"shell/common/api/features.cc\",\n- \"shell/common/api/object_life_monitor.cc\",\n- \"shell/common/api/object_life_monitor.h\",...
2024-07-30T13:25:28
rust-lang/rust
cc1b878386666be4b97ed21e053487f1ec0f6c0c
72a001bc25217104f9de5ff4b35c280c95adcb28
Inline and remove `handle_cycle_error`. It has a single use.
[ { "path": "compiler/rustc_query_impl/src/execution.rs", "patch": "@@ -5,7 +5,7 @@ use rustc_data_structures::hash_table::{Entry, HashTable};\n use rustc_data_structures::stack::ensure_sufficient_stack;\n use rustc_data_structures::sync::{DynSend, DynSync};\n use rustc_data_structures::{outline, sharded, syn...
2026-02-26T23:27:31
nodejs/node
157b36b91b5998508973ecbb04c4dc498f8370c1
b4c8440109e5a945090d8ffc3acc9aa7c1f1add1
src: make even more improvements to error handling PR-URL: https://github.com/nodejs/node/pull/57264 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "src/crypto/crypto_tls.cc", "patch": "@@ -2157,10 +2157,11 @@ void TLSWrap::SetMaxSendFragment(const FunctionCallbackInfo<Value>& args) {\n Environment* env = Environment::GetCurrent(args);\n TLSWrap* w;\n ASSIGN_OR_RETURN_UNWRAP(&w, args.This());\n- int rv = SSL_set_max_send_fragment(\n- ...
2025-03-01T20:59:20
facebook/react
3db98c917701d59f62cf1fbe45cbf01b0b61c704
cfb8945f511add040e1d5427d9961337f98f7618
[Fizz] Track Current debugTask and run it for onError Callbacks (#30182) Stacked on #30174. This tracks the current debugTask on the Task so that when an error is thrown we can use it to run the `onError` (and `onShellError` and `onFatalError`) callbacks within the Context of that task. Ideally it would be assoc...
[ { "path": "packages/react-server/src/ReactFizzServer.js", "patch": "@@ -250,6 +250,7 @@ type RenderTask = {\n thenableState: null | ThenableState,\n isFallback: boolean, // whether this task is rendering inside a fallback tree\n legacyContext: LegacyContext, // the current legacy context that this tas...
2024-07-02T23:46:18
vercel/next.js
632fa5cd72a011532480ba3689acaf322e173060
90bc934b52c23a6a579c8225e481a4f5ce99e5ce
fix missing flight-router-state-tree header normalization (#84718) When we pass the flight-router-state-tree header to the server, we should pass it through the normalizer to ensure we remove things that are client-specific (eg removing "refresh" markers and URLs, which are only used on the client)
[ { "path": "packages/next/src/client/components/segment-cache-impl/cache.ts", "patch": "@@ -71,7 +71,10 @@ import type {\n FlightRouterState,\n NavigationFlightResponse,\n } from '../../../shared/lib/app-router-types'\n-import { normalizeFlightData } from '../../flight-data-helpers'\n+import {\n+ normal...
2025-10-13T15:12:25
rust-lang/rust
b5739f152eeadc7a9cabfc350dc1319ea91d14be
ab001b9b8912288f32d1b6c478f3b60f5d7041c5
Add a fixme
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/extract_function.rs", "patch": "@@ -928,6 +928,7 @@ impl FunctionBody {\n false\n };\n \n+ // FIXME: make trait arguments\n let trait_name = ast::Trait::cast(insert_after.clone())\n .and_then(|t...
2026-03-02T03:02:54
golang/go
b1f3e38e4153de19b1964068d79e7da6eac7b5d8
00824f5ff5913712710e449de8b7bbae51182197
cmd/compile: when CSEing two values, prefer the statement marked one Fixes #75249 Change-Id: Ifd61bf5341f23ce2c9735e607e00d987489caacf Reviewed-on: https://go-review.googlesource.com/c/go/+/701295 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Alexander Musman <...
[ { "path": "src/cmd/compile/internal/dwarfgen/linenum_test.go", "patch": "@@ -0,0 +1,105 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package dwarfgen\n+\n+import (\n+\t\"debug/dwar...
2025-09-05T17:19:17
electron/electron
1a6e6518440cb3cf325b4648e2dfef8f9e68053f
d09a2e513c6a64c96bf0e60699e88dfe7b17791d
test: fixup flaky visibility test (#43064)
[ { "path": "spec/api-web-contents-view-spec.ts", "patch": "@@ -3,7 +3,7 @@ import { BaseWindow, BrowserWindow, View, WebContentsView, webContents, screen }\n import { once } from 'node:events';\n \n import { closeAllWindows } from './lib/window-helpers';\n-import { defer, ifdescribe } from './lib/spec-helper...
2024-07-30T13:14:45
nodejs/node
64f6a2fc4dc8c8556a3d61c77d4110b259ffe3a4
c5666390266ec2b2c4b2a9cd947ea8387995b1d4
doc: update node-api version matrix PR-URL: https://github.com/nodejs/node/pull/57287 Fixes: https://github.com/nodejs/node/issues/57284 Refs: https://github.com/nodejs/node/pull/55676 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Vladimir Morozov ...
[ { "path": "doc/api/n-api.md", "patch": "@@ -291,6 +291,10 @@ information is in the latest API documentation in:\n <th>Node-API version</th>\n <th scope=\"col\">Supported In</th>\n </tr>\n+ <tr>\n+ <th scope=\"row\">10</th>\n+ <td>v22.14.0+, 23.6.0+ and all later versions</td>\n+ </tr>\n ...
2025-03-05T10:10:10
facebook/react
cfb8945f511add040e1d5427d9961337f98f7618
309e146193c7b84d1c7a60d1a2ab2d6c836ba515
[Fizz] Implement debugInfo (#30174) Stacked on #30170. This lets us track Server Component parent stacks in Fizz which also lets us track the correct owner stack for lazy. In Fiber we're careful not to make any DEV only fibers but since the ReactFizzComponentStack data structures just exist for debug meta data...
[ { "path": "packages/react-html/src/__tests__/ReactHTMLServer-test.js", "patch": "@@ -244,17 +244,19 @@ if (!__EXPERIMENTAL__) {\n expect(caughtErrors.length).toBe(1);\n expect(caughtErrors[0].error).toBe(thrownError);\n expect(normalizeCodeLocInfo(caughtErrors[0].parentStack)).toBe(\n- ...
2024-07-02T22:26:32
rust-lang/rust
ab001b9b8912288f32d1b6c478f3b60f5d7041c5
7a221089b3fafcd105fbac2143724d181286c8d5
Fix extract function invalid self param Example --- ```rust trait Foo { fn f(&self) -> i32; fn foo(&self) -> i32 { $0self.f()+self.f()$0 } } ``` **Before this PR** ```rust trait Foo { fn f(&self) -> i32; fn foo(&self) -> i32 { fun_name(self) } } fn $0fun_name(&self) -> i32 ...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/extract_function.rs", "patch": "@@ -96,7 +96,8 @@ pub(crate) fn extract_function(acc: &mut Assists, ctx: &AssistContext<'_>) -> Op\n let module = semantics_scope.module();\n let edition = semantics_scope.krate().edition(ctx.db());\n ...
2026-03-02T00:18:17
vercel/next.js
7abd8089a700aea9467e6d7986924648bdc4b822
04c7cef99b9effee8a92563b0f70db45621632ae
Turbopack: use the same serialization method for lookup as for storing (#84765) ### What? This makes sure to use the same method for serializing CachedTaskType for storing and lookup. Before that we instantiated the serialization twice and that caused some weird behavior on linux. Before this fix I was seeing that s...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/kv_backing_storage.rs", "patch": "@@ -357,8 +357,12 @@ impl<T: KeyValueDatabase + Send + Sync + 'static> BackingStorageSealed\n \n let mut task_type_bytes = Vec::new();\n for (task_type, task_id) in u...
2025-10-13T11:21:33
golang/go
9650c97d0fad719b372159a6ca59e722a6e487ce
f1c4b860d4cf5d3164fbb5a26bafc36f109d9bdc
syscall: remove unreachable code Reported by go vet: $ go vet syscall # syscall_test # [syscall_test] syscall/env_unix_test.go:100:4: unreachable code The TestVetStdlib test in golang.org/x/tools/go/analysis/unitchecker also ran into this. Fixes #73998. Change-Id: I7f2842a42835a38163433a09a3311be9c30f8a14 Cq-I...
[ { "path": "src/syscall/env_unix_test.go", "patch": "@@ -96,7 +96,9 @@ func TestClearenv(t *testing.T) {\n \t\t\tdefer func() {\n \t\t\t\tret = recover()\n \t\t\t}()\n-\t\t\tpanic(nil)\n+\t\t\tif true {\n+\t\t\t\tpanic(nil)\n+\t\t\t}\n \t\t\treturn \"should not return\"\n \t\t}\n ", "additions": 3, "...
2025-09-10T14:41:04
electron/electron
d09a2e513c6a64c96bf0e60699e88dfe7b17791d
7e9eb9e3f1ea4ee73c01e1d1860e2069ee0034d0
fix: `showInactive` window not showing (#43079) fix: showInactive window not showing Refs https://github.com/electron/electron/pull/42226 and https://github.com/electron/electron/pull/43033
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -466,7 +466,7 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n if (parent())\n InternalSetParentWindow(parent(), true);\n \n- [window_ orderFrontKeepWindowKeyState];\n+ [window_ orderFrontRegardless];\n }...
2024-07-30T10:37:27
nodejs/node
c5666390266ec2b2c4b2a9cd947ea8387995b1d4
345aa1f7c48af7f8b9c65301ec73dc731c473f1b
stream: fix sizeAlgorithm validation in WritableStream Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/57280 Fixes: https://github.com/nodejs/node/issues/57272 Refs: https://github.com/nodejs/node/pull/56067 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Mi...
[ { "path": "lib/internal/webstreams/writablestream.js", "patch": "@@ -1181,7 +1181,9 @@ function writableStreamDefaultControllerGetChunkSize(controller, chunk) {\n sizeAlgorithm,\n } = controller[kState];\n if (sizeAlgorithm === undefined) {\n- assert(stream[kState].state === 'errored' || stream[k...
2025-03-05T03:04:39
facebook/react
309e146193c7b84d1c7a60d1a2ab2d6c836ba515
e60063d9e7d346e92a5af42975a2fe7dd306f86f
Implement onError signature for renderToMarkup (#30170) Stacked on #30132. This way we can get parent and owner stacks from the error. This forces us to confront multiple errors and whether or not a Flight error that ends up being unobservable needs to really reject the render. This implements stashing of Fl...
[ { "path": "packages/react-html/src/ReactHTMLClient.js", "patch": "@@ -8,6 +8,7 @@\n */\n \n import type {ReactNodeList} from 'shared/ReactTypes';\n+import type {ErrorInfo} from 'react-server/src/ReactFizzServer';\n \n import ReactVersion from 'shared/ReactVersion';\n \n@@ -27,6 +28,7 @@ import {\n type Mar...
2024-07-02T20:31:35
vercel/next.js
04c7cef99b9effee8a92563b0f70db45621632ae
cf76c5b72d3f0f870e8163d5cee635a8564d1bd4
[docs] fix(with-supabase): Update README env variables (#84745) Closes #84734 Fixes environmental variable names in `with-supabase` example README to match the actual `.env.example` file. Updates `NEXT_PUBLIC_SUPABASE_ANON_KEY` to `NEXT_PUBLIC_SUPABASE_PUBLISHABLE_OR_ANON_KEY` in two locations. --------- Co-author...
[ { "path": "examples/with-supabase/.env.example", "patch": "@@ -1,4 +1,4 @@\n # Update these with your Supabase details from your project settings > API\n # https://app.supabase.com/project/_/settings/api\n NEXT_PUBLIC_SUPABASE_URL=your-project-url\n-NEXT_PUBLIC_SUPABASE_PUBLISHABLE_OR_ANON_KEY=your-anon-key...
2025-10-13T11:07:28
golang/go
f1c4b860d4cf5d3164fbb5a26bafc36f109d9bdc
30686c4cc89e6952ec00846e34016f37d53f31dd
Revert "crypto/internal/fips140: update frozen module version to "v1.0.0"" This reverts CL 701518. This should land just before CL 701520 to avoid breaking the builders for long. Fixes #75343 Change-Id: If1ae1fe933fe443ca9776888967d80875b02f41a Reviewed-on: https://go-review.googlesource.com/c/go/+/702255 Reviewed-b...
[ { "path": "src/crypto/internal/cryptotest/hash.go", "patch": "@@ -20,7 +20,7 @@ type MakeHash func() hash.Hash\n // TestHash performs a set of tests on hash.Hash implementations, checking the\n // documented requirements of Write, Sum, Reset, Size, and BlockSize.\n func TestHash(t *testing.T, mh MakeHash) {...
2025-09-09T22:05:22
nodejs/node
52ac44888df66df91df921e307b309eceb360f4c
2cff2560658a81c749c6e3f46566ee659af0810d
src: make more error handling improvements PR-URL: https://github.com/nodejs/node/pull/57262 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "src/env.cc", "patch": "@@ -54,10 +54,12 @@ using v8::HeapProfiler;\n using v8::HeapSpaceStatistics;\n using v8::Integer;\n using v8::Isolate;\n+using v8::JustVoid;\n using v8::Local;\n using v8::Maybe;\n using v8::MaybeLocal;\n using v8::NewStringType;\n+using v8::Nothing;\n using v8::Number;\n u...
2025-03-01T19:56:27
facebook/react
e60063d9e7d346e92a5af42975a2fe7dd306f86f
6d2a97a7113dfac2ad45067001b7e49a98718324
[Fizz] Include a component stack in prod but only lazily generate it (#30132) When we added component stacks to Fizz in prod it severely slowed down common cases where you intentionally are throwing error for purposes of client rendering. Our parent component stack generation is very slow since call components with...
[ { "path": "packages/react-server/src/ReactFizzServer.js", "patch": "@@ -908,27 +908,23 @@ type ThrownInfo = {\n export type ErrorInfo = ThrownInfo;\n export type PostponeInfo = ThrownInfo;\n \n-// While we track component stacks in prod all the time we only produce a reified stack in dev and\n-// during pre...
2024-07-02T20:05:20
electron/electron
e70ce89235825d19bf1bca5a054d311231925b21
92496c1930e35de04725a61e60817704832372b2
chore: more iwyu (#43063) * chore: iwyu shell/browser/electron_pdf_document_helper_client.h * chore: iwyu shell/browser/hid/electron_hid_delegate.h * chore: iwyu content/public/browser/web_contents.h * chore: iwyu shell/browser/usb/electron_usb_delegate.h * chore: iwyu shell/browser/browser_observer.h *...
[ { "path": "shell/app/electron_content_client.h", "patch": "@@ -8,7 +8,6 @@\n #include <string_view>\n #include <vector>\n \n-#include \"base/files/file_path.h\"\n #include \"content/public/common/content_client.h\"\n \n namespace electron {", "additions": 0, "deletions": 1, "language": "C/C++ He...
2024-07-29T17:42:57
vercel/next.js
bb964e4d5c2269af10dc4a92e026bb2d7aba3e76
51f561bfc56d7af62a5802910d8e42206ae4bb74
fix: release next-rspack ci (#84673) should use `secrets.NPM_TOKEN_ELEVATED` to `env.NPM_TOKEN`
[ { "path": ".github/workflows/release-next-rspack.yml", "patch": "@@ -118,7 +118,7 @@ jobs:\n run: |\n echo \"//registry.npmjs.org/:_authToken=$NPM_TOKEN\" >> ~/.npmrc\n env:\n- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}\n+ NPM_TOKEN: ${{ secrets.NPM_TOKEN_ELEVATED }}\n \...
2025-10-11T07:00:52
golang/go
30686c4cc89e6952ec00846e34016f37d53f31dd
c5737dc21bbac9fbefc35ac9313e66291d66b382
encoding/json/v2: document context annotation with SemanticError When the json package calls Marshaler, MarshalerTo, Unmarshaler, or UnmarshalerFrom methods and a SemanticError is returned, it will automatically annotate the error with context. Document this behavior. Change-Id: Id8e775a7c1c2a6ffc29ea518913591915e8a...
[ { "path": "src/encoding/json/v2/arshal_methods.go", "patch": "@@ -41,6 +41,10 @@ var (\n //\n // It is recommended that implementations return a buffer that is safe\n // for the caller to retain and potentially mutate.\n+//\n+// If the returned error is a [SemanticError], then unpopulated fields\n+// of the...
2025-09-09T00:33:47
facebook/react
315109b02b0c9460b7466ca88f3f4d6ed1215a21
ad59ddf272dad17203561ceab7ea813c3e49d831
[Fizz] Enable owner stacks for SSR (#30152) Stacked on #30142. This tracks owners and their stacks in DEV in Fizz. We use the ComponentStackNode as the data structure to track this information - effectively like ReactComponentInfo (Server) or Fiber (Client). They're the instance. I then port them same logic f...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -1766,9 +1766,9 @@ describe('ReactDOMFizzServer', () => {\n // Intentionally trigger a key warning here.\n return (\n <div>\n- {children.map(t => (\n- <span>{t}</span>\n- ))...
2024-07-01T14:27:52
nodejs/node
559d4819242989553ac1bfc37dba27ab69c095d2
f37d2a580913e0dd94b0358cd10552ef0aedba97
src: fix typo in comment PR-URL: https://github.com/nodejs/node/pull/57291 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "src/node_util.cc", "patch": "@@ -357,7 +357,7 @@ static void DefineLazyPropertiesGetter(\n // This getter has no JavaScript function representation and is not\n // invoked in the creation context.\n // When this getter is invoked in a vm context, the `Realm::GetCurrent(info)`\n- // returns...
2025-03-03T13:51:12
golang/go
c5737dc21bbac9fbefc35ac9313e66291d66b382
b9a4a09b0fbb54b533f847c784c807db95f68d3b
runtime: when using cgo on 386, call C sigaction function On 386 the C sigaction function assumes that the caller does not set the SA_RESTORER flag. It does not copy the C sa_restorer field to the kernel sa_restorer field. The effect is that the kernel sees the SA_RESTORER flag but a NULL sa_restorer field, and the pr...
[ { "path": "src/runtime/cgo/gcc_sigaction.c", "patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build linux && (amd64 || arm64 || loong64 || ppc64le)\n+//go:build linux && (386 || amd64 || arm64 || loong64 || ppc64l...
2025-09-06T05:24:37
facebook/react
ad59ddf272dad17203561ceab7ea813c3e49d831
e6783e7cc94bceb5bba92b79ff71f44f630e1c00
chore[react-devtools/ui]: fix strict mode badge styles (#30159) ## Summary Just a minor UI fix to strict mode badge layout and component name text overflow ## How did you test this change? | Before | After | | --- | --- | | ![Screenshot 2024-06-30 at 23 35 19](https://github.com/facebook/react/assets/289026...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElement.css", "patch": "@@ -45,12 +45,13 @@\n .SelectedComponentName {\n flex: 1 1 auto;\n overflow: hidden;\n- text-overflow: ellipsis;\n- line-height: normal;\n+ display: flex;\n+ padding: 0.25rem 0;\n+ height: 100%;...
2024-07-01T14:27:15
nodejs/node
d3064e8ddbe3fefc6ece838d8d298d78616162ae
a914f173d2072ed47fc01df30114c7d84924de11
v8: add v8.getCppHeapStatistics() method Expose `CppHeap` data via `cppgc::CppHeap::CollectStatistics()` in the v8 module. PR-URL: https://github.com/nodejs/node/pull/57146 Fixes: https://github.com/nodejs/node/issues/56533 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Stephen Belanger <admin@stephenb...
[ { "path": "doc/api/v8.md", "patch": "@@ -271,6 +271,92 @@ buffers and external strings.\n }\n ```\n \n+## `v8.getCppHeapStatistics([detailLevel])`\n+\n+Retrieves [CppHeap][] statistics regarding memory consumption and\n+utilization using the V8 [`CollectStatistics()`][] function which\n+may change from one ...
2025-03-04T11:14:34
rust-lang/rust
a24022ad4e98bfc5adc47cc114db57b68c8511d2
e00790eb2c790e2cac7d410e493fbb68ca00f2a7
Fix LLVM intrinsic signatures for AVX-VNNI
[ { "path": "library/stdarch/crates/core_arch/src/x86/avx512vnni.rs", "patch": "@@ -12,7 +12,7 @@ use stdarch_test::assert_instr;\n #[stable(feature = \"stdarch_x86_avx512\", since = \"1.89\")]\n #[cfg_attr(test, assert_instr(vpdpwssd))]\n pub fn _mm512_dpwssd_epi32(src: __m512i, a: __m512i, b: __m512i) -> __...
2026-03-01T19:02:24
electron/electron
92496c1930e35de04725a61e60817704832372b2
42862347218b61b01c4891036d84ecda0b6a86d6
chore: bump chromium to 129.0.6616.0 (main) (#43012) * chore: bump chromium in DEPS to 128.0.6613.0 * chore: 5725076: Update EventType names | https://chromium-review.googlesource.com/c/chromium/src/+/5725076 * chore: export patches * chore: 5725076: Update EventType names | https://chromium-review.googlesour...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '128.0.6611.0',\n+ '129.0.6616.0',\n 'node_version':\n 'v20.16.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2024-07-29T13:37:35
golang/go
4c20f7f15a9a8eed50d8cbb8be8f74d449093a5c
5dcedd65504cc9cadc9a5ea8bc3af51a26eec704
cmd/cgo: run gcc to get errors and debug info in parallel This change kicks off the work to load the debug info when processing each file, and then waits for all the files to be processed before starting the single-goroutined part that processes them. The processing is very order dependent so we won't try to make it c...
[ { "path": "src/cmd/cgo/gcc.go", "patch": "@@ -183,16 +183,16 @@ func splitQuoted(s string) (r []string, err error) {\n \treturn args, err\n }\n \n-// Translate rewrites f.AST, the original Go input, to remove\n-// references to the imported package C, replacing them with\n-// references to the equivalent Go...
2025-08-25T21:22:01
facebook/react
b20d2327d634a1f102926859512b8667e2870741
d6b1c488d41c1d69e099d5f15e6d3c0b38cc19b7
Update `react-refresh-webpack-plugin` in Flight fixture (#30156)
[ { "path": "fixtures/flight/package.json", "patch": "@@ -10,7 +10,7 @@\n \"@babel/core\": \"^7.16.0\",\n \"@babel/plugin-proposal-private-property-in-object\": \"^7.18.6\",\n \"@babel/preset-react\": \"^7.22.5\",\n- \"@pmmmwh/react-refresh-webpack-plugin\": \"0.5.7\",\n+ \"@pmmmwh/react-ref...
2024-07-01T08:01:28
nodejs/node
0aa3dddfeb4328d2f7a686893ec8d7569ad608f8
635aed90c0af549c28f9bfe8229e53b97e2b4688
module: handle cached linked async jobs in require(esm) This handles two cases caused by using Promise.all() with multiple dynamic import() that can make an asynchronously linked module job that has finished/failed linking but has not yet started actual evaluation appear in the load cache when another require request ...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -18,7 +18,6 @@ const {\n kIsExecuting,\n kRequiredModuleSymbol,\n } = require('internal/modules/cjs/loader');\n-\n const { imported_cjs_symbol } = internalBinding('symbols');\n \n const assert = require('internal/assert');\n@@ -38,7 +37,15 @@ ...
2025-03-04T07:34:34
rust-lang/rust
21674fed54a8c2493323d0ae58a73cce99b885e3
7a221089b3fafcd105fbac2143724d181286c8d5
fix: Fix wrong descend range for add_missing_match_arms Example --- ```rust macro_rules! m { ($expr:expr) => {$expr}} enum Test { A, B, C, } fn foo(t: Test) { m!(match t { Test::A => (), $0}); } ``` **Before this PR** Assist not applicable **After this PR** ```rust macro_rules! m { ($e...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_missing_match_arms.rs", "patch": "@@ -44,8 +44,7 @@ pub(crate) fn add_missing_match_arms(acc: &mut Assists, ctx: &AssistContext<'_>)\n let arm_list_range = ctx.sema.original_range_opt(match_arm_list.syntax())?;\n \n if cursor_at_...
2026-03-01T16:21:19
electron/electron
42862347218b61b01c4891036d84ecda0b6a86d6
55e7a47d709ce711e0d9d91b9c8f9d6c4972a839
fix: redirect webview navigation methods (#42981)
[ { "path": "lib/browser/guest-view-manager.ts", "patch": "@@ -2,7 +2,7 @@ import { webContents } from 'electron/main';\n import { ipcMainInternal } from '@electron/internal/browser/ipc-main-internal';\n import * as ipcMainUtils from '@electron/internal/browser/ipc-main-internal-utils';\n import { parseWebVie...
2024-07-29T11:00:51
facebook/react
05cebffe16494367f38396a40a56db5866de96ab
2e72ea8401df491c1c6aa7af80419af8e21d8cc6
[prettier][eslint] Support sapling in prettier changed files command Summary: The listChangesFiles module didn't work under sapling; this fixes ghstack-source-id: 9f685de5e7550075369723b845104ac0e676ce95 Pull Request resolved: https://github.com/facebook/react/pull/30149
[ { "path": "scripts/shared/listChangedFiles.js", "patch": "@@ -19,14 +19,46 @@ const exec = (command, args) => {\n return execFileSync(command, args, options);\n };\n \n+const isGit = () => {\n+ try {\n+ const wt = execGitCmd(['rev-parse', '--is-inside-work-tree']);\n+ return wt.length > 0 && wt[0] ...
2024-06-30T21:22:22
golang/go
5dcedd65504cc9cadc9a5ea8bc3af51a26eec704
d3be949ada01d7827f8edc87665fef5268634cb3
runtime: lock mheap_.speciallock when allocating synctest specials Avoid racing use of mheap_.specialBubbleAlloc. Fixes #75134 Change-Id: I0c9140c18d2bca1e1c3387cd81230f0e8c9ac23e Reviewed-on: https://go-review.googlesource.com/c/go/+/699255 Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go L...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -779,6 +779,28 @@ func TestWaitGroupHeapAllocated(t *testing.T) {\n \t})\n }\n \n+// Issue #75134: Many racing bubble associations.\n+func TestWaitGroupManyBubbles(t *testing.T) {\n+\tvar wg sync.WaitGroup\n+\tfor range 100 {\n+\t\twg.Go(func(...
2025-08-26T20:26:57
vercel/next.js
4614b00f924062a4a75c0f45a3878bfed2ce5a92
37f4c793c96bb730fa1d06e4e393e78028f08dcb
Add 16.0.0-beta.0 to next/third-parties peerDeps (#84741) Installing `@next/third-parties` warns about peerDeps `next@16.0.0-beta.0` ``` Results: 0 errors 41 unmodified 0 skipped 0 ok Time elapsed: 2.276seconds ✔ Codemods have been applied successfully. ⚠ Found 1 dependency that seem incompatible with the upgraded p...
[ { "path": "packages/third-parties/package.json", "patch": "@@ -32,7 +32,7 @@\n \"typescript\": \"5.9.2\"\n },\n \"peerDependencies\": {\n- \"next\": \"^13.0.0 || ^14.0.0 || ^15.0.0\",\n+ \"next\": \"^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0-beta.0\",\n \"react\": \"^18.2.0 || 19.0.0-rc-de68...
2025-10-10T19:58:38
nodejs/node
47a59bde2aadb3ad1b377c0ef12df7abc28840e9
7c910d09e29186775866d1b69fa1be1d9e900d0a
src: fix node_config_file.h compilation error in GN build PR-URL: https://github.com/nodejs/node/pull/57210 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "src/node_config_file.h", "patch": "@@ -6,6 +6,7 @@\n #include <map>\n #include <string>\n #include <variant>\n+#include \"node_internals.h\"\n #include \"simdjson.h\"\n #include \"util-inl.h\"\n ", "additions": 1, "deletions": 0, "language": "C/C++ Header" } ]
2025-03-03T08:27:31
electron/electron
55e7a47d709ce711e0d9d91b9c8f9d6c4972a839
8db1563d730c8f6a5ca38ad167c670195c553d26
fix: always terminate active Node Streams (#43056) `.destroy()` is an important method in the lifecycle of a Node.js Readable stream. It is typically called to reclaim the resources (e.g., close file descriptor). The only situations where calling it manually isn't necessary are when the following events are emitte...
[ { "path": "shell/browser/net/node_stream_loader.cc", "patch": "@@ -43,7 +43,7 @@ NodeStreamLoader::~NodeStreamLoader() {\n }\n \n // Destroy the stream if not already ended\n- if (!ended_) {\n+ if (!destroyed_) {\n node::MakeCallback(isolate_, emitter_.Get(isolate_), \"destroy\", 0, nullptr,\n ...
2024-07-27T17:25:43
facebook/react
1e241f9d6c5f7d0e875b19a99c83cd6197fa62f7
b3aface19a17d78d190dd2883f6e4f9f719181d0
Add renderToMarkup for Client Components (#30121) Follow up to #30105. This supports `renderToMarkup` in a non-RSC environment (not the `react-server` condition). This is just a Fizz renderer but it errors at runtime when you use state, effects or event handlers that would require hydration - like the RSC ver...
[ { "path": "packages/react-client/src/forks/ReactFlightClientConfig.dom-legacy.js", "patch": "@@ -7,82 +7,20 @@\n * @flow\n */\n \n-import type {Thenable} from 'shared/ReactTypes';\n+export * from 'react-client/src/ReactFlightClientStreamConfigWeb';\n+export * from 'react-client/src/ReactClientConsoleConfi...
2024-06-28T13:25:10
golang/go
d3be949ada01d7827f8edc87665fef5268634cb3
836fa745188fddf49070d010161e30f360862e57
runtime: don't negate eventfd errno The Linux syscall package does this for us. Fixes #75337. Change-Id: I6a6a636c9bb5fe25fdc6f80dc8b538ebed60d00b Reviewed-on: https://go-review.googlesource.com/c/go/+/701796 Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a...
[ { "path": "src/runtime/netpoll_epoll.go", "patch": "@@ -27,7 +27,7 @@ func netpollinit() {\n \t}\n \tefd, errno := linux.Eventfd(0, linux.EFD_CLOEXEC|linux.EFD_NONBLOCK)\n \tif errno != 0 {\n-\t\tprintln(\"runtime: eventfd failed with\", -errno)\n+\t\tprintln(\"runtime: eventfd failed with\", errno)\n \t\tt...
2025-09-09T20:47:15
vercel/next.js
37f4c793c96bb730fa1d06e4e393e78028f08dcb
537f8c78903990aba7eaf636b3460a6f1e05a33c
[turbopack] Fix a few references to caching configuration as it is no longer canary guarded (#84761)
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/turbopackFileSystemCache.mdx", "patch": "@@ -2,16 +2,13 @@\n title: Turbopack FileSystem Caching\n nav_title: turbopackFileSystemCache\n description: Learn how to enable FileSystem Caching for Turbopack builds\n-version: canary\n ---\n \n #...
2025-10-10T19:46:14
nodejs/node
d1ec9488665e57244e9802ae142245be3323ceec
a6181b4a715670bc3c266935ce305563f668c186
doc: fix rendering of DEP0174 description PR-URL: https://github.com/nodejs/node/pull/56835 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/deprecations.md", "patch": "@@ -3568,7 +3568,7 @@ changes:\n \n Type: Runtime\n \n-Calling [`util.promisify`][] on a function that returns a <Promise> will ignore\n+Calling [`util.promisify`][] on a function that returns a `Promise` will ignore\n the result of said promise, which can lead...
2025-03-01T23:46:31
facebook/react
b3aface19a17d78d190dd2883f6e4f9f719181d0
e02baf6c92833a0d45a77fb2e741676f393c24f7
[fix] replace polyfill.io with cloudflare equivalent (#30123)
[ { "path": "fixtures/dom/public/renderer.html", "patch": "@@ -80,7 +80,7 @@\n \n <div id=\"output\"></div>\n \n- <script src=\"https://cdn.polyfill.io/v2/polyfill.min.js\"></script>\n+ <script src=\"https://cdnjs.cloudflare.com/polyfill/v2/polyfill.min.js\"></script>\n <script src=\"renderer.js...
2024-06-28T08:26:28
golang/go
836fa745188fddf49070d010161e30f360862e57
ce391744828cb1e0dbd44ffb2622521a15db5b5d
syscall: optimise cgo clearenv For programs with very large environments, calling unsetenv(3) for each environment variable can be very expensive because of CGo overhead, but clearenv(3) is much faster. The only thing we have to track is whether GODEBUG is being unset by the operation, which can be done very quickly w...
[ { "path": "src/runtime/cgo/clearenv.go", "patch": "@@ -0,0 +1,15 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build linux\n+\n+package cgo\n+\n+import _ \"unsafe\" // for go:l...
2025-09-09T12:18:49
electron/electron
8db1563d730c8f6a5ca38ad167c670195c553d26
b3d52c01e88417136487600eb21f3e108f1952aa
fix: remove InspectableWebContentsViewMac (#43033) * Revert "refactor: remove InspectableWebContentsViewMac in favor of the Views version (#41326)" This reverts commit e67ab9a93dadccecff30de50ab4555191c30b6c4. * build: fix gn check * chore: implement setCornerRadii in inspectable_web_contents_view_mac Co-a...
[ { "path": "filenames.gni", "patch": "@@ -159,8 +159,12 @@ filenames = {\n \"shell/browser/osr/osr_web_contents_view_mac.mm\",\n \"shell/browser/relauncher_mac.cc\",\n \"shell/browser/ui/certificate_trust_mac.mm\",\n+ \"shell/browser/ui/cocoa/delayed_native_view_host.h\",\n+ \"shell/browser...
2024-07-27T16:44:22
vercel/next.js
ee152079617926ca1e09c26e86d14e8f8fcfbf21
bc51d9bb6a6cbcb50a302e4dcc1c8f653bcc86b4
[turbopack] tweak the doc on the inner graph optimization (#84752) This optimization is enabled by default and we already link to the docs so referencing the configuration option is more misleading than helpful. Fixes https://github.com/vercel/feedback/issues/111264
[ { "path": "docs/01-app/03-api-reference/08-turbopack.mdx", "patch": "@@ -134,7 +134,7 @@ This can lead to subtle rendering changes when adopting Turbopack, if applicatio\n \n ### Bundle Sizes\n \n-Turbopack does not yet have an equivalent to the [Inner Graph Optimization](https://webpack.js.org/configuratio...
2025-10-10T16:52:35
nodejs/node
71196c431f6ae65a8fffb57a47b742ce93c86e4f
60dff4208fe330265e5ae217d3d66e99825fe45f
net: emit an error when custom lookup resolves to a non-string address PR-URL: https://github.com/nodejs/node/pull/57192 Fixes: https://github.com/nodejs/node/issues/57112 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> ...
[ { "path": "lib/net.js", "patch": "@@ -1416,7 +1416,7 @@ function lookupAndConnect(self, options) {\n // calls net.Socket.connect() on it (that's us). There are no event\n // listeners registered yet so defer the error event to the next tick.\n process.nextTick(connectErrorNT, self, e...
2025-03-01T20:43:41
facebook/react
e02baf6c92833a0d45a77fb2e741676f393c24f7
ffec9ec5b5c846f61d7b40e92f138e2a7b34f273
Warn for invalid type in renderer with the correct RSC stack (#30102) This is all behind the `enableOwnerStacks` flag. This is a follow up to #29088. In that I moved type validation into the renderer since that's the one that knows what types are allowed. However, I only removed it from `React.createElement` and ...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -692,14 +692,22 @@ describe('ReactFlight', () => {\n \n const transport = ReactNoopFlightServer.render(<ServerComponent />);\n \n- await act(async () => {\n- const rootModel = await ReactNoopFlightClient.read(trans...
2024-06-27T16:10:09
rust-lang/rust
fd8bb2167640600d59ac9199a4ddeb1a2edf7f4f
e492d022858076a414ad42139e05cb43e0d238b6
fix: `question_mark` suggestion caused error
[ { "path": "clippy_lints/src/question_mark.rs", "patch": "@@ -501,7 +501,8 @@ fn check_if_let_some_or_err_and_early_return<'tcx>(cx: &LateContext<'tcx>, expr:\n \n let mut applicability = Applicability::MachineApplicable;\n let receiver_str = snippet_with_applicability(cx, let_expr.span, \".....
2026-03-01T16:34:09
golang/go
ce391744828cb1e0dbd44ffb2622521a15db5b5d
5d9d0513dcb96409a2625c51431c584c0a12f212
crypto/rsa: check PrivateKey.D for consistency with Dp and Dq This unfortunately nearly doubles the runtime of NewPrivateKeyWithPrecomputation. It would be nice to find an alternative way to check it. fips140: off goos: darwin goarch: arm64 pkg: crypto/rsa cpu: Apple M2 │ 6aeb841faf │ ...
[ { "path": "doc/next/6-stdlib/99-minor/crypto/rsa/74115.md", "patch": "@@ -1,2 +1,5 @@\n If [PrivateKey] fields are modified after calling [PrivateKey.Precompute],\n [PrivateKey.Validate] now fails.\n+\n+[PrivateKey.D] is now checked for consistency with precomputed values, even if\n+it is not used.", "a...
2025-07-11T12:28:30
electron/electron
b3d52c01e88417136487600eb21f3e108f1952aa
77ba40bc01a206b5c3bac27cd6143adabd46d437
chore: bump node to v20.16.0 (main) (#43029) * chore: bump node in DEPS to v20.16.0 * test: skip unstable shadow realm gc tests https://github.com/nodejs/node/pull/52855 * test: extend env for `test-node-output-errors` https://github.com/nodejs/node/pull/53535 * src: fix typo in env.cc https://github...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '128.0.6611.0',\n 'node_version':\n- 'v20.15.1',\n+ 'v20.16.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2024-07-26T16:52:05
nodejs/node
60dff4208fe330265e5ae217d3d66e99825fe45f
5ae1224cef39bbb09af11ca272b8cfe7a19b9b03
test: skip `test-config-json-schema` with quic `parallel/test-config-json-schema` compares to a generated fixture that assumes that Node.js was built with default configuration settings. Skip the test if non-default quic is enabled (`configure --with-quic`). Refs: https://github.com/nodejs/node/pull/57016 Refs: http...
[ { "path": "test/parallel/test-config-json-schema.js", "patch": "@@ -21,6 +21,10 @@ if (!common.hasIntl) {\n common.skip('missing Intl');\n }\n \n+if (process.config.variables.node_quic) {\n+ common.skip('this test assumes default configuration options');\n+}\n+\n const {\n generateConfigJsonSchema,\n }...
2025-02-27T17:42:48
facebook/react
ffec9ec5b5c846f61d7b40e92f138e2a7b34f273
3bee073c01ee7af48c4ad19d98837cabaace67dc
Add new package with renderToMarkup export (#30105) Name of the package is tbd (straw: `react-html`). It's a new package separate from `react-dom` though and can be used as a standalone package - e.g. also from a React Native app. ```js import {renderToMarkup} from '...'; const html = await renderToMarkup(<Comp...
[ { "path": "packages/react-client/src/forks/ReactFlightClientConfig.dom-bun.js", "patch": "@@ -11,7 +11,6 @@ export * from 'react-client/src/ReactFlightClientStreamConfigWeb';\n export * from 'react-client/src/ReactClientConsoleConfigPlain';\n export * from 'react-dom-bindings/src/shared/ReactFlightClientCon...
2024-06-27T16:09:40
vercel/next.js
bc51d9bb6a6cbcb50a302e4dcc1c8f653bcc86b4
a89f854f3eb13814930943e53f4afbd721fd3fac
[Cache Components] Allow hiding logs after abort (#84579) When Next.js prerenders with Cache Components enabled it will abort prerenders before they have completed. It is common for user code to log in a catch block and with this new prerendering behavior these logs will trigger frequently for cases where the rejectio...
[ { "path": "packages/next/errors.json", "patch": "@@ -871,5 +871,6 @@\n \"870\": \"refresh can only be called from within a Server Action. See more info here: https://nextjs.org/docs/app/api-reference/functions/refresh\",\n \"871\": \"Image with src \\\"%s\\\" is using a query string which is not configu...
2025-10-10T16:13:19
golang/go
968a5107a938f9cb20413ad455986a61553c075b
645ee444929ecb7bbfb95cc8bda193e4b3cb3c43
crypto/internal/fips140: update frozen module version to "v1.0.0" We are re-sealing the .zip file anyway for another reason, might as well take the opportunity to fix the "v1.0" mistake. Change-Id: I6a6a69646b3188984c865031ff9393ccaaaa9479 Reviewed-on: https://go-review.googlesource.com/c/go/+/701518 Reviewed-by: Dan...
[ { "path": "src/crypto/internal/cryptotest/hash.go", "patch": "@@ -20,7 +20,7 @@ type MakeHash func() hash.Hash\n // TestHash performs a set of tests on hash.Hash implementations, checking the\n // documented requirements of Write, Sum, Reset, Size, and BlockSize.\n func TestHash(t *testing.T, mh MakeHash) {...
2025-09-07T14:37:40
nodejs/node
ac5afbc83ae21d5f6f718dcfd47816981861dd98
40deed2ebdf696dd0066cd318670ae12b841499f
doc: add @geeksilva97 to collaborators Fixes: https://github.com/nodejs/node/issues/57032 PR-URL: https://github.com/nodejs/node/pull/57241 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "README.md", "patch": "@@ -335,6 +335,8 @@ For information about the governance of the Node.js project, see\n **Gerhard Stöbich** <<deb2001-github@yahoo.de>> (he/they)\n * [gabrielschulhof](https://github.com/gabrielschulhof) -\n **Gabriel Schulhof** <<gabrielschulhof@gmail.com>>\n+* [geeksilv...
2025-02-28T17:13:23
facebook/react
f5a22fa27d54d8a5eb898416436be4ca87850d4d
fcfbfc1d1e3e350e1ea3fbc4a2418f647dc28a31
Bump ws from 7.2.1 to 7.5.10 (#29919) Bumps [ws](https://github.com/websockets/ws) from 7.2.1 to 7.5.10. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/websockets/ws/releases">ws's releases</a>.</em></p> <blockquote> <h2>7.5.10</h2> <h1>Bug fixes</h1> <ul> <li>Back...
[ { "path": "yarn.lock", "patch": "@@ -7202,7 +7202,6 @@ eslint-plugin-no-unsanitized@3.1.2:\n \n \"eslint-plugin-react-internal@link:./scripts/eslint-rules\":\n version \"0.0.0\"\n- uid \"\"\n \n eslint-plugin-react@^6.7.1:\n version \"6.10.3\"\n@@ -7274,7 +7273,7 @@ eslint-utils@^2.0.0, eslint-utils@^2...
2024-06-27T14:07:09
golang/go
a67977da5e26e0c328488fe05bdd200903e58e99
a5fa5ea51cd8fd9bcb8230d2accf9d55826f76b3
cmd/compile/internal/inline: ignore superfluous slicing When slicing, ignore expressions which could be elided, as in slicing starting at 0 or ending at len(v). Fixes #75278 Change-Id: I9c18e29c3d4da9bef89bd25bb261d3cb60e66392 Reviewed-on: https://go-review.googlesource.com/c/go/+/701216 LUCI-TryBot-Result: Go LUCI ...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -738,6 +738,17 @@ opSwitch:\n \t\tif n.X.Op() == ir.OINDEX && isIndexingCoverageCounter(n.X) {\n \t\t\treturn false\n \t\t}\n+\n+\tcase ir.OSLICE, ir.OSLICEARR, ir.OSLICESTR, ir.OSLICE3, ir.OSLICE3ARR:\n+\t\tn := n.(*ir.SliceExpr)\n+\n+\t\t// ...
2025-09-06T01:13:03
facebook/react
fcfbfc1d1e3e350e1ea3fbc4a2418f647dc28a31
1f59d07042466fa958d74062592cc31890e88661
[compiler] Always error on async reassignments Summary: Addresses the issue in #30109: any mutation of a local in an async function may occur after rendering has finished. ghstack-source-id: 9f15cf0f144c0badd6009ceb51df43a50399d82b Pull Request resolved: https://github.com/facebook/react/pull/30111
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateLocalsNotReassignedAfterRender.ts", "patch": "@@ -19,7 +19,12 @@ import {\n */\n export function validateLocalsNotReassignedAfterRender(fn: HIRFunction): void {\n const contextVariables = new Set<IdentifierId>();\n- const re...
2024-06-27T00:07:40
vercel/next.js
48e84aacd3cd61e7c45d9a2eeee4cf3287ed7f59
f766f9b03f38ce4a625c0b3904e573d74ba0418a
Version gate migration docs link (#84740) Currently, it always logs 15 migration docs when upgrading, so version gate it. ``` Results: 0 errors 41 unmodified 0 skipped 0 ok Time elapsed: 2.276seconds ✔ Codemods have been applied successfully. Please review the local changes and read the Next.js 15 migration guide t...
[ { "path": "packages/next-codemod/bin/upgrade.ts", "patch": "@@ -4,6 +4,7 @@ import fs from 'fs'\n import {\n satisfies as satisfiesVersionRange,\n compare as compareVersions,\n+ major,\n } from 'semver'\n import { execSync } from 'child_process'\n import path from 'path'\n@@ -60,20 +61,22 @@ async func...
2025-10-10T13:50:18
nodejs/node
40deed2ebdf696dd0066cd318670ae12b841499f
72cfa4b11c279653750b243a6ed2c769ef9dc4a2
src: improve error handling in `node_messaging.cc` PR-URL: https://github.com/nodejs/node/pull/57211 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "src/node_messaging.cc", "patch": "@@ -1627,10 +1627,15 @@ static void MessageChannel(const FunctionCallbackInfo<Value>& args) {\n \n MessagePort::Entangle(port1, port2);\n \n- args.This()->Set(context, env->port1_string(), port1->object())\n- .Check();\n- args.This()->Set(context, env->p...
2025-02-26T00:24:25
golang/go
a5fa5ea51cd8fd9bcb8230d2accf9d55826f76b3
4c63d798cb947a3cdd5a5b68f254a73d83eb288f
cmd/compile/internal/ssa: expand runtime.memequal for length {3,5,6,7} This CL slightly speeds up strings.HasPrefix when testing constant prefixes of length {3,5,6,7}. goos: linux goarch: amd64 cpu: Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz │ old │ new │ ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2084,7 +2084,7 @@\n (NilCheck ptr:(NilCheck _ _) _ ) => ptr\n \n // for late-expanded calls, recognize memequal applied to a single constant byte\n-// Support is limited by 1, 2, 4, 8 byte sizes\n+// Support is limited by [1-8] byte ...
2025-09-04T01:08:14
facebook/react
00775d94dc32c5136787e3ca60065b9a5e2df9b8
4c9a2d2ddf1bc8205a426b14d8a37804b5beb57a
[compiler] Add todo fixtures for local reassignment in an async callback ghstack-source-id: eca878f62a2149af76a72b59acd1820d0df86f30 Pull Request resolved: https://github.com/facebook/react/pull/30109
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/todo.invalid-reassign-local-variable-in-async-callback.expect.md", "patch": "@@ -0,0 +1,58 @@\n+\n+## Input\n+\n+```javascript\n+function Component() {\n+ let value = null;\n+ const reassign = async () => {\n+ awai...
2024-06-26T23:06:16
vercel/next.js
8367664b827c75d9b8faf96ed10ea9b058974829
cd293963abb8ef181d6ed37780319f50e0f7e3a0
[next-codemod] fix: Set codemod version to the first introduced version (#84726) <!-- 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...
[ { "path": "packages/next-codemod/lib/utils.ts", "patch": "@@ -35,6 +35,11 @@ export function onCancel() {\n process.exit(1)\n }\n \n+/**\n+ * When adding a new codemod, ensure to set the target canary version\n+ * instead of the stable version. This is for `@next/codemod upgrade`\n+ * to correctly pick up...
2025-10-10T03:22:50
nodejs/node
72cfa4b11c279653750b243a6ed2c769ef9dc4a2
b4c7ea0dc4558ad8c341cfbc3ab7d23522a02b3d
src: improve error handling in `tty_wrap.cc` PR-URL: https://github.com/nodejs/node/pull/57211 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "src/tty_wrap.cc", "patch": "@@ -100,8 +100,12 @@ void TTYWrap::GetWindowSize(const FunctionCallbackInfo<Value>& args) {\n \n if (err == 0) {\n Local<Array> a = args[0].As<Array>();\n- a->Set(env->context(), 0, Integer::New(env->isolate(), width)).Check();\n- a->Set(env->context(), 1, ...
2025-02-26T00:12:56
rust-lang/rust
747aa5beec13a622ac570e9cab2ee0040f94a097
ad7acd5c0371592bba2e48f1f1110793440877d4
Fix: use `FnAbi::Rust` for tuple struct/enum constructors and align `is_rust()` with rustc
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/lower.rs", "patch": "@@ -2468,7 +2468,7 @@ fn fn_sig_for_struct_constructor(\n let inputs_and_output =\n Tys::new_from_iter(DbInterner::new_no_crate(db), params.chain(Some(ret.as_ref())));\n StoredEarlyBinder::bind(StoredPolyFnSig::new(Bin...
2026-03-01T11:09:21
electron/electron
77ba40bc01a206b5c3bac27cd6143adabd46d437
2fd04a78a1e774a32e9db926d07de686fd03fb79
chore: avoid crash while notification removal (#43040) * avoid crash of operation on an invalid entry while erase set iterator. * fix notification removal crash due to the nullptr presenter --------- Co-authored-by: bill.shen <shenyb32768@gmail.com>
[ { "path": "shell/browser/notifications/notification.cc", "patch": "@@ -46,7 +46,9 @@ void Notification::NotificationFailed(const std::string& error) {\n void Notification::Remove() {}\n \n void Notification::Destroy() {\n- presenter()->RemoveNotification(this);\n+ if (presenter()) {\n+ presenter()->Rem...
2024-07-26T13:34:40
facebook/react
609d0cc3c8d484cd16378f4ba0e2e9eedbf48358
349a99a7a347f280ce40e9297cac5a3bd796901e
Add new error message for awaiting the client export (#29853) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull r...
[ { "path": "packages/react-server-dom-turbopack/src/ReactFlightTurbopackReferences.js", "patch": "@@ -133,6 +133,11 @@ const deepProxyHandlers = {\n `Instead, you can export a Client Component wrapper ` +\n `that itself renders a Client Context Provider.`,\n );\n+ case 't...
2024-06-26T17:47:39
golang/go
4c63d798cb947a3cdd5a5b68f254a73d83eb288f
bdd51e785580ce86142e662425982a2673e7c9c6
cmd/compile: improve stp merging for non-sequent cases Original algorithm merges stores with the first mergeable store in the chain, but it misses some cases. Additional reordering stores in increasing order of memory access in the chain allows merging in these cases. Fixes #71987 There are the results of sweet benc...
[ { "path": "src/cmd/compile/internal/ssa/pair.go", "patch": "@@ -212,6 +212,12 @@ func pairStores(f *Func) {\n \tlast := f.Cache.allocBoolSlice(f.NumValues())\n \tdefer f.Cache.freeBoolSlice(last)\n \n+\ttype stChainElem struct {\n+\t\tv *Value\n+\t\ti int // Index in chain (0 == last store)\n+\t}\n+\tvar or...
2025-08-21T15:00:57
vercel/next.js
f09567eafde22ed29949a1da3548e0fee3e21082
8f731e666f87d110538a10d95fbd04cdef553b9e
[turbopack] Emit a warning when there are too many matches from a FileSourceReference (#84701) Previously we would `eprintln!` in this case, but that is missing key source information that would help with debugging. Example warning (i hacked the limit to be lower to make this less tedious to repro): ![image.png](ht...
[ { "path": "crates/next-api/src/module_graph.rs", "patch": "@@ -490,7 +490,7 @@ impl Issue for CssGlobalImportIssue {\n }\n \n fn severity(&self) -> IssueSeverity {\n- IssueSeverity::Fatal\n+ IssueSeverity::Error\n }\n \n #[turbo_tasks::function]", "additions": 1, "delet...
2025-10-10T02:26:02
nodejs/node
b4c7ea0dc4558ad8c341cfbc3ab7d23522a02b3d
52ecb96cf6b38cbc0efad850130db2ee806b628f
src: improve error handling in `tcp_wrap.cc` PR-URL: https://github.com/nodejs/node/pull/57211 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "src/tcp_wrap.cc", "patch": "@@ -390,8 +390,9 @@ MaybeLocal<Object> AddressToJS(Environment* env,\n \n int port;\n \n- if (info.IsEmpty())\n+ if (info.IsEmpty()) {\n info = Object::New(env->isolate());\n+ }\n \n switch (addr->sa_family) {\n case AF_INET6:\n@@ -413,32 +414,45 @@ MaybeL...
2025-02-26T00:11:31
rust-lang/rust
5ade46246e89e7c4bc574d971e9b0a525f16d943
765fd2d8c77a570e7069d9f30bb6d3d8fe437f9e
Move `DiagArgMap` to `rustc_error_messages`
[ { "path": "compiler/rustc_error_messages/src/lib.rs", "patch": "@@ -13,6 +13,7 @@ pub use unic_langid::{LanguageIdentifier, langid};\n \n mod diagnostic_impls;\n pub use diagnostic_impls::DiagArgFromDisplay;\n+use rustc_data_structures::fx::FxIndexMap;\n \n pub fn register_functions<R, M>(bundle: &mut fluen...
2026-02-28T18:30:55
facebook/react
349a99a7a347f280ce40e9297cac5a3bd796901e
7045700a6db5edaf8427310de09ce0f113e781dc
Badge Environment Name on Thrown Errors from the Server (#29846) When we replay logs we badge them with e.g. `[Server]`. That way it's easy to identify that the source of the log actually happened on the Server (RSC). However, when we threw an error we didn't have any such thing. The error was rethrown on the clien...
[ { "path": "packages/internal-test-utils/consoleMock.js", "patch": "@@ -418,13 +418,18 @@ export function createLogAssertion(\n let argIndex = 0;\n // console.* could have been called with a non-string e.g. `console.error(new Error())`\n // eslint-disable-next-line react-internal/safe...
2024-06-26T17:27:26
electron/electron
2fd04a78a1e774a32e9db926d07de686fd03fb79
0886d2f50f35be4810ca0f4de4848b7cb0c8c487
fix: revert BrowserWindow unresponsive handling refactor (#43034) * Revert "refactor: JSify BrowserWindow unresponsive handling (#37902)" This reverts commit 67ba30402bcbf6942fa0846927f2d088cf0a749d. * chore: remove BrowserWindow::SetTitleBarOverlay --------- Co-authored-by: Shelley Vohr <shelley.vohr@gmai...
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -36,29 +36,6 @@ BrowserWindow.prototype._init = function (this: BWT) {\n app.emit('browser-window-focus', event, this);\n });\n \n- let unresponsiveEvent: NodeJS.Timeout | null = null;\n- const emitUnresponsiveEvent = () => {\n- unrespon...
2024-07-25T20:02:02
golang/go
3b3b16957cd466baef3af92383de324230ad993c
e3223518b860132e3711602485922a8fa3805224
Revert "cmd/go: use os.Rename to move files on Windows" This reverts CL 691255. Reason for revert: SetNamedSecurityInfo sometimes fails when the path contains symbolic links. Fixes #74864 Change-Id: Iaf1a5692b35d58c523fd513f27bad9a2e7a334cb Reviewed-on: https://go-review.googlesource.com/c/go/+/702155 LUCI-TryBot-R...
[ { "path": "src/cmd/go/internal/work/shell.go", "patch": "@@ -132,11 +132,47 @@ func (sh *Shell) moveOrCopyFile(dst, src string, perm fs.FileMode, force bool) e\n \t\treturn sh.CopyFile(dst, src, perm, force)\n \t}\n \n-\tif err := sh.move(src, dst, perm); err == nil {\n-\t\tif cfg.BuildX {\n-\t\t\tsh.ShowCm...
2025-09-09T16:02:28
vercel/next.js
61a8037835a715f36dd52532ba049f81d4f532d4
73a4d0829a8e6a53af5be9c52bcf466e4941344c
Rspack: Fix lockfile test on rspack (#84707) Noticed this on https://github.com/vercel/next.js/pull/84673 We don't run rspack test on every PR, so this wasn't caught before.
[ { "path": "test/development/lockfile/lockfile.test.ts", "patch": "@@ -3,7 +3,7 @@ import execa from 'execa'\n import stripAnsi from 'strip-ansi'\n \n describe('lockfile', () => {\n- const { next, isTurbopack } = nextTestSetup({\n+ const { next, isTurbopack, isRspack } = nextTestSetup({\n files: __dirn...
2025-10-10T00:28:04
nodejs/node
48f381d309be4093175a037cfb232cd750f8e17e
0d92ce497b044f1ea80b850dacea7f309d0b046b
fs: only show deprecation warning when error code matches PR-URL: https://github.com/nodejs/node/pull/56549 Refs: https://github.com/nodejs/node/pull/55753 Reviewed-By: Jacob Smith <jacob@frende.me>
[ { "path": "lib/fs.js", "patch": "@@ -278,8 +278,8 @@ let showExistsDeprecation = true;\n function existsSync(path) {\n try {\n path = getValidatedPath(path);\n- } catch {\n- if (showExistsDeprecation) {\n+ } catch (err) {\n+ if (showExistsDeprecation && err?.code === 'ERR_INVALID_ARG_TYPE') {\...
2025-02-28T10:46:11
facebook/react
7baae65e767726e44a23c13203c05ae0d540e26f
bbc8851c84fc6b6793340de89713bf142b8c05e6
compiler: fix the `hookKind` for `useInsertionEffect` (#30069) Currently, the `hookKind` for `useInsertionEffect` is set to `useLayoutEffect`. This pull request fixes it by adding a new `hookKind` for `useInsertionEffect`.
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts", "patch": "@@ -363,7 +363,7 @@ const REACT_APIS: Array<[string, BuiltInType]> = [\n restParam: Effect.Freeze,\n returnType: { kind: \"Poly\" },\n calleeEffect: Effect.Read,\n- hookKind: \"useLayoutEff...
2024-06-26T13:59:03
golang/go
af03343f934b50f64389aa4222a2a111a125f69f
6447ff409ac7e2a621bc8ca5c44b2eaed751fbaa
cmd/compile: fix bounds check report For constant-index, variable length situations. Inadvertant shadowing of the yVal variable. Oops. Fixes #75327 Change-Id: I3403066fc39b7664222a3098cf0f22b5761ea66a Reviewed-on: https://go-review.googlesource.com/c/go/+/702015 Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1306,7 +1306,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t\t}\n \t\tcase ssa.OpAMD64LoweredPanicBoundsCR:\n \t\t\tyIsReg = true\n-\t\t\tyVal := int(v.Args[0].Reg() - x86.REG_AX)\n+\t\t\tyVal = int(v.Args[0].Reg() - x86.REG_AX)\...
2025-09-09T05:04:40
vercel/next.js
b2ce9dd9c34d04c2c8d7f872bd0bb0e0f3a8d31a
7e325d98a2773f1a41596f455516c164835728dc
tweak middlewareClientMaxBodySize handling (#84712) This ensures we captured `middlewareClientMaxBodySize` in the config schema and rather than triggering a hard error, it will buffer up to the limit.
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/middlewareClientMaxBodySize.mdx", "patch": "@@ -0,0 +1,118 @@\n+---\n+title: experimental.middlewareClientMaxBodySize\n+description: Configure the maximum request body size when using middleware.\n+version: experimental\n+---\n+\n+When midd...
2025-10-10T00:10:41
nodejs/node
304743655d5236c2edc39094336ee2667600b684
fd453837ea3955a20ad8157482058e30ed781f15
doc: add streamResetBurst and streamResetRate Added missing documentation for the streamResetBurst and streamResetRate options in the http2.createSecureServer section. This ensures developers are aware of these configurable options. Fixes: https://github.com/nodejs/node/issues/57169 Refs: https://nodejs.org/docs/late...
[ { "path": "doc/api/http2.md", "patch": "@@ -3055,6 +3055,9 @@ changes:\n **Default:** `100`.\n * `settings` {HTTP/2 Settings Object} The initial settings to send to the\n remote peer upon connection.\n+ * `streamResetBurst` {number} and `streamResetRate` {number} Sets the rate\n+ limit for the...
2025-02-26T15:47:23
facebook/react
bbc8851c84fc6b6793340de89713bf142b8c05e6
a8b465c6e0576b9ac490c2e2762c273db314dfcf
Bump ws from 8.13.0 to 8.17.1 in /compiler (#30043) Bumps [ws](https://github.com/websockets/ws) from 8.13.0 to 8.17.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/websockets/ws/releases">ws's releases</a>.</em></p> <blockquote> <h2>8.17.1</h2> <h1>Bug fixes</h1> ...
[ { "path": "compiler/yarn.lock", "patch": "@@ -9127,7 +9127,16 @@ string-length@^4.0.1:\n char-regex \"^1.0.2\"\n strip-ansi \"^6.0.0\"\n \n-\"string-width-cjs@npm:string-width@^4.2.0\", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:\n+\"string-width-cjs@npm:string-width@^4.2.0\":\n+ ...
2024-06-26T13:56:13
electron/electron
976f5d1b7558d596c0e28e614a02bf6acfc7e6f8
aa23198ad8ed023a09bf6162f0e268f4aa0aa524
fix: File System API permissions should reset on WebContents destruction (#43009) fix: active File System API permissions should reset on WebContents destruction
[ { "path": "filenames.gni", "patch": "@@ -390,6 +390,8 @@ filenames = {\n \"shell/browser/file_system_access/file_system_access_permission_context.h\",\n \"shell/browser/file_system_access/file_system_access_permission_context_factory.cc\",\n \"shell/browser/file_system_access/file_system_access_...
2024-07-25T13:53:30
rust-lang/rust
2c6ec51564e3051a4df44310b27fb51333408a72
c2c6f74fd2216a63c7d180d5dda4c825d503c2fa
Update `__rust_[rd]ealloc` to take `NonNull<u8>` instead of `*mut u8` Passing null to it is [already UB](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2024&gist=8dcd25a549c11de72adc94a668277779) anyway.
[ { "path": "library/alloc/src/alloc.rs", "patch": "@@ -22,11 +22,16 @@ unsafe extern \"Rust\" {\n #[rustc_deallocator]\n #[rustc_nounwind]\n #[rustc_std_internal_symbol]\n- fn __rust_dealloc(ptr: *mut u8, size: usize, align: Alignment);\n+ fn __rust_dealloc(ptr: NonNull<u8>, size: usize, al...
2026-03-01T07:04:31